blob: 2df6af93120e0289f0c3e911b16dd5ce0b6c383d [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>
Chuck Lever7df302f2012-05-29 13:56:37 -040041#include <linux/ratelimit.h>
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -050042#include <linux/sunrpc/svcauth_gss.h>
Jeff Layton59766872013-02-04 12:50:00 -050043#include <linux/sunrpc/addr.h>
NeilBrown6282cd52014-06-04 17:39:26 +100044#include <linux/hash.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020045#include "xdr4.h"
J. Bruce Fields06b332a2013-04-09 11:34:36 -040046#include "xdr4cb.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050047#include "vfs.h"
J. Bruce Fieldsbfa4b362012-04-25 16:49:18 -040048#include "current_stateid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040050#include "netns.h"
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define NFSDDBG_FACILITY NFSDDBG_PROC
53
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050054#define all_ones {{~0,~0},~0}
55static const stateid_t one_stateid = {
56 .si_generation = ~0,
57 .si_opaque = all_ones,
58};
59static const stateid_t zero_stateid = {
60 /* all fields zero */
61};
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010062static const stateid_t currentstateid = {
63 .si_generation = 1,
64};
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050065
Andy Adamsonec6b5d72009-04-03 08:28:28 +030066static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070067
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050068#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
69#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010070#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* forward declarations */
Jeff Laytonf9c00c32014-07-23 16:17:41 -040073static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
Trond Myklebust60116952014-07-29 21:34:06 -040074static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
J. Bruce Fields8b671b82009-02-22 14:51:34 -080076/* Locking: */
77
78/* Currently used for almost all code touching nfsv4 state: */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080079static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
J. Bruce Fields8b671b82009-02-22 14:51:34 -080081/*
82 * Currently used for the del_recall_lru and file hash table. In an
83 * effort to decrease the scope of the client_mutex, this spinlock may
84 * eventually cover more:
85 */
Benny Halevycdc97502014-05-30 09:09:30 -040086static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080087
Christoph Hellwigabf11352014-05-21 07:43:03 -070088static struct kmem_cache *openowner_slab;
89static struct kmem_cache *lockowner_slab;
90static struct kmem_cache *file_slab;
91static struct kmem_cache *stateid_slab;
92static struct kmem_cache *deleg_slab;
NeilBrowne60d4392005-06-23 22:03:01 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094void
95nfs4_lock_state(void)
96{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080097 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400100static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800101
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400102static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800103{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400104 return ses->se_flags & NFS4_SESSION_DEAD;
105}
106
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400107static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
108{
109 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400110 return nfserr_jukebox;
111 ses->se_flags |= NFS4_SESSION_DEAD;
112 return nfs_ok;
113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115void
116nfs4_unlock_state(void)
117{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800118 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
J. Bruce Fields221a6872013-04-01 22:23:49 -0400121static bool is_client_expired(struct nfs4_client *clp)
122{
123 return clp->cl_time == 0;
124}
125
126static __be32 mark_client_expired_locked(struct nfs4_client *clp)
127{
128 if (atomic_read(&clp->cl_refcount))
129 return nfserr_jukebox;
130 clp->cl_time = 0;
131 return nfs_ok;
132}
133
134static __be32 mark_client_expired(struct nfs4_client *clp)
135{
136 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
137 __be32 ret;
138
139 spin_lock(&nn->client_lock);
140 ret = mark_client_expired_locked(clp);
141 spin_unlock(&nn->client_lock);
142 return ret;
143}
144
145static __be32 get_client_locked(struct nfs4_client *clp)
146{
147 if (is_client_expired(clp))
148 return nfserr_expired;
149 atomic_inc(&clp->cl_refcount);
150 return nfs_ok;
151}
152
153/* must be called under the client_lock */
154static inline void
155renew_client_locked(struct nfs4_client *clp)
156{
157 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
158
159 if (is_client_expired(clp)) {
160 WARN_ON(1);
161 printk("%s: client (clientid %08x/%08x) already expired\n",
162 __func__,
163 clp->cl_clientid.cl_boot,
164 clp->cl_clientid.cl_id);
165 return;
166 }
167
168 dprintk("renewing client (clientid %08x/%08x)\n",
169 clp->cl_clientid.cl_boot,
170 clp->cl_clientid.cl_id);
171 list_move_tail(&clp->cl_lru, &nn->client_lru);
172 clp->cl_time = get_seconds();
173}
174
175static inline void
176renew_client(struct nfs4_client *clp)
177{
178 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
179
180 spin_lock(&nn->client_lock);
181 renew_client_locked(clp);
182 spin_unlock(&nn->client_lock);
183}
184
Fengguang Wuba138432013-04-16 22:14:15 -0400185static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400186{
187 if (!atomic_dec_and_test(&clp->cl_refcount))
188 return;
189 if (!is_client_expired(clp))
190 renew_client_locked(clp);
191}
192
Jeff Layton4b24ca72014-06-30 11:48:44 -0400193static void put_client_renew(struct nfs4_client *clp)
194{
195 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
196
Jeff Laytond6c249b2014-07-08 14:02:50 -0400197 if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
198 return;
199 if (!is_client_expired(clp))
200 renew_client_locked(clp);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400201 spin_unlock(&nn->client_lock);
202}
203
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400204static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
205{
206 __be32 status;
207
208 if (is_session_dead(ses))
209 return nfserr_badsession;
210 status = get_client_locked(ses->se_client);
211 if (status)
212 return status;
213 atomic_inc(&ses->se_ref);
214 return nfs_ok;
215}
216
217static void nfsd4_put_session_locked(struct nfsd4_session *ses)
218{
219 struct nfs4_client *clp = ses->se_client;
220
221 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
222 free_session(ses);
223 put_client_renew_locked(clp);
224}
225
226static void nfsd4_put_session(struct nfsd4_session *ses)
227{
228 struct nfs4_client *clp = ses->se_client;
229 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
230
231 spin_lock(&nn->client_lock);
232 nfsd4_put_session_locked(ses);
233 spin_unlock(&nn->client_lock);
234}
235
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237static inline u32
238opaque_hashval(const void *ptr, int nbytes)
239{
240 unsigned char *cptr = (unsigned char *) ptr;
241
242 u32 x = 0;
243 while (nbytes--) {
244 x *= 37;
245 x += *cptr++;
246 }
247 return x;
248}
249
J. Bruce Fields32513b42011-10-13 16:00:16 -0400250static void nfsd4_free_file(struct nfs4_file *f)
251{
252 kmem_cache_free(file_slab, f);
253}
254
NeilBrown13cd2182005-06-23 22:03:10 -0700255static inline void
256put_nfs4_file(struct nfs4_file *fi)
257{
Jeff Layton02e12152014-07-16 10:31:57 -0400258 might_lock(&state_lock);
259
Benny Halevycdc97502014-05-30 09:09:30 -0400260 if (atomic_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton89876f82013-04-02 09:01:59 -0400261 hlist_del(&fi->fi_hash);
Benny Halevycdc97502014-05-30 09:09:30 -0400262 spin_unlock(&state_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400263 nfsd4_free_file(fi);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800264 }
NeilBrown13cd2182005-06-23 22:03:10 -0700265}
266
267static inline void
268get_nfs4_file(struct nfs4_file *fi)
269{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800270 atomic_inc(&fi->fi_ref);
NeilBrown13cd2182005-06-23 22:03:10 -0700271}
272
Trond Myklebustde186432014-07-10 14:07:26 -0400273static struct file *
274__nfs4_get_fd(struct nfs4_file *f, int oflag)
275{
276 if (f->fi_fds[oflag])
277 return get_file(f->fi_fds[oflag]);
278 return NULL;
279}
280
281static struct file *
282find_writeable_file_locked(struct nfs4_file *f)
283{
284 struct file *ret;
285
286 lockdep_assert_held(&f->fi_lock);
287
288 ret = __nfs4_get_fd(f, O_WRONLY);
289 if (!ret)
290 ret = __nfs4_get_fd(f, O_RDWR);
291 return ret;
292}
293
294static struct file *
295find_writeable_file(struct nfs4_file *f)
296{
297 struct file *ret;
298
299 spin_lock(&f->fi_lock);
300 ret = find_writeable_file_locked(f);
301 spin_unlock(&f->fi_lock);
302
303 return ret;
304}
305
306static struct file *find_readable_file_locked(struct nfs4_file *f)
307{
308 struct file *ret;
309
310 lockdep_assert_held(&f->fi_lock);
311
312 ret = __nfs4_get_fd(f, O_RDONLY);
313 if (!ret)
314 ret = __nfs4_get_fd(f, O_RDWR);
315 return ret;
316}
317
318static struct file *
319find_readable_file(struct nfs4_file *f)
320{
321 struct file *ret;
322
323 spin_lock(&f->fi_lock);
324 ret = find_readable_file_locked(f);
325 spin_unlock(&f->fi_lock);
326
327 return ret;
328}
329
330static struct file *
331find_any_file(struct nfs4_file *f)
332{
333 struct file *ret;
334
335 spin_lock(&f->fi_lock);
336 ret = __nfs4_get_fd(f, O_RDWR);
337 if (!ret) {
338 ret = __nfs4_get_fd(f, O_WRONLY);
339 if (!ret)
340 ret = __nfs4_get_fd(f, O_RDONLY);
341 }
342 spin_unlock(&f->fi_lock);
343 return ret;
344}
345
Trond Myklebust02a35082014-07-25 07:34:22 -0400346static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800347unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700348
349/*
350 * Open owner state (share locks)
351 */
352
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500353/* hash tables for lock and open owners */
354#define OWNER_HASH_BITS 8
355#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
356#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700357
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500358static unsigned int ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400359{
360 unsigned int ret;
361
362 ret = opaque_hashval(ownername->data, ownername->len);
363 ret += clientid;
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500364 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400365}
NeilBrownef0f3392006-04-10 22:55:41 -0700366
NeilBrownef0f3392006-04-10 22:55:41 -0700367/* hash table for nfs4_file */
368#define FILE_HASH_BITS 8
369#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800370
Trond Myklebustca943212014-07-23 16:17:39 -0400371static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400372{
Trond Myklebustca943212014-07-23 16:17:39 -0400373 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
374}
375
376static unsigned int file_hashval(struct knfsd_fh *fh)
377{
378 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
379}
380
381static bool nfsd_fh_match(struct knfsd_fh *fh1, struct knfsd_fh *fh2)
382{
383 return fh1->fh_size == fh2->fh_size &&
384 !memcmp(fh1->fh_base.fh_pad,
385 fh2->fh_base.fh_pad,
386 fh1->fh_size);
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400387}
388
Jeff Layton89876f82013-04-02 09:01:59 -0400389static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700390
Jeff Layton12659652014-07-10 14:07:28 -0400391static void
392__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400393{
Jeff Layton7214e862014-07-10 14:07:33 -0400394 lockdep_assert_held(&fp->fi_lock);
395
Jeff Layton12659652014-07-10 14:07:28 -0400396 if (access & NFS4_SHARE_ACCESS_WRITE)
397 atomic_inc(&fp->fi_access[O_WRONLY]);
398 if (access & NFS4_SHARE_ACCESS_READ)
399 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400400}
401
Jeff Layton12659652014-07-10 14:07:28 -0400402static __be32
403nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400404{
Jeff Layton7214e862014-07-10 14:07:33 -0400405 lockdep_assert_held(&fp->fi_lock);
406
Jeff Layton12659652014-07-10 14:07:28 -0400407 /* Does this access mode make sense? */
408 if (access & ~NFS4_SHARE_ACCESS_BOTH)
409 return nfserr_inval;
410
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400411 /* Does it conflict with a deny mode already set? */
412 if ((access & fp->fi_share_deny) != 0)
413 return nfserr_share_denied;
414
Jeff Layton12659652014-07-10 14:07:28 -0400415 __nfs4_file_get_access(fp, access);
416 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400417}
418
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400419static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
420{
421 /* Common case is that there is no deny mode. */
422 if (deny) {
423 /* Does this deny mode make sense? */
424 if (deny & ~NFS4_SHARE_DENY_BOTH)
425 return nfserr_inval;
426
427 if ((deny & NFS4_SHARE_DENY_READ) &&
428 atomic_read(&fp->fi_access[O_RDONLY]))
429 return nfserr_share_denied;
430
431 if ((deny & NFS4_SHARE_DENY_WRITE) &&
432 atomic_read(&fp->fi_access[O_WRONLY]))
433 return nfserr_share_denied;
434 }
435 return nfs_ok;
436}
437
J. Bruce Fields998db522010-08-07 09:21:41 -0400438static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400439{
Trond Myklebustde186432014-07-10 14:07:26 -0400440 might_lock(&fp->fi_lock);
441
442 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
443 struct file *f1 = NULL;
444 struct file *f2 = NULL;
445
Jeff Layton6d338b52014-07-10 14:07:29 -0400446 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400447 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400448 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400449 spin_unlock(&fp->fi_lock);
450 if (f1)
451 fput(f1);
452 if (f2)
453 fput(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400454 }
455}
456
Jeff Layton12659652014-07-10 14:07:28 -0400457static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400458{
Jeff Layton12659652014-07-10 14:07:28 -0400459 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
460
461 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400462 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400463 if (access & NFS4_SHARE_ACCESS_READ)
464 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400465}
466
Trond Myklebust60116952014-07-29 21:34:06 -0400467static struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl,
468 struct kmem_cache *slab)
J. Bruce Fields996e0932011-10-17 11:14:48 -0400469{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500470 struct nfs4_stid *stid;
471 int new_id;
472
Trond Myklebustf8338832014-07-25 07:34:19 -0400473 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500474 if (!stid)
475 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400476
Jeff Layton4770d722014-07-29 21:34:10 -0400477 idr_preload(GFP_KERNEL);
478 spin_lock(&cl->cl_lock);
479 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 0, 0, GFP_NOWAIT);
480 spin_unlock(&cl->cl_lock);
481 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700482 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500483 goto out_free;
484 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500485 stid->sc_stateid.si_opaque.so_id = new_id;
486 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
487 /* Will be incremented before return to client: */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -0400488 atomic_set(&stid->sc_count, 1);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500489
J. Bruce Fields996e0932011-10-17 11:14:48 -0400490 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500491 * It shouldn't be a problem to reuse an opaque stateid value.
492 * I don't think it is for 4.1. But with 4.0 I worry that, for
493 * example, a stray write retransmission could be accepted by
494 * the server when it should have been rejected. Therefore,
495 * adopt a trick from the sctp code to attempt to maximize the
496 * amount of time until an id is reused, by ensuring they always
497 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400498 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500499 return stid;
500out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800501 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500502 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400503}
504
Jeff Laytonb49e0842014-07-29 21:34:11 -0400505static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400506{
Trond Myklebust60116952014-07-29 21:34:06 -0400507 struct nfs4_stid *stid;
508 struct nfs4_ol_stateid *stp;
509
510 stid = nfs4_alloc_stid(clp, stateid_slab);
511 if (!stid)
512 return NULL;
513
514 stp = openlockstateid(stid);
515 stp->st_stid.sc_free = nfs4_free_ol_stateid;
516 return stp;
517}
518
519static void nfs4_free_deleg(struct nfs4_stid *stid)
520{
Trond Myklebust60116952014-07-29 21:34:06 -0400521 kmem_cache_free(deleg_slab, stid);
522 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400523}
524
NeilBrown6282cd52014-06-04 17:39:26 +1000525/*
526 * When we recall a delegation, we should be careful not to hand it
527 * out again straight away.
528 * To ensure this we keep a pair of bloom filters ('new' and 'old')
529 * in which the filehandles of recalled delegations are "stored".
530 * If a filehandle appear in either filter, a delegation is blocked.
531 * When a delegation is recalled, the filehandle is stored in the "new"
532 * filter.
533 * Every 30 seconds we swap the filters and clear the "new" one,
534 * unless both are empty of course.
535 *
536 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
537 * low 3 bytes as hash-table indices.
538 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400539 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000540 * is used to manage concurrent access. Testing does not need the lock
541 * except when swapping the two filters.
542 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400543static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000544static struct bloom_pair {
545 int entries, old_entries;
546 time_t swap_time;
547 int new; /* index into 'set' */
548 DECLARE_BITMAP(set[2], 256);
549} blocked_delegations;
550
551static int delegation_blocked(struct knfsd_fh *fh)
552{
553 u32 hash;
554 struct bloom_pair *bd = &blocked_delegations;
555
556 if (bd->entries == 0)
557 return 0;
558 if (seconds_since_boot() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400559 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000560 if (seconds_since_boot() - bd->swap_time > 30) {
561 bd->entries -= bd->old_entries;
562 bd->old_entries = bd->entries;
563 memset(bd->set[bd->new], 0,
564 sizeof(bd->set[0]));
565 bd->new = 1-bd->new;
566 bd->swap_time = seconds_since_boot();
567 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400568 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000569 }
570 hash = arch_fast_hash(&fh->fh_base, fh->fh_size, 0);
571 if (test_bit(hash&255, bd->set[0]) &&
572 test_bit((hash>>8)&255, bd->set[0]) &&
573 test_bit((hash>>16)&255, bd->set[0]))
574 return 1;
575
576 if (test_bit(hash&255, bd->set[1]) &&
577 test_bit((hash>>8)&255, bd->set[1]) &&
578 test_bit((hash>>16)&255, bd->set[1]))
579 return 1;
580
581 return 0;
582}
583
584static void block_delegations(struct knfsd_fh *fh)
585{
586 u32 hash;
587 struct bloom_pair *bd = &blocked_delegations;
588
589 hash = arch_fast_hash(&fh->fh_base, fh->fh_size, 0);
590
Jeff Laytonf54fe962014-07-25 07:34:26 -0400591 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000592 __set_bit(hash&255, bd->set[bd->new]);
593 __set_bit((hash>>8)&255, bd->set[bd->new]);
594 __set_bit((hash>>16)&255, bd->set[bd->new]);
595 if (bd->entries == 0)
596 bd->swap_time = seconds_since_boot();
597 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400598 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000599}
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601static struct nfs4_delegation *
Jeff Laytonf9416e22014-07-25 07:34:23 -0400602alloc_init_deleg(struct nfs4_client *clp, struct svc_fh *current_fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400605 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400608 n = atomic_long_inc_return(&num_delegations);
609 if (n < 0 || n > max_delegations)
610 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000611 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400612 goto out_dec;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400613 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700614 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400615 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400616
617 dp->dl_stid.sc_free = nfs4_free_deleg;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400618 /*
619 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400620 * meaning of seqid 0 isn't meaningful, really, but let's avoid
621 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400622 */
623 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700624 INIT_LIST_HEAD(&dp->dl_perfile);
625 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 INIT_LIST_HEAD(&dp->dl_recall_lru);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400627 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Jeff Layton02e12152014-07-16 10:31:57 -0400628 INIT_WORK(&dp->dl_recall.cb_work, nfsd4_run_cb_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400630out_dec:
631 atomic_long_dec(&num_delegations);
632 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635void
Trond Myklebust60116952014-07-29 21:34:06 -0400636nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Trond Myklebust11b91642014-07-29 21:34:08 -0400638 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400639 struct nfs4_client *clp = s->sc_client;
640
Jeff Layton4770d722014-07-29 21:34:10 -0400641 might_lock(&clp->cl_lock);
642
643 if (!atomic_dec_and_lock(&s->sc_count, &clp->cl_lock))
Trond Myklebust60116952014-07-29 21:34:06 -0400644 return;
645 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Jeff Layton4770d722014-07-29 21:34:10 -0400646 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400647 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400648 if (fp)
649 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500652static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Jeff Layton417c6622014-07-21 09:34:57 -0400654 lockdep_assert_held(&state_lock);
655
J. Bruce Fieldscbf7a752014-03-03 12:19:18 -0500656 if (!fp->fi_lease)
657 return;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500658 if (atomic_dec_and_test(&fp->fi_delegees)) {
659 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
660 fp->fi_lease = NULL;
J. Bruce Fields4ee63622011-04-15 18:08:26 -0400661 fput(fp->fi_deleg_file);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500662 fp->fi_deleg_file = NULL;
663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400666static void unhash_stid(struct nfs4_stid *s)
667{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500668 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400669}
670
Benny Halevy931ee562014-05-30 09:09:27 -0400671static void
672hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
673{
Benny Halevycdc97502014-05-30 09:09:30 -0400674 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400675 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400676
Trond Myklebust67cb1272014-07-29 21:34:17 -0400677 atomic_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -0400678 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -0400679 list_add(&dp->dl_perfile, &fp->fi_delegations);
680 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683static void
Jeff Layton42690672014-07-25 07:34:20 -0400684unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Trond Myklebust11b91642014-07-29 21:34:08 -0400686 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -0400687
Jeff Layton42690672014-07-25 07:34:20 -0400688 lockdep_assert_held(&state_lock);
689
Trond Myklebustb0fc29d2014-07-16 10:31:59 -0400690 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -0400691 /* Ensure that deleg break won't try to requeue it */
692 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -0400693 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400694 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -0400696 list_del_init(&dp->dl_perfile);
697 spin_unlock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400698 if (fp)
Trond Myklebustf8338832014-07-25 07:34:19 -0400699 nfs4_put_deleg_lease(fp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400700}
701
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400702static void destroy_delegation(struct nfs4_delegation *dp)
703{
Jeff Layton42690672014-07-25 07:34:20 -0400704 spin_lock(&state_lock);
705 unhash_delegation_locked(dp);
706 spin_unlock(&state_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400707 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400708}
709
710static void revoke_delegation(struct nfs4_delegation *dp)
711{
712 struct nfs4_client *clp = dp->dl_stid.sc_client;
713
Jeff Layton2d4a5322014-07-25 07:34:21 -0400714 WARN_ON(!list_empty(&dp->dl_recall_lru));
715
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400716 if (clp->cl_minorversion == 0)
Trond Myklebust60116952014-07-29 21:34:06 -0400717 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400718 else {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400719 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
Jeff Layton2d4a5322014-07-25 07:34:21 -0400720 spin_lock(&clp->cl_lock);
721 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
722 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400723 }
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/*
727 * SETCLIENTID state
728 */
729
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400730static unsigned int clientid_hashval(u32 id)
731{
732 return id & CLIENT_HASH_MASK;
733}
734
735static unsigned int clientstr_hashval(const char *name)
736{
737 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400741 * We store the NONE, READ, WRITE, and BOTH bits separately in the
742 * st_{access,deny}_bmap field of the stateid, in order to track not
743 * only what share bits are currently in force, but also what
744 * combinations of share bits previous opens have used. This allows us
745 * to enforce the recommendation of rfc 3530 14.2.19 that the server
746 * return an error if the client attempt to downgrade to a combination
747 * of share bits not explicable by closing some of its previous opens.
748 *
749 * XXX: This enforcement is actually incomplete, since we don't keep
750 * track of access/deny bit combinations; so, e.g., we allow:
751 *
752 * OPEN allow read, deny write
753 * OPEN allow both, deny none
754 * DOWNGRADE allow read, deny none
755 *
756 * which we should reject.
757 */
Jeff Layton5ae037e2012-05-11 09:45:11 -0400758static unsigned int
759bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400760 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -0400761 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400762
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400763 for (i = 1; i < 4; i++) {
764 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -0400765 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400766 }
Jeff Layton5ae037e2012-05-11 09:45:11 -0400767 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400768}
769
Jeff Layton82c5ff12012-05-11 09:45:13 -0400770/* set share access for a given stateid */
771static inline void
772set_access(u32 access, struct nfs4_ol_stateid *stp)
773{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400774 unsigned char mask = 1 << access;
775
776 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
777 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -0400778}
779
780/* clear share access for a given stateid */
781static inline void
782clear_access(u32 access, struct nfs4_ol_stateid *stp)
783{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400784 unsigned char mask = 1 << access;
785
786 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
787 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -0400788}
789
790/* test whether a given stateid has access */
791static inline bool
792test_access(u32 access, struct nfs4_ol_stateid *stp)
793{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400794 unsigned char mask = 1 << access;
795
796 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -0400797}
798
Jeff Laytonce0fc432012-05-11 09:45:14 -0400799/* set share deny for a given stateid */
800static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -0400801set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -0400802{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400803 unsigned char mask = 1 << deny;
804
805 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
806 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -0400807}
808
809/* clear share deny for a given stateid */
810static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -0400811clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -0400812{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400813 unsigned char mask = 1 << deny;
814
815 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
816 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -0400817}
818
819/* test whether a given stateid is denying specific access */
820static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -0400821test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -0400822{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400823 unsigned char mask = 1 << deny;
824
825 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400826}
827
828static int nfs4_access_to_omode(u32 access)
829{
J. Bruce Fields8f34a432010-09-02 15:23:16 -0400830 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400831 case NFS4_SHARE_ACCESS_READ:
832 return O_RDONLY;
833 case NFS4_SHARE_ACCESS_WRITE:
834 return O_WRONLY;
835 case NFS4_SHARE_ACCESS_BOTH:
836 return O_RDWR;
837 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -0500838 WARN_ON_ONCE(1);
839 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400840}
841
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400842/*
843 * A stateid that had a deny mode associated with it is being released
844 * or downgraded. Recalculate the deny mode on the file.
845 */
846static void
847recalculate_deny_mode(struct nfs4_file *fp)
848{
849 struct nfs4_ol_stateid *stp;
850
851 spin_lock(&fp->fi_lock);
852 fp->fi_share_deny = 0;
853 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
854 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
855 spin_unlock(&fp->fi_lock);
856}
857
858static void
859reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
860{
861 int i;
862 bool change = false;
863
864 for (i = 1; i < 4; i++) {
865 if ((i & deny) != i) {
866 change = true;
867 clear_deny(i, stp);
868 }
869 }
870
871 /* Recalculate per-file deny mode if there was a change */
872 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -0400873 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400874}
875
Jeff Layton82c5ff12012-05-11 09:45:13 -0400876/* release all access and file references for a given stateid */
877static void
878release_all_access(struct nfs4_ol_stateid *stp)
879{
880 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -0400881 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400882
883 if (fp && stp->st_deny_bmap != 0)
884 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -0400885
886 for (i = 1; i < 4; i++) {
887 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -0400888 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -0400889 clear_access(i, stp);
890 }
891}
892
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400893static void unhash_generic_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500894{
Trond Myklebust11b91642014-07-29 21:34:08 -0400895 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -0400896
Jeff Layton1c755dc2014-07-29 21:34:12 -0400897 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
898
Trond Myklebust1d31a252014-07-10 14:07:25 -0400899 spin_lock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500900 list_del(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -0400901 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500902 list_del(&stp->st_perstateowner);
903}
904
Trond Myklebust60116952014-07-29 21:34:06 -0400905static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500906{
Trond Myklebust60116952014-07-29 21:34:06 -0400907 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -0400908
Trond Myklebust60116952014-07-29 21:34:06 -0400909 release_all_access(stp);
Trond Myklebust60116952014-07-29 21:34:06 -0400910 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500911}
912
Jeff Laytonb49e0842014-07-29 21:34:11 -0400913static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500914{
Jeff Laytonb49e0842014-07-29 21:34:11 -0400915 struct nfs4_ol_stateid *stp = openlockstateid(stid);
916 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500917 struct file *file;
918
Jeff Laytonb49e0842014-07-29 21:34:11 -0400919 file = find_any_file(stp->st_stid.sc_file);
920 if (file)
921 filp_close(file, (fl_owner_t)lo);
922 nfs4_free_ol_stateid(stid);
923}
924
925static void __release_lock_stateid(struct nfs4_ol_stateid *stp)
926{
Jeff Layton1c755dc2014-07-29 21:34:12 -0400927 struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner);
928
929 spin_lock(&oo->oo_owner.so_client->cl_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400930 list_del(&stp->st_locks);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500931 unhash_generic_stateid(stp);
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400932 unhash_stid(&stp->st_stid);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400933 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400934 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500935}
936
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400937static void unhash_lockowner(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500938{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400939 struct nfs4_ol_stateid *stp;
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500940
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400941 list_del(&lo->lo_owner.so_strhash);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400942 while (!list_empty(&lo->lo_owner.so_stateids)) {
943 stp = list_first_entry(&lo->lo_owner.so_stateids,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400944 struct nfs4_ol_stateid, st_perstateowner);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400945 __release_lock_stateid(stp);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500946 }
947}
948
Trond Myklebust50cc6232014-04-18 14:44:03 -0400949static void nfs4_free_lockowner(struct nfs4_lockowner *lo)
950{
951 kfree(lo->lo_owner.so_owner.data);
952 kmem_cache_free(lockowner_slab, lo);
953}
954
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400955static void release_lockowner(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500956{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400957 unhash_lockowner(lo);
958 nfs4_free_lockowner(lo);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500959}
960
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400961static void release_lockowner_if_empty(struct nfs4_lockowner *lo)
962{
963 if (list_empty(&lo->lo_owner.so_stateids))
964 release_lockowner(lo);
965}
966
967static void release_lock_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500968{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400969 struct nfs4_lockowner *lo;
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500970
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400971 lo = lockowner(stp->st_stateowner);
972 __release_lock_stateid(stp);
973 release_lockowner_if_empty(lo);
974}
975
976static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp)
Jeff Layton1c755dc2014-07-29 21:34:12 -0400977 __releases(&open_stp->st_stateowner->so_client->cl_lock)
978 __acquires(&open_stp->st_stateowner->so_client->cl_lock)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400979{
980 struct nfs4_ol_stateid *stp;
981
982 while (!list_empty(&open_stp->st_locks)) {
983 stp = list_entry(open_stp->st_locks.next,
984 struct nfs4_ol_stateid, st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400985 spin_unlock(&open_stp->st_stateowner->so_client->cl_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400986 release_lock_stateid(stp);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400987 spin_lock(&open_stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500988 }
989}
990
J. Bruce Fields38c387b2011-09-16 17:42:48 -0400991static void unhash_open_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields22839632009-01-11 14:27:17 -0500992{
Jeff Layton1c755dc2014-07-29 21:34:12 -0400993 spin_lock(&stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields22839632009-01-11 14:27:17 -0500994 unhash_generic_stateid(stp);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400995 release_open_stateid_locks(stp);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400996 spin_unlock(&stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields38c387b2011-09-16 17:42:48 -0400997}
998
999static void release_open_stateid(struct nfs4_ol_stateid *stp)
1000{
1001 unhash_open_stateid(stp);
Trond Myklebust60116952014-07-29 21:34:06 -04001002 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields22839632009-01-11 14:27:17 -05001003}
1004
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001005static void unhash_openowner(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001006{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04001007 struct nfs4_ol_stateid *stp;
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001008
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001009 list_del(&oo->oo_owner.so_strhash);
1010 list_del(&oo->oo_perclient);
1011 while (!list_empty(&oo->oo_owner.so_stateids)) {
1012 stp = list_first_entry(&oo->oo_owner.so_stateids,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04001013 struct nfs4_ol_stateid, st_perstateowner);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001014 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001015 }
1016}
1017
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001018static void release_last_closed_stateid(struct nfs4_openowner *oo)
1019{
1020 struct nfs4_ol_stateid *s = oo->oo_last_closed_stid;
1021
1022 if (s) {
Trond Myklebust60116952014-07-29 21:34:06 -04001023 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001024 oo->oo_last_closed_stid = NULL;
1025 }
1026}
1027
Trond Myklebust50cc6232014-04-18 14:44:03 -04001028static void nfs4_free_openowner(struct nfs4_openowner *oo)
1029{
1030 kfree(oo->oo_owner.so_owner.data);
1031 kmem_cache_free(openowner_slab, oo);
1032}
1033
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001034static void release_openowner(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001035{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001036 unhash_openowner(oo);
1037 list_del(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001038 release_last_closed_stateid(oo);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001039 nfs4_free_openowner(oo);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001040}
1041
Marc Eshel5282fd72009-04-03 08:27:52 +03001042static inline int
1043hash_sessionid(struct nfs4_sessionid *sessionid)
1044{
1045 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1046
1047 return sid->sequence % SESSION_HASH_SIZE;
1048}
1049
Trond Myklebust8f199b82012-03-20 15:11:17 -04001050#ifdef NFSD_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001051static inline void
1052dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1053{
1054 u32 *ptr = (u32 *)(&sessionid->data[0]);
1055 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1056}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001057#else
1058static inline void
1059dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1060{
1061}
1062#endif
1063
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001064/*
1065 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1066 * won't be used for replay.
1067 */
1068void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1069{
1070 struct nfs4_stateowner *so = cstate->replay_owner;
1071
1072 if (nfserr == nfserr_replay_me)
1073 return;
1074
1075 if (!seqid_mutating_err(ntohl(nfserr))) {
1076 cstate->replay_owner = NULL;
1077 return;
1078 }
1079 if (!so)
1080 return;
1081 if (so->so_is_open_owner)
1082 release_last_closed_stateid(openowner(so));
1083 so->so_seqid++;
1084 return;
1085}
Marc Eshel5282fd72009-04-03 08:27:52 +03001086
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001087static void
1088gen_sessionid(struct nfsd4_session *ses)
1089{
1090 struct nfs4_client *clp = ses->se_client;
1091 struct nfsd4_sessionid *sid;
1092
1093 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1094 sid->clientid = clp->cl_clientid;
1095 sid->sequence = current_sessionid++;
1096 sid->reserved = 0;
1097}
1098
1099/*
Andy Adamsona6496372009-08-28 08:45:01 -04001100 * The protocol defines ca_maxresponssize_cached to include the size of
1101 * the rpc header, but all we need to cache is the data starting after
1102 * the end of the initial SEQUENCE operation--the rest we regenerate
1103 * each time. Therefore we can advertise a ca_maxresponssize_cached
1104 * value that is the number of bytes in our cache plus a few additional
1105 * bytes. In order to stay on the safe side, and not promise more than
1106 * we can cache, those additional bytes must be the minimum possible: 24
1107 * bytes of rpc header (xid through accept state, with AUTH_NULL
1108 * verifier), 12 for the compound header (with zero-length tag), and 44
1109 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001110 */
Andy Adamsona6496372009-08-28 08:45:01 -04001111#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1112
Andy Adamson557ce262009-08-28 08:45:04 -04001113static void
1114free_session_slots(struct nfsd4_session *ses)
1115{
1116 int i;
1117
1118 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
1119 kfree(ses->se_slots[i]);
1120}
1121
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001122/*
1123 * We don't actually need to cache the rpc and session headers, so we
1124 * can allocate a little less for each slot:
1125 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001126static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001127{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001128 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001129
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001130 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1131 size = 0;
1132 else
1133 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1134 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001135}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001136
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001137/*
1138 * XXX: If we run out of reserved DRC memory we could (up to a point)
1139 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001140 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001141 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001142static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001143{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001144 u32 slotsize = slot_bytes(ca);
1145 u32 num = ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001146 int avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001147
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001148 spin_lock(&nfsd_drc_lock);
Zhang Yanfei697ce9b2013-02-22 16:35:47 -08001149 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION,
1150 nfsd_drc_max_mem - nfsd_drc_mem_used);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001151 num = min_t(int, num, avail / slotsize);
1152 nfsd_drc_mem_used += num * slotsize;
1153 spin_unlock(&nfsd_drc_lock);
1154
1155 return num;
1156}
1157
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001158static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001159{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001160 int slotsize = slot_bytes(ca);
1161
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001162 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001163 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001164 spin_unlock(&nfsd_drc_lock);
1165}
1166
Kinglong Mee60810e52014-01-01 00:35:47 +08001167static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1168 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001169{
Kinglong Mee60810e52014-01-01 00:35:47 +08001170 int numslots = fattrs->maxreqs;
1171 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001172 struct nfsd4_session *new;
1173 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001174
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001175 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001176 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1177 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001178
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001179 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001180 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001181 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001182 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001183 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001184 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001185 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001186 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001187 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001188
1189 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1190 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1191
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001192 return new;
1193out_free:
1194 while (i--)
1195 kfree(new->se_slots[i]);
1196 kfree(new);
1197 return NULL;
1198}
1199
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001200static void free_conn(struct nfsd4_conn *c)
1201{
1202 svc_xprt_put(c->cn_xprt);
1203 kfree(c);
1204}
1205
1206static void nfsd4_conn_lost(struct svc_xpt_user *u)
1207{
1208 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1209 struct nfs4_client *clp = c->cn_session->se_client;
1210
1211 spin_lock(&clp->cl_lock);
1212 if (!list_empty(&c->cn_persession)) {
1213 list_del(&c->cn_persession);
1214 free_conn(c);
1215 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001216 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001217 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001218}
1219
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001220static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001221{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001222 struct nfsd4_conn *conn;
1223
1224 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1225 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001226 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001227 svc_xprt_get(rqstp->rq_xprt);
1228 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001229 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001230 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1231 return conn;
1232}
1233
J. Bruce Fields328ead22010-09-29 16:11:06 -04001234static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1235{
1236 conn->cn_session = ses;
1237 list_add(&conn->cn_persession, &ses->se_conns);
1238}
1239
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001240static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1241{
1242 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001243
1244 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001245 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001246 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001247}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001248
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001249static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001250{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001251 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001252 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001253}
1254
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001255static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001256{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001257 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001258
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001259 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001260 ret = nfsd4_register_conn(conn);
1261 if (ret)
1262 /* oops; xprt is already down: */
1263 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001264 /* We may have gained or lost a callback channel: */
1265 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001266}
1267
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001268static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001269{
1270 u32 dir = NFS4_CDFC4_FORE;
1271
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001272 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001273 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001274 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001275}
1276
1277/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001278static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001279{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001280 struct nfs4_client *clp = s->se_client;
1281 struct nfsd4_conn *c;
1282
1283 spin_lock(&clp->cl_lock);
1284 while (!list_empty(&s->se_conns)) {
1285 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1286 list_del_init(&c->cn_persession);
1287 spin_unlock(&clp->cl_lock);
1288
1289 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1290 free_conn(c);
1291
1292 spin_lock(&clp->cl_lock);
1293 }
1294 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001295}
1296
J. Bruce Fields1377b692012-09-11 21:42:40 -04001297static void __free_session(struct nfsd4_session *ses)
1298{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001299 free_session_slots(ses);
1300 kfree(ses);
1301}
1302
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001303static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001304{
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001305 struct nfsd_net *nn = net_generic(ses->se_client->net, nfsd_net_id);
1306
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001307 lockdep_assert_held(&nn->client_lock);
1308 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001309 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001310 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001311}
Andy Adamson557ce262009-08-28 08:45:04 -04001312
Fengguang Wu135ae822012-11-10 07:20:25 -05001313static void init_session(struct svc_rqst *rqstp, struct nfsd4_session *new, struct nfs4_client *clp, struct nfsd4_create_session *cses)
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001314{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001315 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001316 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001317
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001318 new->se_client = clp;
1319 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001320
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001321 INIT_LIST_HEAD(&new->se_conns);
1322
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001323 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001324 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001325 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001326 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001327 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001328 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001329 spin_lock(&nn->client_lock);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001330 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001331 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001332 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001333 spin_unlock(&clp->cl_lock);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001334 spin_unlock(&nn->client_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001335
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001336 if (cses->flags & SESSION4_BACK_CHAN) {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001337 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001338 /*
1339 * This is a little silly; with sessions there's no real
1340 * use for the callback address. Use the peer address
1341 * as a reasonable default for now, but consider fixing
1342 * the rpc client not to require an address in the
1343 * future:
1344 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001345 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1346 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001347 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001348}
1349
Benny Halevy9089f1b2010-05-12 00:12:26 +03001350/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001351static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001352__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001353{
1354 struct nfsd4_session *elem;
1355 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001356 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001357
1358 dump_sessionid(__func__, sessionid);
1359 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001360 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001361 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001362 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1363 NFS4_MAX_SESSIONID_LEN)) {
1364 return elem;
1365 }
1366 }
1367
1368 dprintk("%s: session not found\n", __func__);
1369 return NULL;
1370}
1371
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001372static struct nfsd4_session *
1373find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1374 __be32 *ret)
1375{
1376 struct nfsd4_session *session;
1377 __be32 status = nfserr_badsession;
1378
1379 session = __find_in_sessionid_hashtbl(sessionid, net);
1380 if (!session)
1381 goto out;
1382 status = nfsd4_get_session_locked(session);
1383 if (status)
1384 session = NULL;
1385out:
1386 *ret = status;
1387 return session;
1388}
1389
Benny Halevy9089f1b2010-05-12 00:12:26 +03001390/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001391static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001392unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001393{
1394 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001395 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001396 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001397 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1401static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001402STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001404 if (clid->cl_boot == nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +03001406 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001407 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return 1;
1409}
1410
1411/*
1412 * XXX Should we use a slab cache ?
1413 * This type of memory management is somewhat inefficient, but we use it
1414 * anyway since SETCLIENTID is not a common operation.
1415 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001416static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
1418 struct nfs4_client *clp;
1419
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001420 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1421 if (clp == NULL)
1422 return NULL;
Thomas Meyer67114fe2011-11-17 23:43:40 +01001423 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001424 if (clp->cl_name.data == NULL) {
1425 kfree(clp);
1426 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001428 clp->cl_name.len = name.len;
Trond Myklebust5694c932014-04-18 14:43:56 -04001429 INIT_LIST_HEAD(&clp->cl_sessions);
1430 idr_init(&clp->cl_stateids);
1431 atomic_set(&clp->cl_refcount, 0);
1432 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1433 INIT_LIST_HEAD(&clp->cl_idhash);
1434 INIT_LIST_HEAD(&clp->cl_openowners);
1435 INIT_LIST_HEAD(&clp->cl_delegations);
1436 INIT_LIST_HEAD(&clp->cl_lru);
1437 INIT_LIST_HEAD(&clp->cl_callbacks);
1438 INIT_LIST_HEAD(&clp->cl_revoked);
1439 spin_lock_init(&clp->cl_lock);
1440 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return clp;
1442}
1443
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001444static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445free_client(struct nfs4_client *clp)
1446{
Stanislav Kinsburskybca0ec62013-01-09 12:38:34 +03001447 struct nfsd_net __maybe_unused *nn = net_generic(clp->net, nfsd_net_id);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001448
1449 lockdep_assert_held(&nn->client_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001450 while (!list_empty(&clp->cl_sessions)) {
1451 struct nfsd4_session *ses;
1452 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1453 se_perclnt);
1454 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001455 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1456 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001457 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04001458 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001459 free_svc_cred(&clp->cl_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 kfree(clp->cl_name.data);
majianpeng2d32b292013-01-29 13:16:06 +08001461 idr_destroy(&clp->cl_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 kfree(clp);
1463}
1464
Benny Halevy84d38ac2010-05-12 00:13:16 +03001465/* must be called under the client_lock */
1466static inline void
1467unhash_client_locked(struct nfs4_client *clp)
1468{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001469 struct nfsd4_session *ses;
1470
Benny Halevy84d38ac2010-05-12 00:13:16 +03001471 list_del(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001472 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001473 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1474 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001475 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001476}
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478static void
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001479destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001481 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct list_head reaplist;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001484 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04001487 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07001488 while (!list_empty(&clp->cl_delegations)) {
1489 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton42690672014-07-25 07:34:20 -04001490 unhash_delegation_locked(dp);
1491 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
Benny Halevycdc97502014-05-30 09:09:30 -04001493 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 while (!list_empty(&reaplist)) {
1495 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04001496 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001497 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04001499 while (!list_empty(&clp->cl_revoked)) {
Benny Halevy956c4fe2013-10-29 11:39:12 +02001500 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001501 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001502 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02001503 }
NeilBrownea1da632005-06-23 22:04:17 -07001504 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001505 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
1506 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001508 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05001509 if (clp->cl_cb_conn.cb_xprt)
1510 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001511 list_del(&clp->cl_idhash);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001512 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001513 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001514 else
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001515 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001516 spin_lock(&nn->client_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001517 unhash_client_locked(clp);
J. Bruce Fields221a6872013-04-01 22:23:49 -04001518 WARN_ON_ONCE(atomic_read(&clp->cl_refcount));
1519 free_client(clp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001520 spin_unlock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001523static void expire_client(struct nfs4_client *clp)
1524{
1525 nfsd4_client_record_remove(clp);
1526 destroy_client(clp);
1527}
1528
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001529static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1530{
1531 memcpy(target->cl_verifier.data, source->data,
1532 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001535static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1536{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1538 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1539}
1540
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001541static int copy_cred(struct svc_cred *target, struct svc_cred *source)
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001542{
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001543 if (source->cr_principal) {
1544 target->cr_principal =
1545 kstrdup(source->cr_principal, GFP_KERNEL);
1546 if (target->cr_principal == NULL)
1547 return -ENOMEM;
1548 } else
1549 target->cr_principal = NULL;
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04001550 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 target->cr_uid = source->cr_uid;
1552 target->cr_gid = source->cr_gid;
1553 target->cr_group_info = source->cr_group_info;
1554 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04001555 target->cr_gss_mech = source->cr_gss_mech;
1556 if (source->cr_gss_mech)
1557 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001561static long long
1562compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
1563{
1564 long long res;
1565
1566 res = o1->len - o2->len;
1567 if (res)
1568 return res;
1569 return (long long)memcmp(o1->data, o2->data, o1->len);
1570}
1571
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001572static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001573{
NeilBrowna55370a2005-06-23 22:03:52 -07001574 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
1577static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001578same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1579{
1580 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001584same_clid(clientid_t *cl1, clientid_t *cl2)
1585{
1586 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001589static bool groups_equal(struct group_info *g1, struct group_info *g2)
1590{
1591 int i;
1592
1593 if (g1->ngroups != g2->ngroups)
1594 return false;
1595 for (i=0; i<g1->ngroups; i++)
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001596 if (!gid_eq(GROUP_AT(g1, i), GROUP_AT(g2, i)))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001597 return false;
1598 return true;
1599}
1600
J. Bruce Fields68eb3502012-08-21 12:48:30 -04001601/*
1602 * RFC 3530 language requires clid_inuse be returned when the
1603 * "principal" associated with a requests differs from that previously
1604 * used. We use uid, gid's, and gss principal string as our best
1605 * approximation. We also don't want to allow non-gss use of a client
1606 * established using gss: in theory cr_principal should catch that
1607 * change, but in practice cr_principal can be null even in the gss case
1608 * since gssd doesn't always pass down a principal string.
1609 */
1610static bool is_gss_cred(struct svc_cred *cr)
1611{
1612 /* Is cr_flavor one of the gss "pseudoflavors"?: */
1613 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
1614}
1615
1616
Vivek Trivedi5559b502012-07-24 21:18:20 +05301617static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001618same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1619{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04001620 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001621 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
1622 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001623 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
1624 return false;
1625 if (cr1->cr_principal == cr2->cr_principal)
1626 return true;
1627 if (!cr1->cr_principal || !cr2->cr_principal)
1628 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05301629 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
J. Bruce Fields57266a62013-04-13 14:27:29 -04001632static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
1633{
1634 struct svc_cred *cr = &rqstp->rq_cred;
1635 u32 service;
1636
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04001637 if (!cr->cr_gss_mech)
1638 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04001639 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
1640 return service == RPC_GSS_SVC_INTEGRITY ||
1641 service == RPC_GSS_SVC_PRIVACY;
1642}
1643
1644static bool mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
1645{
1646 struct svc_cred *cr = &rqstp->rq_cred;
1647
1648 if (!cl->cl_mach_cred)
1649 return true;
1650 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
1651 return false;
1652 if (!svc_rqst_integrity_protected(rqstp))
1653 return false;
1654 if (!cr->cr_principal)
1655 return false;
1656 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
1657}
1658
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001659static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fields5ec7b462007-11-21 21:58:56 -05001660{
1661 static u32 current_clientid = 1;
1662
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001663 clp->cl_clientid.cl_boot = nn->boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 clp->cl_clientid.cl_id = current_clientid++;
1665}
1666
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001667static void gen_confirm(struct nfs4_client *clp)
1668{
Chuck Leverab4684d2012-03-02 17:13:50 -05001669 __be32 verf[2];
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001670 static u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Jeff Laytonf4199922014-06-17 07:44:11 -04001672 /*
1673 * This is opaque to client, so no need to byte-swap. Use
1674 * __force to keep sparse happy
1675 */
1676 verf[0] = (__force __be32)get_seconds();
1677 verf[1] = (__force __be32)i++;
Chuck Leverab4684d2012-03-02 17:13:50 -05001678 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Jeff Layton4770d722014-07-29 21:34:10 -04001681static struct nfs4_stid *
1682find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04001683{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05001684 struct nfs4_stid *ret;
1685
1686 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
1687 if (!ret || !ret->sc_type)
1688 return NULL;
1689 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04001690}
1691
Jeff Layton4770d722014-07-29 21:34:10 -04001692static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04001693find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04001694{
1695 struct nfs4_stid *s;
1696
Jeff Layton4770d722014-07-29 21:34:10 -04001697 spin_lock(&cl->cl_lock);
1698 s = find_stateid_locked(cl, t);
1699 if (s != NULL && !(typemask & s->sc_type))
1700 s = NULL;
1701 spin_unlock(&cl->cl_lock);
1702 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04001703}
1704
Jeff Layton2216d442012-11-12 15:00:57 -05001705static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001706 struct svc_rqst *rqstp, nfs4_verifier *verf)
1707{
1708 struct nfs4_client *clp;
1709 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001710 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001711 struct net *net = SVC_NET(rqstp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001712 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001713
1714 clp = alloc_client(name);
1715 if (clp == NULL)
1716 return NULL;
1717
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001718 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1719 if (ret) {
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001720 spin_lock(&nn->client_lock);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001721 free_client(clp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001722 spin_unlock(&nn->client_lock);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001723 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001724 }
Jeff Layton02e12152014-07-16 10:31:57 -04001725 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_run_cb_null);
Benny Halevy07cd4902010-05-12 00:13:41 +03001726 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001727 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001728 copy_verf(clp, verf);
1729 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001730 gen_confirm(clp);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001731 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001732 clp->net = net;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001733 return clp;
1734}
1735
NeilBrownfd39ca92005-06-23 22:04:03 -07001736static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001737add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
1738{
1739 struct rb_node **new = &(root->rb_node), *parent = NULL;
1740 struct nfs4_client *clp;
1741
1742 while (*new) {
1743 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
1744 parent = *new;
1745
1746 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
1747 new = &((*new)->rb_left);
1748 else
1749 new = &((*new)->rb_right);
1750 }
1751
1752 rb_link_node(&new_clp->cl_namenode, parent, new);
1753 rb_insert_color(&new_clp->cl_namenode, root);
1754}
1755
1756static struct nfs4_client *
1757find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
1758{
1759 long long cmp;
1760 struct rb_node *node = root->rb_node;
1761 struct nfs4_client *clp;
1762
1763 while (node) {
1764 clp = rb_entry(node, struct nfs4_client, cl_namenode);
1765 cmp = compare_blob(&clp->cl_name, name);
1766 if (cmp > 0)
1767 node = node->rb_left;
1768 else if (cmp < 0)
1769 node = node->rb_right;
1770 else
1771 return clp;
1772 }
1773 return NULL;
1774}
1775
1776static void
1777add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001780 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001782 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001783 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001785 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Benny Halevy36acb662010-05-12 00:13:04 +03001786 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
NeilBrownfd39ca92005-06-23 22:04:03 -07001789static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790move_to_confirmed(struct nfs4_client *clp)
1791{
1792 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03001793 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03001796 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001797 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001798 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001799 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 renew_client(clp);
1801}
1802
1803static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001804find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
1806 struct nfs4_client *clp;
1807 unsigned int idhashval = clientid_hashval(clid->cl_id);
1808
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001809 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001810 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04001811 if ((bool)clp->cl_minorversion != sessions)
1812 return NULL;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001813 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
1817 return NULL;
1818}
1819
1820static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001821find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
1822{
1823 struct list_head *tbl = nn->conf_id_hashtbl;
1824
1825 return find_client_in_id_table(tbl, clid, sessions);
1826}
1827
1828static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001829find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001831 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001833 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001836static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001837{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001838 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001839}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001840
NeilBrown28ce6052005-06-23 22:03:56 -07001841static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001842find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07001843{
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001844 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07001845}
1846
1847static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001848find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07001849{
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001850 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07001851}
1852
NeilBrownfd39ca92005-06-23 22:04:03 -07001853static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001854gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
J. Bruce Fields07263f12010-05-31 19:09:40 -04001856 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001857 struct sockaddr *sa = svc_addr(rqstp);
1858 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04001859 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Jeff Layton7077ecb2009-08-14 12:57:58 -04001861 /* Currently, we only support tcp and tcp6 for the callback channel */
1862 if (se->se_callback_netid_len == 3 &&
1863 !memcmp(se->se_callback_netid_val, "tcp", 3))
1864 expected_family = AF_INET;
1865 else if (se->se_callback_netid_len == 4 &&
1866 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1867 expected_family = AF_INET6;
1868 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 goto out_err;
1870
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001871 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001872 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04001873 (struct sockaddr *)&conn->cb_addr,
1874 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001875
J. Bruce Fields07263f12010-05-31 19:09:40 -04001876 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001878
J. Bruce Fields07263f12010-05-31 19:09:40 -04001879 if (conn->cb_addr.ss_family == AF_INET6)
1880 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04001881
J. Bruce Fields07263f12010-05-31 19:09:40 -04001882 conn->cb_prog = se->se_callback_prog;
1883 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08001884 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return;
1886out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04001887 conn->cb_addr.ss_family = AF_UNSPEC;
1888 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07001889 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 "will not receive delegations\n",
1891 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return;
1894}
1895
Andy Adamson074fe892009-04-03 08:28:15 +03001896/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04001897 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03001898 */
Trond Myklebustb6076642014-06-30 11:48:35 -04001899static void
Andy Adamson074fe892009-04-03 08:28:15 +03001900nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1901{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001902 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04001903 struct nfsd4_slot *slot = resp->cstate.slot;
1904 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03001905
Andy Adamson557ce262009-08-28 08:45:04 -04001906 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001907
Andy Adamson557ce262009-08-28 08:45:04 -04001908 slot->sl_opcnt = resp->opcnt;
1909 slot->sl_status = resp->cstate.status;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001910
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05001911 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001912 if (nfsd4_not_cached(resp)) {
Andy Adamson557ce262009-08-28 08:45:04 -04001913 slot->sl_datalen = 0;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001914 return;
1915 }
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001916 base = resp->cstate.data_offset;
1917 slot->sl_datalen = buf->len - base;
1918 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Andy Adamson557ce262009-08-28 08:45:04 -04001919 WARN("%s: sessions DRC could not cache compound\n", __func__);
1920 return;
Andy Adamson074fe892009-04-03 08:28:15 +03001921}
1922
1923/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04001924 * Encode the replay sequence operation from the slot values.
1925 * If cachethis is FALSE encode the uncached rep error on the next
1926 * operation which sets resp->p and increments resp->opcnt for
1927 * nfs4svc_encode_compoundres.
1928 *
Andy Adamson074fe892009-04-03 08:28:15 +03001929 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04001930static __be32
1931nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1932 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03001933{
Andy Adamsonabfabf82009-07-23 19:02:18 -04001934 struct nfsd4_op *op;
1935 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001936
Andy Adamsonabfabf82009-07-23 19:02:18 -04001937 /* Encode the replayed sequence operation */
1938 op = &args->ops[resp->opcnt - 1];
1939 nfsd4_encode_operation(resp, op);
1940
1941 /* Return nfserr_retry_uncached_rep in next operation. */
J. Bruce Fields73e79482012-02-13 16:39:00 -05001942 if (args->opcnt > 1 && !(slot->sl_flags & NFSD4_SLOT_CACHETHIS)) {
Andy Adamsonabfabf82009-07-23 19:02:18 -04001943 op = &args->ops[resp->opcnt++];
1944 op->status = nfserr_retry_uncached_rep;
1945 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03001946 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04001947 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03001948}
1949
1950/*
Andy Adamson557ce262009-08-28 08:45:04 -04001951 * The sequence operation is not cached because we can use the slot and
1952 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03001953 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04001954static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001955nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1956 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001957{
Andy Adamson557ce262009-08-28 08:45:04 -04001958 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001959 struct xdr_stream *xdr = &resp->xdr;
1960 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03001961 __be32 status;
1962
Andy Adamson557ce262009-08-28 08:45:04 -04001963 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001964
Andy Adamsonabfabf82009-07-23 19:02:18 -04001965 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04001966 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04001967 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03001968
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001969 p = xdr_reserve_space(xdr, slot->sl_datalen);
1970 if (!p) {
1971 WARN_ON_ONCE(1);
1972 return nfserr_serverfault;
1973 }
1974 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
1975 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03001976
Andy Adamson557ce262009-08-28 08:45:04 -04001977 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001978 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03001979}
1980
Andy Adamson0733d212009-04-03 08:28:01 +03001981/*
1982 * Set the exchange_id flags returned by the server.
1983 */
1984static void
1985nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1986{
1987 /* pNFS is not supported */
1988 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1989
1990 /* Referrals are supported, Migration is not. */
1991 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1992
1993 /* set the wire flags to return to client. */
1994 clid->flags = new->cl_exchange_flags;
1995}
1996
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04001997static bool client_has_state(struct nfs4_client *clp)
1998{
1999 /*
2000 * Note clp->cl_openowners check isn't quite right: there's no
2001 * need to count owners without stateid's.
2002 *
2003 * Also note we should probably be using this in 4.0 case too.
2004 */
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002005 return !list_empty(&clp->cl_openowners)
2006 || !list_empty(&clp->cl_delegations)
2007 || !list_empty(&clp->cl_sessions);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002008}
2009
Al Virob37ad282006-10-19 23:28:59 -07002010__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03002011nfsd4_exchange_id(struct svc_rqst *rqstp,
2012 struct nfsd4_compound_state *cstate,
2013 struct nfsd4_exchange_id *exid)
2014{
Andy Adamson0733d212009-04-03 08:28:01 +03002015 struct nfs4_client *unconf, *conf, *new;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002016 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04002017 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03002018 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04002019 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002020 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002021 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03002022
Jeff Layton363168b2009-08-14 12:57:56 -04002023 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03002024 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04002025 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03002026 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04002027 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03002028
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002029 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03002030 return nfserr_inval;
2031
Andy Adamson0733d212009-04-03 08:28:01 +03002032 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002033 case SP4_MACH_CRED:
2034 if (!svc_rqst_integrity_protected(rqstp))
2035 return nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002036 case SP4_NONE:
2037 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05002038 default: /* checked by xdr code */
2039 WARN_ON_ONCE(1);
Andy Adamson0733d212009-04-03 08:28:01 +03002040 case SP4_SSV:
J. Bruce Fieldsdd303332013-04-12 18:10:56 -04002041 return nfserr_encr_alg_unsupp;
Andy Adamson0733d212009-04-03 08:28:01 +03002042 }
2043
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002044 /* Cases below refer to rfc 5661 section 18.35.4: */
Andy Adamson0733d212009-04-03 08:28:01 +03002045 nfs4_lock_state();
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002046 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03002047 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002048 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
2049 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
2050
J. Bruce Fields136e6582012-05-12 20:37:23 -04002051 if (update) {
2052 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002053 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002054 goto out;
2055 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002056 if (!mach_creds_match(conf, rqstp)) {
2057 status = nfserr_wrong_cred;
2058 goto out;
2059 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002060 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03002061 status = nfserr_perm;
2062 goto out;
2063 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002064 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03002065 status = nfserr_not_same;
2066 goto out;
2067 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002068 /* case 6 */
2069 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
2070 new = conf;
2071 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03002072 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002073 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002074 if (client_has_state(conf)) {
2075 status = nfserr_clid_inuse;
2076 goto out;
2077 }
Andy Adamson0733d212009-04-03 08:28:01 +03002078 expire_client(conf);
2079 goto out_new;
2080 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002081 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04002082 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002083 new = conf;
2084 goto out_copy;
2085 }
2086 /* case 5, client reboot */
J. Bruce Fields136e6582012-05-12 20:37:23 -04002087 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002088 }
2089
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002090 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002091 status = nfserr_noent;
2092 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03002093 }
2094
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002095 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002096 if (unconf) /* case 4, possible retry or client restart */
Andy Adamson0733d212009-04-03 08:28:01 +03002097 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002098
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002099 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03002100out_new:
Jeff Layton2216d442012-11-12 15:00:57 -05002101 new = create_client(exid->clname, rqstp, &verf);
Andy Adamson0733d212009-04-03 08:28:01 +03002102 if (new == NULL) {
J. Bruce Fields47310302010-06-22 16:17:12 -04002103 status = nfserr_jukebox;
Andy Adamson0733d212009-04-03 08:28:01 +03002104 goto out;
2105 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04002106 new->cl_minorversion = cstate->minorversion;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002107 new->cl_mach_cred = (exid->spa_how == SP4_MACH_CRED);
Andy Adamson0733d212009-04-03 08:28:01 +03002108
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002109 gen_clid(new, nn);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002110 add_to_unconfirmed(new);
Andy Adamson0733d212009-04-03 08:28:01 +03002111out_copy:
2112 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
2113 exid->clientid.cl_id = new->cl_clientid.cl_id;
2114
J. Bruce Fields778df3f2012-05-25 21:40:23 -04002115 exid->seqid = new->cl_cs_slot.sl_seqid + 1;
Andy Adamson0733d212009-04-03 08:28:01 +03002116 nfsd4_set_ex_flags(new, exid);
2117
2118 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04002119 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03002120 status = nfs_ok;
2121
2122out:
2123 nfs4_unlock_state();
Andy Adamson0733d212009-04-03 08:28:01 +03002124 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002125}
2126
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002127static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04002128check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002129{
Andy Adamson88e588d2009-07-23 19:02:15 -04002130 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
2131 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002132
2133 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04002134 if (slot_inuse) {
2135 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002136 return nfserr_jukebox;
2137 else
2138 return nfserr_seq_misordered;
2139 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05002140 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04002141 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03002142 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04002143 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002144 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002145 return nfserr_seq_misordered;
2146}
2147
Andy Adamson49557cc2009-07-23 19:02:16 -04002148/*
2149 * Cache the create session result into the create session single DRC
2150 * slot cache by saving the xdr structure. sl_seqid has been set.
2151 * Do this for solo or embedded create session operations.
2152 */
2153static void
2154nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002155 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04002156{
2157 slot->sl_status = nfserr;
2158 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
2159}
2160
2161static __be32
2162nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
2163 struct nfsd4_clid_slot *slot)
2164{
2165 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
2166 return slot->sl_status;
2167}
2168
Mi Jinlong1b74c252011-07-14 14:50:17 +08002169#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2170 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2171 1 + /* MIN tag is length with zero, only length */ \
2172 3 + /* version, opcount, opcode */ \
2173 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2174 /* seqid, slotID, slotID, cache */ \
2175 4 ) * sizeof(__be32))
2176
2177#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2178 2 + /* verifier: AUTH_NULL, length 0 */\
2179 1 + /* status */ \
2180 1 + /* MIN tag is length with zero, only length */ \
2181 3 + /* opcount, opcode, opstatus*/ \
2182 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2183 /* seqid, slotID, slotID, slotID, status */ \
2184 5 ) * sizeof(__be32))
2185
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002186static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08002187{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002188 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
2189
J. Bruce Fields373cd402013-04-08 15:42:12 -04002190 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
2191 return nfserr_toosmall;
2192 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
2193 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002194 ca->headerpadsz = 0;
2195 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
2196 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
2197 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
2198 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
2199 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
2200 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
2201 /*
2202 * Note decreasing slot size below client's request may make it
2203 * difficult for client to function correctly, whereas
2204 * decreasing the number of slots will (just?) affect
2205 * performance. When short on memory we therefore prefer to
2206 * decrease number of slots instead of their size. Clients that
2207 * request larger slots than they need will get poor results:
2208 */
2209 ca->maxreqs = nfsd4_get_drc_mem(ca);
2210 if (!ca->maxreqs)
2211 return nfserr_jukebox;
2212
J. Bruce Fields373cd402013-04-08 15:42:12 -04002213 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08002214}
2215
Kinglong Mee8a891632013-12-23 18:11:02 +08002216#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
2217 RPC_MAX_HEADER_WITH_AUTH) * sizeof(__be32))
2218#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
2219 RPC_MAX_REPHEADER_WITH_AUTH) * sizeof(__be32))
2220
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002221static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
2222{
2223 ca->headerpadsz = 0;
2224
2225 /*
2226 * These RPC_MAX_HEADER macros are overkill, especially since we
2227 * don't even do gss on the backchannel yet. But this is still
2228 * less than 1k. Tighten up this estimate in the unlikely event
2229 * it turns out to be a problem for some client:
2230 */
Kinglong Mee8a891632013-12-23 18:11:02 +08002231 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002232 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08002233 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002234 return nfserr_toosmall;
2235 ca->maxresp_cached = 0;
2236 if (ca->maxops < 2)
2237 return nfserr_toosmall;
2238
2239 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002240}
2241
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002242static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
2243{
2244 switch (cbs->flavor) {
2245 case RPC_AUTH_NULL:
2246 case RPC_AUTH_UNIX:
2247 return nfs_ok;
2248 default:
2249 /*
2250 * GSS case: the spec doesn't allow us to return this
2251 * error. But it also doesn't allow us not to support
2252 * GSS.
2253 * I'd rather this fail hard than return some error the
2254 * client might think it can already handle:
2255 */
2256 return nfserr_encr_alg_unsupp;
2257 }
2258}
2259
Andy Adamson069b6ad2009-04-03 08:27:58 +03002260__be32
2261nfsd4_create_session(struct svc_rqst *rqstp,
2262 struct nfsd4_compound_state *cstate,
2263 struct nfsd4_create_session *cr_ses)
2264{
Jeff Layton363168b2009-08-14 12:57:56 -04002265 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002266 struct nfs4_client *conf, *unconf;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002267 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002268 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002269 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002270 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002271 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002272
Mi Jinlonga62573d2011-03-23 17:57:07 +08002273 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
2274 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002275 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
2276 if (status)
2277 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002278 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04002279 if (status)
2280 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002281 status = check_backchannel_attrs(&cr_ses->back_channel);
2282 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08002283 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002284 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08002285 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002286 if (!new)
2287 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002288 conn = alloc_conn_from_crses(rqstp, cr_ses);
2289 if (!conn)
2290 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08002291
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002292 nfs4_lock_state();
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002293 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002294 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002295 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002296
2297 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002298 status = nfserr_wrong_cred;
2299 if (!mach_creds_match(conf, rqstp))
2300 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002301 cs_slot = &conf->cl_cs_slot;
2302 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002303 if (status == nfserr_replay_cache) {
Andy Adamson49557cc2009-07-23 19:02:16 -04002304 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002305 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002306 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002307 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002308 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002309 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002310 } else if (unconf) {
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002311 struct nfs4_client *old;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002312 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04002313 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002314 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002315 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002316 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002317 status = nfserr_wrong_cred;
2318 if (!mach_creds_match(unconf, rqstp))
2319 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002320 cs_slot = &unconf->cl_cs_slot;
2321 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002322 if (status) {
2323 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002324 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002325 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002326 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002327 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002328 if (old) {
2329 status = mark_client_expired(old);
2330 if (status)
2331 goto out_free_conn;
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002332 expire_client(old);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002333 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002334 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002335 conf = unconf;
2336 } else {
2337 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002338 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002339 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002340 status = nfs_ok;
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002341 /*
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002342 * We do not support RDMA or persistent sessions
2343 */
2344 cr_ses->flags &= ~SESSION4_PERSIST;
2345 cr_ses->flags &= ~SESSION4_RDMA;
2346
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002347 init_session(rqstp, new, conf, cr_ses);
2348 nfsd4_init_conn(rqstp, conn, new);
2349
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002350 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002351 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04002352 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04002353 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002354
Andy Adamson49557cc2009-07-23 19:02:16 -04002355 /* cache solo and embedded create sessions under the state lock */
2356 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002357 nfs4_unlock_state();
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002358 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002359out_free_conn:
Yanchuan Nian266533c2012-12-24 18:11:45 +08002360 nfs4_unlock_state();
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002361 free_conn(conn);
2362out_free_session:
2363 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002364out_release_drc_mem:
2365 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04002366 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002367}
2368
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002369static __be32 nfsd4_map_bcts_dir(u32 *dir)
2370{
2371 switch (*dir) {
2372 case NFS4_CDFC4_FORE:
2373 case NFS4_CDFC4_BACK:
2374 return nfs_ok;
2375 case NFS4_CDFC4_FORE_OR_BOTH:
2376 case NFS4_CDFC4_BACK_OR_BOTH:
2377 *dir = NFS4_CDFC4_BOTH;
2378 return nfs_ok;
2379 };
2380 return nfserr_inval;
2381}
2382
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002383__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
2384{
2385 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002386 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002387 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002388
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002389 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2390 if (status)
2391 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002392 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002393 session->se_cb_prog = bc->bc_cb_program;
2394 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002395 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002396
2397 nfsd4_probe_callback(session->se_client);
2398
2399 return nfs_ok;
2400}
2401
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002402__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2403 struct nfsd4_compound_state *cstate,
2404 struct nfsd4_bind_conn_to_session *bcts)
2405{
2406 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002407 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002408 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002409 struct net *net = SVC_NET(rqstp);
2410 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002411
2412 if (!nfsd4_last_compound_op(rqstp))
2413 return nfserr_not_only_op;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002414 nfs4_lock_state();
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002415 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002416 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002417 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002418 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002419 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002420 status = nfserr_wrong_cred;
2421 if (!mach_creds_match(session->se_client, rqstp))
2422 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002423 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002424 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002425 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002426 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002427 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002428 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002429 goto out;
2430 nfsd4_init_conn(rqstp, conn, session);
2431 status = nfs_ok;
2432out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002433 nfsd4_put_session(session);
2434out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002435 nfs4_unlock_state();
2436 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002437}
2438
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002439static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2440{
2441 if (!session)
2442 return 0;
2443 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2444}
2445
Andy Adamson069b6ad2009-04-03 08:27:58 +03002446__be32
2447nfsd4_destroy_session(struct svc_rqst *r,
2448 struct nfsd4_compound_state *cstate,
2449 struct nfsd4_destroy_session *sessionid)
2450{
Benny Halevye10e0cf2009-04-03 08:28:38 +03002451 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002452 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002453 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002454 struct net *net = SVC_NET(r);
2455 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002456
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002457 nfs4_lock_state();
2458 status = nfserr_not_only_op;
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002459 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04002460 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002461 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002462 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04002463 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03002464 dump_sessionid(__func__, &sessionid->sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002465 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002466 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002467 if (!ses)
2468 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002469 status = nfserr_wrong_cred;
2470 if (!mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002471 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002472 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002473 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002474 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03002475 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002476 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002477
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05002478 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04002479
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002480 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002481 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002482out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002483 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002484out_client_lock:
2485 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002486out:
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002487 nfs4_unlock_state();
Benny Halevye10e0cf2009-04-03 08:28:38 +03002488 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002489}
2490
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002491static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002492{
2493 struct nfsd4_conn *c;
2494
2495 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002496 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04002497 return c;
2498 }
2499 }
2500 return NULL;
2501}
2502
J. Bruce Fields57266a62013-04-13 14:27:29 -04002503static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002504{
2505 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002506 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002507 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002508 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002509
2510 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002511 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002512 if (c)
2513 goto out_free;
2514 status = nfserr_conn_not_bound_to_session;
2515 if (clp->cl_mach_cred)
2516 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002517 __nfsd4_hash_conn(new, ses);
2518 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002519 ret = nfsd4_register_conn(new);
2520 if (ret)
2521 /* oops; xprt is already down: */
2522 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002523 return nfs_ok;
2524out_free:
2525 spin_unlock(&clp->cl_lock);
2526 free_conn(new);
2527 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002528}
2529
Mi Jinlong868b89c2011-04-27 09:09:58 +08002530static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
2531{
2532 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2533
2534 return args->opcnt > session->se_fchannel.maxops;
2535}
2536
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002537static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
2538 struct nfsd4_session *session)
2539{
2540 struct xdr_buf *xb = &rqstp->rq_arg;
2541
2542 return xb->len > session->se_fchannel.maxreq_sz;
2543}
2544
Andy Adamson069b6ad2009-04-03 08:27:58 +03002545__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03002546nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002547 struct nfsd4_compound_state *cstate,
2548 struct nfsd4_sequence *seq)
2549{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03002550 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002551 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002552 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002553 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002554 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002555 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002556 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002557 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002558 struct net *net = SVC_NET(rqstp);
2559 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002560
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03002561 if (resp->opcnt != 1)
2562 return nfserr_sequence_pos;
2563
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002564 /*
2565 * Will be either used or freed by nfsd4_sequence_check_conn
2566 * below.
2567 */
2568 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
2569 if (!conn)
2570 return nfserr_jukebox;
2571
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002572 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002573 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002574 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04002575 goto out_no_session;
2576 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002577
Mi Jinlong868b89c2011-04-27 09:09:58 +08002578 status = nfserr_too_many_ops;
2579 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002580 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08002581
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002582 status = nfserr_req_too_big;
2583 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002584 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002585
Benny Halevyb85d4c02009-04-03 08:28:08 +03002586 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03002587 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002588 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002589
Andy Adamson557ce262009-08-28 08:45:04 -04002590 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03002591 dprintk("%s: slotid %d\n", __func__, seq->slotid);
2592
Andy Adamsona8dfdae2009-08-28 08:45:02 -04002593 /* We do not negotiate the number of slots yet, so set the
2594 * maxslots to the session maxreqs which is used to encode
2595 * sr_highest_slotid and the sr_target_slot id to maxslots */
2596 seq->maxslots = session->se_fchannel.maxreqs;
2597
J. Bruce Fields73e79482012-02-13 16:39:00 -05002598 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
2599 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002600 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002601 status = nfserr_seq_misordered;
2602 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002603 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002604 cstate->slot = slot;
2605 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04002606 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03002607 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04002608 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03002609 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03002610 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03002611 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002612 }
2613 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002614 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002615
J. Bruce Fields57266a62013-04-13 14:27:29 -04002616 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002617 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002618 if (status)
2619 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002620
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002621 buflen = (seq->cachethis) ?
2622 session->se_fchannel.maxresp_cached :
2623 session->se_fchannel.maxresp_sz;
2624 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
2625 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002626 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002627 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04002628 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002629
2630 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002631 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03002632 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002633 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05002634 if (seq->cachethis)
2635 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002636 else
2637 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002638
2639 cstate->slot = slot;
2640 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04002641 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002642
Benny Halevyb85d4c02009-04-03 08:28:08 +03002643out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04002644 switch (clp->cl_cb_state) {
2645 case NFSD4_CB_DOWN:
2646 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
2647 break;
2648 case NFSD4_CB_FAULT:
2649 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
2650 break;
2651 default:
2652 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03002653 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04002654 if (!list_empty(&clp->cl_revoked))
2655 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002656out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08002657 if (conn)
2658 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002659 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002660 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002661out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002662 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002663 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002664}
2665
Trond Myklebustb6076642014-06-30 11:48:35 -04002666void
2667nfsd4_sequence_done(struct nfsd4_compoundres *resp)
2668{
2669 struct nfsd4_compound_state *cs = &resp->cstate;
2670
2671 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04002672 if (cs->status != nfserr_replay_cache) {
2673 nfsd4_store_cache_entry(resp);
2674 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
2675 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002676 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04002677 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04002678 } else if (cs->clp)
2679 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04002680}
2681
Mi Jinlong345c2842011-10-20 17:51:39 +08002682__be32
2683nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
2684{
2685 struct nfs4_client *conf, *unconf, *clp;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002686 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002687 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08002688
2689 nfs4_lock_state();
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002690 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002691 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002692 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08002693
2694 if (conf) {
2695 clp = conf;
2696
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04002697 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08002698 status = nfserr_clientid_busy;
2699 goto out;
2700 }
2701 } else if (unconf)
2702 clp = unconf;
2703 else {
2704 status = nfserr_stale_clientid;
2705 goto out;
2706 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002707 if (!mach_creds_match(clp, rqstp)) {
2708 status = nfserr_wrong_cred;
2709 goto out;
2710 }
Mi Jinlong345c2842011-10-20 17:51:39 +08002711 expire_client(clp);
2712out:
2713 nfs4_unlock_state();
Mi Jinlong345c2842011-10-20 17:51:39 +08002714 return status;
2715}
2716
Andy Adamson069b6ad2009-04-03 08:27:58 +03002717__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002718nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2719{
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002720 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002721
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002722 if (rc->rca_one_fs) {
2723 if (!cstate->current_fh.fh_dentry)
2724 return nfserr_nofilehandle;
2725 /*
2726 * We don't take advantage of the rca_one_fs case.
2727 * That's OK, it's optional, we can safely ignore it.
2728 */
2729 return nfs_ok;
2730 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002731
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002732 nfs4_lock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002733 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04002734 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
2735 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002736 goto out;
2737
2738 status = nfserr_stale_clientid;
2739 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002740 /*
2741 * The following error isn't really legal.
2742 * But we only get here if the client just explicitly
2743 * destroyed the client. Surely it no longer cares what
2744 * error it gets back on an operation for the dead
2745 * client.
2746 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002747 goto out;
2748
2749 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04002750 nfsd4_client_record_create(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002751out:
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002752 nfs4_unlock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002753 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002754}
2755
2756__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002757nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2758 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002760 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 nfs4_verifier clverifier = setclid->se_verf;
NeilBrown28ce6052005-06-23 22:03:56 -07002762 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07002763 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002764 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2765
J. Bruce Fields63db4632012-05-18 21:54:19 -04002766 /* Cases below refer to rfc 3530 section 14.2.33: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 nfs4_lock_state();
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002768 conf = find_confirmed_client_by_name(&clname, nn);
NeilBrown28ce6052005-06-23 22:03:56 -07002769 if (conf) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04002770 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002772 if (clp_used_exchangeid(conf))
2773 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04002774 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04002775 char addr_str[INET6_ADDRSTRLEN];
2776 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2777 sizeof(addr_str));
2778 dprintk("NFSD: setclientid: string in use by client "
2779 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 goto out;
2781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002783 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04002784 if (unconf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 status = nfserr_jukebox;
Jeff Layton2216d442012-11-12 15:00:57 -05002787 new = create_client(clname, rqstp, &clverifier);
J. Bruce Fields8f930712012-05-18 22:06:41 -04002788 if (new == NULL)
2789 goto out;
J. Bruce Fields34b232b2012-05-18 22:23:42 -04002790 if (conf && same_verf(&conf->cl_verifier, &clverifier))
J. Bruce Fields63db4632012-05-18 21:54:19 -04002791 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 copy_clid(new, conf);
J. Bruce Fields34b232b2012-05-18 22:23:42 -04002793 else /* case 4 (new client) or cases 2, 3 (client reboot): */
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002794 gen_clid(new, nn);
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002795 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002796 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002797 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2799 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2800 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2801 status = nfs_ok;
2802out:
2803 nfs4_unlock_state();
2804 return status;
2805}
2806
2807
Al Virob37ad282006-10-19 23:28:59 -07002808__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002809nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2810 struct nfsd4_compound_state *cstate,
2811 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
NeilBrown21ab45a2005-06-23 22:04:14 -07002813 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2815 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07002816 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03002817 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04002819 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 return nfserr_stale_clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07002822
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002823 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002824 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002825 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04002826 * We try hard to give out unique clientid's, so if we get an
2827 * attempt to confirm the same clientid with a different cred,
2828 * there's a bug somewhere. Let's charitably assume it's our
2829 * bug.
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002830 */
J. Bruce Fields8695b902012-05-19 10:05:58 -04002831 status = nfserr_serverfault;
2832 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
2833 goto out;
2834 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
2835 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04002836 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002837 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
2838 if (conf && !unconf) /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 status = nfs_ok;
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002840 else /* case 4: client hasn't noticed we rebooted yet? */
2841 status = nfserr_stale_clientid;
2842 goto out;
2843 }
2844 status = nfs_ok;
2845 if (conf) { /* case 1: callback update */
J. Bruce Fields8695b902012-05-19 10:05:58 -04002846 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2847 nfsd4_probe_callback(conf);
2848 expire_client(unconf);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002849 } else { /* case 3: normal case; new or rebooted client */
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002850 conf = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002851 if (conf) {
2852 status = mark_client_expired(conf);
2853 if (status)
2854 goto out;
J. Bruce Fields8695b902012-05-19 10:05:58 -04002855 expire_client(conf);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002856 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04002857 move_to_confirmed(unconf);
J. Bruce Fieldsf3d03b92012-05-23 11:38:38 -04002858 nfsd4_probe_callback(unconf);
NeilBrown08e89872005-06-23 22:04:11 -07002859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 nfs4_unlock_state();
2862 return status;
2863}
2864
J. Bruce Fields32513b42011-10-13 16:00:16 -04002865static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
J. Bruce Fields32513b42011-10-13 16:00:16 -04002867 return kmem_cache_alloc(file_slab, GFP_KERNEL);
2868}
2869
2870/* OPEN Share state helper functions */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04002871static void nfsd4_init_file(struct nfs4_file *fp, struct knfsd_fh *fh)
J. Bruce Fields32513b42011-10-13 16:00:16 -04002872{
Trond Myklebustca943212014-07-23 16:17:39 -04002873 unsigned int hashval = file_hashval(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Trond Myklebust950e0112014-06-30 11:48:31 -04002875 lockdep_assert_held(&state_lock);
2876
J. Bruce Fields32513b42011-10-13 16:00:16 -04002877 atomic_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04002878 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04002879 INIT_LIST_HEAD(&fp->fi_stateids);
2880 INIT_LIST_HEAD(&fp->fi_delegations);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04002881 fh_copy_shallow(&fp->fi_fhandle, fh);
J. Bruce Fields32513b42011-10-13 16:00:16 -04002882 fp->fi_had_conflict = false;
2883 fp->fi_lease = NULL;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04002884 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04002885 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2886 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Jeff Layton89876f82013-04-02 09:01:59 -04002887 hlist_add_head(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04002890void
NeilBrowne60d4392005-06-23 22:03:01 -07002891nfsd4_free_slabs(void)
2892{
Christoph Hellwigabf11352014-05-21 07:43:03 -07002893 kmem_cache_destroy(openowner_slab);
2894 kmem_cache_destroy(lockowner_slab);
2895 kmem_cache_destroy(file_slab);
2896 kmem_cache_destroy(stateid_slab);
2897 kmem_cache_destroy(deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002898}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Bryan Schumaker72083392011-11-01 15:24:59 -04002900int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901nfsd4_init_slabs(void)
2902{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002903 openowner_slab = kmem_cache_create("nfsd4_openowners",
2904 sizeof(struct nfs4_openowner), 0, 0, NULL);
2905 if (openowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002906 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002907 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08002908 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002909 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002910 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07002911 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09002912 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002913 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002914 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07002915 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04002916 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07002917 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002918 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07002919 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09002920 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002921 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002922 goto out_free_stateid_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07002924
2925out_free_stateid_slab:
2926 kmem_cache_destroy(stateid_slab);
2927out_free_file_slab:
2928 kmem_cache_destroy(file_slab);
2929out_free_lockowner_slab:
2930 kmem_cache_destroy(lockowner_slab);
2931out_free_openowner_slab:
2932 kmem_cache_destroy(openowner_slab);
2933out:
NeilBrowne60d4392005-06-23 22:03:01 -07002934 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2935 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936}
2937
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002938static void init_nfs4_replay(struct nfs4_replay *rp)
2939{
2940 rp->rp_status = nfserr_serverfault;
2941 rp->rp_buflen = 0;
2942 rp->rp_buf = rp->rp_ibuf;
2943}
2944
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002945static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946{
2947 struct nfs4_stateowner *sop;
2948
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002949 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002950 if (!sop)
2951 return NULL;
2952
2953 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2954 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002955 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002956 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002958 sop->so_owner.len = owner->len;
2959
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002960 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002961 sop->so_client = clp;
2962 init_nfs4_replay(&sop->so_replay);
2963 return sop;
2964}
2965
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002966static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002967{
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03002968 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2969
2970 list_add(&oo->oo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002971 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
2973
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002974static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04002975alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04002976 struct nfsd4_compound_state *cstate)
2977{
Trond Myklebust13d6f662014-06-30 11:48:45 -04002978 struct nfs4_client *clp = cstate->clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002979 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002981 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
2982 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 return NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002984 oo->oo_owner.so_is_open_owner = 1;
2985 oo->oo_owner.so_seqid = open->op_seqid;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04002986 oo->oo_flags = NFS4_OO_NEW;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04002987 if (nfsd4_has_session(cstate))
2988 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002989 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04002990 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002991 INIT_LIST_HEAD(&oo->oo_close_lru);
2992 hash_openowner(oo, clp, strhashval);
2993 return oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994}
2995
J. Bruce Fields996e0932011-10-17 11:14:48 -04002996static void init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002997 struct nfs4_openowner *oo = open->op_openowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
J. Bruce Fields3abdb602013-02-03 12:23:01 -05002999 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04003000 INIT_LIST_HEAD(&stp->st_locks);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003001 stp->st_stateowner = &oo->oo_owner;
NeilBrown13cd2182005-06-23 22:03:10 -07003002 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04003003 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 stp->st_access_bmap = 0;
3005 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07003006 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04003007 spin_lock(&oo->oo_owner.so_client->cl_lock);
3008 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003009 spin_lock(&fp->fi_lock);
3010 list_add(&stp->st_perfile, &fp->fi_stateids);
3011 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04003012 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013}
3014
3015static void
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003016move_to_close_lru(struct nfs4_openowner *oo, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003018 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
3019
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003020 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003022 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003023 oo->oo_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024}
3025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003027same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
3028 clientid_t *clid)
3029{
3030 return (sop->so_owner.len == owner->len) &&
3031 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
3032 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
3034
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003035static struct nfs4_openowner *
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003036find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
3037 bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003039 struct nfs4_stateowner *so;
3040 struct nfs4_openowner *oo;
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04003041 struct nfs4_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003043 list_for_each_entry(so, &nn->ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05003044 if (!so->so_is_open_owner)
3045 continue;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003046 if (same_owner_str(so, &open->op_owner, &open->op_clientid)) {
3047 oo = openowner(so);
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04003048 clp = oo->oo_owner.so_client;
3049 if ((bool)clp->cl_minorversion != sessions)
3050 return NULL;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003051 renew_client(oo->oo_owner.so_client);
3052 return oo;
3053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 }
3055 return NULL;
3056}
3057
3058/* search file_hashtbl[] for file */
3059static struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003060find_file_locked(struct knfsd_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
Trond Myklebustca943212014-07-23 16:17:39 -04003062 unsigned int hashval = file_hashval(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 struct nfs4_file *fp;
3064
Trond Myklebust950e0112014-06-30 11:48:31 -04003065 lockdep_assert_held(&state_lock);
3066
Jeff Layton89876f82013-04-02 09:01:59 -04003067 hlist_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
Trond Myklebustca943212014-07-23 16:17:39 -04003068 if (nfsd_fh_match(&fp->fi_fhandle, fh)) {
NeilBrown13cd2182005-06-23 22:03:10 -07003069 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07003071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 }
3073 return NULL;
3074}
3075
Trond Myklebust950e0112014-06-30 11:48:31 -04003076static struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003077find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003078{
3079 struct nfs4_file *fp;
3080
3081 spin_lock(&state_lock);
Trond Myklebustca943212014-07-23 16:17:39 -04003082 fp = find_file_locked(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003083 spin_unlock(&state_lock);
3084 return fp;
3085}
3086
3087static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003088find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003089{
3090 struct nfs4_file *fp;
3091
3092 spin_lock(&state_lock);
Trond Myklebustca943212014-07-23 16:17:39 -04003093 fp = find_file_locked(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003094 if (fp == NULL) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003095 nfsd4_init_file(new, fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003096 fp = new;
3097 }
3098 spin_unlock(&state_lock);
3099
3100 return fp;
3101}
3102
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04003103/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 * Called to check deny when READ with all zero stateid or
3105 * WRITE with all zero or all one stateid
3106 */
Al Virob37ad282006-10-19 23:28:59 -07003107static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
3109{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003111 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Trond Myklebustca943212014-07-23 16:17:39 -04003113 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07003114 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003115 return ret;
3116 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04003117 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003118 if (fp->fi_share_deny & deny_type)
3119 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003120 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07003121 put_nfs4_file(fp);
3122 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123}
3124
Jeff Layton02e12152014-07-16 10:31:57 -04003125void nfsd4_prepare_cb_recall(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126{
Trond Myklebust11b91642014-07-29 21:34:08 -04003127 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
3128 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003129
Trond Myklebust11b91642014-07-29 21:34:08 -04003130 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04003131
Jeff Layton02e12152014-07-16 10:31:57 -04003132 /*
3133 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04003134 * already holding inode->i_lock.
3135 *
Jeff Laytondff13992014-07-08 14:02:49 -04003136 * If the dl_time != 0, then we know that it has already been
3137 * queued for a lease break. Don't queue it again.
3138 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04003139 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04003140 if (dp->dl_time == 0) {
Jeff Laytondff13992014-07-08 14:02:49 -04003141 dp->dl_time = get_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04003142 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04003143 }
Jeff Layton02e12152014-07-16 10:31:57 -04003144 spin_unlock(&state_lock);
3145}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Jeff Layton02e12152014-07-16 10:31:57 -04003147static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
3148{
3149 /*
3150 * We're assuming the state code never drops its reference
3151 * without first removing the lease. Since we're in this lease
3152 * callback (and since the lease code is serialized by the kernel
3153 * lock) we know the server hasn't removed the lease yet, we know
3154 * it's safe to take a reference.
3155 */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -04003156 atomic_inc(&dp->dl_stid.sc_count);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003157 nfsd4_cb_recall(dp);
3158}
3159
Jeff Layton1c8c6012013-06-21 08:58:15 -04003160/* Called from break_lease() with i_lock held. */
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003161static void nfsd_break_deleg_cb(struct file_lock *fl)
3162{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003163 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
3164 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003165
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003166 if (!fp) {
3167 WARN(1, "(%p)->fl_owner NULL\n", fl);
3168 return;
3169 }
3170 if (fp->fi_had_conflict) {
3171 WARN(1, "duplicate break on %p\n", fp);
3172 return;
3173 }
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003174 /*
3175 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003176 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003177 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003178 */
3179 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Jeff Layton02e12152014-07-16 10:31:57 -04003181 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003182 fp->fi_had_conflict = true;
3183 /*
3184 * If there are no delegations on the list, then we can't count on this
3185 * lease ever being cleaned up. Set the fl_break_time to jiffies so that
3186 * time_out_leases will do it ASAP. The fact that fi_had_conflict is now
3187 * true should keep any new delegations from being hashed.
3188 */
3189 if (list_empty(&fp->fi_delegations))
3190 fl->fl_break_time = jiffies;
3191 else
3192 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
3193 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04003194 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195}
3196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197static
3198int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
3199{
3200 if (arg & F_UNLCK)
3201 return lease_modify(onlist, arg);
3202 else
3203 return -EAGAIN;
3204}
3205
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003206static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04003207 .lm_break = nfsd_break_deleg_cb,
3208 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209};
3210
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003211static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
3212{
3213 if (nfsd4_has_session(cstate))
3214 return nfs_ok;
3215 if (seqid == so->so_seqid - 1)
3216 return nfserr_replay_me;
3217 if (seqid == so->so_seqid)
3218 return nfs_ok;
3219 return nfserr_bad_seqid;
3220}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Jeff Layton4b24ca72014-06-30 11:48:44 -04003222static __be32 lookup_clientid(clientid_t *clid,
3223 struct nfsd4_compound_state *cstate,
3224 struct nfsd_net *nn)
3225{
3226 struct nfs4_client *found;
3227
3228 if (cstate->clp) {
3229 found = cstate->clp;
3230 if (!same_clid(&found->cl_clientid, clid))
3231 return nfserr_stale_clientid;
3232 return nfs_ok;
3233 }
3234
3235 if (STALE_CLIENTID(clid, nn))
3236 return nfserr_stale_clientid;
3237
3238 /*
3239 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
3240 * cached already then we know this is for is for v4.0 and "sessions"
3241 * will be false.
3242 */
3243 WARN_ON_ONCE(cstate->session);
3244 found = find_confirmed_client(clid, false, nn);
3245 if (!found)
3246 return nfserr_expired;
3247
3248 /* Cache the nfs4_client in cstate! */
3249 cstate->clp = found;
3250 atomic_inc(&found->cl_refcount);
3251 return nfs_ok;
3252}
3253
Al Virob37ad282006-10-19 23:28:59 -07003254__be32
Andy Adamson66689582009-04-03 08:28:45 +03003255nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03003256 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 clientid_t *clientid = &open->op_clientid;
3259 struct nfs4_client *clp = NULL;
3260 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003261 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003262 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003264 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003266 /*
3267 * In case we need it later, after we've already created the
3268 * file and don't want to risk a further failure:
3269 */
3270 open->op_file = nfsd4_alloc_file();
3271 if (open->op_file == NULL)
3272 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Trond Myklebust2d91e892014-06-30 11:48:46 -04003274 status = lookup_clientid(clientid, cstate, nn);
3275 if (status)
3276 return status;
3277 clp = cstate->clp;
3278
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05003279 strhashval = ownerstr_hashval(clientid->cl_id, &open->op_owner);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003280 oo = find_openstateowner_str(strhashval, open, cstate->minorversion, nn);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003281 open->op_openowner = oo;
3282 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003283 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003285 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003286 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003287 release_openowner(oo);
3288 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003289 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003290 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003291 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
3292 if (status)
3293 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003294 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003295new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04003296 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003297 if (oo == NULL)
3298 return nfserr_jukebox;
3299 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003300alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04003301 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003302 if (!open->op_stp)
3303 return nfserr_jukebox;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003304 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
Al Virob37ad282006-10-19 23:28:59 -07003307static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07003308nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
3309{
3310 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
3311 return nfserr_openmode;
3312 else
3313 return nfs_ok;
3314}
3315
Daniel Mackc47d8322011-05-16 16:38:14 +02003316static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04003317{
J. Bruce Fields24a01112010-05-18 20:01:35 -04003318 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
3319}
3320
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003321static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04003322{
3323 struct nfs4_stid *ret;
3324
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003325 ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04003326 if (!ret)
3327 return NULL;
3328 return delegstateid(ret);
3329}
3330
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003331static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
3332{
3333 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
3334 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
3335}
3336
Al Virob37ad282006-10-19 23:28:59 -07003337static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04003338nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07003339 struct nfs4_delegation **dp)
3340{
3341 int flags;
Al Virob37ad282006-10-19 23:28:59 -07003342 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07003343
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003344 *dp = find_deleg_stateid(cl, &open->op_delegate_stateid);
NeilBrown567d9822005-06-23 22:02:53 -07003345 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07003346 goto out;
J. Bruce Fields24a01112010-05-18 20:01:35 -04003347 flags = share_access_to_flags(open->op_share_access);
NeilBrown567d9822005-06-23 22:02:53 -07003348 status = nfs4_check_delegmode(*dp, flags);
3349 if (status)
3350 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003351out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003352 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07003353 return nfs_ok;
3354 if (status)
3355 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003356 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003357 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07003358}
3359
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003360static struct nfs4_ol_stateid *
3361nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362{
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003363 struct nfs4_ol_stateid *local, *ret = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003364 struct nfs4_openowner *oo = open->op_openowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Trond Myklebust1d31a252014-07-10 14:07:25 -04003366 spin_lock(&fp->fi_lock);
NeilBrown8beefa22005-06-23 22:03:08 -07003367 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 /* ignore lock owners */
3369 if (local->st_stateowner->so_is_open_owner == 0)
3370 continue;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003371 if (local->st_stateowner == &oo->oo_owner) {
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003372 ret = local;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003373 break;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
Trond Myklebust1d31a252014-07-10 14:07:25 -04003376 spin_unlock(&fp->fi_lock);
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003377 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378}
3379
J. Bruce Fields21fb4012010-07-28 12:21:23 -04003380static inline int nfs4_access_to_access(u32 nfs4_access)
3381{
3382 int flags = 0;
3383
3384 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
3385 flags |= NFSD_MAY_READ;
3386 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
3387 flags |= NFSD_MAY_WRITE;
3388 return flags;
3389}
3390
Al Virob37ad282006-10-19 23:28:59 -07003391static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
3393 struct nfsd4_open *open)
3394{
3395 struct iattr iattr = {
3396 .ia_valid = ATTR_SIZE,
3397 .ia_size = 0,
3398 };
3399 if (!open->op_truncate)
3400 return 0;
3401 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08003402 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
3404}
3405
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003406static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003407 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
3408 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003409{
Trond Myklebustde186432014-07-10 14:07:26 -04003410 struct file *filp = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003411 __be32 status;
3412 int oflag = nfs4_access_to_omode(open->op_share_access);
3413 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003414 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003415
Trond Myklebustde186432014-07-10 14:07:26 -04003416 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003417
3418 /*
3419 * Are we trying to set a deny mode that would conflict with
3420 * current access?
3421 */
3422 status = nfs4_file_check_deny(fp, open->op_share_deny);
3423 if (status != nfs_ok) {
3424 spin_unlock(&fp->fi_lock);
3425 goto out;
3426 }
3427
3428 /* set access to the file */
3429 status = nfs4_file_get_access(fp, open->op_share_access);
3430 if (status != nfs_ok) {
3431 spin_unlock(&fp->fi_lock);
3432 goto out;
3433 }
3434
3435 /* Set access bits in stateid */
3436 old_access_bmap = stp->st_access_bmap;
3437 set_access(open->op_share_access, stp);
3438
3439 /* Set new deny mask */
3440 old_deny_bmap = stp->st_deny_bmap;
3441 set_deny(open->op_share_deny, stp);
3442 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3443
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003444 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04003445 spin_unlock(&fp->fi_lock);
3446 status = nfsd_open(rqstp, cur_fh, S_IFREG, access, &filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003447 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003448 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04003449 spin_lock(&fp->fi_lock);
3450 if (!fp->fi_fds[oflag]) {
3451 fp->fi_fds[oflag] = filp;
3452 filp = NULL;
3453 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003454 }
Trond Myklebustde186432014-07-10 14:07:26 -04003455 spin_unlock(&fp->fi_lock);
3456 if (filp)
3457 fput(filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003458
3459 status = nfsd4_truncate(rqstp, cur_fh, open);
3460 if (status)
3461 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003462out:
3463 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003464out_put_access:
3465 stp->st_access_bmap = old_access_bmap;
3466 nfs4_file_put_access(fp, open->op_share_access);
3467 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
3468 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003469}
3470
Al Virob37ad282006-10-19 23:28:59 -07003471static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003472nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473{
Al Virob37ad282006-10-19 23:28:59 -07003474 __be32 status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003475 unsigned char old_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003477 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003478 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003479
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003480 /* test and set deny mode */
3481 spin_lock(&fp->fi_lock);
3482 status = nfs4_file_check_deny(fp, open->op_share_deny);
3483 if (status == nfs_ok) {
3484 old_deny_bmap = stp->st_deny_bmap;
3485 set_deny(open->op_share_deny, stp);
3486 fp->fi_share_deny |=
3487 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3488 }
3489 spin_unlock(&fp->fi_lock);
3490
3491 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003494 status = nfsd4_truncate(rqstp, cur_fh, open);
3495 if (status != nfs_ok)
3496 reset_union_bmap_deny(old_deny_bmap, stp);
3497 return status;
3498}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500static void
J. Bruce Fields1255a8f2012-03-06 14:35:16 -05003501nfs4_set_claim_prev(struct nfsd4_open *open, bool has_session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502{
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003503 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504}
3505
J. Bruce Fields14a24e92010-12-10 19:02:49 -05003506/* Should we give out recallable state?: */
3507static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
3508{
3509 if (clp->cl_cb_state == NFSD4_CB_UP)
3510 return true;
3511 /*
3512 * In the sessions case, since we don't have to establish a
3513 * separate connection for callbacks, we assume it's OK
3514 * until we hear otherwise:
3515 */
3516 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
3517}
3518
Jeff Laytond564fbe2014-07-16 10:31:58 -04003519static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003520{
3521 struct file_lock *fl;
3522
3523 fl = locks_alloc_lock();
3524 if (!fl)
3525 return NULL;
3526 locks_init_lock(fl);
3527 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04003528 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003529 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
3530 fl->fl_end = OFFSET_MAX;
Jeff Laytond564fbe2014-07-16 10:31:58 -04003531 fl->fl_owner = (fl_owner_t)fp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003532 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003533 return fl;
3534}
3535
J. Bruce Fields99c41512013-05-21 16:21:25 -04003536static int nfs4_setlease(struct nfs4_delegation *dp)
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003537{
Trond Myklebust11b91642014-07-29 21:34:08 -04003538 struct nfs4_file *fp = dp->dl_stid.sc_file;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003539 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04003540 struct file *filp;
3541 int status = 0;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003542
Jeff Laytond564fbe2014-07-16 10:31:58 -04003543 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003544 if (!fl)
3545 return -ENOMEM;
Jeff Layton417c6622014-07-21 09:34:57 -04003546 filp = find_readable_file(fp);
3547 if (!filp) {
3548 /* We should always have a readable file here */
3549 WARN_ON_ONCE(1);
3550 return -EBADF;
3551 }
3552 fl->fl_file = filp;
3553 status = vfs_setlease(filp, fl->fl_type, &fl);
3554 if (status) {
3555 locks_free_lock(fl);
3556 goto out_fput;
3557 }
Benny Halevycdc97502014-05-30 09:09:30 -04003558 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003559 spin_lock(&fp->fi_lock);
3560 /* Did the lease get broken before we took the lock? */
3561 status = -EAGAIN;
3562 if (fp->fi_had_conflict)
3563 goto out_unlock;
3564 /* Race breaker */
3565 if (fp->fi_lease) {
3566 status = 0;
3567 atomic_inc(&fp->fi_delegees);
3568 hash_delegation_locked(dp, fp);
3569 goto out_unlock;
3570 }
3571 fp->fi_lease = fl;
3572 fp->fi_deleg_file = filp;
3573 atomic_set(&fp->fi_delegees, 1);
Benny Halevy931ee562014-05-30 09:09:27 -04003574 hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04003575 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04003576 spin_unlock(&state_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003577 return 0;
Jeff Layton417c6622014-07-21 09:34:57 -04003578out_unlock:
3579 spin_unlock(&fp->fi_lock);
3580 spin_unlock(&state_lock);
3581out_fput:
3582 fput(filp);
J. Bruce Fieldse8730882012-01-23 13:52:01 -05003583 return status;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003584}
3585
Jeff Layton0b266932014-07-25 07:34:25 -04003586static struct nfs4_delegation *
3587nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
3588 struct nfs4_file *fp)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003589{
Jeff Layton0b266932014-07-25 07:34:25 -04003590 int status;
3591 struct nfs4_delegation *dp;
Jeff Layton417c6622014-07-21 09:34:57 -04003592
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04003593 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04003594 return ERR_PTR(-EAGAIN);
3595
3596 dp = alloc_init_deleg(clp, fh);
3597 if (!dp)
3598 return ERR_PTR(-ENOMEM);
3599
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04003600 get_nfs4_file(fp);
Benny Halevycdc97502014-05-30 09:09:30 -04003601 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003602 spin_lock(&fp->fi_lock);
Trond Myklebust11b91642014-07-29 21:34:08 -04003603 dp->dl_stid.sc_file = fp;
Jeff Layton417c6622014-07-21 09:34:57 -04003604 if (!fp->fi_lease) {
3605 spin_unlock(&fp->fi_lock);
3606 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04003607 status = nfs4_setlease(dp);
3608 goto out;
Jeff Layton417c6622014-07-21 09:34:57 -04003609 }
J. Bruce Fieldscbf7a752014-03-03 12:19:18 -05003610 atomic_inc(&fp->fi_delegees);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003611 if (fp->fi_had_conflict) {
Jeff Layton417c6622014-07-21 09:34:57 -04003612 status = -EAGAIN;
3613 goto out_unlock;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003614 }
Benny Halevy931ee562014-05-30 09:09:27 -04003615 hash_delegation_locked(dp, fp);
Jeff Layton0b266932014-07-25 07:34:25 -04003616 status = 0;
Jeff Layton417c6622014-07-21 09:34:57 -04003617out_unlock:
3618 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04003619 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04003620out:
3621 if (status) {
Trond Myklebust60116952014-07-29 21:34:06 -04003622 nfs4_put_stid(&dp->dl_stid);
Jeff Layton0b266932014-07-25 07:34:25 -04003623 return ERR_PTR(status);
3624 }
3625 return dp;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003626}
3627
Benny Halevy4aa89132012-02-21 14:16:44 -08003628static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
3629{
3630 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3631 if (status == -EAGAIN)
3632 open->op_why_no_deleg = WND4_CONTENTION;
3633 else {
3634 open->op_why_no_deleg = WND4_RESOURCE;
3635 switch (open->op_deleg_want) {
3636 case NFS4_SHARE_WANT_READ_DELEG:
3637 case NFS4_SHARE_WANT_WRITE_DELEG:
3638 case NFS4_SHARE_WANT_ANY_DELEG:
3639 break;
3640 case NFS4_SHARE_WANT_CANCEL:
3641 open->op_why_no_deleg = WND4_CANCELLED;
3642 break;
3643 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05003644 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08003645 }
3646 }
3647}
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649/*
3650 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04003651 *
3652 * Note we don't support write delegations, and won't until the vfs has
3653 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 */
3655static void
Jeff Layton4cf59222014-07-25 07:34:24 -04003656nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
3657 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658{
3659 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04003660 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
3661 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05003662 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04003663 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003665 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07003666 open->op_recall = 0;
3667 switch (open->op_claim_type) {
3668 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05003669 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07003670 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04003671 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
3672 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003673 break;
3674 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00003675 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003676 /*
3677 * Let's not give out any delegations till everyone's
3678 * had the chance to reclaim theirs....
3679 */
Jeff Layton4cf59222014-07-25 07:34:24 -04003680 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04003681 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003682 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04003683 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04003684 /*
3685 * Also, if the file was opened for write or
3686 * create, there's a good chance the client's
3687 * about to write to it, resulting in an
3688 * immediate recall (since we don't support
3689 * write delegations):
3690 */
NeilBrown7b190fe2005-06-23 22:03:23 -07003691 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04003692 goto out_no_deleg;
3693 if (open->op_create == NFS4_OPEN_CREATE)
3694 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003695 break;
3696 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003697 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003698 }
Trond Myklebust11b91642014-07-29 21:34:08 -04003699 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file);
Jeff Layton0b266932014-07-25 07:34:25 -04003700 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003701 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04003703 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003705 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04003706 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04003707 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04003708 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003709 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003710out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003711 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
3712 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04003713 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04003714 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04003715 open->op_recall = 1;
3716 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04003717
3718 /* 4.1 client asking for a delegation? */
3719 if (open->op_deleg_want)
3720 nfsd4_open_deleg_none_ext(open, status);
3721 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722}
3723
Benny Halevye27f49c2012-02-21 14:16:54 -08003724static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
3725 struct nfs4_delegation *dp)
3726{
3727 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
3728 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3729 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3730 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
3731 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
3732 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3733 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3734 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
3735 }
3736 /* Otherwise the client must be confused wanting a delegation
3737 * it already has, therefore we don't return
3738 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
3739 */
3740}
3741
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742/*
3743 * called with nfs4_lock_state() held.
3744 */
Al Virob37ad282006-10-19 23:28:59 -07003745__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
3747{
Andy Adamson66689582009-04-03 08:28:45 +03003748 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003749 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003751 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07003752 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003753 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 /*
3756 * Lookup file; if found, lookup stateid and check open request,
3757 * and check for delegations in the process of being recalled.
3758 * If not found, create the nfs4_file struct
3759 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003760 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04003761 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04003762 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07003763 if (status)
3764 goto out;
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003765 stp = nfsd4_find_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04003767 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003768 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003769 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07003770 goto out;
J. Bruce Fields3e772462011-08-10 19:07:33 -04003771 status = nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 }
3773
3774 /*
3775 * OPEN the file, or upgrade an existing OPEN.
3776 * If truncate fails, the OPEN fails.
3777 */
3778 if (stp) {
3779 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003780 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 if (status)
3782 goto out;
3783 } else {
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003784 stp = open->op_stp;
3785 open->op_stp = NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -04003786 init_open_stateid(stp, fp, open);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003787 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
3788 if (status) {
3789 release_open_stateid(stp);
3790 goto out;
3791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 }
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003793 update_stateid(&stp->st_stid.sc_stateid);
3794 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795
Benny Halevyd24433c2012-02-16 20:57:17 +02003796 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02003797 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
3798 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3799 open->op_why_no_deleg = WND4_NOT_WANTED;
3800 goto nodeleg;
3801 }
3802 }
3803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 /*
3805 * Attempt to hand out a delegation. No error return, because the
3806 * OPEN succeeds even if we fail.
3807 */
Jeff Layton4cf59222014-07-25 07:34:24 -04003808 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02003809nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 status = nfs_ok;
3811
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003812 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003813 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814out:
Benny Halevyd24433c2012-02-16 20:57:17 +02003815 /* 4.1 client trying to upgrade/downgrade delegation? */
3816 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08003817 open->op_deleg_want)
3818 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02003819
NeilBrown13cd2182005-06-23 22:03:10 -07003820 if (fp)
3821 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07003822 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fields1255a8f2012-03-06 14:35:16 -05003823 nfs4_set_claim_prev(open, nfsd4_has_session(&resp->cstate));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 /*
3825 * To finish the open response, we just need to set the rflags.
3826 */
3827 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003828 if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
Andy Adamson66689582009-04-03 08:28:45 +03003829 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
3831
3832 return status;
3833}
3834
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003835void nfsd4_cleanup_open_state(struct nfsd4_open *open, __be32 status)
3836{
3837 if (open->op_openowner) {
3838 struct nfs4_openowner *oo = open->op_openowner;
3839
3840 if (!list_empty(&oo->oo_owner.so_stateids))
3841 list_del_init(&oo->oo_close_lru);
3842 if (oo->oo_flags & NFS4_OO_NEW) {
3843 if (status) {
3844 release_openowner(oo);
3845 open->op_openowner = NULL;
3846 } else
3847 oo->oo_flags &= ~NFS4_OO_NEW;
3848 }
3849 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04003850 if (open->op_file)
3851 nfsd4_free_file(open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003852 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04003853 nfs4_put_stid(&open->op_stp->st_stid);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003854}
3855
Al Virob37ad282006-10-19 23:28:59 -07003856__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003857nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3858 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859{
3860 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07003861 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003862 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
3864 nfs4_lock_state();
3865 dprintk("process_renew(%08x/%08x): starting\n",
3866 clid->cl_boot, clid->cl_id);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003867 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05003868 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003870 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07003872 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04003873 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 goto out;
3875 status = nfs_ok;
3876out:
3877 nfs4_unlock_state();
3878 return status;
3879}
3880
NeilBrowna76b4312005-06-23 22:04:01 -07003881static void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003882nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07003883{
Jeff Layton33dcc482012-04-10 11:08:48 -04003884 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04003885 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04003886 return;
3887
NeilBrowna76b4312005-06-23 22:04:01 -07003888 dprintk("NFSD: end of grace period\n");
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04003889 nn->grace_ended = true;
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003890 nfsd4_record_grace_done(nn, nn->boot_time);
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04003891 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05003892 /*
3893 * Now that every NFSv4 client has had the chance to recover and
3894 * to see the (possibly new, possibly shorter) lease time, we
3895 * can safely set the next grace time to the current lease time:
3896 */
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03003897 nn->nfsd4_grace = nn->nfsd4_lease;
NeilBrowna76b4312005-06-23 22:04:01 -07003898}
3899
NeilBrownfd39ca92005-06-23 22:04:03 -07003900static time_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003901nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902{
3903 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003904 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 struct nfs4_delegation *dp;
3906 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03003907 time_t cutoff = get_seconds() - nn->nfsd4_lease;
Jeff Laytona832e7a2014-05-30 09:09:26 -04003908 time_t t, new_timeo = nn->nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
3910 nfs4_lock_state();
3911
3912 dprintk("NFSD: laundromat service - starting\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003913 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03003914 INIT_LIST_HEAD(&reaplist);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003915 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03003916 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 clp = list_entry(pos, struct nfs4_client, cl_lru);
3918 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3919 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04003920 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 break;
3922 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003923 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03003924 dprintk("NFSD: client in use (clientid %08x)\n",
3925 clp->cl_clientid.cl_id);
3926 continue;
3927 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003928 list_move(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03003929 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003930 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03003931 list_for_each_safe(pos, next, &reaplist) {
3932 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 dprintk("NFSD: purging unused client (clientid %08x)\n",
3934 clp->cl_clientid.cl_id);
3935 expire_client(clp);
3936 }
Benny Halevycdc97502014-05-30 09:09:30 -04003937 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003938 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Stanislav Kinsbursky4e37a7c22012-11-26 15:22:03 +03003940 if (net_generic(dp->dl_stid.sc_client->net, nfsd_net_id) != nn)
3941 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04003943 t = dp->dl_time - cutoff;
3944 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 break;
3946 }
Jeff Layton42690672014-07-25 07:34:20 -04003947 unhash_delegation_locked(dp);
3948 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 }
Benny Halevycdc97502014-05-30 09:09:30 -04003950 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04003951 while (!list_empty(&reaplist)) {
3952 dp = list_first_entry(&reaplist, struct nfs4_delegation,
3953 dl_recall_lru);
3954 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003955 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 }
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003957 list_for_each_safe(pos, next, &nn->close_lru) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003958 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
3959 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04003960 t = oo->oo_time - cutoff;
3961 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 break;
3963 }
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003964 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 }
Jeff Laytona832e7a2014-05-30 09:09:26 -04003966 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 nfs4_unlock_state();
Jeff Laytona832e7a2014-05-30 09:09:26 -04003968 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969}
3970
Harvey Harrisona254b242008-02-20 12:49:00 -08003971static struct workqueue_struct *laundry_wq;
3972static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08003973
3974static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003975laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976{
3977 time_t t;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003978 struct delayed_work *dwork = container_of(laundry, struct delayed_work,
3979 work);
3980 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
3981 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003983 t = nfs4_laundromat(nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003985 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986}
3987
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04003988static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07003989{
Trond Myklebust11b91642014-07-29 21:34:08 -04003990 if (!nfsd_fh_match(&fhp->fh_handle, &stp->st_stid.sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04003991 return nfserr_bad_stateid;
3992 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993}
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04003996access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997{
Jeff Layton82c5ff12012-05-11 09:45:13 -04003998 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
3999 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
4000 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001}
4002
4003static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004004access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004006 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
4007 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008}
4009
4010static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004011__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012{
Al Virob37ad282006-10-19 23:28:59 -07004013 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014
J. Bruce Fields02921912010-07-29 15:16:59 -04004015 /* For lock stateid's, we test the parent open, not the lock: */
4016 if (stp->st_openstp)
4017 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004018 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004020 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 goto out;
4022 status = nfs_ok;
4023out:
4024 return status;
4025}
4026
Al Virob37ad282006-10-19 23:28:59 -07004027static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004028check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004030 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 return nfs_ok;
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004032 else if (locks_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004033 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 * conflicting state; so we must wait out the grace period. */
4035 return nfserr_grace;
4036 } else if (flags & WR_STATE)
4037 return nfs4_share_conflict(current_fh,
4038 NFS4_SHARE_DENY_WRITE);
4039 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4040 return nfs4_share_conflict(current_fh,
4041 NFS4_SHARE_DENY_READ);
4042}
4043
4044/*
4045 * Allow READ/WRITE during grace period on recovered state only for files
4046 * that are not able to provide mandatory locking.
4047 */
4048static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004049grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050{
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004051 return locks_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052}
4053
J. Bruce Fields81b82962011-08-23 11:03:29 -04004054/* Returns true iff a is later than b: */
4055static bool stateid_generation_after(stateid_t *a, stateid_t *b)
4056{
Jim Rees1a9357f2013-05-17 17:33:00 -04004057 return (s32)(a->si_generation - b->si_generation) > 0;
J. Bruce Fields81b82962011-08-23 11:03:29 -04004058}
4059
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004060static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05004061{
Andy Adamson66689582009-04-03 08:28:45 +03004062 /*
4063 * When sessions are used the stateid generation number is ignored
4064 * when it is zero.
4065 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04004066 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04004067 return nfs_ok;
4068
4069 if (in->si_generation == ref->si_generation)
4070 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03004071
J. Bruce Fields0836f582008-01-26 19:08:12 -05004072 /* If the client sends us a stateid from the future, it's buggy: */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004073 if (stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05004074 return nfserr_bad_stateid;
4075 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04004076 * However, we could see a stateid from the past, even from a
4077 * non-buggy client. For example, if the client sends a lock
4078 * while some IO is outstanding, the lock may bump si_generation
4079 * while the IO is still in flight. The client could avoid that
4080 * situation by waiting for responses on all the IO requests,
4081 * but better performance may result in retrying IO that
4082 * receives an old_stateid error if requests are rarely
4083 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05004084 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004085 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05004086}
4087
Chuck Lever7df302f2012-05-29 13:56:37 -04004088static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04004089{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004090 struct nfs4_stid *s;
4091 struct nfs4_ol_stateid *ols;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004092 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04004093
Chuck Lever7df302f2012-05-29 13:56:37 -04004094 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004095 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004096 /* Client debugging aid. */
4097 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
4098 char addr_str[INET6_ADDRSTRLEN];
4099 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
4100 sizeof(addr_str));
4101 pr_warn_ratelimited("NFSD: client %s testing state ID "
4102 "with incorrect client ID\n", addr_str);
Jeff Layton1af71cc2014-07-29 21:34:14 -04004103 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004104 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004105 spin_lock(&cl->cl_lock);
4106 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004107 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004108 goto out_unlock;
J. Bruce Fields36279ac2011-09-26 12:53:00 -04004109 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04004110 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004111 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04004112 switch (s->sc_type) {
4113 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004114 status = nfs_ok;
4115 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004116 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004117 status = nfserr_deleg_revoked;
4118 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004119 case NFS4_OPEN_STID:
4120 case NFS4_LOCK_STID:
4121 ols = openlockstateid(s);
4122 if (ols->st_stateowner->so_is_open_owner
4123 && !(openowner(ols->st_stateowner)->oo_flags
4124 & NFS4_OO_CONFIRMED))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004125 status = nfserr_bad_stateid;
4126 else
4127 status = nfs_ok;
4128 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004129 default:
4130 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004131 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04004132 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004133 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004134 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04004135 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004136out_unlock:
4137 spin_unlock(&cl->cl_lock);
4138 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04004139}
4140
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004141static __be32
4142nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
4143 stateid_t *stateid, unsigned char typemask,
4144 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004145{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04004146 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004147
4148 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
4149 return nfserr_bad_stateid;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004150 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004151 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04004152 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004153 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004154 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004155 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04004156 if (status)
4157 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004158 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004159 if (!*s)
4160 return nfserr_bad_stateid;
4161 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004162}
4163
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164/*
4165* Checks for stateid operations
4166*/
Al Virob37ad282006-10-19 23:28:59 -07004167__be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004168nfs4_preprocess_stateid_op(struct net *net, struct nfsd4_compound_state *cstate,
Benny Halevydd453df2009-04-03 08:28:41 +03004169 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170{
J. Bruce Fields69064a22011-09-09 11:54:57 -04004171 struct nfs4_stid *s;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004172 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03004174 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 struct inode *ino = current_fh->fh_dentry->d_inode;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004176 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Trond Myklebust14bcab12014-04-18 14:44:07 -04004177 struct file *file = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004178 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 if (filpp)
4181 *filpp = NULL;
4182
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004183 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 return nfserr_grace;
4185
4186 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004187 return check_special_stateids(net, current_fh, stateid, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188
Trond Myklebust14bcab12014-04-18 14:44:07 -04004189 nfs4_lock_state();
4190
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004191 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004192 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004193 &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004194 if (status)
Trond Myklebust14bcab12014-04-18 14:44:07 -04004195 goto out;
J. Bruce Fields69064a22011-09-09 11:54:57 -04004196 status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
4197 if (status)
4198 goto out;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004199 switch (s->sc_type) {
4200 case NFS4_DELEG_STID:
J. Bruce Fields69064a22011-09-09 11:54:57 -04004201 dp = delegstateid(s);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08004202 status = nfs4_check_delegmode(dp, flags);
4203 if (status)
4204 goto out;
Dan Carpenter43b01782010-10-27 23:19:04 +02004205 if (filpp) {
Trond Myklebust11b91642014-07-29 21:34:08 -04004206 file = dp->dl_stid.sc_file->fi_deleg_file;
Trond Myklebust14bcab12014-04-18 14:44:07 -04004207 if (!file) {
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004208 WARN_ON_ONCE(1);
4209 status = nfserr_serverfault;
4210 goto out;
4211 }
Trond Myklebustde186432014-07-10 14:07:26 -04004212 get_file(file);
Dan Carpenter43b01782010-10-27 23:19:04 +02004213 }
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004214 break;
4215 case NFS4_OPEN_STID:
4216 case NFS4_LOCK_STID:
J. Bruce Fields69064a22011-09-09 11:54:57 -04004217 stp = openlockstateid(s);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004218 status = nfs4_check_fh(current_fh, stp);
4219 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004221 if (stp->st_stateowner->so_is_open_owner
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004222 && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08004224 status = nfs4_check_openmode(stp, flags);
4225 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 goto out;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004227 if (filpp) {
Trond Myklebust11b91642014-07-29 21:34:08 -04004228 struct nfs4_file *fp = stp->st_stid.sc_file;
4229
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004230 if (flags & RD_STATE)
Trond Myklebust11b91642014-07-29 21:34:08 -04004231 file = find_readable_file(fp);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004232 else
Trond Myklebust11b91642014-07-29 21:34:08 -04004233 file = find_writeable_file(fp);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004234 }
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004235 break;
4236 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04004237 status = nfserr_bad_stateid;
4238 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 }
4240 status = nfs_ok;
Trond Myklebust14bcab12014-04-18 14:44:07 -04004241 if (file)
Trond Myklebustde186432014-07-10 14:07:26 -04004242 *filpp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243out:
Trond Myklebust14bcab12014-04-18 14:44:07 -04004244 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 return status;
4246}
4247
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004248static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004249nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004250{
J. Bruce Fieldsa1b8ff42014-05-20 15:55:21 -04004251 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
4252
Trond Myklebust11b91642014-07-29 21:34:08 -04004253 if (check_for_locks(stp->st_stid.sc_file, lo))
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004254 return nfserr_locks_held;
Jeff Laytonc53530d2014-06-30 11:48:39 -04004255 release_lockowner_if_empty(lo);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004256 return nfs_ok;
4257}
4258
4259/*
Bryan Schumaker17456802011-07-13 10:50:48 -04004260 * Test if the stateid is valid
4261 */
4262__be32
4263nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4264 struct nfsd4_test_stateid *test_stateid)
4265{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004266 struct nfsd4_test_stateid_id *stateid;
4267 struct nfs4_client *cl = cstate->session->se_client;
4268
4269 nfs4_lock_state();
4270 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04004271 stateid->ts_id_status =
4272 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004273 nfs4_unlock_state();
4274
Bryan Schumaker17456802011-07-13 10:50:48 -04004275 return nfs_ok;
4276}
4277
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004278__be32
4279nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4280 struct nfsd4_free_stateid *free_stateid)
4281{
4282 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004283 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004284 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004285 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004286 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004287
4288 nfs4_lock_state();
Jeff Layton1af71cc2014-07-29 21:34:14 -04004289 spin_lock(&cl->cl_lock);
4290 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004291 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004292 goto out_unlock;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004293 switch (s->sc_type) {
4294 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004295 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004296 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004297 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004298 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4299 if (ret)
4300 break;
4301 ret = nfserr_locks_held;
4302 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004303 case NFS4_LOCK_STID:
4304 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4305 if (ret)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004306 break;
4307 spin_unlock(&cl->cl_lock);
4308 ret = nfsd4_free_lock_stateid(openlockstateid(s));
4309 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004310 case NFS4_REVOKED_DELEG_STID:
4311 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04004312 list_del_init(&dp->dl_recall_lru);
4313 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04004314 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004315 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004316 goto out;
4317 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004318 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004319out_unlock:
4320 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004321out:
4322 nfs4_unlock_state();
4323 return ret;
4324}
4325
NeilBrown4c4cd222005-07-07 17:59:27 -07004326static inline int
4327setlkflg (int type)
4328{
4329 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
4330 RD_STATE : WR_STATE;
4331}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004333static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004334{
4335 struct svc_fh *current_fh = &cstate->current_fh;
4336 struct nfs4_stateowner *sop = stp->st_stateowner;
4337 __be32 status;
4338
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004339 status = nfsd4_check_seqid(cstate, sop, seqid);
4340 if (status)
4341 return status;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004342 if (stp->st_stid.sc_type == NFS4_CLOSED_STID
4343 || stp->st_stid.sc_type == NFS4_REVOKED_DELEG_STID)
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004344 /*
4345 * "Closed" stateid's exist *only* to return
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004346 * nfserr_replay_me from the previous step, and
4347 * revoked delegations are kept only for free_stateid.
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004348 */
4349 return nfserr_bad_stateid;
4350 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
4351 if (status)
4352 return status;
4353 return nfs4_check_fh(current_fh, stp);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004354}
4355
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356/*
4357 * Checks for sequence id mutating operations.
4358 */
Al Virob37ad282006-10-19 23:28:59 -07004359static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03004360nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04004361 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004362 struct nfs4_ol_stateid **stpp,
4363 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364{
J. Bruce Fields0836f582008-01-26 19:08:12 -05004365 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004366 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004367 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004369 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
4370 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07004371
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004373 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004374 if (status)
4375 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004376 stp = openlockstateid(s);
J. Bruce Fields3d74e6a2013-03-22 17:44:19 -04004377 if (!nfsd4_has_session(cstate))
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004378 cstate->replay_owner = stp->st_stateowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004380 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
4381 if (!status)
4382 *stpp = stp;
4383 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004384}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05004385
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004386static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
4387 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004388{
4389 __be32 status;
4390 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004392 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004393 NFS4_OPEN_STID, stpp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04004394 if (status)
4395 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004396 oo = openowner((*stpp)->st_stateowner);
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004397 if (!(oo->oo_flags & NFS4_OO_CONFIRMED))
NeilBrown3a4f98b2005-07-07 17:59:26 -07004398 return nfserr_bad_stateid;
NeilBrown3a4f98b2005-07-07 17:59:26 -07004399 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400}
4401
Al Virob37ad282006-10-19 23:28:59 -07004402__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004403nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004404 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405{
Al Virob37ad282006-10-19 23:28:59 -07004406 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004407 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004408 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004409 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
Al Viroa6a9f182013-09-16 10:57:01 -04004411 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
4412 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004414 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07004415 if (status)
4416 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
4418 nfs4_lock_state();
4419
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004420 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004421 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004422 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004423 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004424 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004425 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004426 status = nfserr_bad_stateid;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004427 if (oo->oo_flags & NFS4_OO_CONFIRMED)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004428 goto out;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004429 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004430 update_stateid(&stp->st_stid.sc_stateid);
4431 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004432 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004433 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07004434
Jeff Layton2a4317c2012-03-21 16:42:43 -04004435 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004436 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004438 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04004439 if (!cstate->replay_owner)
4440 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 return status;
4442}
4443
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004444static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004446 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004447 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04004448 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04004449 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004450}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04004451
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004452static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
4453{
4454 switch (to_access) {
4455 case NFS4_SHARE_ACCESS_READ:
4456 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
4457 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4458 break;
4459 case NFS4_SHARE_ACCESS_WRITE:
4460 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
4461 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4462 break;
4463 case NFS4_SHARE_ACCESS_BOTH:
4464 break;
4465 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004466 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 }
4468}
4469
Al Virob37ad282006-10-19 23:28:59 -07004470__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004471nfsd4_open_downgrade(struct svc_rqst *rqstp,
4472 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004473 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474{
Al Virob37ad282006-10-19 23:28:59 -07004475 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004476 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004477 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Al Viroa6a9f182013-09-16 10:57:01 -04004479 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
4480 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04004482 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02004483 if (od->od_deleg_want)
4484 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
4485 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
4487 nfs4_lock_state();
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004488 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004489 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004490 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004493 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04004494 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 stp->st_access_bmap, od->od_share_access);
4496 goto out;
4497 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04004498 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04004499 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 stp->st_deny_bmap, od->od_share_deny);
4501 goto out;
4502 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004503 nfs4_stateid_downgrade(stp, od->od_share_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Jeff Laytonce0fc432012-05-11 09:45:14 -04004505 reset_union_bmap_deny(od->od_share_deny, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004507 update_stateid(&stp->st_stid.sc_stateid);
4508 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 status = nfs_ok;
4510out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004511 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04004512 if (!cstate->replay_owner)
4513 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 return status;
4515}
4516
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004517static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
4518{
Trond Myklebustacf92952014-06-30 11:48:37 -04004519 struct nfs4_client *clp = s->st_stid.sc_client;
4520 struct nfs4_openowner *oo = openowner(s->st_stateowner);
4521
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004522 s->st_stid.sc_type = NFS4_CLOSED_STID;
Trond Myklebustacf92952014-06-30 11:48:37 -04004523 unhash_open_stateid(s);
4524
4525 if (clp->cl_minorversion) {
Trond Myklebustacf92952014-06-30 11:48:37 -04004526 if (list_empty(&oo->oo_owner.so_stateids))
4527 release_openowner(oo);
Trond Myklebust60116952014-07-29 21:34:06 -04004528 nfs4_put_stid(&s->st_stid);
Trond Myklebustacf92952014-06-30 11:48:37 -04004529 } else {
Trond Myklebust60116952014-07-29 21:34:06 -04004530 /*
4531 * In the 4.0 case we need to keep the owners around a
4532 * little while to handle CLOSE replay. We still do need
4533 * to release any file access that is held by them
4534 * before returning however.
4535 */
4536 release_all_access(s);
Trond Myklebust11b91642014-07-29 21:34:08 -04004537 if (s->st_stid.sc_file) {
4538 put_nfs4_file(s->st_stid.sc_file);
4539 s->st_stid.sc_file = NULL;
Trond Myklebustf8338832014-07-25 07:34:19 -04004540 }
Trond Myklebustacf92952014-06-30 11:48:37 -04004541 oo->oo_last_closed_stid = s;
Trond Myklebustacf92952014-06-30 11:48:37 -04004542 if (list_empty(&oo->oo_owner.so_stateids))
4543 move_to_close_lru(oo, clp->net);
4544 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04004545}
4546
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547/*
4548 * nfs4_unlock_state() called after encode
4549 */
Al Virob37ad282006-10-19 23:28:59 -07004550__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004551nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004552 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553{
Al Virob37ad282006-10-19 23:28:59 -07004554 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004555 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004556 struct net *net = SVC_NET(rqstp);
4557 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Al Viroa6a9f182013-09-16 10:57:01 -04004559 dprintk("NFSD: nfsd4_close on file %pd\n",
4560 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
4562 nfs4_lock_state();
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004563 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
4564 &close->cl_stateid,
4565 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004566 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004567 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004568 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 goto out;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004570 update_stateid(&stp->st_stid.sc_stateid);
4571 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004573 nfsd4_close_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574out:
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04004575 if (!cstate->replay_owner)
4576 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 return status;
4578}
4579
Al Virob37ad282006-10-19 23:28:59 -07004580__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004581nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4582 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004584 struct nfs4_delegation *dp;
4585 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004586 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07004587 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004588 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004590 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004591 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592
4593 nfs4_lock_state();
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004594 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004595 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004596 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004597 dp = delegstateid(s);
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004598 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004599 if (status)
4600 goto out;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004601
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004602 destroy_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004604 nfs4_unlock_state();
4605
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 return status;
4607}
4608
4609
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Benny Halevy87df4de2008-12-15 19:42:03 +02004612static inline u64
4613end_offset(u64 start, u64 len)
4614{
4615 u64 end;
4616
4617 end = start + len;
4618 return end >= start ? end: NFS4_MAX_UINT64;
4619}
4620
4621/* last octet in a range */
4622static inline u64
4623last_byte_offset(u64 start, u64 len)
4624{
4625 u64 end;
4626
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004627 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02004628 end = start + len;
4629 return end > start ? end - 1: NFS4_MAX_UINT64;
4630}
4631
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632/*
4633 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
4634 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
4635 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
4636 * locking, this prevents us from being completely protocol-compliant. The
4637 * real solution to this problem is to start using unsigned file offsets in
4638 * the VFS, but this is a very deep change!
4639 */
4640static inline void
4641nfs4_transform_lock_offset(struct file_lock *lock)
4642{
4643 if (lock->fl_start < 0)
4644 lock->fl_start = OFFSET_MAX;
4645 if (lock->fl_end < 0)
4646 lock->fl_end = OFFSET_MAX;
4647}
4648
NeilBrownd5b90262006-04-10 22:55:22 -07004649/* Hack!: For now, we're defining this just so we can use a pointer to it
4650 * as a unique cookie to identify our (NFSv4's) posix locks. */
Alexey Dobriyan7b021962009-09-21 17:01:12 -07004651static const struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07004652};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
4654static inline void
4655nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
4656{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004657 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658
NeilBrownd5b90262006-04-10 22:55:22 -07004659 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004660 lo = (struct nfs4_lockowner *) fl->fl_owner;
4661 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
4662 lo->lo_owner.so_owner.len, GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04004663 if (!deny->ld_owner.data)
4664 /* We just don't care that much */
4665 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004666 deny->ld_owner.len = lo->lo_owner.so_owner.len;
4667 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07004668 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04004669nevermind:
4670 deny->ld_owner.len = 0;
4671 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07004672 deny->ld_clientid.cl_boot = 0;
4673 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 }
4675 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02004676 deny->ld_length = NFS4_MAX_UINT64;
4677 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 deny->ld_length = fl->fl_end - fl->fl_start + 1;
4679 deny->ld_type = NFS4_READ_LT;
4680 if (fl->fl_type != F_RDLCK)
4681 deny->ld_type = NFS4_WRITE_LT;
4682}
4683
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004684static struct nfs4_lockowner *
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004685find_lockowner_str(clientid_t *clid, struct xdr_netobj *owner,
4686 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687{
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004688 unsigned int strhashval = ownerstr_hashval(clid->cl_id, owner);
4689 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004691 list_for_each_entry(so, &nn->ownerstr_hashtbl[strhashval], so_strhash) {
4692 if (so->so_is_open_owner)
4693 continue;
4694 if (!same_owner_str(so, owner, clid))
4695 continue;
4696 return lockowner(so);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 }
4698 return NULL;
4699}
4700
4701/*
4702 * Alloc a lock owner structure.
4703 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004704 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05004706 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004708static struct nfs4_lockowner *
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004709alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp, struct nfsd4_lock *lock) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004710 struct nfs4_lockowner *lo;
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004711 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004713 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
4714 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 return NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004716 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
4717 lo->lo_owner.so_is_open_owner = 0;
Neil Brownb59e3c02005-09-13 01:25:38 -07004718 /* It is the openowner seqid that will be incremented in encode in the
4719 * case of new lockowners; so increment the lock seqid manually: */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004720 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004721 list_add(&lo->lo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004722 return lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723}
4724
Jeff Layton356a95e2014-07-29 21:34:13 -04004725static void
4726init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
4727 struct nfs4_file *fp, struct inode *inode,
4728 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04004730 struct nfs4_client *clp = lo->lo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
Jeff Layton356a95e2014-07-29 21:34:13 -04004732 lockdep_assert_held(&clp->cl_lock);
4733
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004734 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05004735 stp->st_stid.sc_type = NFS4_LOCK_STID;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004736 stp->st_stateowner = &lo->lo_owner;
NeilBrown13cd2182005-06-23 22:03:10 -07004737 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04004738 stp->st_stid.sc_file = fp;
Jeff Laytonb49e0842014-07-29 21:34:11 -04004739 stp->st_stid.sc_free = nfs4_free_lock_stateid;
J. Bruce Fields0997b172011-03-02 18:01:35 -05004740 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07004742 stp->st_openstp = open_stp;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04004743 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04004744 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004745 spin_lock(&fp->fi_lock);
4746 list_add(&stp->st_perfile, &fp->fi_stateids);
4747 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748}
4749
Jeff Laytonc53530d2014-06-30 11:48:39 -04004750static struct nfs4_ol_stateid *
4751find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
4752{
4753 struct nfs4_ol_stateid *lst;
Jeff Layton356a95e2014-07-29 21:34:13 -04004754 struct nfs4_client *clp = lo->lo_owner.so_client;
4755
4756 lockdep_assert_held(&clp->cl_lock);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004757
4758 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004759 if (lst->st_stid.sc_file == fp) {
4760 atomic_inc(&lst->st_stid.sc_count);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004761 return lst;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004762 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04004763 }
4764 return NULL;
4765}
4766
Jeff Layton356a95e2014-07-29 21:34:13 -04004767static struct nfs4_ol_stateid *
4768find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
4769 struct inode *inode, struct nfs4_ol_stateid *ost,
4770 bool *new)
4771{
4772 struct nfs4_stid *ns = NULL;
4773 struct nfs4_ol_stateid *lst;
4774 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4775 struct nfs4_client *clp = oo->oo_owner.so_client;
4776
4777 spin_lock(&clp->cl_lock);
4778 lst = find_lock_stateid(lo, fi);
4779 if (lst == NULL) {
4780 spin_unlock(&clp->cl_lock);
4781 ns = nfs4_alloc_stid(clp, stateid_slab);
4782 if (ns == NULL)
4783 return NULL;
4784
4785 spin_lock(&clp->cl_lock);
4786 lst = find_lock_stateid(lo, fi);
4787 if (likely(!lst)) {
4788 lst = openlockstateid(ns);
4789 init_lock_stateid(lst, lo, fi, inode, ost);
4790 ns = NULL;
4791 *new = true;
4792 }
4793 }
4794 spin_unlock(&clp->cl_lock);
4795 if (ns)
4796 nfs4_put_stid(ns);
4797 return lst;
4798}
Jeff Laytonc53530d2014-06-30 11:48:39 -04004799
NeilBrownfd39ca92005-06-23 22:04:03 -07004800static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801check_lock_length(u64 offset, u64 length)
4802{
Benny Halevy87df4de2008-12-15 19:42:03 +02004803 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 LOFF_OVERFLOW(offset, length)));
4805}
4806
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004807static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05004808{
Trond Myklebust11b91642014-07-29 21:34:08 -04004809 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05004810
Jeff Layton7214e862014-07-10 14:07:33 -04004811 lockdep_assert_held(&fp->fi_lock);
4812
Jeff Layton82c5ff12012-05-11 09:45:13 -04004813 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05004814 return;
Jeff Layton12659652014-07-10 14:07:28 -04004815 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04004816 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05004817}
4818
Jeff Layton356a95e2014-07-29 21:34:13 -04004819static __be32
4820lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
4821 struct nfs4_ol_stateid *ost,
4822 struct nfsd4_lock *lock,
4823 struct nfs4_ol_stateid **lst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004824{
Trond Myklebust11b91642014-07-29 21:34:08 -04004825 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004826 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4827 struct nfs4_client *cl = oo->oo_owner.so_client;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004828 struct inode *inode = cstate->current_fh.fh_dentry->d_inode;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004829 struct nfs4_lockowner *lo;
4830 unsigned int strhashval;
Stanislav Kinsbursky20e9e2b2012-11-14 18:21:46 +03004831 struct nfsd_net *nn = net_generic(cl->net, nfsd_net_id);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004832
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004833 lo = find_lockowner_str(&cl->cl_clientid, &lock->v.new.owner, nn);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004834 if (!lo) {
4835 strhashval = ownerstr_hashval(cl->cl_clientid.cl_id,
4836 &lock->v.new.owner);
4837 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
4838 if (lo == NULL)
4839 return nfserr_jukebox;
4840 } else {
4841 /* with an existing lockowner, seqids must be the same */
4842 if (!cstate->minorversion &&
4843 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004844 return nfserr_bad_seqid;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004845 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04004846
Jeff Layton356a95e2014-07-29 21:34:13 -04004847 *lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004848 if (*lst == NULL) {
Jeff Layton356a95e2014-07-29 21:34:13 -04004849 release_lockowner_if_empty(lo);
4850 return nfserr_jukebox;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004851 }
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004852 return nfs_ok;
4853}
4854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855/*
4856 * LOCK operation
4857 */
Al Virob37ad282006-10-19 23:28:59 -07004858__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004859nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004860 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004862 struct nfs4_openowner *open_sop = NULL;
4863 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004864 struct nfs4_ol_stateid *lock_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04004865 struct nfs4_file *fp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04004866 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04004867 struct file_lock *file_lock = NULL;
4868 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004869 __be32 status = 0;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004870 bool new_state = false;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004871 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07004872 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004873 struct net *net = SVC_NET(rqstp);
4874 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
4876 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
4877 (long long) lock->lk_offset,
4878 (long long) lock->lk_length);
4879
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 if (check_lock_length(lock->lk_offset, lock->lk_length))
4881 return nfserr_inval;
4882
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004883 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02004884 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08004885 dprintk("NFSD: nfsd4_lock: permission denied!\n");
4886 return status;
4887 }
4888
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 nfs4_lock_state();
4890
4891 if (lock->lk_is_new) {
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004892 struct nfs4_ol_stateid *open_stp = NULL;
J. Bruce Fields684e5632011-11-04 17:08:10 -04004893
4894 if (nfsd4_has_session(cstate))
4895 /* See rfc 5661 18.10.3: given clientid is ignored: */
4896 memcpy(&lock->v.new.clientid,
4897 &cstate->session->se_client->cl_clientid,
4898 sizeof(clientid_t));
4899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004901 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004905 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 lock->lk_new_open_seqid,
4907 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004908 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07004909 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004911 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004912 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04004913 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004914 &lock->v.new.clientid))
4915 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004916 status = lookup_or_create_lock_state(cstate, open_stp, lock,
4917 &lock_stp, &new_state);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004918 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03004919 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004920 lock->lk_old_lock_seqid,
4921 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004922 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004923 /* FIXME: move into nfs4_preprocess_seqid_op */
4924 if (!status)
4925 atomic_inc(&lock_stp->st_stid.sc_count);
4926 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04004927 if (status)
4928 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004929 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004931 lkflg = setlkflg(lock->lk_type);
4932 status = nfs4_check_openmode(lock_stp, lkflg);
4933 if (status)
4934 goto out;
4935
NeilBrown0dd395d2005-07-07 17:59:15 -07004936 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004937 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004938 goto out;
4939 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004940 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004941 goto out;
4942
Jeff Layton21179d82012-08-21 08:03:32 -04004943 file_lock = locks_alloc_lock();
4944 if (!file_lock) {
4945 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4946 status = nfserr_jukebox;
4947 goto out;
4948 }
4949
Trond Myklebust11b91642014-07-29 21:34:08 -04004950 fp = lock_stp->st_stid.sc_file;
Jeff Layton21179d82012-08-21 08:03:32 -04004951 locks_init_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 switch (lock->lk_type) {
4953 case NFS4_READ_LT:
4954 case NFS4_READW_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04004955 spin_lock(&fp->fi_lock);
4956 filp = find_readable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05004957 if (filp)
4958 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04004959 spin_unlock(&fp->fi_lock);
Jeff Layton21179d82012-08-21 08:03:32 -04004960 file_lock->fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004961 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 case NFS4_WRITE_LT:
4963 case NFS4_WRITEW_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04004964 spin_lock(&fp->fi_lock);
4965 filp = find_writeable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05004966 if (filp)
4967 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04004968 spin_unlock(&fp->fi_lock);
Jeff Layton21179d82012-08-21 08:03:32 -04004969 file_lock->fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004970 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 default:
4972 status = nfserr_inval;
4973 goto out;
4974 }
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004975 if (!filp) {
4976 status = nfserr_openmode;
4977 goto out;
4978 }
Jeff Layton21179d82012-08-21 08:03:32 -04004979 file_lock->fl_owner = (fl_owner_t)lock_sop;
4980 file_lock->fl_pid = current->tgid;
4981 file_lock->fl_file = filp;
4982 file_lock->fl_flags = FL_POSIX;
4983 file_lock->fl_lmops = &nfsd_posix_mng_ops;
4984 file_lock->fl_start = lock->lk_offset;
4985 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
4986 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Jeff Layton21179d82012-08-21 08:03:32 -04004988 conflock = locks_alloc_lock();
4989 if (!conflock) {
4990 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4991 status = nfserr_jukebox;
4992 goto out;
4993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
Jeff Layton21179d82012-08-21 08:03:32 -04004995 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07004996 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 case 0: /* success! */
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004998 update_stateid(&lock_stp->st_stid.sc_stateid);
4999 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07005001 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005002 break;
5003 case (EAGAIN): /* conflock holds conflicting lock */
5004 status = nfserr_denied;
5005 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04005006 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005007 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008 case (EDEADLK):
5009 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005010 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04005011 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05005012 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04005013 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005014 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016out:
Trond Myklebustde186432014-07-10 14:07:26 -04005017 if (filp)
5018 fput(filp);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005019 if (lock_stp)
5020 nfs4_put_stid(&lock_stp->st_stid);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005021 if (status && new_state)
Jeff Laytonc53530d2014-06-30 11:48:39 -04005022 release_lock_stateid(lock_stp);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005023 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04005024 if (!cstate->replay_owner)
5025 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005026 if (file_lock)
5027 locks_free_lock(file_lock);
5028 if (conflock)
5029 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 return status;
5031}
5032
5033/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005034 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
5035 * so we do a temporary open here just to get an open file to pass to
5036 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
5037 * inode operation.)
5038 */
Al Viro04da6e92012-04-13 00:00:04 -04005039static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005040{
5041 struct file *file;
Al Viro04da6e92012-04-13 00:00:04 -04005042 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
5043 if (!err) {
5044 err = nfserrno(vfs_test_lock(file, lock));
5045 nfsd_close(file);
5046 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005047 return err;
5048}
5049
5050/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 * LOCKT operation
5052 */
Al Virob37ad282006-10-19 23:28:59 -07005053__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005054nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5055 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056{
Jeff Layton21179d82012-08-21 08:03:32 -04005057 struct file_lock *file_lock = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005058 struct nfs4_lockowner *lo;
Al Virob37ad282006-10-19 23:28:59 -07005059 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005060 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005062 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 return nfserr_grace;
5064
5065 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
5066 return nfserr_inval;
5067
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 nfs4_lock_state();
5069
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005070 if (!nfsd4_has_session(cstate)) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005071 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005072 if (status)
5073 goto out;
5074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075
J. Bruce Fields75c096f2011-08-15 18:39:32 -04005076 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078
Jeff Layton21179d82012-08-21 08:03:32 -04005079 file_lock = locks_alloc_lock();
5080 if (!file_lock) {
5081 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5082 status = nfserr_jukebox;
5083 goto out;
5084 }
5085 locks_init_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 switch (lockt->lt_type) {
5087 case NFS4_READ_LT:
5088 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04005089 file_lock->fl_type = F_RDLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 break;
5091 case NFS4_WRITE_LT:
5092 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04005093 file_lock->fl_type = F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094 break;
5095 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04005096 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 status = nfserr_inval;
5098 goto out;
5099 }
5100
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005101 lo = find_lockowner_str(&lockt->lt_clientid, &lockt->lt_owner, nn);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005102 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04005103 file_lock->fl_owner = (fl_owner_t)lo;
5104 file_lock->fl_pid = current->tgid;
5105 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106
Jeff Layton21179d82012-08-21 08:03:32 -04005107 file_lock->fl_start = lockt->lt_offset;
5108 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
Jeff Layton21179d82012-08-21 08:03:32 -04005110 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111
Jeff Layton21179d82012-08-21 08:03:32 -04005112 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04005113 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05005114 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04005115
Jeff Layton21179d82012-08-21 08:03:32 -04005116 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04005118 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 }
5120out:
5121 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005122 if (file_lock)
5123 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 return status;
5125}
5126
Al Virob37ad282006-10-19 23:28:59 -07005127__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005128nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005129 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005131 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04005133 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005134 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07005135 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005136 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
5137
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
5139 (long long) locku->lu_offset,
5140 (long long) locku->lu_length);
5141
5142 if (check_lock_length(locku->lu_offset, locku->lu_length))
5143 return nfserr_inval;
5144
5145 nfs4_lock_state();
5146
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005147 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005148 &locku->lu_stateid, NFS4_LOCK_STID,
5149 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005150 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 goto out;
Trond Myklebust858cc572014-07-29 21:34:16 -04005152 /* FIXME: move into nfs4_preprocess_seqid_op */
5153 atomic_inc(&stp->st_stid.sc_count);
Trond Myklebust11b91642014-07-29 21:34:08 -04005154 filp = find_any_file(stp->st_stid.sc_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005155 if (!filp) {
5156 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04005157 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005158 }
Jeff Layton21179d82012-08-21 08:03:32 -04005159 file_lock = locks_alloc_lock();
5160 if (!file_lock) {
5161 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5162 status = nfserr_jukebox;
Trond Myklebustde186432014-07-10 14:07:26 -04005163 goto fput;
Jeff Layton21179d82012-08-21 08:03:32 -04005164 }
5165 locks_init_lock(file_lock);
5166 file_lock->fl_type = F_UNLCK;
J. Bruce Fields0a262ff2013-06-17 17:29:40 -04005167 file_lock->fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
Jeff Layton21179d82012-08-21 08:03:32 -04005168 file_lock->fl_pid = current->tgid;
5169 file_lock->fl_file = filp;
5170 file_lock->fl_flags = FL_POSIX;
5171 file_lock->fl_lmops = &nfsd_posix_mng_ops;
5172 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173
Jeff Layton21179d82012-08-21 08:03:32 -04005174 file_lock->fl_end = last_byte_offset(locku->lu_offset,
5175 locku->lu_length);
5176 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
Jeff Layton21179d82012-08-21 08:03:32 -04005178 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07005179 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05005180 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 goto out_nfserr;
5182 }
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005183 update_stateid(&stp->st_stid.sc_stateid);
5184 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Trond Myklebustde186432014-07-10 14:07:26 -04005185fput:
5186 fput(filp);
Trond Myklebust858cc572014-07-29 21:34:16 -04005187put_stateid:
5188 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005190 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields71c3bcd2011-09-27 21:42:29 -04005191 if (!cstate->replay_owner)
5192 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005193 if (file_lock)
5194 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 return status;
5196
5197out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07005198 status = nfserrno(err);
Trond Myklebustde186432014-07-10 14:07:26 -04005199 goto fput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200}
5201
5202/*
5203 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005204 * true: locks held by lockowner
5205 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005207static bool
5208check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209{
5210 struct file_lock **flpp;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005211 int status = false;
5212 struct file *filp = find_any_file(fp);
5213 struct inode *inode;
5214
5215 if (!filp) {
5216 /* Any valid lock stateid should have some sort of access */
5217 WARN_ON_ONCE(1);
5218 return status;
5219 }
5220
5221 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222
Jeff Layton1c8c6012013-06-21 08:58:15 -04005223 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08005225 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005226 status = true;
5227 break;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08005228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04005230 spin_unlock(&inode->i_lock);
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005231 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 return status;
5233}
5234
Al Virob37ad282006-10-19 23:28:59 -07005235__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08005236nfsd4_release_lockowner(struct svc_rqst *rqstp,
5237 struct nfsd4_compound_state *cstate,
5238 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239{
5240 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Laytonfd449072014-06-30 11:48:41 -04005241 struct nfs4_stateowner *sop = NULL, *tmp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005242 struct nfs4_lockowner *lo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005243 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 struct xdr_netobj *owner = &rlockowner->rl_owner;
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005245 unsigned int hashval = ownerstr_hashval(clid->cl_id, owner);
Al Virob37ad282006-10-19 23:28:59 -07005246 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005247 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248
5249 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
5250 clid->cl_boot, clid->cl_id);
5251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 nfs4_lock_state();
5253
Jeff Layton4b24ca72014-06-30 11:48:44 -04005254 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005255 if (status)
5256 goto out;
5257
NeilBrown3e9e3db2005-06-23 22:04:20 -07005258 status = nfserr_locks_held;
J. Bruce Fields06f1f862011-11-07 16:58:18 -05005259
Jeff Laytonfd449072014-06-30 11:48:41 -04005260 /* Find the matching lock stateowner */
5261 list_for_each_entry(tmp, &nn->ownerstr_hashtbl[hashval], so_strhash) {
5262 if (tmp->so_is_open_owner)
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005263 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04005264 if (same_owner_str(tmp, owner, clid)) {
5265 sop = tmp;
5266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07005268 }
Jeff Laytonfd449072014-06-30 11:48:41 -04005269
5270 /* No matching owner found, maybe a replay? Just declare victory... */
5271 if (!sop) {
5272 status = nfs_ok;
5273 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 }
Jeff Laytonfd449072014-06-30 11:48:41 -04005275
5276 lo = lockowner(sop);
5277 /* see if there are still any locks associated with it */
5278 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
Trond Myklebust11b91642014-07-29 21:34:08 -04005279 if (check_for_locks(stp->st_stid.sc_file, lo))
Jeff Laytonfd449072014-06-30 11:48:41 -04005280 goto out;
5281 }
5282
5283 status = nfs_ok;
5284 release_lockowner(lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285out:
5286 nfs4_unlock_state();
5287 return status;
5288}
5289
5290static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07005291alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292{
NeilBrowna55370a2005-06-23 22:03:52 -07005293 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294}
5295
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005296bool
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005297nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07005298{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005299 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07005300
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005301 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005302 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07005303}
5304
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305/*
5306 * failure => all reset bets are off, nfserr_no_grace...
5307 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05005308struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005309nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310{
5311 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05005312 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
NeilBrowna55370a2005-06-23 22:03:52 -07005314 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
5315 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05005316 if (crp) {
5317 strhashval = clientstr_hashval(name);
5318 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005319 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Jeff Layton772a9bb2012-11-12 15:00:54 -05005320 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005321 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005322 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05005323 }
5324 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325}
5326
Jeff Layton2a4317c2012-03-21 16:42:43 -04005327void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005328nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05005329{
5330 list_del(&crp->cr_strhash);
5331 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005332 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05005333}
5334
5335void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005336nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337{
5338 struct nfs4_client_reclaim *crp = NULL;
5339 int i;
5340
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005342 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
5343 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005345 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346 }
5347 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005348 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349}
5350
5351/*
5352 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04005353struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005354nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355{
5356 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 struct nfs4_client_reclaim *crp = NULL;
5358
Jeff Layton278c9312012-11-12 15:00:52 -05005359 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
Jeff Layton278c9312012-11-12 15:00:52 -05005361 strhashval = clientstr_hashval(recdir);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005362 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Jeff Layton278c9312012-11-12 15:00:52 -05005363 if (same_name(crp->cr_recdir, recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 return crp;
5365 }
5366 }
5367 return NULL;
5368}
5369
5370/*
5371* Called from OPEN. Look for clientid in reclaim list.
5372*/
Al Virob37ad282006-10-19 23:28:59 -07005373__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005374nfs4_check_open_reclaim(clientid_t *clid,
5375 struct nfsd4_compound_state *cstate,
5376 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005378 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04005379
5380 /* find clientid in conf_id_hashtbl */
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005381 status = lookup_clientid(clid, cstate, nn);
5382 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04005383 return nfserr_reclaim_bad;
5384
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005385 if (nfsd4_client_record_check(cstate->clp))
5386 return nfserr_reclaim_bad;
5387
5388 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389}
5390
Bryan Schumaker65178db2011-11-01 13:35:21 -04005391#ifdef CONFIG_NFSD_FAULT_INJECTION
5392
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005393u64 nfsd_forget_client(struct nfs4_client *clp, u64 max)
5394{
J. Bruce Fields221a6872013-04-01 22:23:49 -04005395 if (mark_client_expired(clp))
5396 return 0;
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005397 expire_client(clp);
5398 return 1;
5399}
5400
Bryan Schumaker184c1842012-11-29 11:40:44 -05005401u64 nfsd_print_client(struct nfs4_client *clp, u64 num)
5402{
5403 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05005404 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05005405 printk(KERN_INFO "NFS Client: %s\n", buf);
5406 return 1;
5407}
5408
5409static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
5410 const char *type)
5411{
5412 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05005413 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05005414 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
5415}
5416
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005417static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
5418 void (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05005419{
5420 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05005421 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005422 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05005423 u64 count = 0;
5424
5425 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005426 list_for_each_entry_safe(stp, st_next,
5427 &oop->oo_owner.so_stateids, st_perstateowner) {
5428 list_for_each_entry_safe(lst, lst_next,
5429 &stp->st_locks, st_locks) {
Bryan Schumakerfc291712012-11-29 11:40:40 -05005430 if (func)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005431 func(lst);
Bryan Schumakerfc291712012-11-29 11:40:40 -05005432 if (++count == max)
5433 return count;
5434 }
5435 }
5436 }
5437
5438 return count;
5439}
5440
5441u64 nfsd_forget_client_locks(struct nfs4_client *clp, u64 max)
5442{
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005443 return nfsd_foreach_client_lock(clp, max, release_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05005444}
5445
Bryan Schumaker184c1842012-11-29 11:40:44 -05005446u64 nfsd_print_client_locks(struct nfs4_client *clp, u64 max)
5447{
5448 u64 count = nfsd_foreach_client_lock(clp, max, NULL);
5449 nfsd_print_count(clp, count, "locked files");
5450 return count;
5451}
5452
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05005453static u64 nfsd_foreach_client_open(struct nfs4_client *clp, u64 max, void (*func)(struct nfs4_openowner *))
5454{
5455 struct nfs4_openowner *oop, *next;
5456 u64 count = 0;
5457
5458 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
5459 if (func)
5460 func(oop);
5461 if (++count == max)
5462 break;
5463 }
5464
5465 return count;
5466}
5467
5468u64 nfsd_forget_client_openowners(struct nfs4_client *clp, u64 max)
5469{
5470 return nfsd_foreach_client_open(clp, max, release_openowner);
5471}
5472
Bryan Schumaker184c1842012-11-29 11:40:44 -05005473u64 nfsd_print_client_openowners(struct nfs4_client *clp, u64 max)
5474{
5475 u64 count = nfsd_foreach_client_open(clp, max, NULL);
5476 nfsd_print_count(clp, count, "open files");
5477 return count;
5478}
5479
Bryan Schumaker269de302012-11-29 11:40:42 -05005480static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
5481 struct list_head *victims)
5482{
5483 struct nfs4_delegation *dp, *next;
5484 u64 count = 0;
5485
Benny Halevycdc97502014-05-30 09:09:30 -04005486 lockdep_assert_held(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005487 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04005488 if (victims) {
5489 /*
5490 * It's not safe to mess with delegations that have a
5491 * non-zero dl_time. They might have already been broken
5492 * and could be processed by the laundromat outside of
5493 * the state_lock. Just leave them be.
5494 */
5495 if (dp->dl_time != 0)
5496 continue;
5497
Jeff Layton42690672014-07-25 07:34:20 -04005498 unhash_delegation_locked(dp);
5499 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04005500 }
Bryan Schumaker269de302012-11-29 11:40:42 -05005501 if (++count == max)
5502 break;
5503 }
5504 return count;
5505}
5506
5507u64 nfsd_forget_client_delegations(struct nfs4_client *clp, u64 max)
5508{
5509 struct nfs4_delegation *dp, *next;
5510 LIST_HEAD(victims);
5511 u64 count;
5512
Benny Halevycdc97502014-05-30 09:09:30 -04005513 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005514 count = nfsd_find_all_delegations(clp, max, &victims);
Benny Halevycdc97502014-05-30 09:09:30 -04005515 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005516
Jeff Layton2d4a5322014-07-25 07:34:21 -04005517 list_for_each_entry_safe(dp, next, &victims, dl_recall_lru) {
5518 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005519 revoke_delegation(dp);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005520 }
Bryan Schumaker269de302012-11-29 11:40:42 -05005521
5522 return count;
5523}
5524
5525u64 nfsd_recall_client_delegations(struct nfs4_client *clp, u64 max)
5526{
Jeff Laytondff13992014-07-08 14:02:49 -04005527 struct nfs4_delegation *dp;
Bryan Schumaker269de302012-11-29 11:40:42 -05005528 LIST_HEAD(victims);
5529 u64 count;
5530
Benny Halevycdc97502014-05-30 09:09:30 -04005531 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005532 count = nfsd_find_all_delegations(clp, max, &victims);
Jeff Laytondff13992014-07-08 14:02:49 -04005533 while (!list_empty(&victims)) {
5534 dp = list_first_entry(&victims, struct nfs4_delegation,
5535 dl_recall_lru);
5536 list_del_init(&dp->dl_recall_lru);
5537 dp->dl_time = 0;
Bryan Schumaker269de302012-11-29 11:40:42 -05005538 nfsd_break_one_deleg(dp);
Jeff Laytondff13992014-07-08 14:02:49 -04005539 }
Benny Halevycdc97502014-05-30 09:09:30 -04005540 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005541
5542 return count;
5543}
5544
Bryan Schumaker184c1842012-11-29 11:40:44 -05005545u64 nfsd_print_client_delegations(struct nfs4_client *clp, u64 max)
5546{
5547 u64 count = 0;
5548
Benny Halevycdc97502014-05-30 09:09:30 -04005549 spin_lock(&state_lock);
Bryan Schumaker184c1842012-11-29 11:40:44 -05005550 count = nfsd_find_all_delegations(clp, max, NULL);
Benny Halevycdc97502014-05-30 09:09:30 -04005551 spin_unlock(&state_lock);
Bryan Schumaker184c1842012-11-29 11:40:44 -05005552
5553 nfsd_print_count(clp, count, "delegations");
5554 return count;
5555}
5556
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005557u64 nfsd_for_n_state(u64 max, u64 (*func)(struct nfs4_client *, u64))
Bryan Schumaker65178db2011-11-01 13:35:21 -04005558{
5559 struct nfs4_client *clp, *next;
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005560 u64 count = 0;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005561 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
Bryan Schumaker65178db2011-11-01 13:35:21 -04005562
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005563 if (!nfsd_netns_ready(nn))
5564 return 0;
5565
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005566 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005567 count += func(clp, max - count);
5568 if ((max != 0) && (count >= max))
Bryan Schumaker65178db2011-11-01 13:35:21 -04005569 break;
5570 }
Bryan Schumaker65178db2011-11-01 13:35:21 -04005571
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005572 return count;
5573}
5574
Bryan Schumaker6c1e82a2012-11-29 11:40:46 -05005575struct nfs4_client *nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
5576{
5577 struct nfs4_client *clp;
5578 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
5579
5580 if (!nfsd_netns_ready(nn))
5581 return NULL;
5582
5583 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
5584 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
5585 return clp;
5586 }
5587 return NULL;
5588}
5589
Bryan Schumaker65178db2011-11-01 13:35:21 -04005590#endif /* CONFIG_NFSD_FAULT_INJECTION */
5591
Meelap Shahc2f1a552007-07-17 04:04:39 -07005592/*
5593 * Since the lifetime of a delegation isn't limited to that of an open, a
5594 * client may quite reasonably hang on to a delegation as long as it has
5595 * the inode cached. This becomes an obvious problem the first time a
5596 * client's inode cache approaches the size of the server's total memory.
5597 *
5598 * For now we avoid this problem by imposing a hard limit on the number
5599 * of delegations, which varies according to the server's memory size.
5600 */
5601static void
5602set_max_delegations(void)
5603{
5604 /*
5605 * Allow at most 4 delegations per megabyte of RAM. Quick
5606 * estimates suggest that in the worst case (where every delegation
5607 * is for a different inode), a delegation could take about 1.5K,
5608 * giving a worst case usage of about 6% of memory.
5609 */
5610 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
5611}
5612
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005613static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005614{
5615 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5616 int i;
5617
5618 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
5619 CLIENT_HASH_SIZE, GFP_KERNEL);
5620 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005621 goto err;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005622 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
5623 CLIENT_HASH_SIZE, GFP_KERNEL);
5624 if (!nn->unconf_id_hashtbl)
5625 goto err_unconf_id;
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005626 nn->ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
5627 OWNER_HASH_SIZE, GFP_KERNEL);
5628 if (!nn->ownerstr_hashtbl)
5629 goto err_ownerstr;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005630 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
5631 SESSION_HASH_SIZE, GFP_KERNEL);
5632 if (!nn->sessionid_hashtbl)
5633 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005634
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005635 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005636 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005637 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005638 }
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005639 for (i = 0; i < OWNER_HASH_SIZE; i++)
5640 INIT_LIST_HEAD(&nn->ownerstr_hashtbl[i]);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005641 for (i = 0; i < SESSION_HASH_SIZE; i++)
5642 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005643 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005644 nn->unconf_name_tree = RB_ROOT;
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005645 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03005646 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005647 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005648 spin_lock_init(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005649
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005650 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005651 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005652
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005653 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005654
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005655err_sessionid:
Stanislav Kinsbursky20e9e2b2012-11-14 18:21:46 +03005656 kfree(nn->ownerstr_hashtbl);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005657err_ownerstr:
5658 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005659err_unconf_id:
5660 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005661err:
5662 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005663}
5664
5665static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005666nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005667{
5668 int i;
5669 struct nfs4_client *clp = NULL;
5670 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5671
5672 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
5673 while (!list_empty(&nn->conf_id_hashtbl[i])) {
5674 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
5675 destroy_client(clp);
5676 }
5677 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005678
Kinglong Mee2b905632014-03-26 22:09:30 +08005679 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
5680 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
5681 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
5682 destroy_client(clp);
5683 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005684 }
5685
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005686 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005687 kfree(nn->ownerstr_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005688 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005689 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005690 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005691}
5692
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03005693int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005694nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07005695{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005696 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005697 int ret;
5698
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005699 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005700 if (ret)
5701 return ret;
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005702 nfsd4_client_tracking_init(net);
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04005703 nn->boot_time = get_seconds();
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005704 locks_start_grace(net, &nn->nfsd4_manager);
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005705 nn->grace_ended = false;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005706 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %p)\n",
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03005707 nn->nfsd4_grace, net);
5708 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005709 return 0;
5710}
5711
5712/* initialization to perform when the nfsd service is started: */
5713
5714int
5715nfs4_state_start(void)
5716{
5717 int ret;
5718
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005719 ret = set_callback_cred();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005720 if (ret)
5721 return -ENOMEM;
NeilBrown58da2822005-06-23 22:03:19 -07005722 laundry_wq = create_singlethread_workqueue("nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05005723 if (laundry_wq == NULL) {
5724 ret = -ENOMEM;
5725 goto out_recovery;
5726 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005727 ret = nfsd4_create_callback_queue();
5728 if (ret)
5729 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005730
Meelap Shahc2f1a552007-07-17 04:04:39 -07005731 set_max_delegations();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005732
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005733 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005734
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005735out_free_laundry:
5736 destroy_workqueue(laundry_wq);
Jeff Laytona6d6b782012-03-05 11:42:36 -05005737out_recovery:
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005738 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739}
5740
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03005741void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005742nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005746 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005748 cancel_delayed_work_sync(&nn->laundromat_work);
5749 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05005750
J. Bruce Fieldse50a26d2013-10-30 10:33:09 -04005751 nfs4_lock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04005753 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005754 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04005756 unhash_delegation_locked(dp);
5757 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758 }
Benny Halevycdc97502014-05-30 09:09:30 -04005759 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760 list_for_each_safe(pos, next, &reaplist) {
5761 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04005762 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04005763 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 }
5765
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005766 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005767 nfs4_state_destroy_net(net);
J. Bruce Fieldse50a26d2013-10-30 10:33:09 -04005768 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769}
5770
5771void
5772nfs4_state_shutdown(void)
5773{
NeilBrown5e8d5c22006-04-10 22:55:37 -07005774 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04005775 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005777
5778static void
5779get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5780{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01005781 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
5782 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005783}
5784
5785static void
5786put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5787{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01005788 if (cstate->minorversion) {
5789 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
5790 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
5791 }
5792}
5793
5794void
5795clear_current_stateid(struct nfsd4_compound_state *cstate)
5796{
5797 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005798}
5799
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005800/*
5801 * functions to set current state id
5802 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005803void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01005804nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5805{
5806 put_stateid(cstate, &odp->od_stateid);
5807}
5808
5809void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005810nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
5811{
5812 put_stateid(cstate, &open->op_stateid);
5813}
5814
5815void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005816nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5817{
5818 put_stateid(cstate, &close->cl_stateid);
5819}
5820
5821void
5822nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
5823{
5824 put_stateid(cstate, &lock->lk_resp_stateid);
5825}
5826
5827/*
5828 * functions to consume current state id
5829 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01005830
5831void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01005832nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5833{
5834 get_stateid(cstate, &odp->od_stateid);
5835}
5836
5837void
5838nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
5839{
5840 get_stateid(cstate, &drp->dr_stateid);
5841}
5842
5843void
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01005844nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
5845{
5846 get_stateid(cstate, &fsp->fr_stateid);
5847}
5848
5849void
5850nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
5851{
5852 get_stateid(cstate, &setattr->sa_stateid);
5853}
5854
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005855void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005856nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5857{
5858 get_stateid(cstate, &close->cl_stateid);
5859}
5860
5861void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005862nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005863{
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005864 get_stateid(cstate, &locku->lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005865}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01005866
5867void
5868nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
5869{
5870 get_stateid(cstate, &read->rd_stateid);
5871}
5872
5873void
5874nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
5875{
5876 get_stateid(cstate, &write->wr_stateid);
5877}