blob: b61319401826cb10b50000973f54a6ec09a603e4 [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 Halevycdc975052014-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 Halevycdc975052014-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 Halevycdc975052014-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 Halevycdc975052014-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
Jeff Layton6b180f02014-07-29 21:34:26 -0400893static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
894{
895 if (!atomic_dec_and_test(&sop->so_count))
896 return;
Jeff Layton8f4b54c2014-07-29 21:34:29 -0400897 sop->so_ops->so_unhash(sop);
Jeff Layton6b180f02014-07-29 21:34:26 -0400898 kfree(sop->so_owner.data);
899 sop->so_ops->so_free(sop);
900}
901
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400902static void unhash_generic_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500903{
Trond Myklebust11b91642014-07-29 21:34:08 -0400904 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -0400905
Jeff Layton1c755dc2014-07-29 21:34:12 -0400906 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
907
Trond Myklebust1d31a252014-07-10 14:07:25 -0400908 spin_lock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500909 list_del(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -0400910 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500911 list_del(&stp->st_perstateowner);
912}
913
Trond Myklebust60116952014-07-29 21:34:06 -0400914static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500915{
Trond Myklebust60116952014-07-29 21:34:06 -0400916 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -0400917
Trond Myklebust60116952014-07-29 21:34:06 -0400918 release_all_access(stp);
Jeff Laytond3134b12014-07-29 21:34:32 -0400919 if (stp->st_stateowner)
920 nfs4_put_stateowner(stp->st_stateowner);
Trond Myklebust60116952014-07-29 21:34:06 -0400921 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500922}
923
Jeff Laytonb49e0842014-07-29 21:34:11 -0400924static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500925{
Jeff Laytonb49e0842014-07-29 21:34:11 -0400926 struct nfs4_ol_stateid *stp = openlockstateid(stid);
927 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500928 struct file *file;
929
Jeff Laytonb49e0842014-07-29 21:34:11 -0400930 file = find_any_file(stp->st_stid.sc_file);
931 if (file)
932 filp_close(file, (fl_owner_t)lo);
933 nfs4_free_ol_stateid(stid);
934}
935
Jeff Layton5adfd882014-07-29 21:34:31 -0400936static void release_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Laytonb49e0842014-07-29 21:34:11 -0400937{
Jeff Layton1c755dc2014-07-29 21:34:12 -0400938 struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner);
939
940 spin_lock(&oo->oo_owner.so_client->cl_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400941 list_del(&stp->st_locks);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500942 unhash_generic_stateid(stp);
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400943 unhash_stid(&stp->st_stid);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400944 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400945 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500946}
947
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400948static void unhash_lockowner(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500949{
Jeff Layton8f4b54c2014-07-29 21:34:29 -0400950 list_del_init(&lo->lo_owner.so_strhash);
951}
952
953static void release_lockowner_stateids(struct nfs4_lockowner *lo)
954{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400955 struct nfs4_ol_stateid *stp;
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500956
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400957 while (!list_empty(&lo->lo_owner.so_stateids)) {
958 stp = list_first_entry(&lo->lo_owner.so_stateids,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400959 struct nfs4_ol_stateid, st_perstateowner);
Jeff Layton5adfd882014-07-29 21:34:31 -0400960 release_lock_stateid(stp);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500961 }
962}
963
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400964static void release_lockowner(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500965{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400966 unhash_lockowner(lo);
Jeff Layton8f4b54c2014-07-29 21:34:29 -0400967 release_lockowner_stateids(lo);
Jeff Layton6b180f02014-07-29 21:34:26 -0400968 nfs4_put_stateowner(&lo->lo_owner);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500969}
970
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400971static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp)
Jeff Layton1c755dc2014-07-29 21:34:12 -0400972 __releases(&open_stp->st_stateowner->so_client->cl_lock)
973 __acquires(&open_stp->st_stateowner->so_client->cl_lock)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400974{
975 struct nfs4_ol_stateid *stp;
976
977 while (!list_empty(&open_stp->st_locks)) {
978 stp = list_entry(open_stp->st_locks.next,
979 struct nfs4_ol_stateid, st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400980 spin_unlock(&open_stp->st_stateowner->so_client->cl_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400981 release_lock_stateid(stp);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400982 spin_lock(&open_stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500983 }
984}
985
J. Bruce Fields38c387b2011-09-16 17:42:48 -0400986static void unhash_open_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields22839632009-01-11 14:27:17 -0500987{
Jeff Layton1c755dc2014-07-29 21:34:12 -0400988 spin_lock(&stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields22839632009-01-11 14:27:17 -0500989 unhash_generic_stateid(stp);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400990 release_open_stateid_locks(stp);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400991 spin_unlock(&stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields38c387b2011-09-16 17:42:48 -0400992}
993
994static void release_open_stateid(struct nfs4_ol_stateid *stp)
995{
996 unhash_open_stateid(stp);
Trond Myklebust60116952014-07-29 21:34:06 -0400997 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields22839632009-01-11 14:27:17 -0500998}
999
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001000static void unhash_openowner(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001001{
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001002 list_del_init(&oo->oo_owner.so_strhash);
1003 list_del_init(&oo->oo_perclient);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001004}
1005
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001006static void release_last_closed_stateid(struct nfs4_openowner *oo)
1007{
1008 struct nfs4_ol_stateid *s = oo->oo_last_closed_stid;
1009
1010 if (s) {
Jeff Laytond3134b12014-07-29 21:34:32 -04001011 list_del_init(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001012 oo->oo_last_closed_stid = NULL;
Jeff Laytond3134b12014-07-29 21:34:32 -04001013 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001014 }
1015}
1016
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001017static void release_openowner_stateids(struct nfs4_openowner *oo)
1018{
1019 struct nfs4_ol_stateid *stp;
1020
1021 while (!list_empty(&oo->oo_owner.so_stateids)) {
1022 stp = list_first_entry(&oo->oo_owner.so_stateids,
1023 struct nfs4_ol_stateid, st_perstateowner);
1024 release_open_stateid(stp);
1025 }
1026}
1027
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001028static void release_openowner(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001029{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001030 unhash_openowner(oo);
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001031 release_openowner_stateids(oo);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001032 release_last_closed_stateid(oo);
Jeff Layton6b180f02014-07-29 21:34:26 -04001033 nfs4_put_stateowner(&oo->oo_owner);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001034}
1035
Marc Eshel5282fd72009-04-03 08:27:52 +03001036static inline int
1037hash_sessionid(struct nfs4_sessionid *sessionid)
1038{
1039 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1040
1041 return sid->sequence % SESSION_HASH_SIZE;
1042}
1043
Trond Myklebust8f199b82012-03-20 15:11:17 -04001044#ifdef NFSD_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001045static inline void
1046dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1047{
1048 u32 *ptr = (u32 *)(&sessionid->data[0]);
1049 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1050}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001051#else
1052static inline void
1053dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1054{
1055}
1056#endif
1057
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001058/*
1059 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1060 * won't be used for replay.
1061 */
1062void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1063{
1064 struct nfs4_stateowner *so = cstate->replay_owner;
1065
1066 if (nfserr == nfserr_replay_me)
1067 return;
1068
1069 if (!seqid_mutating_err(ntohl(nfserr))) {
Jeff Layton58fb12e2014-07-29 21:34:27 -04001070 nfsd4_cstate_clear_replay(cstate);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001071 return;
1072 }
1073 if (!so)
1074 return;
1075 if (so->so_is_open_owner)
1076 release_last_closed_stateid(openowner(so));
1077 so->so_seqid++;
1078 return;
1079}
Marc Eshel5282fd72009-04-03 08:27:52 +03001080
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001081static void
1082gen_sessionid(struct nfsd4_session *ses)
1083{
1084 struct nfs4_client *clp = ses->se_client;
1085 struct nfsd4_sessionid *sid;
1086
1087 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1088 sid->clientid = clp->cl_clientid;
1089 sid->sequence = current_sessionid++;
1090 sid->reserved = 0;
1091}
1092
1093/*
Andy Adamsona649637c72009-08-28 08:45:01 -04001094 * The protocol defines ca_maxresponssize_cached to include the size of
1095 * the rpc header, but all we need to cache is the data starting after
1096 * the end of the initial SEQUENCE operation--the rest we regenerate
1097 * each time. Therefore we can advertise a ca_maxresponssize_cached
1098 * value that is the number of bytes in our cache plus a few additional
1099 * bytes. In order to stay on the safe side, and not promise more than
1100 * we can cache, those additional bytes must be the minimum possible: 24
1101 * bytes of rpc header (xid through accept state, with AUTH_NULL
1102 * verifier), 12 for the compound header (with zero-length tag), and 44
1103 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001104 */
Andy Adamsona649637c72009-08-28 08:45:01 -04001105#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1106
Andy Adamson557ce262009-08-28 08:45:04 -04001107static void
1108free_session_slots(struct nfsd4_session *ses)
1109{
1110 int i;
1111
1112 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
1113 kfree(ses->se_slots[i]);
1114}
1115
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001116/*
1117 * We don't actually need to cache the rpc and session headers, so we
1118 * can allocate a little less for each slot:
1119 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001120static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001121{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001122 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001123
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001124 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1125 size = 0;
1126 else
1127 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1128 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001129}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001130
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001131/*
1132 * XXX: If we run out of reserved DRC memory we could (up to a point)
1133 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001134 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001135 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001136static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001137{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001138 u32 slotsize = slot_bytes(ca);
1139 u32 num = ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001140 int avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001141
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001142 spin_lock(&nfsd_drc_lock);
Zhang Yanfei697ce9b2013-02-22 16:35:47 -08001143 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION,
1144 nfsd_drc_max_mem - nfsd_drc_mem_used);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001145 num = min_t(int, num, avail / slotsize);
1146 nfsd_drc_mem_used += num * slotsize;
1147 spin_unlock(&nfsd_drc_lock);
1148
1149 return num;
1150}
1151
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001152static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001153{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001154 int slotsize = slot_bytes(ca);
1155
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001156 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001157 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001158 spin_unlock(&nfsd_drc_lock);
1159}
1160
Kinglong Mee60810e52014-01-01 00:35:47 +08001161static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1162 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001163{
Kinglong Mee60810e52014-01-01 00:35:47 +08001164 int numslots = fattrs->maxreqs;
1165 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001166 struct nfsd4_session *new;
1167 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001168
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001169 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001170 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1171 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001172
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001173 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001174 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001175 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001176 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001177 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001178 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001179 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001180 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001181 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001182
1183 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1184 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1185
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001186 return new;
1187out_free:
1188 while (i--)
1189 kfree(new->se_slots[i]);
1190 kfree(new);
1191 return NULL;
1192}
1193
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001194static void free_conn(struct nfsd4_conn *c)
1195{
1196 svc_xprt_put(c->cn_xprt);
1197 kfree(c);
1198}
1199
1200static void nfsd4_conn_lost(struct svc_xpt_user *u)
1201{
1202 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1203 struct nfs4_client *clp = c->cn_session->se_client;
1204
1205 spin_lock(&clp->cl_lock);
1206 if (!list_empty(&c->cn_persession)) {
1207 list_del(&c->cn_persession);
1208 free_conn(c);
1209 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001210 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001211 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001212}
1213
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001214static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001215{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001216 struct nfsd4_conn *conn;
1217
1218 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1219 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001220 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001221 svc_xprt_get(rqstp->rq_xprt);
1222 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001223 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001224 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1225 return conn;
1226}
1227
J. Bruce Fields328ead22010-09-29 16:11:06 -04001228static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1229{
1230 conn->cn_session = ses;
1231 list_add(&conn->cn_persession, &ses->se_conns);
1232}
1233
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001234static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1235{
1236 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001237
1238 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001239 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001240 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001241}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001242
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001243static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001244{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001245 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001246 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001247}
1248
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001249static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001250{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001251 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001252
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001253 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001254 ret = nfsd4_register_conn(conn);
1255 if (ret)
1256 /* oops; xprt is already down: */
1257 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001258 /* We may have gained or lost a callback channel: */
1259 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001260}
1261
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001262static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001263{
1264 u32 dir = NFS4_CDFC4_FORE;
1265
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001266 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001267 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001268 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001269}
1270
1271/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001272static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001273{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001274 struct nfs4_client *clp = s->se_client;
1275 struct nfsd4_conn *c;
1276
1277 spin_lock(&clp->cl_lock);
1278 while (!list_empty(&s->se_conns)) {
1279 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1280 list_del_init(&c->cn_persession);
1281 spin_unlock(&clp->cl_lock);
1282
1283 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1284 free_conn(c);
1285
1286 spin_lock(&clp->cl_lock);
1287 }
1288 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001289}
1290
J. Bruce Fields1377b692012-09-11 21:42:40 -04001291static void __free_session(struct nfsd4_session *ses)
1292{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001293 free_session_slots(ses);
1294 kfree(ses);
1295}
1296
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001297static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001298{
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001299 struct nfsd_net *nn = net_generic(ses->se_client->net, nfsd_net_id);
1300
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001301 lockdep_assert_held(&nn->client_lock);
1302 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001303 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001304 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001305}
Andy Adamson557ce262009-08-28 08:45:04 -04001306
Fengguang Wu135ae822012-11-10 07:20:25 -05001307static 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 -04001308{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001309 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001310 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001311
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001312 new->se_client = clp;
1313 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001314
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001315 INIT_LIST_HEAD(&new->se_conns);
1316
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04001317 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001318 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001319 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001320 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001321 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001322 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001323 spin_lock(&nn->client_lock);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001324 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001325 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001326 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001327 spin_unlock(&clp->cl_lock);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001328 spin_unlock(&nn->client_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001329
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001330 if (cses->flags & SESSION4_BACK_CHAN) {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001331 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001332 /*
1333 * This is a little silly; with sessions there's no real
1334 * use for the callback address. Use the peer address
1335 * as a reasonable default for now, but consider fixing
1336 * the rpc client not to require an address in the
1337 * future:
1338 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001339 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1340 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001341 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001342}
1343
Benny Halevy9089f1b2010-05-12 00:12:26 +03001344/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001345static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001346__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001347{
1348 struct nfsd4_session *elem;
1349 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001350 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001351
1352 dump_sessionid(__func__, sessionid);
1353 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001354 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001355 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001356 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1357 NFS4_MAX_SESSIONID_LEN)) {
1358 return elem;
1359 }
1360 }
1361
1362 dprintk("%s: session not found\n", __func__);
1363 return NULL;
1364}
1365
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001366static struct nfsd4_session *
1367find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1368 __be32 *ret)
1369{
1370 struct nfsd4_session *session;
1371 __be32 status = nfserr_badsession;
1372
1373 session = __find_in_sessionid_hashtbl(sessionid, net);
1374 if (!session)
1375 goto out;
1376 status = nfsd4_get_session_locked(session);
1377 if (status)
1378 session = NULL;
1379out:
1380 *ret = status;
1381 return session;
1382}
1383
Benny Halevy9089f1b2010-05-12 00:12:26 +03001384/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001385static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001386unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001387{
1388 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001389 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001390 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001391 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001392}
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1395static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001396STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001398 if (clid->cl_boot == nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +03001400 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001401 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return 1;
1403}
1404
1405/*
1406 * XXX Should we use a slab cache ?
1407 * This type of memory management is somewhat inefficient, but we use it
1408 * anyway since SETCLIENTID is not a common operation.
1409 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001410static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
1412 struct nfs4_client *clp;
1413
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001414 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1415 if (clp == NULL)
1416 return NULL;
Thomas Meyer67114fe2011-11-17 23:43:40 +01001417 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001418 if (clp->cl_name.data == NULL) {
1419 kfree(clp);
1420 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001422 clp->cl_name.len = name.len;
Trond Myklebust5694c932014-04-18 14:43:56 -04001423 INIT_LIST_HEAD(&clp->cl_sessions);
1424 idr_init(&clp->cl_stateids);
1425 atomic_set(&clp->cl_refcount, 0);
1426 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1427 INIT_LIST_HEAD(&clp->cl_idhash);
1428 INIT_LIST_HEAD(&clp->cl_openowners);
1429 INIT_LIST_HEAD(&clp->cl_delegations);
1430 INIT_LIST_HEAD(&clp->cl_lru);
1431 INIT_LIST_HEAD(&clp->cl_callbacks);
1432 INIT_LIST_HEAD(&clp->cl_revoked);
1433 spin_lock_init(&clp->cl_lock);
1434 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return clp;
1436}
1437
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001438static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439free_client(struct nfs4_client *clp)
1440{
Stanislav Kinsburskybca0ec62013-01-09 12:38:34 +03001441 struct nfsd_net __maybe_unused *nn = net_generic(clp->net, nfsd_net_id);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001442
1443 lockdep_assert_held(&nn->client_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001444 while (!list_empty(&clp->cl_sessions)) {
1445 struct nfsd4_session *ses;
1446 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1447 se_perclnt);
1448 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001449 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1450 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001451 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04001452 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001453 free_svc_cred(&clp->cl_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 kfree(clp->cl_name.data);
majianpeng2d32b292013-01-29 13:16:06 +08001455 idr_destroy(&clp->cl_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 kfree(clp);
1457}
1458
Benny Halevy84d38ac2010-05-12 00:13:16 +03001459/* must be called under the client_lock */
1460static inline void
1461unhash_client_locked(struct nfs4_client *clp)
1462{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001463 struct nfsd4_session *ses;
1464
Benny Halevy84d38ac2010-05-12 00:13:16 +03001465 list_del(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001466 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001467 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1468 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001469 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001470}
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472static void
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001473destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001475 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 struct list_head reaplist;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001478 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04001481 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07001482 while (!list_empty(&clp->cl_delegations)) {
1483 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton42690672014-07-25 07:34:20 -04001484 unhash_delegation_locked(dp);
1485 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
Benny Halevycdc975052014-05-30 09:09:30 -04001487 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 while (!list_empty(&reaplist)) {
1489 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04001490 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001491 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04001493 while (!list_empty(&clp->cl_revoked)) {
Benny Halevy956c4fe2013-10-29 11:39:12 +02001494 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001495 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001496 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02001497 }
NeilBrownea1da632005-06-23 22:04:17 -07001498 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001499 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
Jeff Laytond3134b12014-07-29 21:34:32 -04001500 atomic_inc(&oo->oo_owner.so_count);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001501 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001503 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05001504 if (clp->cl_cb_conn.cb_xprt)
1505 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001506 list_del(&clp->cl_idhash);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001507 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001508 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001509 else
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001510 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001511 spin_lock(&nn->client_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001512 unhash_client_locked(clp);
J. Bruce Fields221a6872013-04-01 22:23:49 -04001513 WARN_ON_ONCE(atomic_read(&clp->cl_refcount));
1514 free_client(clp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001515 spin_unlock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001518static void expire_client(struct nfs4_client *clp)
1519{
1520 nfsd4_client_record_remove(clp);
1521 destroy_client(clp);
1522}
1523
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001524static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1525{
1526 memcpy(target->cl_verifier.data, source->data,
1527 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001530static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1531{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1533 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1534}
1535
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001536static int copy_cred(struct svc_cred *target, struct svc_cred *source)
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001537{
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001538 if (source->cr_principal) {
1539 target->cr_principal =
1540 kstrdup(source->cr_principal, GFP_KERNEL);
1541 if (target->cr_principal == NULL)
1542 return -ENOMEM;
1543 } else
1544 target->cr_principal = NULL;
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04001545 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 target->cr_uid = source->cr_uid;
1547 target->cr_gid = source->cr_gid;
1548 target->cr_group_info = source->cr_group_info;
1549 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04001550 target->cr_gss_mech = source->cr_gss_mech;
1551 if (source->cr_gss_mech)
1552 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001553 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
1555
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001556static long long
1557compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
1558{
1559 long long res;
1560
1561 res = o1->len - o2->len;
1562 if (res)
1563 return res;
1564 return (long long)memcmp(o1->data, o2->data, o1->len);
1565}
1566
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001567static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001568{
NeilBrowna55370a2005-06-23 22:03:52 -07001569 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
1572static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001573same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1574{
1575 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
1578static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001579same_clid(clientid_t *cl1, clientid_t *cl2)
1580{
1581 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001584static bool groups_equal(struct group_info *g1, struct group_info *g2)
1585{
1586 int i;
1587
1588 if (g1->ngroups != g2->ngroups)
1589 return false;
1590 for (i=0; i<g1->ngroups; i++)
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001591 if (!gid_eq(GROUP_AT(g1, i), GROUP_AT(g2, i)))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001592 return false;
1593 return true;
1594}
1595
J. Bruce Fields68eb3502012-08-21 12:48:30 -04001596/*
1597 * RFC 3530 language requires clid_inuse be returned when the
1598 * "principal" associated with a requests differs from that previously
1599 * used. We use uid, gid's, and gss principal string as our best
1600 * approximation. We also don't want to allow non-gss use of a client
1601 * established using gss: in theory cr_principal should catch that
1602 * change, but in practice cr_principal can be null even in the gss case
1603 * since gssd doesn't always pass down a principal string.
1604 */
1605static bool is_gss_cred(struct svc_cred *cr)
1606{
1607 /* Is cr_flavor one of the gss "pseudoflavors"?: */
1608 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
1609}
1610
1611
Vivek Trivedi5559b502012-07-24 21:18:20 +05301612static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001613same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1614{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04001615 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001616 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
1617 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001618 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
1619 return false;
1620 if (cr1->cr_principal == cr2->cr_principal)
1621 return true;
1622 if (!cr1->cr_principal || !cr2->cr_principal)
1623 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05301624 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
J. Bruce Fields57266a62013-04-13 14:27:29 -04001627static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
1628{
1629 struct svc_cred *cr = &rqstp->rq_cred;
1630 u32 service;
1631
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04001632 if (!cr->cr_gss_mech)
1633 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04001634 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
1635 return service == RPC_GSS_SVC_INTEGRITY ||
1636 service == RPC_GSS_SVC_PRIVACY;
1637}
1638
1639static bool mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
1640{
1641 struct svc_cred *cr = &rqstp->rq_cred;
1642
1643 if (!cl->cl_mach_cred)
1644 return true;
1645 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
1646 return false;
1647 if (!svc_rqst_integrity_protected(rqstp))
1648 return false;
1649 if (!cr->cr_principal)
1650 return false;
1651 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
1652}
1653
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001654static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fields5ec7b462007-11-21 21:58:56 -05001655{
1656 static u32 current_clientid = 1;
1657
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001658 clp->cl_clientid.cl_boot = nn->boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 clp->cl_clientid.cl_id = current_clientid++;
1660}
1661
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001662static void gen_confirm(struct nfs4_client *clp)
1663{
Chuck Leverab4684d2012-03-02 17:13:50 -05001664 __be32 verf[2];
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001665 static u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Jeff Laytonf4199922014-06-17 07:44:11 -04001667 /*
1668 * This is opaque to client, so no need to byte-swap. Use
1669 * __force to keep sparse happy
1670 */
1671 verf[0] = (__force __be32)get_seconds();
1672 verf[1] = (__force __be32)i++;
Chuck Leverab4684d2012-03-02 17:13:50 -05001673 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
Jeff Layton4770d722014-07-29 21:34:10 -04001676static struct nfs4_stid *
1677find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04001678{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05001679 struct nfs4_stid *ret;
1680
1681 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
1682 if (!ret || !ret->sc_type)
1683 return NULL;
1684 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04001685}
1686
Jeff Layton4770d722014-07-29 21:34:10 -04001687static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04001688find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04001689{
1690 struct nfs4_stid *s;
1691
Jeff Layton4770d722014-07-29 21:34:10 -04001692 spin_lock(&cl->cl_lock);
1693 s = find_stateid_locked(cl, t);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04001694 if (s != NULL) {
1695 if (typemask & s->sc_type)
1696 atomic_inc(&s->sc_count);
1697 else
1698 s = NULL;
1699 }
Jeff Layton4770d722014-07-29 21:34:10 -04001700 spin_unlock(&cl->cl_lock);
1701 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04001702}
1703
Jeff Layton2216d442012-11-12 15:00:57 -05001704static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001705 struct svc_rqst *rqstp, nfs4_verifier *verf)
1706{
1707 struct nfs4_client *clp;
1708 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001709 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001710 struct net *net = SVC_NET(rqstp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001711 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001712
1713 clp = alloc_client(name);
1714 if (clp == NULL)
1715 return NULL;
1716
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001717 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1718 if (ret) {
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001719 spin_lock(&nn->client_lock);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001720 free_client(clp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001721 spin_unlock(&nn->client_lock);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001722 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001723 }
Jeff Layton02e12152014-07-16 10:31:57 -04001724 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_run_cb_null);
Benny Halevy07cd4902010-05-12 00:13:41 +03001725 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001726 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001727 copy_verf(clp, verf);
1728 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001729 gen_confirm(clp);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001730 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001731 clp->net = net;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001732 return clp;
1733}
1734
NeilBrownfd39ca92005-06-23 22:04:03 -07001735static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001736add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
1737{
1738 struct rb_node **new = &(root->rb_node), *parent = NULL;
1739 struct nfs4_client *clp;
1740
1741 while (*new) {
1742 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
1743 parent = *new;
1744
1745 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
1746 new = &((*new)->rb_left);
1747 else
1748 new = &((*new)->rb_right);
1749 }
1750
1751 rb_link_node(&new_clp->cl_namenode, parent, new);
1752 rb_insert_color(&new_clp->cl_namenode, root);
1753}
1754
1755static struct nfs4_client *
1756find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
1757{
1758 long long cmp;
1759 struct rb_node *node = root->rb_node;
1760 struct nfs4_client *clp;
1761
1762 while (node) {
1763 clp = rb_entry(node, struct nfs4_client, cl_namenode);
1764 cmp = compare_blob(&clp->cl_name, name);
1765 if (cmp > 0)
1766 node = node->rb_left;
1767 else if (cmp < 0)
1768 node = node->rb_right;
1769 else
1770 return clp;
1771 }
1772 return NULL;
1773}
1774
1775static void
1776add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
1778 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001779 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001781 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001782 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001784 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Benny Halevy36acb662010-05-12 00:13:04 +03001785 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
NeilBrownfd39ca92005-06-23 22:04:03 -07001788static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789move_to_confirmed(struct nfs4_client *clp)
1790{
1791 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03001792 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03001795 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001796 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001797 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001798 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 renew_client(clp);
1800}
1801
1802static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001803find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 struct nfs4_client *clp;
1806 unsigned int idhashval = clientid_hashval(clid->cl_id);
1807
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001808 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001809 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04001810 if ((bool)clp->cl_minorversion != sessions)
1811 return NULL;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001812 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816 return NULL;
1817}
1818
1819static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001820find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
1821{
1822 struct list_head *tbl = nn->conf_id_hashtbl;
1823
1824 return find_client_in_id_table(tbl, clid, sessions);
1825}
1826
1827static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001828find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001830 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001832 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001835static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001836{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001837 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001838}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001839
NeilBrown28ce6052005-06-23 22:03:56 -07001840static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001841find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07001842{
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001843 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07001844}
1845
1846static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001847find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07001848{
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001849 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07001850}
1851
NeilBrownfd39ca92005-06-23 22:04:03 -07001852static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001853gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
J. Bruce Fields07263f12010-05-31 19:09:40 -04001855 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001856 struct sockaddr *sa = svc_addr(rqstp);
1857 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04001858 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Jeff Layton7077ecb2009-08-14 12:57:58 -04001860 /* Currently, we only support tcp and tcp6 for the callback channel */
1861 if (se->se_callback_netid_len == 3 &&
1862 !memcmp(se->se_callback_netid_val, "tcp", 3))
1863 expected_family = AF_INET;
1864 else if (se->se_callback_netid_len == 4 &&
1865 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1866 expected_family = AF_INET6;
1867 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 goto out_err;
1869
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001870 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001871 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04001872 (struct sockaddr *)&conn->cb_addr,
1873 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001874
J. Bruce Fields07263f12010-05-31 19:09:40 -04001875 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001877
J. Bruce Fields07263f12010-05-31 19:09:40 -04001878 if (conn->cb_addr.ss_family == AF_INET6)
1879 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04001880
J. Bruce Fields07263f12010-05-31 19:09:40 -04001881 conn->cb_prog = se->se_callback_prog;
1882 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08001883 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 return;
1885out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04001886 conn->cb_addr.ss_family = AF_UNSPEC;
1887 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07001888 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 "will not receive delegations\n",
1890 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return;
1893}
1894
Andy Adamson074fe892009-04-03 08:28:15 +03001895/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04001896 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03001897 */
Trond Myklebustb6076642014-06-30 11:48:35 -04001898static void
Andy Adamson074fe892009-04-03 08:28:15 +03001899nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1900{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001901 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04001902 struct nfsd4_slot *slot = resp->cstate.slot;
1903 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03001904
Andy Adamson557ce262009-08-28 08:45:04 -04001905 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001906
Andy Adamson557ce262009-08-28 08:45:04 -04001907 slot->sl_opcnt = resp->opcnt;
1908 slot->sl_status = resp->cstate.status;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001909
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05001910 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001911 if (nfsd4_not_cached(resp)) {
Andy Adamson557ce262009-08-28 08:45:04 -04001912 slot->sl_datalen = 0;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001913 return;
1914 }
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001915 base = resp->cstate.data_offset;
1916 slot->sl_datalen = buf->len - base;
1917 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Andy Adamson557ce262009-08-28 08:45:04 -04001918 WARN("%s: sessions DRC could not cache compound\n", __func__);
1919 return;
Andy Adamson074fe892009-04-03 08:28:15 +03001920}
1921
1922/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04001923 * Encode the replay sequence operation from the slot values.
1924 * If cachethis is FALSE encode the uncached rep error on the next
1925 * operation which sets resp->p and increments resp->opcnt for
1926 * nfs4svc_encode_compoundres.
1927 *
Andy Adamson074fe892009-04-03 08:28:15 +03001928 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04001929static __be32
1930nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1931 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03001932{
Andy Adamsonabfabf82009-07-23 19:02:18 -04001933 struct nfsd4_op *op;
1934 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001935
Andy Adamsonabfabf82009-07-23 19:02:18 -04001936 /* Encode the replayed sequence operation */
1937 op = &args->ops[resp->opcnt - 1];
1938 nfsd4_encode_operation(resp, op);
1939
1940 /* Return nfserr_retry_uncached_rep in next operation. */
J. Bruce Fields73e79482012-02-13 16:39:00 -05001941 if (args->opcnt > 1 && !(slot->sl_flags & NFSD4_SLOT_CACHETHIS)) {
Andy Adamsonabfabf82009-07-23 19:02:18 -04001942 op = &args->ops[resp->opcnt++];
1943 op->status = nfserr_retry_uncached_rep;
1944 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03001945 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04001946 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03001947}
1948
1949/*
Andy Adamson557ce262009-08-28 08:45:04 -04001950 * The sequence operation is not cached because we can use the slot and
1951 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03001952 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04001953static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001954nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1955 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001956{
Andy Adamson557ce262009-08-28 08:45:04 -04001957 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001958 struct xdr_stream *xdr = &resp->xdr;
1959 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03001960 __be32 status;
1961
Andy Adamson557ce262009-08-28 08:45:04 -04001962 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001963
Andy Adamsonabfabf82009-07-23 19:02:18 -04001964 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04001965 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04001966 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03001967
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001968 p = xdr_reserve_space(xdr, slot->sl_datalen);
1969 if (!p) {
1970 WARN_ON_ONCE(1);
1971 return nfserr_serverfault;
1972 }
1973 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
1974 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03001975
Andy Adamson557ce262009-08-28 08:45:04 -04001976 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001977 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03001978}
1979
Andy Adamson0733d212009-04-03 08:28:01 +03001980/*
1981 * Set the exchange_id flags returned by the server.
1982 */
1983static void
1984nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1985{
1986 /* pNFS is not supported */
1987 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1988
1989 /* Referrals are supported, Migration is not. */
1990 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1991
1992 /* set the wire flags to return to client. */
1993 clid->flags = new->cl_exchange_flags;
1994}
1995
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04001996static bool client_has_state(struct nfs4_client *clp)
1997{
1998 /*
1999 * Note clp->cl_openowners check isn't quite right: there's no
2000 * need to count owners without stateid's.
2001 *
2002 * Also note we should probably be using this in 4.0 case too.
2003 */
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002004 return !list_empty(&clp->cl_openowners)
2005 || !list_empty(&clp->cl_delegations)
2006 || !list_empty(&clp->cl_sessions);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002007}
2008
Al Virob37ad282006-10-19 23:28:59 -07002009__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03002010nfsd4_exchange_id(struct svc_rqst *rqstp,
2011 struct nfsd4_compound_state *cstate,
2012 struct nfsd4_exchange_id *exid)
2013{
Andy Adamson0733d212009-04-03 08:28:01 +03002014 struct nfs4_client *unconf, *conf, *new;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002015 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04002016 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03002017 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04002018 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002019 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002020 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03002021
Jeff Layton363168b2009-08-14 12:57:56 -04002022 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03002023 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04002024 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03002025 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04002026 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03002027
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002028 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03002029 return nfserr_inval;
2030
Andy Adamson0733d212009-04-03 08:28:01 +03002031 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002032 case SP4_MACH_CRED:
2033 if (!svc_rqst_integrity_protected(rqstp))
2034 return nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002035 case SP4_NONE:
2036 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05002037 default: /* checked by xdr code */
2038 WARN_ON_ONCE(1);
Andy Adamson0733d212009-04-03 08:28:01 +03002039 case SP4_SSV:
J. Bruce Fieldsdd303332013-04-12 18:10:56 -04002040 return nfserr_encr_alg_unsupp;
Andy Adamson0733d212009-04-03 08:28:01 +03002041 }
2042
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002043 /* Cases below refer to rfc 5661 section 18.35.4: */
Andy Adamson0733d212009-04-03 08:28:01 +03002044 nfs4_lock_state();
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002045 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03002046 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002047 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
2048 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
2049
J. Bruce Fields136e6582012-05-12 20:37:23 -04002050 if (update) {
2051 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002052 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002053 goto out;
2054 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002055 if (!mach_creds_match(conf, rqstp)) {
2056 status = nfserr_wrong_cred;
2057 goto out;
2058 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002059 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03002060 status = nfserr_perm;
2061 goto out;
2062 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002063 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03002064 status = nfserr_not_same;
2065 goto out;
2066 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002067 /* case 6 */
2068 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
2069 new = conf;
2070 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03002071 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002072 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002073 if (client_has_state(conf)) {
2074 status = nfserr_clid_inuse;
2075 goto out;
2076 }
Andy Adamson0733d212009-04-03 08:28:01 +03002077 expire_client(conf);
2078 goto out_new;
2079 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002080 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04002081 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002082 new = conf;
2083 goto out_copy;
2084 }
2085 /* case 5, client reboot */
J. Bruce Fields136e6582012-05-12 20:37:23 -04002086 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002087 }
2088
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002089 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002090 status = nfserr_noent;
2091 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03002092 }
2093
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002094 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002095 if (unconf) /* case 4, possible retry or client restart */
Andy Adamson0733d212009-04-03 08:28:01 +03002096 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002097
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002098 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03002099out_new:
Jeff Layton2216d442012-11-12 15:00:57 -05002100 new = create_client(exid->clname, rqstp, &verf);
Andy Adamson0733d212009-04-03 08:28:01 +03002101 if (new == NULL) {
J. Bruce Fields47310302010-06-22 16:17:12 -04002102 status = nfserr_jukebox;
Andy Adamson0733d212009-04-03 08:28:01 +03002103 goto out;
2104 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04002105 new->cl_minorversion = cstate->minorversion;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002106 new->cl_mach_cred = (exid->spa_how == SP4_MACH_CRED);
Andy Adamson0733d212009-04-03 08:28:01 +03002107
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002108 gen_clid(new, nn);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002109 add_to_unconfirmed(new);
Andy Adamson0733d212009-04-03 08:28:01 +03002110out_copy:
2111 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
2112 exid->clientid.cl_id = new->cl_clientid.cl_id;
2113
J. Bruce Fields778df3f2012-05-25 21:40:23 -04002114 exid->seqid = new->cl_cs_slot.sl_seqid + 1;
Andy Adamson0733d212009-04-03 08:28:01 +03002115 nfsd4_set_ex_flags(new, exid);
2116
2117 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04002118 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03002119 status = nfs_ok;
2120
2121out:
2122 nfs4_unlock_state();
Andy Adamson0733d212009-04-03 08:28:01 +03002123 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002124}
2125
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002126static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04002127check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002128{
Andy Adamson88e588d2009-07-23 19:02:15 -04002129 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
2130 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002131
2132 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04002133 if (slot_inuse) {
2134 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002135 return nfserr_jukebox;
2136 else
2137 return nfserr_seq_misordered;
2138 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05002139 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04002140 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03002141 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04002142 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002143 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002144 return nfserr_seq_misordered;
2145}
2146
Andy Adamson49557cc2009-07-23 19:02:16 -04002147/*
2148 * Cache the create session result into the create session single DRC
2149 * slot cache by saving the xdr structure. sl_seqid has been set.
2150 * Do this for solo or embedded create session operations.
2151 */
2152static void
2153nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002154 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04002155{
2156 slot->sl_status = nfserr;
2157 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
2158}
2159
2160static __be32
2161nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
2162 struct nfsd4_clid_slot *slot)
2163{
2164 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
2165 return slot->sl_status;
2166}
2167
Mi Jinlong1b74c252011-07-14 14:50:17 +08002168#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2169 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2170 1 + /* MIN tag is length with zero, only length */ \
2171 3 + /* version, opcount, opcode */ \
2172 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2173 /* seqid, slotID, slotID, cache */ \
2174 4 ) * sizeof(__be32))
2175
2176#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2177 2 + /* verifier: AUTH_NULL, length 0 */\
2178 1 + /* status */ \
2179 1 + /* MIN tag is length with zero, only length */ \
2180 3 + /* opcount, opcode, opstatus*/ \
2181 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2182 /* seqid, slotID, slotID, slotID, status */ \
2183 5 ) * sizeof(__be32))
2184
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002185static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08002186{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002187 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
2188
J. Bruce Fields373cd402013-04-08 15:42:12 -04002189 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
2190 return nfserr_toosmall;
2191 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
2192 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002193 ca->headerpadsz = 0;
2194 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
2195 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
2196 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
2197 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
2198 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
2199 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
2200 /*
2201 * Note decreasing slot size below client's request may make it
2202 * difficult for client to function correctly, whereas
2203 * decreasing the number of slots will (just?) affect
2204 * performance. When short on memory we therefore prefer to
2205 * decrease number of slots instead of their size. Clients that
2206 * request larger slots than they need will get poor results:
2207 */
2208 ca->maxreqs = nfsd4_get_drc_mem(ca);
2209 if (!ca->maxreqs)
2210 return nfserr_jukebox;
2211
J. Bruce Fields373cd402013-04-08 15:42:12 -04002212 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08002213}
2214
Kinglong Mee8a891632013-12-23 18:11:02 +08002215#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
2216 RPC_MAX_HEADER_WITH_AUTH) * sizeof(__be32))
2217#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
2218 RPC_MAX_REPHEADER_WITH_AUTH) * sizeof(__be32))
2219
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002220static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
2221{
2222 ca->headerpadsz = 0;
2223
2224 /*
2225 * These RPC_MAX_HEADER macros are overkill, especially since we
2226 * don't even do gss on the backchannel yet. But this is still
2227 * less than 1k. Tighten up this estimate in the unlikely event
2228 * it turns out to be a problem for some client:
2229 */
Kinglong Mee8a891632013-12-23 18:11:02 +08002230 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002231 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08002232 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002233 return nfserr_toosmall;
2234 ca->maxresp_cached = 0;
2235 if (ca->maxops < 2)
2236 return nfserr_toosmall;
2237
2238 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002239}
2240
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002241static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
2242{
2243 switch (cbs->flavor) {
2244 case RPC_AUTH_NULL:
2245 case RPC_AUTH_UNIX:
2246 return nfs_ok;
2247 default:
2248 /*
2249 * GSS case: the spec doesn't allow us to return this
2250 * error. But it also doesn't allow us not to support
2251 * GSS.
2252 * I'd rather this fail hard than return some error the
2253 * client might think it can already handle:
2254 */
2255 return nfserr_encr_alg_unsupp;
2256 }
2257}
2258
Andy Adamson069b6ad2009-04-03 08:27:58 +03002259__be32
2260nfsd4_create_session(struct svc_rqst *rqstp,
2261 struct nfsd4_compound_state *cstate,
2262 struct nfsd4_create_session *cr_ses)
2263{
Jeff Layton363168b2009-08-14 12:57:56 -04002264 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002265 struct nfs4_client *conf, *unconf;
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04002266 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002267 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002268 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002269 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002270 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002271
Mi Jinlonga62573d2011-03-23 17:57:07 +08002272 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
2273 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002274 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
2275 if (status)
2276 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002277 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04002278 if (status)
2279 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002280 status = check_backchannel_attrs(&cr_ses->back_channel);
2281 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08002282 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002283 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08002284 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002285 if (!new)
2286 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002287 conn = alloc_conn_from_crses(rqstp, cr_ses);
2288 if (!conn)
2289 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08002290
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002291 nfs4_lock_state();
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002292 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002293 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002294 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002295
2296 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002297 status = nfserr_wrong_cred;
2298 if (!mach_creds_match(conf, rqstp))
2299 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002300 cs_slot = &conf->cl_cs_slot;
2301 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002302 if (status == nfserr_replay_cache) {
Andy Adamson49557cc2009-07-23 19:02:16 -04002303 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002304 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002305 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002306 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002307 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002308 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002309 } else if (unconf) {
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002310 struct nfs4_client *old;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002311 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04002312 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002313 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002314 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002315 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002316 status = nfserr_wrong_cred;
2317 if (!mach_creds_match(unconf, rqstp))
2318 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002319 cs_slot = &unconf->cl_cs_slot;
2320 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002321 if (status) {
2322 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002323 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002324 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002325 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002326 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002327 if (old) {
2328 status = mark_client_expired(old);
2329 if (status)
2330 goto out_free_conn;
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002331 expire_client(old);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002332 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002333 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002334 conf = unconf;
2335 } else {
2336 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002337 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002338 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002339 status = nfs_ok;
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002340 /*
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002341 * We do not support RDMA or persistent sessions
2342 */
2343 cr_ses->flags &= ~SESSION4_PERSIST;
2344 cr_ses->flags &= ~SESSION4_RDMA;
2345
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002346 init_session(rqstp, new, conf, cr_ses);
2347 nfsd4_init_conn(rqstp, conn, new);
2348
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04002349 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002350 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04002351 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04002352 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002353
Andy Adamson49557cc2009-07-23 19:02:16 -04002354 /* cache solo and embedded create sessions under the state lock */
2355 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002356 nfs4_unlock_state();
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002357 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002358out_free_conn:
Yanchuan Nian266533c2012-12-24 18:11:45 +08002359 nfs4_unlock_state();
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002360 free_conn(conn);
2361out_free_session:
2362 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002363out_release_drc_mem:
2364 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04002365 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002366}
2367
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002368static __be32 nfsd4_map_bcts_dir(u32 *dir)
2369{
2370 switch (*dir) {
2371 case NFS4_CDFC4_FORE:
2372 case NFS4_CDFC4_BACK:
2373 return nfs_ok;
2374 case NFS4_CDFC4_FORE_OR_BOTH:
2375 case NFS4_CDFC4_BACK_OR_BOTH:
2376 *dir = NFS4_CDFC4_BOTH;
2377 return nfs_ok;
2378 };
2379 return nfserr_inval;
2380}
2381
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002382__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
2383{
2384 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002385 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002386 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002387
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002388 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2389 if (status)
2390 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002391 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002392 session->se_cb_prog = bc->bc_cb_program;
2393 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002394 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002395
2396 nfsd4_probe_callback(session->se_client);
2397
2398 return nfs_ok;
2399}
2400
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002401__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2402 struct nfsd4_compound_state *cstate,
2403 struct nfsd4_bind_conn_to_session *bcts)
2404{
2405 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002406 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002407 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002408 struct net *net = SVC_NET(rqstp);
2409 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002410
2411 if (!nfsd4_last_compound_op(rqstp))
2412 return nfserr_not_only_op;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002413 nfs4_lock_state();
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002414 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002415 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002416 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002417 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002418 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002419 status = nfserr_wrong_cred;
2420 if (!mach_creds_match(session->se_client, rqstp))
2421 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002422 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002423 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002424 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002425 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002426 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002427 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002428 goto out;
2429 nfsd4_init_conn(rqstp, conn, session);
2430 status = nfs_ok;
2431out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002432 nfsd4_put_session(session);
2433out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002434 nfs4_unlock_state();
2435 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002436}
2437
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002438static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2439{
2440 if (!session)
2441 return 0;
2442 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2443}
2444
Andy Adamson069b6ad2009-04-03 08:27:58 +03002445__be32
2446nfsd4_destroy_session(struct svc_rqst *r,
2447 struct nfsd4_compound_state *cstate,
2448 struct nfsd4_destroy_session *sessionid)
2449{
Benny Halevye10e0cf2009-04-03 08:28:38 +03002450 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002451 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002452 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002453 struct net *net = SVC_NET(r);
2454 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002455
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002456 nfs4_lock_state();
2457 status = nfserr_not_only_op;
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002458 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04002459 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002460 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002461 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04002462 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03002463 dump_sessionid(__func__, &sessionid->sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002464 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002465 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002466 if (!ses)
2467 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002468 status = nfserr_wrong_cred;
2469 if (!mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002470 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002471 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002472 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002473 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03002474 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002475 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002476
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05002477 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04002478
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002479 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002480 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002481out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002482 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002483out_client_lock:
2484 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002485out:
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002486 nfs4_unlock_state();
Benny Halevye10e0cf2009-04-03 08:28:38 +03002487 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002488}
2489
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002490static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002491{
2492 struct nfsd4_conn *c;
2493
2494 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002495 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04002496 return c;
2497 }
2498 }
2499 return NULL;
2500}
2501
J. Bruce Fields57266a62013-04-13 14:27:29 -04002502static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002503{
2504 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002505 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002506 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002507 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002508
2509 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002510 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002511 if (c)
2512 goto out_free;
2513 status = nfserr_conn_not_bound_to_session;
2514 if (clp->cl_mach_cred)
2515 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002516 __nfsd4_hash_conn(new, ses);
2517 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002518 ret = nfsd4_register_conn(new);
2519 if (ret)
2520 /* oops; xprt is already down: */
2521 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002522 return nfs_ok;
2523out_free:
2524 spin_unlock(&clp->cl_lock);
2525 free_conn(new);
2526 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002527}
2528
Mi Jinlong868b89c2011-04-27 09:09:58 +08002529static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
2530{
2531 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2532
2533 return args->opcnt > session->se_fchannel.maxops;
2534}
2535
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002536static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
2537 struct nfsd4_session *session)
2538{
2539 struct xdr_buf *xb = &rqstp->rq_arg;
2540
2541 return xb->len > session->se_fchannel.maxreq_sz;
2542}
2543
Andy Adamson069b6ad2009-04-03 08:27:58 +03002544__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03002545nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002546 struct nfsd4_compound_state *cstate,
2547 struct nfsd4_sequence *seq)
2548{
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002549 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002550 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002551 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002552 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002553 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002554 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002555 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002556 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002557 struct net *net = SVC_NET(rqstp);
2558 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002559
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002560 if (resp->opcnt != 1)
2561 return nfserr_sequence_pos;
2562
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002563 /*
2564 * Will be either used or freed by nfsd4_sequence_check_conn
2565 * below.
2566 */
2567 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
2568 if (!conn)
2569 return nfserr_jukebox;
2570
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002571 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002572 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002573 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04002574 goto out_no_session;
2575 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002576
Mi Jinlong868b89c2011-04-27 09:09:58 +08002577 status = nfserr_too_many_ops;
2578 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002579 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08002580
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002581 status = nfserr_req_too_big;
2582 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002583 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002584
Benny Halevyb85d4c02009-04-03 08:28:08 +03002585 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03002586 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002587 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002588
Andy Adamson557ce262009-08-28 08:45:04 -04002589 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03002590 dprintk("%s: slotid %d\n", __func__, seq->slotid);
2591
Andy Adamsona8dfdae2009-08-28 08:45:02 -04002592 /* We do not negotiate the number of slots yet, so set the
2593 * maxslots to the session maxreqs which is used to encode
2594 * sr_highest_slotid and the sr_target_slot id to maxslots */
2595 seq->maxslots = session->se_fchannel.maxreqs;
2596
J. Bruce Fields73e79482012-02-13 16:39:00 -05002597 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
2598 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002599 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002600 status = nfserr_seq_misordered;
2601 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002602 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002603 cstate->slot = slot;
2604 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04002605 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03002606 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04002607 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03002608 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03002609 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03002610 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002611 }
2612 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002613 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002614
J. Bruce Fields57266a62013-04-13 14:27:29 -04002615 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002616 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002617 if (status)
2618 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002619
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002620 buflen = (seq->cachethis) ?
2621 session->se_fchannel.maxresp_cached :
2622 session->se_fchannel.maxresp_sz;
2623 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
2624 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002625 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002626 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04002627 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002628
2629 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002630 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03002631 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002632 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05002633 if (seq->cachethis)
2634 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002635 else
2636 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002637
2638 cstate->slot = slot;
2639 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04002640 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002641
Benny Halevyb85d4c02009-04-03 08:28:08 +03002642out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04002643 switch (clp->cl_cb_state) {
2644 case NFSD4_CB_DOWN:
2645 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
2646 break;
2647 case NFSD4_CB_FAULT:
2648 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
2649 break;
2650 default:
2651 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03002652 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04002653 if (!list_empty(&clp->cl_revoked))
2654 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002655out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08002656 if (conn)
2657 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002658 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002659 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002660out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002661 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002662 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002663}
2664
Trond Myklebustb6076642014-06-30 11:48:35 -04002665void
2666nfsd4_sequence_done(struct nfsd4_compoundres *resp)
2667{
2668 struct nfsd4_compound_state *cs = &resp->cstate;
2669
2670 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04002671 if (cs->status != nfserr_replay_cache) {
2672 nfsd4_store_cache_entry(resp);
2673 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
2674 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002675 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04002676 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04002677 } else if (cs->clp)
2678 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04002679}
2680
Mi Jinlong345c2842011-10-20 17:51:39 +08002681__be32
2682nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
2683{
2684 struct nfs4_client *conf, *unconf, *clp;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002685 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002686 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08002687
2688 nfs4_lock_state();
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002689 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002690 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002691 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08002692
2693 if (conf) {
2694 clp = conf;
2695
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04002696 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08002697 status = nfserr_clientid_busy;
2698 goto out;
2699 }
2700 } else if (unconf)
2701 clp = unconf;
2702 else {
2703 status = nfserr_stale_clientid;
2704 goto out;
2705 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002706 if (!mach_creds_match(clp, rqstp)) {
2707 status = nfserr_wrong_cred;
2708 goto out;
2709 }
Mi Jinlong345c2842011-10-20 17:51:39 +08002710 expire_client(clp);
2711out:
2712 nfs4_unlock_state();
Mi Jinlong345c2842011-10-20 17:51:39 +08002713 return status;
2714}
2715
Andy Adamson069b6ad2009-04-03 08:27:58 +03002716__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002717nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2718{
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002719 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002720
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002721 if (rc->rca_one_fs) {
2722 if (!cstate->current_fh.fh_dentry)
2723 return nfserr_nofilehandle;
2724 /*
2725 * We don't take advantage of the rca_one_fs case.
2726 * That's OK, it's optional, we can safely ignore it.
2727 */
2728 return nfs_ok;
2729 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002730
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002731 nfs4_lock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002732 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04002733 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
2734 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002735 goto out;
2736
2737 status = nfserr_stale_clientid;
2738 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002739 /*
2740 * The following error isn't really legal.
2741 * But we only get here if the client just explicitly
2742 * destroyed the client. Surely it no longer cares what
2743 * error it gets back on an operation for the dead
2744 * client.
2745 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002746 goto out;
2747
2748 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04002749 nfsd4_client_record_create(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002750out:
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002751 nfs4_unlock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002752 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002753}
2754
2755__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002756nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2757 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002759 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 nfs4_verifier clverifier = setclid->se_verf;
NeilBrown28ce6052005-06-23 22:03:56 -07002761 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07002762 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002763 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2764
J. Bruce Fields63db4632012-05-18 21:54:19 -04002765 /* Cases below refer to rfc 3530 section 14.2.33: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 nfs4_lock_state();
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002767 conf = find_confirmed_client_by_name(&clname, nn);
NeilBrown28ce6052005-06-23 22:03:56 -07002768 if (conf) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04002769 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002771 if (clp_used_exchangeid(conf))
2772 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04002773 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04002774 char addr_str[INET6_ADDRSTRLEN];
2775 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2776 sizeof(addr_str));
2777 dprintk("NFSD: setclientid: string in use by client "
2778 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 goto out;
2780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002782 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04002783 if (unconf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 status = nfserr_jukebox;
Jeff Layton2216d442012-11-12 15:00:57 -05002786 new = create_client(clname, rqstp, &clverifier);
J. Bruce Fields8f930712012-05-18 22:06:41 -04002787 if (new == NULL)
2788 goto out;
J. Bruce Fields34b232b2012-05-18 22:23:42 -04002789 if (conf && same_verf(&conf->cl_verifier, &clverifier))
J. Bruce Fields63db4632012-05-18 21:54:19 -04002790 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 copy_clid(new, conf);
J. Bruce Fields34b232b2012-05-18 22:23:42 -04002792 else /* case 4 (new client) or cases 2, 3 (client reboot): */
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002793 gen_clid(new, nn);
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002794 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002795 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002796 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2798 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2799 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2800 status = nfs_ok;
2801out:
2802 nfs4_unlock_state();
2803 return status;
2804}
2805
2806
Al Virob37ad282006-10-19 23:28:59 -07002807__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002808nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2809 struct nfsd4_compound_state *cstate,
2810 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
NeilBrown21ab45a2005-06-23 22:04:14 -07002812 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2814 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07002815 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03002816 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04002818 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 return nfserr_stale_clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07002821
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002822 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002823 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002824 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04002825 * We try hard to give out unique clientid's, so if we get an
2826 * attempt to confirm the same clientid with a different cred,
2827 * there's a bug somewhere. Let's charitably assume it's our
2828 * bug.
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002829 */
J. Bruce Fields8695b902012-05-19 10:05:58 -04002830 status = nfserr_serverfault;
2831 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
2832 goto out;
2833 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
2834 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04002835 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002836 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
2837 if (conf && !unconf) /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 status = nfs_ok;
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002839 else /* case 4: client hasn't noticed we rebooted yet? */
2840 status = nfserr_stale_clientid;
2841 goto out;
2842 }
2843 status = nfs_ok;
2844 if (conf) { /* case 1: callback update */
J. Bruce Fields8695b902012-05-19 10:05:58 -04002845 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2846 nfsd4_probe_callback(conf);
2847 expire_client(unconf);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002848 } else { /* case 3: normal case; new or rebooted client */
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002849 conf = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002850 if (conf) {
2851 status = mark_client_expired(conf);
2852 if (status)
2853 goto out;
J. Bruce Fields8695b902012-05-19 10:05:58 -04002854 expire_client(conf);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002855 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04002856 move_to_confirmed(unconf);
J. Bruce Fieldsf3d03b92012-05-23 11:38:38 -04002857 nfsd4_probe_callback(unconf);
NeilBrown08e89872005-06-23 22:04:11 -07002858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 nfs4_unlock_state();
2861 return status;
2862}
2863
J. Bruce Fields32513b42011-10-13 16:00:16 -04002864static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865{
J. Bruce Fields32513b42011-10-13 16:00:16 -04002866 return kmem_cache_alloc(file_slab, GFP_KERNEL);
2867}
2868
2869/* OPEN Share state helper functions */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04002870static void nfsd4_init_file(struct nfs4_file *fp, struct knfsd_fh *fh)
J. Bruce Fields32513b42011-10-13 16:00:16 -04002871{
Trond Myklebustca943212014-07-23 16:17:39 -04002872 unsigned int hashval = file_hashval(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Trond Myklebust950e0112014-06-30 11:48:31 -04002874 lockdep_assert_held(&state_lock);
2875
J. Bruce Fields32513b42011-10-13 16:00:16 -04002876 atomic_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04002877 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04002878 INIT_LIST_HEAD(&fp->fi_stateids);
2879 INIT_LIST_HEAD(&fp->fi_delegations);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04002880 fh_copy_shallow(&fp->fi_fhandle, fh);
J. Bruce Fields32513b42011-10-13 16:00:16 -04002881 fp->fi_had_conflict = false;
2882 fp->fi_lease = NULL;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04002883 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04002884 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2885 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Jeff Layton89876f82013-04-02 09:01:59 -04002886 hlist_add_head(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887}
2888
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04002889void
NeilBrowne60d4392005-06-23 22:03:01 -07002890nfsd4_free_slabs(void)
2891{
Christoph Hellwigabf11352014-05-21 07:43:03 -07002892 kmem_cache_destroy(openowner_slab);
2893 kmem_cache_destroy(lockowner_slab);
2894 kmem_cache_destroy(file_slab);
2895 kmem_cache_destroy(stateid_slab);
2896 kmem_cache_destroy(deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002897}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Bryan Schumaker72083392011-11-01 15:24:59 -04002899int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900nfsd4_init_slabs(void)
2901{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002902 openowner_slab = kmem_cache_create("nfsd4_openowners",
2903 sizeof(struct nfs4_openowner), 0, 0, NULL);
2904 if (openowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002905 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002906 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08002907 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002908 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002909 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07002910 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09002911 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002912 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002913 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07002914 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04002915 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07002916 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002917 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07002918 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09002919 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002920 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002921 goto out_free_stateid_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07002923
2924out_free_stateid_slab:
2925 kmem_cache_destroy(stateid_slab);
2926out_free_file_slab:
2927 kmem_cache_destroy(file_slab);
2928out_free_lockowner_slab:
2929 kmem_cache_destroy(lockowner_slab);
2930out_free_openowner_slab:
2931 kmem_cache_destroy(openowner_slab);
2932out:
NeilBrowne60d4392005-06-23 22:03:01 -07002933 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2934 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935}
2936
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002937static void init_nfs4_replay(struct nfs4_replay *rp)
2938{
2939 rp->rp_status = nfserr_serverfault;
2940 rp->rp_buflen = 0;
2941 rp->rp_buf = rp->rp_ibuf;
Jeff Layton58fb12e2014-07-29 21:34:27 -04002942 mutex_init(&rp->rp_mutex);
2943}
2944
2945static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
2946 struct nfs4_stateowner *so)
2947{
2948 if (!nfsd4_has_session(cstate)) {
2949 mutex_lock(&so->so_replay.rp_mutex);
2950 cstate->replay_owner = so;
2951 atomic_inc(&so->so_count);
2952 }
2953}
2954
2955void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
2956{
2957 struct nfs4_stateowner *so = cstate->replay_owner;
2958
2959 if (so != NULL) {
2960 cstate->replay_owner = NULL;
2961 mutex_unlock(&so->so_replay.rp_mutex);
2962 nfs4_put_stateowner(so);
2963 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002964}
2965
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002966static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
2968 struct nfs4_stateowner *sop;
2969
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002970 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002971 if (!sop)
2972 return NULL;
2973
2974 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2975 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002976 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002977 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002979 sop->so_owner.len = owner->len;
2980
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002981 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002982 sop->so_client = clp;
2983 init_nfs4_replay(&sop->so_replay);
Jeff Layton6b180f02014-07-29 21:34:26 -04002984 atomic_set(&sop->so_count, 1);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002985 return sop;
2986}
2987
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002988static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002989{
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03002990 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2991
2992 list_add(&oo->oo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002993 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994}
2995
Jeff Layton8f4b54c2014-07-29 21:34:29 -04002996static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
2997{
2998 struct nfs4_openowner *oo = openowner(so);
2999
3000 unhash_openowner(oo);
3001}
3002
Jeff Layton6b180f02014-07-29 21:34:26 -04003003static void nfs4_free_openowner(struct nfs4_stateowner *so)
3004{
3005 struct nfs4_openowner *oo = openowner(so);
3006
3007 kmem_cache_free(openowner_slab, oo);
3008}
3009
3010static const struct nfs4_stateowner_operations openowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003011 .so_unhash = nfs4_unhash_openowner,
3012 .so_free = nfs4_free_openowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04003013};
3014
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003015static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04003016alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003017 struct nfsd4_compound_state *cstate)
3018{
Trond Myklebust13d6f662014-06-30 11:48:45 -04003019 struct nfs4_client *clp = cstate->clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003020 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003022 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
3023 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 return NULL;
Jeff Layton6b180f02014-07-29 21:34:26 -04003025 oo->oo_owner.so_ops = &openowner_ops;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003026 oo->oo_owner.so_is_open_owner = 1;
3027 oo->oo_owner.so_seqid = open->op_seqid;
Jeff Laytond3134b12014-07-29 21:34:32 -04003028 oo->oo_flags = 0;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003029 if (nfsd4_has_session(cstate))
3030 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003031 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04003032 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003033 INIT_LIST_HEAD(&oo->oo_close_lru);
3034 hash_openowner(oo, clp, strhashval);
3035 return oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036}
3037
J. Bruce Fields996e0932011-10-17 11:14:48 -04003038static 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 -04003039 struct nfs4_openowner *oo = open->op_openowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04003041 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05003042 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04003043 INIT_LIST_HEAD(&stp->st_locks);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003044 stp->st_stateowner = &oo->oo_owner;
Jeff Laytond3134b12014-07-29 21:34:32 -04003045 atomic_inc(&stp->st_stateowner->so_count);
NeilBrown13cd2182005-06-23 22:03:10 -07003046 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04003047 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 stp->st_access_bmap = 0;
3049 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07003050 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04003051 spin_lock(&oo->oo_owner.so_client->cl_lock);
3052 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003053 spin_lock(&fp->fi_lock);
3054 list_add(&stp->st_perfile, &fp->fi_stateids);
3055 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04003056 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057}
3058
Jeff Laytond3134b12014-07-29 21:34:32 -04003059/*
3060 * In the 4.0 case we need to keep the owners around a little while to handle
3061 * CLOSE replay. We still do need to release any file access that is held by
3062 * them before returning however.
3063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064static void
Jeff Laytond3134b12014-07-29 21:34:32 -04003065move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
Jeff Laytond3134b12014-07-29 21:34:32 -04003067 struct nfs4_openowner *oo = openowner(s->st_stateowner);
3068 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
3069 nfsd_net_id);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003070
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003071 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Jeff Laytond3134b12014-07-29 21:34:32 -04003073 release_all_access(s);
3074 if (s->st_stid.sc_file) {
3075 put_nfs4_file(s->st_stid.sc_file);
3076 s->st_stid.sc_file = NULL;
3077 }
3078 release_last_closed_stateid(oo);
3079 oo->oo_last_closed_stid = s;
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003080 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003081 oo->oo_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082}
3083
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003085same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
3086 clientid_t *clid)
3087{
3088 return (sop->so_owner.len == owner->len) &&
3089 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
3090 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091}
3092
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003093static struct nfs4_openowner *
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003094find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
3095 bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003097 struct nfs4_stateowner *so;
3098 struct nfs4_openowner *oo;
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04003099 struct nfs4_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003101 list_for_each_entry(so, &nn->ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05003102 if (!so->so_is_open_owner)
3103 continue;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003104 if (same_owner_str(so, &open->op_owner, &open->op_clientid)) {
3105 oo = openowner(so);
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04003106 clp = oo->oo_owner.so_client;
3107 if ((bool)clp->cl_minorversion != sessions)
3108 return NULL;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003109 renew_client(oo->oo_owner.so_client);
Jeff Laytond3134b12014-07-29 21:34:32 -04003110 atomic_inc(&oo->oo_owner.so_count);
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003111 return oo;
3112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 }
3114 return NULL;
3115}
3116
3117/* search file_hashtbl[] for file */
3118static struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003119find_file_locked(struct knfsd_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120{
Trond Myklebustca943212014-07-23 16:17:39 -04003121 unsigned int hashval = file_hashval(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 struct nfs4_file *fp;
3123
Trond Myklebust950e0112014-06-30 11:48:31 -04003124 lockdep_assert_held(&state_lock);
3125
Jeff Layton89876f82013-04-02 09:01:59 -04003126 hlist_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
Trond Myklebustca943212014-07-23 16:17:39 -04003127 if (nfsd_fh_match(&fp->fi_fhandle, fh)) {
NeilBrown13cd2182005-06-23 22:03:10 -07003128 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07003130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 }
3132 return NULL;
3133}
3134
Trond Myklebust950e0112014-06-30 11:48:31 -04003135static struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003136find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003137{
3138 struct nfs4_file *fp;
3139
3140 spin_lock(&state_lock);
Trond Myklebustca943212014-07-23 16:17:39 -04003141 fp = find_file_locked(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003142 spin_unlock(&state_lock);
3143 return fp;
3144}
3145
3146static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003147find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003148{
3149 struct nfs4_file *fp;
3150
3151 spin_lock(&state_lock);
Trond Myklebustca943212014-07-23 16:17:39 -04003152 fp = find_file_locked(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003153 if (fp == NULL) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003154 nfsd4_init_file(new, fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003155 fp = new;
3156 }
3157 spin_unlock(&state_lock);
3158
3159 return fp;
3160}
3161
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04003162/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 * Called to check deny when READ with all zero stateid or
3164 * WRITE with all zero or all one stateid
3165 */
Al Virob37ad282006-10-19 23:28:59 -07003166static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
3168{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003170 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Trond Myklebustca943212014-07-23 16:17:39 -04003172 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07003173 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003174 return ret;
3175 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04003176 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003177 if (fp->fi_share_deny & deny_type)
3178 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003179 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07003180 put_nfs4_file(fp);
3181 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182}
3183
Jeff Layton02e12152014-07-16 10:31:57 -04003184void nfsd4_prepare_cb_recall(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185{
Trond Myklebust11b91642014-07-29 21:34:08 -04003186 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
3187 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003188
Trond Myklebust11b91642014-07-29 21:34:08 -04003189 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04003190
Jeff Layton02e12152014-07-16 10:31:57 -04003191 /*
3192 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04003193 * already holding inode->i_lock.
3194 *
Jeff Laytondff13992014-07-08 14:02:49 -04003195 * If the dl_time != 0, then we know that it has already been
3196 * queued for a lease break. Don't queue it again.
3197 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04003198 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04003199 if (dp->dl_time == 0) {
Jeff Laytondff13992014-07-08 14:02:49 -04003200 dp->dl_time = get_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04003201 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04003202 }
Jeff Layton02e12152014-07-16 10:31:57 -04003203 spin_unlock(&state_lock);
3204}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Jeff Layton02e12152014-07-16 10:31:57 -04003206static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
3207{
3208 /*
3209 * We're assuming the state code never drops its reference
3210 * without first removing the lease. Since we're in this lease
3211 * callback (and since the lease code is serialized by the kernel
3212 * lock) we know the server hasn't removed the lease yet, we know
3213 * it's safe to take a reference.
3214 */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -04003215 atomic_inc(&dp->dl_stid.sc_count);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003216 nfsd4_cb_recall(dp);
3217}
3218
Jeff Layton1c8c6012013-06-21 08:58:15 -04003219/* Called from break_lease() with i_lock held. */
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003220static void nfsd_break_deleg_cb(struct file_lock *fl)
3221{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003222 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
3223 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003224
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003225 if (!fp) {
3226 WARN(1, "(%p)->fl_owner NULL\n", fl);
3227 return;
3228 }
3229 if (fp->fi_had_conflict) {
3230 WARN(1, "duplicate break on %p\n", fp);
3231 return;
3232 }
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003233 /*
3234 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003235 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003236 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003237 */
3238 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
Jeff Layton02e12152014-07-16 10:31:57 -04003240 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003241 fp->fi_had_conflict = true;
3242 /*
3243 * If there are no delegations on the list, then we can't count on this
3244 * lease ever being cleaned up. Set the fl_break_time to jiffies so that
3245 * time_out_leases will do it ASAP. The fact that fi_had_conflict is now
3246 * true should keep any new delegations from being hashed.
3247 */
3248 if (list_empty(&fp->fi_delegations))
3249 fl->fl_break_time = jiffies;
3250 else
3251 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
3252 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04003253 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254}
3255
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256static
3257int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
3258{
3259 if (arg & F_UNLCK)
3260 return lease_modify(onlist, arg);
3261 else
3262 return -EAGAIN;
3263}
3264
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003265static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04003266 .lm_break = nfsd_break_deleg_cb,
3267 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268};
3269
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003270static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
3271{
3272 if (nfsd4_has_session(cstate))
3273 return nfs_ok;
3274 if (seqid == so->so_seqid - 1)
3275 return nfserr_replay_me;
3276 if (seqid == so->so_seqid)
3277 return nfs_ok;
3278 return nfserr_bad_seqid;
3279}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Jeff Layton4b24ca72014-06-30 11:48:44 -04003281static __be32 lookup_clientid(clientid_t *clid,
3282 struct nfsd4_compound_state *cstate,
3283 struct nfsd_net *nn)
3284{
3285 struct nfs4_client *found;
3286
3287 if (cstate->clp) {
3288 found = cstate->clp;
3289 if (!same_clid(&found->cl_clientid, clid))
3290 return nfserr_stale_clientid;
3291 return nfs_ok;
3292 }
3293
3294 if (STALE_CLIENTID(clid, nn))
3295 return nfserr_stale_clientid;
3296
3297 /*
3298 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
3299 * cached already then we know this is for is for v4.0 and "sessions"
3300 * will be false.
3301 */
3302 WARN_ON_ONCE(cstate->session);
3303 found = find_confirmed_client(clid, false, nn);
3304 if (!found)
3305 return nfserr_expired;
3306
3307 /* Cache the nfs4_client in cstate! */
3308 cstate->clp = found;
3309 atomic_inc(&found->cl_refcount);
3310 return nfs_ok;
3311}
3312
Al Virob37ad282006-10-19 23:28:59 -07003313__be32
Andy Adamson66689582009-04-03 08:28:45 +03003314nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03003315 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 clientid_t *clientid = &open->op_clientid;
3318 struct nfs4_client *clp = NULL;
3319 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003320 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003321 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003323 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003325 /*
3326 * In case we need it later, after we've already created the
3327 * file and don't want to risk a further failure:
3328 */
3329 open->op_file = nfsd4_alloc_file();
3330 if (open->op_file == NULL)
3331 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Trond Myklebust2d91e892014-06-30 11:48:46 -04003333 status = lookup_clientid(clientid, cstate, nn);
3334 if (status)
3335 return status;
3336 clp = cstate->clp;
3337
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05003338 strhashval = ownerstr_hashval(clientid->cl_id, &open->op_owner);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003339 oo = find_openstateowner_str(strhashval, open, cstate->minorversion, nn);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003340 open->op_openowner = oo;
3341 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003342 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003344 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003345 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003346 release_openowner(oo);
3347 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003348 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003349 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003350 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
3351 if (status)
3352 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003353 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003354new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04003355 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003356 if (oo == NULL)
3357 return nfserr_jukebox;
3358 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003359alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04003360 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003361 if (!open->op_stp)
3362 return nfserr_jukebox;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003363 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
Al Virob37ad282006-10-19 23:28:59 -07003366static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07003367nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
3368{
3369 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
3370 return nfserr_openmode;
3371 else
3372 return nfs_ok;
3373}
3374
Daniel Mackc47d8322011-05-16 16:38:14 +02003375static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04003376{
J. Bruce Fields24a01112010-05-18 20:01:35 -04003377 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
3378}
3379
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003380static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04003381{
3382 struct nfs4_stid *ret;
3383
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003384 ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04003385 if (!ret)
3386 return NULL;
3387 return delegstateid(ret);
3388}
3389
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003390static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
3391{
3392 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
3393 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
3394}
3395
Al Virob37ad282006-10-19 23:28:59 -07003396static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04003397nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07003398 struct nfs4_delegation **dp)
3399{
3400 int flags;
Al Virob37ad282006-10-19 23:28:59 -07003401 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003402 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07003403
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003404 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
3405 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07003406 goto out;
J. Bruce Fields24a01112010-05-18 20:01:35 -04003407 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003408 status = nfs4_check_delegmode(deleg, flags);
3409 if (status) {
3410 nfs4_put_stid(&deleg->dl_stid);
3411 goto out;
3412 }
3413 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003414out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003415 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07003416 return nfs_ok;
3417 if (status)
3418 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003419 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003420 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07003421}
3422
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003423static struct nfs4_ol_stateid *
3424nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425{
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003426 struct nfs4_ol_stateid *local, *ret = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003427 struct nfs4_openowner *oo = open->op_openowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
Trond Myklebust1d31a252014-07-10 14:07:25 -04003429 spin_lock(&fp->fi_lock);
NeilBrown8beefa22005-06-23 22:03:08 -07003430 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 /* ignore lock owners */
3432 if (local->st_stateowner->so_is_open_owner == 0)
3433 continue;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003434 if (local->st_stateowner == &oo->oo_owner) {
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003435 ret = local;
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04003436 atomic_inc(&ret->st_stid.sc_count);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003437 break;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 }
Trond Myklebust1d31a252014-07-10 14:07:25 -04003440 spin_unlock(&fp->fi_lock);
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003441 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442}
3443
J. Bruce Fields21fb4012010-07-28 12:21:23 -04003444static inline int nfs4_access_to_access(u32 nfs4_access)
3445{
3446 int flags = 0;
3447
3448 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
3449 flags |= NFSD_MAY_READ;
3450 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
3451 flags |= NFSD_MAY_WRITE;
3452 return flags;
3453}
3454
Al Virob37ad282006-10-19 23:28:59 -07003455static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
3457 struct nfsd4_open *open)
3458{
3459 struct iattr iattr = {
3460 .ia_valid = ATTR_SIZE,
3461 .ia_size = 0,
3462 };
3463 if (!open->op_truncate)
3464 return 0;
3465 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08003466 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
3468}
3469
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003470static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003471 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
3472 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003473{
Trond Myklebustde186432014-07-10 14:07:26 -04003474 struct file *filp = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003475 __be32 status;
3476 int oflag = nfs4_access_to_omode(open->op_share_access);
3477 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003478 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003479
Trond Myklebustde186432014-07-10 14:07:26 -04003480 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003481
3482 /*
3483 * Are we trying to set a deny mode that would conflict with
3484 * current access?
3485 */
3486 status = nfs4_file_check_deny(fp, open->op_share_deny);
3487 if (status != nfs_ok) {
3488 spin_unlock(&fp->fi_lock);
3489 goto out;
3490 }
3491
3492 /* set access to the file */
3493 status = nfs4_file_get_access(fp, open->op_share_access);
3494 if (status != nfs_ok) {
3495 spin_unlock(&fp->fi_lock);
3496 goto out;
3497 }
3498
3499 /* Set access bits in stateid */
3500 old_access_bmap = stp->st_access_bmap;
3501 set_access(open->op_share_access, stp);
3502
3503 /* Set new deny mask */
3504 old_deny_bmap = stp->st_deny_bmap;
3505 set_deny(open->op_share_deny, stp);
3506 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3507
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003508 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04003509 spin_unlock(&fp->fi_lock);
3510 status = nfsd_open(rqstp, cur_fh, S_IFREG, access, &filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003511 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003512 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04003513 spin_lock(&fp->fi_lock);
3514 if (!fp->fi_fds[oflag]) {
3515 fp->fi_fds[oflag] = filp;
3516 filp = NULL;
3517 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003518 }
Trond Myklebustde186432014-07-10 14:07:26 -04003519 spin_unlock(&fp->fi_lock);
3520 if (filp)
3521 fput(filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003522
3523 status = nfsd4_truncate(rqstp, cur_fh, open);
3524 if (status)
3525 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003526out:
3527 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003528out_put_access:
3529 stp->st_access_bmap = old_access_bmap;
3530 nfs4_file_put_access(fp, open->op_share_access);
3531 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
3532 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003533}
3534
Al Virob37ad282006-10-19 23:28:59 -07003535static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003536nfs4_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 -07003537{
Al Virob37ad282006-10-19 23:28:59 -07003538 __be32 status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003539 unsigned char old_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003541 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003542 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003543
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003544 /* test and set deny mode */
3545 spin_lock(&fp->fi_lock);
3546 status = nfs4_file_check_deny(fp, open->op_share_deny);
3547 if (status == nfs_ok) {
3548 old_deny_bmap = stp->st_deny_bmap;
3549 set_deny(open->op_share_deny, stp);
3550 fp->fi_share_deny |=
3551 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3552 }
3553 spin_unlock(&fp->fi_lock);
3554
3555 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003558 status = nfsd4_truncate(rqstp, cur_fh, open);
3559 if (status != nfs_ok)
3560 reset_union_bmap_deny(old_deny_bmap, stp);
3561 return status;
3562}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564static void
J. Bruce Fields1255a8f2012-03-06 14:35:16 -05003565nfs4_set_claim_prev(struct nfsd4_open *open, bool has_session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566{
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003567 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568}
3569
J. Bruce Fields14a24e92010-12-10 19:02:49 -05003570/* Should we give out recallable state?: */
3571static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
3572{
3573 if (clp->cl_cb_state == NFSD4_CB_UP)
3574 return true;
3575 /*
3576 * In the sessions case, since we don't have to establish a
3577 * separate connection for callbacks, we assume it's OK
3578 * until we hear otherwise:
3579 */
3580 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
3581}
3582
Jeff Laytond564fbe2014-07-16 10:31:58 -04003583static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003584{
3585 struct file_lock *fl;
3586
3587 fl = locks_alloc_lock();
3588 if (!fl)
3589 return NULL;
3590 locks_init_lock(fl);
3591 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04003592 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003593 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
3594 fl->fl_end = OFFSET_MAX;
Jeff Laytond564fbe2014-07-16 10:31:58 -04003595 fl->fl_owner = (fl_owner_t)fp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003596 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003597 return fl;
3598}
3599
J. Bruce Fields99c41512013-05-21 16:21:25 -04003600static int nfs4_setlease(struct nfs4_delegation *dp)
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003601{
Trond Myklebust11b91642014-07-29 21:34:08 -04003602 struct nfs4_file *fp = dp->dl_stid.sc_file;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003603 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04003604 struct file *filp;
3605 int status = 0;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003606
Jeff Laytond564fbe2014-07-16 10:31:58 -04003607 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003608 if (!fl)
3609 return -ENOMEM;
Jeff Layton417c6622014-07-21 09:34:57 -04003610 filp = find_readable_file(fp);
3611 if (!filp) {
3612 /* We should always have a readable file here */
3613 WARN_ON_ONCE(1);
3614 return -EBADF;
3615 }
3616 fl->fl_file = filp;
3617 status = vfs_setlease(filp, fl->fl_type, &fl);
3618 if (status) {
3619 locks_free_lock(fl);
3620 goto out_fput;
3621 }
Benny Halevycdc975052014-05-30 09:09:30 -04003622 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003623 spin_lock(&fp->fi_lock);
3624 /* Did the lease get broken before we took the lock? */
3625 status = -EAGAIN;
3626 if (fp->fi_had_conflict)
3627 goto out_unlock;
3628 /* Race breaker */
3629 if (fp->fi_lease) {
3630 status = 0;
3631 atomic_inc(&fp->fi_delegees);
3632 hash_delegation_locked(dp, fp);
3633 goto out_unlock;
3634 }
3635 fp->fi_lease = fl;
3636 fp->fi_deleg_file = filp;
3637 atomic_set(&fp->fi_delegees, 1);
Benny Halevy931ee562014-05-30 09:09:27 -04003638 hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04003639 spin_unlock(&fp->fi_lock);
Benny Halevycdc975052014-05-30 09:09:30 -04003640 spin_unlock(&state_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003641 return 0;
Jeff Layton417c6622014-07-21 09:34:57 -04003642out_unlock:
3643 spin_unlock(&fp->fi_lock);
3644 spin_unlock(&state_lock);
3645out_fput:
3646 fput(filp);
J. Bruce Fieldse8730882012-01-23 13:52:01 -05003647 return status;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003648}
3649
Jeff Layton0b266932014-07-25 07:34:25 -04003650static struct nfs4_delegation *
3651nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
3652 struct nfs4_file *fp)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003653{
Jeff Layton0b266932014-07-25 07:34:25 -04003654 int status;
3655 struct nfs4_delegation *dp;
Jeff Layton417c6622014-07-21 09:34:57 -04003656
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04003657 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04003658 return ERR_PTR(-EAGAIN);
3659
3660 dp = alloc_init_deleg(clp, fh);
3661 if (!dp)
3662 return ERR_PTR(-ENOMEM);
3663
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04003664 get_nfs4_file(fp);
Benny Halevycdc975052014-05-30 09:09:30 -04003665 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003666 spin_lock(&fp->fi_lock);
Trond Myklebust11b91642014-07-29 21:34:08 -04003667 dp->dl_stid.sc_file = fp;
Jeff Layton417c6622014-07-21 09:34:57 -04003668 if (!fp->fi_lease) {
3669 spin_unlock(&fp->fi_lock);
3670 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04003671 status = nfs4_setlease(dp);
3672 goto out;
Jeff Layton417c6622014-07-21 09:34:57 -04003673 }
J. Bruce Fieldscbf7a752014-03-03 12:19:18 -05003674 atomic_inc(&fp->fi_delegees);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003675 if (fp->fi_had_conflict) {
Jeff Layton417c6622014-07-21 09:34:57 -04003676 status = -EAGAIN;
3677 goto out_unlock;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003678 }
Benny Halevy931ee562014-05-30 09:09:27 -04003679 hash_delegation_locked(dp, fp);
Jeff Layton0b266932014-07-25 07:34:25 -04003680 status = 0;
Jeff Layton417c6622014-07-21 09:34:57 -04003681out_unlock:
3682 spin_unlock(&fp->fi_lock);
Benny Halevycdc975052014-05-30 09:09:30 -04003683 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04003684out:
3685 if (status) {
Trond Myklebust60116952014-07-29 21:34:06 -04003686 nfs4_put_stid(&dp->dl_stid);
Jeff Layton0b266932014-07-25 07:34:25 -04003687 return ERR_PTR(status);
3688 }
3689 return dp;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003690}
3691
Benny Halevy4aa89132012-02-21 14:16:44 -08003692static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
3693{
3694 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3695 if (status == -EAGAIN)
3696 open->op_why_no_deleg = WND4_CONTENTION;
3697 else {
3698 open->op_why_no_deleg = WND4_RESOURCE;
3699 switch (open->op_deleg_want) {
3700 case NFS4_SHARE_WANT_READ_DELEG:
3701 case NFS4_SHARE_WANT_WRITE_DELEG:
3702 case NFS4_SHARE_WANT_ANY_DELEG:
3703 break;
3704 case NFS4_SHARE_WANT_CANCEL:
3705 open->op_why_no_deleg = WND4_CANCELLED;
3706 break;
3707 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05003708 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08003709 }
3710 }
3711}
3712
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713/*
3714 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04003715 *
3716 * Note we don't support write delegations, and won't until the vfs has
3717 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 */
3719static void
Jeff Layton4cf59222014-07-25 07:34:24 -04003720nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
3721 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722{
3723 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04003724 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
3725 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05003726 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04003727 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003729 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07003730 open->op_recall = 0;
3731 switch (open->op_claim_type) {
3732 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05003733 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07003734 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04003735 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
3736 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003737 break;
3738 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00003739 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003740 /*
3741 * Let's not give out any delegations till everyone's
3742 * had the chance to reclaim theirs....
3743 */
Jeff Layton4cf59222014-07-25 07:34:24 -04003744 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04003745 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003746 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04003747 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04003748 /*
3749 * Also, if the file was opened for write or
3750 * create, there's a good chance the client's
3751 * about to write to it, resulting in an
3752 * immediate recall (since we don't support
3753 * write delegations):
3754 */
NeilBrown7b190fe2005-06-23 22:03:23 -07003755 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04003756 goto out_no_deleg;
3757 if (open->op_create == NFS4_OPEN_CREATE)
3758 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003759 break;
3760 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003761 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003762 }
Trond Myklebust11b91642014-07-29 21:34:08 -04003763 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file);
Jeff Layton0b266932014-07-25 07:34:25 -04003764 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003765 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04003767 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003769 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04003770 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04003771 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04003772 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003773 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003774out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003775 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
3776 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04003777 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04003778 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04003779 open->op_recall = 1;
3780 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04003781
3782 /* 4.1 client asking for a delegation? */
3783 if (open->op_deleg_want)
3784 nfsd4_open_deleg_none_ext(open, status);
3785 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786}
3787
Benny Halevye27f49c2012-02-21 14:16:54 -08003788static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
3789 struct nfs4_delegation *dp)
3790{
3791 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
3792 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3793 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3794 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
3795 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
3796 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3797 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3798 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
3799 }
3800 /* Otherwise the client must be confused wanting a delegation
3801 * it already has, therefore we don't return
3802 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
3803 */
3804}
3805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806/*
3807 * called with nfs4_lock_state() held.
3808 */
Al Virob37ad282006-10-19 23:28:59 -07003809__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
3811{
Andy Adamson66689582009-04-03 08:28:45 +03003812 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003813 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003815 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07003816 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003817 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 /*
3820 * Lookup file; if found, lookup stateid and check open request,
3821 * and check for delegations in the process of being recalled.
3822 * If not found, create the nfs4_file struct
3823 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003824 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04003825 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04003826 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07003827 if (status)
3828 goto out;
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003829 stp = nfsd4_find_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04003831 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003832 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003833 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07003834 goto out;
J. Bruce Fields3e772462011-08-10 19:07:33 -04003835 status = nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 }
3837
3838 /*
3839 * OPEN the file, or upgrade an existing OPEN.
3840 * If truncate fails, the OPEN fails.
3841 */
3842 if (stp) {
3843 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003844 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 if (status)
3846 goto out;
3847 } else {
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003848 stp = open->op_stp;
3849 open->op_stp = NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -04003850 init_open_stateid(stp, fp, open);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003851 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
3852 if (status) {
3853 release_open_stateid(stp);
3854 goto out;
3855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 }
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003857 update_stateid(&stp->st_stid.sc_stateid);
3858 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
Benny Halevyd24433c2012-02-16 20:57:17 +02003860 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02003861 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
3862 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3863 open->op_why_no_deleg = WND4_NOT_WANTED;
3864 goto nodeleg;
3865 }
3866 }
3867
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 /*
3869 * Attempt to hand out a delegation. No error return, because the
3870 * OPEN succeeds even if we fail.
3871 */
Jeff Layton4cf59222014-07-25 07:34:24 -04003872 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02003873nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 status = nfs_ok;
3875
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003876 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003877 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878out:
Benny Halevyd24433c2012-02-16 20:57:17 +02003879 /* 4.1 client trying to upgrade/downgrade delegation? */
3880 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08003881 open->op_deleg_want)
3882 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02003883
NeilBrown13cd2182005-06-23 22:03:10 -07003884 if (fp)
3885 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07003886 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fields1255a8f2012-03-06 14:35:16 -05003887 nfs4_set_claim_prev(open, nfsd4_has_session(&resp->cstate));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 /*
3889 * To finish the open response, we just need to set the rflags.
3890 */
3891 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003892 if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
Andy Adamson66689582009-04-03 08:28:45 +03003893 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003895 if (dp)
3896 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04003897 if (stp)
3898 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
3900 return status;
3901}
3902
Jeff Layton58fb12e2014-07-29 21:34:27 -04003903void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
3904 struct nfsd4_open *open, __be32 status)
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003905{
3906 if (open->op_openowner) {
Jeff Laytond3134b12014-07-29 21:34:32 -04003907 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003908
Jeff Laytond3134b12014-07-29 21:34:32 -04003909 nfsd4_cstate_assign_replay(cstate, so);
3910 nfs4_put_stateowner(so);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003911 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04003912 if (open->op_file)
3913 nfsd4_free_file(open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003914 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04003915 nfs4_put_stid(&open->op_stp->st_stid);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003916}
3917
Al Virob37ad282006-10-19 23:28:59 -07003918__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003919nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3920 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921{
3922 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07003923 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003924 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
3926 nfs4_lock_state();
3927 dprintk("process_renew(%08x/%08x): starting\n",
3928 clid->cl_boot, clid->cl_id);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003929 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05003930 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003932 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07003934 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04003935 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 goto out;
3937 status = nfs_ok;
3938out:
3939 nfs4_unlock_state();
3940 return status;
3941}
3942
NeilBrowna76b4312005-06-23 22:04:01 -07003943static void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003944nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07003945{
Jeff Layton33dcc482012-04-10 11:08:48 -04003946 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04003947 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04003948 return;
3949
NeilBrowna76b4312005-06-23 22:04:01 -07003950 dprintk("NFSD: end of grace period\n");
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04003951 nn->grace_ended = true;
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003952 nfsd4_record_grace_done(nn, nn->boot_time);
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04003953 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05003954 /*
3955 * Now that every NFSv4 client has had the chance to recover and
3956 * to see the (possibly new, possibly shorter) lease time, we
3957 * can safely set the next grace time to the current lease time:
3958 */
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03003959 nn->nfsd4_grace = nn->nfsd4_lease;
NeilBrowna76b4312005-06-23 22:04:01 -07003960}
3961
NeilBrownfd39ca92005-06-23 22:04:03 -07003962static time_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003963nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964{
3965 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003966 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 struct nfs4_delegation *dp;
3968 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03003969 time_t cutoff = get_seconds() - nn->nfsd4_lease;
Jeff Laytona832e7a2014-05-30 09:09:26 -04003970 time_t t, new_timeo = nn->nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
3972 nfs4_lock_state();
3973
3974 dprintk("NFSD: laundromat service - starting\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003975 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03003976 INIT_LIST_HEAD(&reaplist);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003977 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03003978 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 clp = list_entry(pos, struct nfs4_client, cl_lru);
3980 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3981 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04003982 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 break;
3984 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003985 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03003986 dprintk("NFSD: client in use (clientid %08x)\n",
3987 clp->cl_clientid.cl_id);
3988 continue;
3989 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003990 list_move(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03003991 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003992 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03003993 list_for_each_safe(pos, next, &reaplist) {
3994 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 dprintk("NFSD: purging unused client (clientid %08x)\n",
3996 clp->cl_clientid.cl_id);
3997 expire_client(clp);
3998 }
Benny Halevycdc975052014-05-30 09:09:30 -04003999 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04004000 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Stanislav Kinsbursky4e37a7c22012-11-26 15:22:03 +03004002 if (net_generic(dp->dl_stid.sc_client->net, nfsd_net_id) != nn)
4003 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004005 t = dp->dl_time - cutoff;
4006 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 break;
4008 }
Jeff Layton42690672014-07-25 07:34:20 -04004009 unhash_delegation_locked(dp);
4010 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 }
Benny Halevycdc975052014-05-30 09:09:30 -04004012 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04004013 while (!list_empty(&reaplist)) {
4014 dp = list_first_entry(&reaplist, struct nfs4_delegation,
4015 dl_recall_lru);
4016 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004017 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 }
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03004019 list_for_each_safe(pos, next, &nn->close_lru) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004020 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
4021 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004022 t = oo->oo_time - cutoff;
4023 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 break;
4025 }
Jeff Laytond3134b12014-07-29 21:34:32 -04004026 release_last_closed_stateid(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 }
Jeff Laytona832e7a2014-05-30 09:09:26 -04004028 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 nfs4_unlock_state();
Jeff Laytona832e7a2014-05-30 09:09:26 -04004030 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031}
4032
Harvey Harrisona254b242008-02-20 12:49:00 -08004033static struct workqueue_struct *laundry_wq;
4034static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08004035
4036static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004037laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038{
4039 time_t t;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004040 struct delayed_work *dwork = container_of(laundry, struct delayed_work,
4041 work);
4042 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
4043 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004045 t = nfs4_laundromat(nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004047 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048}
4049
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004050static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07004051{
Trond Myklebust11b91642014-07-29 21:34:08 -04004052 if (!nfsd_fh_match(&fhp->fh_handle, &stp->st_stid.sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004053 return nfserr_bad_stateid;
4054 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055}
4056
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004058access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004060 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
4061 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
4062 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063}
4064
4065static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004066access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004068 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
4069 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070}
4071
4072static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004073__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074{
Al Virob37ad282006-10-19 23:28:59 -07004075 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
J. Bruce Fields02921912010-07-29 15:16:59 -04004077 /* For lock stateid's, we test the parent open, not the lock: */
4078 if (stp->st_openstp)
4079 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004080 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004082 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 goto out;
4084 status = nfs_ok;
4085out:
4086 return status;
4087}
4088
Al Virob37ad282006-10-19 23:28:59 -07004089static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004090check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004092 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 return nfs_ok;
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004094 else if (locks_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004095 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 * conflicting state; so we must wait out the grace period. */
4097 return nfserr_grace;
4098 } else if (flags & WR_STATE)
4099 return nfs4_share_conflict(current_fh,
4100 NFS4_SHARE_DENY_WRITE);
4101 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4102 return nfs4_share_conflict(current_fh,
4103 NFS4_SHARE_DENY_READ);
4104}
4105
4106/*
4107 * Allow READ/WRITE during grace period on recovered state only for files
4108 * that are not able to provide mandatory locking.
4109 */
4110static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004111grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112{
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004113 return locks_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114}
4115
J. Bruce Fields81b82962011-08-23 11:03:29 -04004116/* Returns true iff a is later than b: */
4117static bool stateid_generation_after(stateid_t *a, stateid_t *b)
4118{
Jim Rees1a9357f2013-05-17 17:33:00 -04004119 return (s32)(a->si_generation - b->si_generation) > 0;
J. Bruce Fields81b82962011-08-23 11:03:29 -04004120}
4121
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004122static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05004123{
Andy Adamson66689582009-04-03 08:28:45 +03004124 /*
4125 * When sessions are used the stateid generation number is ignored
4126 * when it is zero.
4127 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04004128 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04004129 return nfs_ok;
4130
4131 if (in->si_generation == ref->si_generation)
4132 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03004133
J. Bruce Fields0836f582008-01-26 19:08:12 -05004134 /* If the client sends us a stateid from the future, it's buggy: */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004135 if (stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05004136 return nfserr_bad_stateid;
4137 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04004138 * However, we could see a stateid from the past, even from a
4139 * non-buggy client. For example, if the client sends a lock
4140 * while some IO is outstanding, the lock may bump si_generation
4141 * while the IO is still in flight. The client could avoid that
4142 * situation by waiting for responses on all the IO requests,
4143 * but better performance may result in retrying IO that
4144 * receives an old_stateid error if requests are rarely
4145 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05004146 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004147 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05004148}
4149
Chuck Lever7df302f2012-05-29 13:56:37 -04004150static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04004151{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004152 struct nfs4_stid *s;
4153 struct nfs4_ol_stateid *ols;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004154 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04004155
Chuck Lever7df302f2012-05-29 13:56:37 -04004156 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004157 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004158 /* Client debugging aid. */
4159 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
4160 char addr_str[INET6_ADDRSTRLEN];
4161 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
4162 sizeof(addr_str));
4163 pr_warn_ratelimited("NFSD: client %s testing state ID "
4164 "with incorrect client ID\n", addr_str);
Jeff Layton1af71cc2014-07-29 21:34:14 -04004165 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004166 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004167 spin_lock(&cl->cl_lock);
4168 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004169 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004170 goto out_unlock;
J. Bruce Fields36279ac2011-09-26 12:53:00 -04004171 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04004172 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004173 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04004174 switch (s->sc_type) {
4175 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004176 status = nfs_ok;
4177 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004178 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004179 status = nfserr_deleg_revoked;
4180 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004181 case NFS4_OPEN_STID:
4182 case NFS4_LOCK_STID:
4183 ols = openlockstateid(s);
4184 if (ols->st_stateowner->so_is_open_owner
4185 && !(openowner(ols->st_stateowner)->oo_flags
4186 & NFS4_OO_CONFIRMED))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004187 status = nfserr_bad_stateid;
4188 else
4189 status = nfs_ok;
4190 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004191 default:
4192 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004193 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04004194 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004195 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004196 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04004197 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004198out_unlock:
4199 spin_unlock(&cl->cl_lock);
4200 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04004201}
4202
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004203static __be32
4204nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
4205 stateid_t *stateid, unsigned char typemask,
4206 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004207{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04004208 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004209
4210 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
4211 return nfserr_bad_stateid;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004212 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004213 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04004214 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004215 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004216 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004217 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04004218 if (status)
4219 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004220 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004221 if (!*s)
4222 return nfserr_bad_stateid;
4223 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004224}
4225
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226/*
4227* Checks for stateid operations
4228*/
Al Virob37ad282006-10-19 23:28:59 -07004229__be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004230nfs4_preprocess_stateid_op(struct net *net, struct nfsd4_compound_state *cstate,
Benny Halevydd453df2009-04-03 08:28:41 +03004231 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232{
J. Bruce Fields69064a22011-09-09 11:54:57 -04004233 struct nfs4_stid *s;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004234 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03004236 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 struct inode *ino = current_fh->fh_dentry->d_inode;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004238 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Trond Myklebust14bcab12014-04-18 14:44:07 -04004239 struct file *file = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004240 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 if (filpp)
4243 *filpp = NULL;
4244
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004245 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 return nfserr_grace;
4247
4248 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004249 return check_special_stateids(net, current_fh, stateid, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Trond Myklebust14bcab12014-04-18 14:44:07 -04004251 nfs4_lock_state();
4252
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004253 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004254 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004255 &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004256 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04004257 goto unlock_state;
J. Bruce Fields69064a22011-09-09 11:54:57 -04004258 status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
4259 if (status)
4260 goto out;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004261 switch (s->sc_type) {
4262 case NFS4_DELEG_STID:
J. Bruce Fields69064a22011-09-09 11:54:57 -04004263 dp = delegstateid(s);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08004264 status = nfs4_check_delegmode(dp, flags);
4265 if (status)
4266 goto out;
Dan Carpenter43b01782010-10-27 23:19:04 +02004267 if (filpp) {
Trond Myklebust11b91642014-07-29 21:34:08 -04004268 file = dp->dl_stid.sc_file->fi_deleg_file;
Trond Myklebust14bcab12014-04-18 14:44:07 -04004269 if (!file) {
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004270 WARN_ON_ONCE(1);
4271 status = nfserr_serverfault;
4272 goto out;
4273 }
Trond Myklebustde186432014-07-10 14:07:26 -04004274 get_file(file);
Dan Carpenter43b01782010-10-27 23:19:04 +02004275 }
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004276 break;
4277 case NFS4_OPEN_STID:
4278 case NFS4_LOCK_STID:
J. Bruce Fields69064a22011-09-09 11:54:57 -04004279 stp = openlockstateid(s);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004280 status = nfs4_check_fh(current_fh, stp);
4281 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004283 if (stp->st_stateowner->so_is_open_owner
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004284 && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08004286 status = nfs4_check_openmode(stp, flags);
4287 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 goto out;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004289 if (filpp) {
Trond Myklebust11b91642014-07-29 21:34:08 -04004290 struct nfs4_file *fp = stp->st_stid.sc_file;
4291
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004292 if (flags & RD_STATE)
Trond Myklebust11b91642014-07-29 21:34:08 -04004293 file = find_readable_file(fp);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004294 else
Trond Myklebust11b91642014-07-29 21:34:08 -04004295 file = find_writeable_file(fp);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004296 }
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004297 break;
4298 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04004299 status = nfserr_bad_stateid;
4300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 }
4302 status = nfs_ok;
Trond Myklebust14bcab12014-04-18 14:44:07 -04004303 if (file)
Trond Myklebustde186432014-07-10 14:07:26 -04004304 *filpp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305out:
Trond Myklebustfd911012014-07-29 21:34:24 -04004306 nfs4_put_stid(s);
4307unlock_state:
Trond Myklebust14bcab12014-04-18 14:44:07 -04004308 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 return status;
4310}
4311
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004312static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004313nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004314{
J. Bruce Fieldsa1b8ff42014-05-20 15:55:21 -04004315 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
4316
Trond Myklebust11b91642014-07-29 21:34:08 -04004317 if (check_for_locks(stp->st_stid.sc_file, lo))
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004318 return nfserr_locks_held;
Jeff Layton5adfd882014-07-29 21:34:31 -04004319 release_lock_stateid(stp);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004320 return nfs_ok;
4321}
4322
4323/*
Bryan Schumaker17456802011-07-13 10:50:48 -04004324 * Test if the stateid is valid
4325 */
4326__be32
4327nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4328 struct nfsd4_test_stateid *test_stateid)
4329{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004330 struct nfsd4_test_stateid_id *stateid;
4331 struct nfs4_client *cl = cstate->session->se_client;
4332
4333 nfs4_lock_state();
4334 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04004335 stateid->ts_id_status =
4336 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004337 nfs4_unlock_state();
4338
Bryan Schumaker17456802011-07-13 10:50:48 -04004339 return nfs_ok;
4340}
4341
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004342__be32
4343nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4344 struct nfsd4_free_stateid *free_stateid)
4345{
4346 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004347 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004348 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004349 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004350 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004351
4352 nfs4_lock_state();
Jeff Layton1af71cc2014-07-29 21:34:14 -04004353 spin_lock(&cl->cl_lock);
4354 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004355 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004356 goto out_unlock;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004357 switch (s->sc_type) {
4358 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004359 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004360 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004361 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004362 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4363 if (ret)
4364 break;
4365 ret = nfserr_locks_held;
4366 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004367 case NFS4_LOCK_STID:
4368 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4369 if (ret)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004370 break;
4371 spin_unlock(&cl->cl_lock);
4372 ret = nfsd4_free_lock_stateid(openlockstateid(s));
4373 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004374 case NFS4_REVOKED_DELEG_STID:
4375 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04004376 list_del_init(&dp->dl_recall_lru);
4377 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04004378 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004379 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004380 goto out;
4381 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004382 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004383out_unlock:
4384 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004385out:
4386 nfs4_unlock_state();
4387 return ret;
4388}
4389
NeilBrown4c4cd222005-07-07 17:59:27 -07004390static inline int
4391setlkflg (int type)
4392{
4393 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
4394 RD_STATE : WR_STATE;
4395}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004397static __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 -04004398{
4399 struct svc_fh *current_fh = &cstate->current_fh;
4400 struct nfs4_stateowner *sop = stp->st_stateowner;
4401 __be32 status;
4402
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004403 status = nfsd4_check_seqid(cstate, sop, seqid);
4404 if (status)
4405 return status;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004406 if (stp->st_stid.sc_type == NFS4_CLOSED_STID
4407 || stp->st_stid.sc_type == NFS4_REVOKED_DELEG_STID)
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004408 /*
4409 * "Closed" stateid's exist *only* to return
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004410 * nfserr_replay_me from the previous step, and
4411 * revoked delegations are kept only for free_stateid.
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004412 */
4413 return nfserr_bad_stateid;
4414 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
4415 if (status)
4416 return status;
4417 return nfs4_check_fh(current_fh, stp);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004418}
4419
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420/*
4421 * Checks for sequence id mutating operations.
4422 */
Al Virob37ad282006-10-19 23:28:59 -07004423static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03004424nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04004425 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004426 struct nfs4_ol_stateid **stpp,
4427 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428{
J. Bruce Fields0836f582008-01-26 19:08:12 -05004429 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004430 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004431 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004433 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
4434 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07004435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004437 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004438 if (status)
4439 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004440 stp = openlockstateid(s);
Jeff Layton58fb12e2014-07-29 21:34:27 -04004441 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004443 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
Trond Myklebustfd911012014-07-29 21:34:24 -04004444 if (!status)
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004445 *stpp = stp;
Trond Myklebustfd911012014-07-29 21:34:24 -04004446 else
4447 nfs4_put_stid(&stp->st_stid);
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004448 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004449}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05004450
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004451static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
4452 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004453{
4454 __be32 status;
4455 struct nfs4_openowner *oo;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04004456 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004458 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04004459 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04004460 if (status)
4461 return status;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04004462 oo = openowner(stp->st_stateowner);
4463 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
4464 nfs4_put_stid(&stp->st_stid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07004465 return nfserr_bad_stateid;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04004466 }
4467 *stpp = stp;
NeilBrown3a4f98b2005-07-07 17:59:26 -07004468 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469}
4470
Al Virob37ad282006-10-19 23:28:59 -07004471__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004472nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004473 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474{
Al Virob37ad282006-10-19 23:28:59 -07004475 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004476 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004477 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004478 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Al Viroa6a9f182013-09-16 10:57:01 -04004480 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
4481 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004483 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07004484 if (status)
4485 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
4487 nfs4_lock_state();
4488
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004489 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004490 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004491 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004492 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004493 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004494 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004495 status = nfserr_bad_stateid;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004496 if (oo->oo_flags & NFS4_OO_CONFIRMED)
Trond Myklebust2585fc72014-07-29 21:34:21 -04004497 goto put_stateid;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004498 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004499 update_stateid(&stp->st_stid.sc_stateid);
4500 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004501 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004502 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07004503
Jeff Layton2a4317c2012-03-21 16:42:43 -04004504 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004505 status = nfs_ok;
Trond Myklebust2585fc72014-07-29 21:34:21 -04004506put_stateid:
4507 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004509 nfsd4_bump_seqid(cstate, status);
Jeff Layton58fb12e2014-07-29 21:34:27 -04004510 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 return status;
4512}
4513
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004514static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004516 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004517 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04004518 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04004519 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004520}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04004521
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004522static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
4523{
4524 switch (to_access) {
4525 case NFS4_SHARE_ACCESS_READ:
4526 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
4527 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4528 break;
4529 case NFS4_SHARE_ACCESS_WRITE:
4530 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
4531 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4532 break;
4533 case NFS4_SHARE_ACCESS_BOTH:
4534 break;
4535 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004536 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 }
4538}
4539
Al Virob37ad282006-10-19 23:28:59 -07004540__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004541nfsd4_open_downgrade(struct svc_rqst *rqstp,
4542 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004543 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544{
Al Virob37ad282006-10-19 23:28:59 -07004545 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004546 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004547 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Al Viroa6a9f182013-09-16 10:57:01 -04004549 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
4550 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04004552 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02004553 if (od->od_deleg_want)
4554 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
4555 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
4557 nfs4_lock_state();
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004558 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004559 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004560 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004563 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04004564 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 stp->st_access_bmap, od->od_share_access);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04004566 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04004568 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04004569 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 stp->st_deny_bmap, od->od_share_deny);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04004571 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004573 nfs4_stateid_downgrade(stp, od->od_share_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574
Jeff Laytonce0fc432012-05-11 09:45:14 -04004575 reset_union_bmap_deny(od->od_share_deny, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004577 update_stateid(&stp->st_stid.sc_stateid);
4578 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 status = nfs_ok;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04004580put_stateid:
4581 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004583 nfsd4_bump_seqid(cstate, status);
Jeff Layton58fb12e2014-07-29 21:34:27 -04004584 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 return status;
4586}
4587
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004588static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
4589{
Trond Myklebustacf92952014-06-30 11:48:37 -04004590 struct nfs4_client *clp = s->st_stid.sc_client;
Trond Myklebustacf92952014-06-30 11:48:37 -04004591
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004592 s->st_stid.sc_type = NFS4_CLOSED_STID;
Trond Myklebustacf92952014-06-30 11:48:37 -04004593 unhash_open_stateid(s);
4594
Jeff Laytond3134b12014-07-29 21:34:32 -04004595 if (clp->cl_minorversion)
Trond Myklebust60116952014-07-29 21:34:06 -04004596 nfs4_put_stid(&s->st_stid);
Jeff Laytond3134b12014-07-29 21:34:32 -04004597 else
4598 move_to_close_lru(s, clp->net);
J. Bruce Fields38c387b2011-09-16 17:42:48 -04004599}
4600
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601/*
4602 * nfs4_unlock_state() called after encode
4603 */
Al Virob37ad282006-10-19 23:28:59 -07004604__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004605nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004606 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607{
Al Virob37ad282006-10-19 23:28:59 -07004608 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004609 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004610 struct net *net = SVC_NET(rqstp);
4611 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Al Viroa6a9f182013-09-16 10:57:01 -04004613 dprintk("NFSD: nfsd4_close on file %pd\n",
4614 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615
4616 nfs4_lock_state();
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004617 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
4618 &close->cl_stateid,
4619 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004620 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004621 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004622 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 goto out;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004624 update_stateid(&stp->st_stid.sc_stateid);
4625 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004627 nfsd4_close_open_stateid(stp);
Trond Myklebust8a0b5892014-07-29 21:34:20 -04004628
4629 /* put reference from nfs4_preprocess_seqid_op */
4630 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631out:
Jeff Layton58fb12e2014-07-29 21:34:27 -04004632 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 return status;
4634}
4635
Al Virob37ad282006-10-19 23:28:59 -07004636__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004637nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4638 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004640 struct nfs4_delegation *dp;
4641 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004642 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07004643 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004644 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004646 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004647 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
4649 nfs4_lock_state();
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004650 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004651 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004652 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004653 dp = delegstateid(s);
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004654 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004655 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04004656 goto put_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004657
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004658 destroy_delegation(dp);
Trond Myklebustfd911012014-07-29 21:34:24 -04004659put_stateid:
4660 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004662 nfs4_unlock_state();
4663
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 return status;
4665}
4666
4667
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Benny Halevy87df4de2008-12-15 19:42:03 +02004670static inline u64
4671end_offset(u64 start, u64 len)
4672{
4673 u64 end;
4674
4675 end = start + len;
4676 return end >= start ? end: NFS4_MAX_UINT64;
4677}
4678
4679/* last octet in a range */
4680static inline u64
4681last_byte_offset(u64 start, u64 len)
4682{
4683 u64 end;
4684
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004685 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02004686 end = start + len;
4687 return end > start ? end - 1: NFS4_MAX_UINT64;
4688}
4689
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690/*
4691 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
4692 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
4693 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
4694 * locking, this prevents us from being completely protocol-compliant. The
4695 * real solution to this problem is to start using unsigned file offsets in
4696 * the VFS, but this is a very deep change!
4697 */
4698static inline void
4699nfs4_transform_lock_offset(struct file_lock *lock)
4700{
4701 if (lock->fl_start < 0)
4702 lock->fl_start = OFFSET_MAX;
4703 if (lock->fl_end < 0)
4704 lock->fl_end = OFFSET_MAX;
4705}
4706
NeilBrownd5b90262006-04-10 22:55:22 -07004707/* Hack!: For now, we're defining this just so we can use a pointer to it
4708 * as a unique cookie to identify our (NFSv4's) posix locks. */
Alexey Dobriyan7b021962009-09-21 17:01:12 -07004709static const struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07004710};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
4712static inline void
4713nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
4714{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004715 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
NeilBrownd5b90262006-04-10 22:55:22 -07004717 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004718 lo = (struct nfs4_lockowner *) fl->fl_owner;
4719 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
4720 lo->lo_owner.so_owner.len, GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04004721 if (!deny->ld_owner.data)
4722 /* We just don't care that much */
4723 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004724 deny->ld_owner.len = lo->lo_owner.so_owner.len;
4725 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07004726 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04004727nevermind:
4728 deny->ld_owner.len = 0;
4729 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07004730 deny->ld_clientid.cl_boot = 0;
4731 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 }
4733 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02004734 deny->ld_length = NFS4_MAX_UINT64;
4735 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 deny->ld_length = fl->fl_end - fl->fl_start + 1;
4737 deny->ld_type = NFS4_READ_LT;
4738 if (fl->fl_type != F_RDLCK)
4739 deny->ld_type = NFS4_WRITE_LT;
4740}
4741
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004742static struct nfs4_lockowner *
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004743find_lockowner_str(clientid_t *clid, struct xdr_netobj *owner,
4744 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745{
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004746 unsigned int strhashval = ownerstr_hashval(clid->cl_id, owner);
4747 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004749 list_for_each_entry(so, &nn->ownerstr_hashtbl[strhashval], so_strhash) {
4750 if (so->so_is_open_owner)
4751 continue;
4752 if (!same_owner_str(so, owner, clid))
4753 continue;
Jeff Layton5db1c032014-07-29 21:34:28 -04004754 atomic_inc(&so->so_count);
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004755 return lockowner(so);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 }
4757 return NULL;
4758}
4759
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004760static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
4761{
4762 unhash_lockowner(lockowner(sop));
4763}
4764
Jeff Layton6b180f02014-07-29 21:34:26 -04004765static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
4766{
4767 struct nfs4_lockowner *lo = lockowner(sop);
4768
4769 kmem_cache_free(lockowner_slab, lo);
4770}
4771
4772static const struct nfs4_stateowner_operations lockowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004773 .so_unhash = nfs4_unhash_lockowner,
4774 .so_free = nfs4_free_lockowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04004775};
4776
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777/*
4778 * Alloc a lock owner structure.
4779 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004780 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05004782 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004784static struct nfs4_lockowner *
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004785alloc_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 -04004786 struct nfs4_lockowner *lo;
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004787 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004789 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
4790 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 return NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004792 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
4793 lo->lo_owner.so_is_open_owner = 0;
Jeff Layton5db1c032014-07-29 21:34:28 -04004794 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
Jeff Layton6b180f02014-07-29 21:34:26 -04004795 lo->lo_owner.so_ops = &lockowner_ops;
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004796 list_add(&lo->lo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004797 return lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798}
4799
Jeff Layton356a95e2014-07-29 21:34:13 -04004800static void
4801init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
4802 struct nfs4_file *fp, struct inode *inode,
4803 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04004805 struct nfs4_client *clp = lo->lo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
Jeff Layton356a95e2014-07-29 21:34:13 -04004807 lockdep_assert_held(&clp->cl_lock);
4808
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004809 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05004810 stp->st_stid.sc_type = NFS4_LOCK_STID;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004811 stp->st_stateowner = &lo->lo_owner;
Trond Myklebuste4f1dd72014-07-29 21:34:30 -04004812 atomic_inc(&lo->lo_owner.so_count);
NeilBrown13cd2182005-06-23 22:03:10 -07004813 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04004814 stp->st_stid.sc_file = fp;
Jeff Laytonb49e0842014-07-29 21:34:11 -04004815 stp->st_stid.sc_free = nfs4_free_lock_stateid;
J. Bruce Fields0997b172011-03-02 18:01:35 -05004816 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07004818 stp->st_openstp = open_stp;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04004819 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04004820 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004821 spin_lock(&fp->fi_lock);
4822 list_add(&stp->st_perfile, &fp->fi_stateids);
4823 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824}
4825
Jeff Laytonc53530d2014-06-30 11:48:39 -04004826static struct nfs4_ol_stateid *
4827find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
4828{
4829 struct nfs4_ol_stateid *lst;
Jeff Layton356a95e2014-07-29 21:34:13 -04004830 struct nfs4_client *clp = lo->lo_owner.so_client;
4831
4832 lockdep_assert_held(&clp->cl_lock);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004833
4834 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004835 if (lst->st_stid.sc_file == fp) {
4836 atomic_inc(&lst->st_stid.sc_count);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004837 return lst;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004838 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04004839 }
4840 return NULL;
4841}
4842
Jeff Layton356a95e2014-07-29 21:34:13 -04004843static struct nfs4_ol_stateid *
4844find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
4845 struct inode *inode, struct nfs4_ol_stateid *ost,
4846 bool *new)
4847{
4848 struct nfs4_stid *ns = NULL;
4849 struct nfs4_ol_stateid *lst;
4850 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4851 struct nfs4_client *clp = oo->oo_owner.so_client;
4852
4853 spin_lock(&clp->cl_lock);
4854 lst = find_lock_stateid(lo, fi);
4855 if (lst == NULL) {
4856 spin_unlock(&clp->cl_lock);
4857 ns = nfs4_alloc_stid(clp, stateid_slab);
4858 if (ns == NULL)
4859 return NULL;
4860
4861 spin_lock(&clp->cl_lock);
4862 lst = find_lock_stateid(lo, fi);
4863 if (likely(!lst)) {
4864 lst = openlockstateid(ns);
4865 init_lock_stateid(lst, lo, fi, inode, ost);
4866 ns = NULL;
4867 *new = true;
4868 }
4869 }
4870 spin_unlock(&clp->cl_lock);
4871 if (ns)
4872 nfs4_put_stid(ns);
4873 return lst;
4874}
Jeff Laytonc53530d2014-06-30 11:48:39 -04004875
NeilBrownfd39ca92005-06-23 22:04:03 -07004876static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877check_lock_length(u64 offset, u64 length)
4878{
Benny Halevy87df4de2008-12-15 19:42:03 +02004879 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 LOFF_OVERFLOW(offset, length)));
4881}
4882
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004883static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05004884{
Trond Myklebust11b91642014-07-29 21:34:08 -04004885 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05004886
Jeff Layton7214e862014-07-10 14:07:33 -04004887 lockdep_assert_held(&fp->fi_lock);
4888
Jeff Layton82c5ff12012-05-11 09:45:13 -04004889 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05004890 return;
Jeff Layton12659652014-07-10 14:07:28 -04004891 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04004892 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05004893}
4894
Jeff Layton356a95e2014-07-29 21:34:13 -04004895static __be32
4896lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
4897 struct nfs4_ol_stateid *ost,
4898 struct nfsd4_lock *lock,
4899 struct nfs4_ol_stateid **lst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004900{
Jeff Layton5db1c032014-07-29 21:34:28 -04004901 __be32 status;
Trond Myklebust11b91642014-07-29 21:34:08 -04004902 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004903 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4904 struct nfs4_client *cl = oo->oo_owner.so_client;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004905 struct inode *inode = cstate->current_fh.fh_dentry->d_inode;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004906 struct nfs4_lockowner *lo;
4907 unsigned int strhashval;
Stanislav Kinsbursky20e9e2b2012-11-14 18:21:46 +03004908 struct nfsd_net *nn = net_generic(cl->net, nfsd_net_id);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004909
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004910 lo = find_lockowner_str(&cl->cl_clientid, &lock->v.new.owner, nn);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004911 if (!lo) {
4912 strhashval = ownerstr_hashval(cl->cl_clientid.cl_id,
4913 &lock->v.new.owner);
4914 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
4915 if (lo == NULL)
4916 return nfserr_jukebox;
4917 } else {
4918 /* with an existing lockowner, seqids must be the same */
Jeff Layton5db1c032014-07-29 21:34:28 -04004919 status = nfserr_bad_seqid;
Jeff Laytonc53530d2014-06-30 11:48:39 -04004920 if (!cstate->minorversion &&
4921 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
Jeff Layton5db1c032014-07-29 21:34:28 -04004922 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004923 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04004924
Jeff Layton356a95e2014-07-29 21:34:13 -04004925 *lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004926 if (*lst == NULL) {
Jeff Layton5db1c032014-07-29 21:34:28 -04004927 status = nfserr_jukebox;
4928 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004929 }
Jeff Layton5db1c032014-07-29 21:34:28 -04004930 status = nfs_ok;
4931out:
4932 nfs4_put_stateowner(&lo->lo_owner);
4933 return status;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004934}
4935
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936/*
4937 * LOCK operation
4938 */
Al Virob37ad282006-10-19 23:28:59 -07004939__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004940nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004941 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004943 struct nfs4_openowner *open_sop = NULL;
4944 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004945 struct nfs4_ol_stateid *lock_stp = NULL;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04004946 struct nfs4_ol_stateid *open_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04004947 struct nfs4_file *fp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04004948 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04004949 struct file_lock *file_lock = NULL;
4950 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004951 __be32 status = 0;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004952 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07004953 int err;
Jeff Layton5db1c032014-07-29 21:34:28 -04004954 bool new = false;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004955 struct net *net = SVC_NET(rqstp);
4956 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957
4958 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
4959 (long long) lock->lk_offset,
4960 (long long) lock->lk_length);
4961
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 if (check_lock_length(lock->lk_offset, lock->lk_length))
4963 return nfserr_inval;
4964
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004965 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02004966 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08004967 dprintk("NFSD: nfsd4_lock: permission denied!\n");
4968 return status;
4969 }
4970
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 nfs4_lock_state();
4972
4973 if (lock->lk_is_new) {
J. Bruce Fields684e5632011-11-04 17:08:10 -04004974 if (nfsd4_has_session(cstate))
4975 /* See rfc 5661 18.10.3: given clientid is ignored: */
4976 memcpy(&lock->v.new.clientid,
4977 &cstate->session->se_client->cl_clientid,
4978 sizeof(clientid_t));
4979
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004981 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004985 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 lock->lk_new_open_seqid,
4987 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004988 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07004989 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004991 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004992 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04004993 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004994 &lock->v.new.clientid))
4995 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004996 status = lookup_or_create_lock_state(cstate, open_stp, lock,
Jeff Layton5db1c032014-07-29 21:34:28 -04004997 &lock_stp, &new);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004998 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03004999 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005000 lock->lk_old_lock_seqid,
5001 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005002 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005003 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04005004 if (status)
5005 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005006 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005008 lkflg = setlkflg(lock->lk_type);
5009 status = nfs4_check_openmode(lock_stp, lkflg);
5010 if (status)
5011 goto out;
5012
NeilBrown0dd395d2005-07-07 17:59:15 -07005013 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005014 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005015 goto out;
5016 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005017 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005018 goto out;
5019
Jeff Layton21179d82012-08-21 08:03:32 -04005020 file_lock = locks_alloc_lock();
5021 if (!file_lock) {
5022 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5023 status = nfserr_jukebox;
5024 goto out;
5025 }
5026
Trond Myklebust11b91642014-07-29 21:34:08 -04005027 fp = lock_stp->st_stid.sc_file;
Jeff Layton21179d82012-08-21 08:03:32 -04005028 locks_init_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 switch (lock->lk_type) {
5030 case NFS4_READ_LT:
5031 case NFS4_READW_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005032 spin_lock(&fp->fi_lock);
5033 filp = find_readable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005034 if (filp)
5035 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04005036 spin_unlock(&fp->fi_lock);
Jeff Layton21179d82012-08-21 08:03:32 -04005037 file_lock->fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05005038 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 case NFS4_WRITE_LT:
5040 case NFS4_WRITEW_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005041 spin_lock(&fp->fi_lock);
5042 filp = find_writeable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005043 if (filp)
5044 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04005045 spin_unlock(&fp->fi_lock);
Jeff Layton21179d82012-08-21 08:03:32 -04005046 file_lock->fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05005047 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 default:
5049 status = nfserr_inval;
5050 goto out;
5051 }
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005052 if (!filp) {
5053 status = nfserr_openmode;
5054 goto out;
5055 }
Jeff Layton21179d82012-08-21 08:03:32 -04005056 file_lock->fl_owner = (fl_owner_t)lock_sop;
5057 file_lock->fl_pid = current->tgid;
5058 file_lock->fl_file = filp;
5059 file_lock->fl_flags = FL_POSIX;
5060 file_lock->fl_lmops = &nfsd_posix_mng_ops;
5061 file_lock->fl_start = lock->lk_offset;
5062 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
5063 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064
Jeff Layton21179d82012-08-21 08:03:32 -04005065 conflock = locks_alloc_lock();
5066 if (!conflock) {
5067 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5068 status = nfserr_jukebox;
5069 goto out;
5070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071
Jeff Layton21179d82012-08-21 08:03:32 -04005072 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07005073 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 case 0: /* success! */
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005075 update_stateid(&lock_stp->st_stid.sc_stateid);
5076 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07005078 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005079 break;
5080 case (EAGAIN): /* conflock holds conflicting lock */
5081 status = nfserr_denied;
5082 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04005083 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 case (EDEADLK):
5086 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005087 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04005088 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05005089 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04005090 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005091 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093out:
Trond Myklebustde186432014-07-10 14:07:26 -04005094 if (filp)
5095 fput(filp);
Jeff Layton5db1c032014-07-29 21:34:28 -04005096 if (lock_stp) {
5097 /* Bump seqid manually if the 4.0 replay owner is openowner */
5098 if (cstate->replay_owner &&
5099 cstate->replay_owner != &lock_sop->lo_owner &&
5100 seqid_mutating_err(ntohl(status)))
5101 lock_sop->lo_owner.so_seqid++;
5102
5103 /*
5104 * If this is a new, never-before-used stateid, and we are
5105 * returning an error, then just go ahead and release it.
5106 */
5107 if (status && new)
5108 release_lock_stateid(lock_stp);
5109
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005110 nfs4_put_stid(&lock_stp->st_stid);
Jeff Layton5db1c032014-07-29 21:34:28 -04005111 }
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005112 if (open_stp)
5113 nfs4_put_stid(&open_stp->st_stid);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005114 nfsd4_bump_seqid(cstate, status);
Jeff Layton58fb12e2014-07-29 21:34:27 -04005115 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005116 if (file_lock)
5117 locks_free_lock(file_lock);
5118 if (conflock)
5119 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 return status;
5121}
5122
5123/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005124 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
5125 * so we do a temporary open here just to get an open file to pass to
5126 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
5127 * inode operation.)
5128 */
Al Viro04da6e92012-04-13 00:00:04 -04005129static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005130{
5131 struct file *file;
Al Viro04da6e92012-04-13 00:00:04 -04005132 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
5133 if (!err) {
5134 err = nfserrno(vfs_test_lock(file, lock));
5135 nfsd_close(file);
5136 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005137 return err;
5138}
5139
5140/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 * LOCKT operation
5142 */
Al Virob37ad282006-10-19 23:28:59 -07005143__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005144nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5145 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146{
Jeff Layton21179d82012-08-21 08:03:32 -04005147 struct file_lock *file_lock = NULL;
Jeff Layton5db1c032014-07-29 21:34:28 -04005148 struct nfs4_lockowner *lo = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005149 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005150 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005152 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 return nfserr_grace;
5154
5155 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
5156 return nfserr_inval;
5157
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 nfs4_lock_state();
5159
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005160 if (!nfsd4_has_session(cstate)) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005161 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005162 if (status)
5163 goto out;
5164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165
J. Bruce Fields75c096f2011-08-15 18:39:32 -04005166 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
Jeff Layton21179d82012-08-21 08:03:32 -04005169 file_lock = locks_alloc_lock();
5170 if (!file_lock) {
5171 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5172 status = nfserr_jukebox;
5173 goto out;
5174 }
5175 locks_init_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 switch (lockt->lt_type) {
5177 case NFS4_READ_LT:
5178 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04005179 file_lock->fl_type = F_RDLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180 break;
5181 case NFS4_WRITE_LT:
5182 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04005183 file_lock->fl_type = F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 break;
5185 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04005186 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 status = nfserr_inval;
5188 goto out;
5189 }
5190
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005191 lo = find_lockowner_str(&lockt->lt_clientid, &lockt->lt_owner, nn);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005192 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04005193 file_lock->fl_owner = (fl_owner_t)lo;
5194 file_lock->fl_pid = current->tgid;
5195 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
Jeff Layton21179d82012-08-21 08:03:32 -04005197 file_lock->fl_start = lockt->lt_offset;
5198 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199
Jeff Layton21179d82012-08-21 08:03:32 -04005200 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Jeff Layton21179d82012-08-21 08:03:32 -04005202 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04005203 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05005204 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04005205
Jeff Layton21179d82012-08-21 08:03:32 -04005206 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04005208 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 }
5210out:
Jeff Layton5db1c032014-07-29 21:34:28 -04005211 if (lo)
5212 nfs4_put_stateowner(&lo->lo_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005214 if (file_lock)
5215 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 return status;
5217}
5218
Al Virob37ad282006-10-19 23:28:59 -07005219__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005220nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005221 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005223 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04005225 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005226 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07005227 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005228 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
5229
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
5231 (long long) locku->lu_offset,
5232 (long long) locku->lu_length);
5233
5234 if (check_lock_length(locku->lu_offset, locku->lu_length))
5235 return nfserr_inval;
5236
5237 nfs4_lock_state();
5238
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005239 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005240 &locku->lu_stateid, NFS4_LOCK_STID,
5241 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005242 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 goto out;
Trond Myklebust11b91642014-07-29 21:34:08 -04005244 filp = find_any_file(stp->st_stid.sc_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005245 if (!filp) {
5246 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04005247 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005248 }
Jeff Layton21179d82012-08-21 08:03:32 -04005249 file_lock = locks_alloc_lock();
5250 if (!file_lock) {
5251 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5252 status = nfserr_jukebox;
Trond Myklebustde186432014-07-10 14:07:26 -04005253 goto fput;
Jeff Layton21179d82012-08-21 08:03:32 -04005254 }
5255 locks_init_lock(file_lock);
5256 file_lock->fl_type = F_UNLCK;
J. Bruce Fields0a262ff2013-06-17 17:29:40 -04005257 file_lock->fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
Jeff Layton21179d82012-08-21 08:03:32 -04005258 file_lock->fl_pid = current->tgid;
5259 file_lock->fl_file = filp;
5260 file_lock->fl_flags = FL_POSIX;
5261 file_lock->fl_lmops = &nfsd_posix_mng_ops;
5262 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263
Jeff Layton21179d82012-08-21 08:03:32 -04005264 file_lock->fl_end = last_byte_offset(locku->lu_offset,
5265 locku->lu_length);
5266 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
Jeff Layton21179d82012-08-21 08:03:32 -04005268 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07005269 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05005270 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 goto out_nfserr;
5272 }
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005273 update_stateid(&stp->st_stid.sc_stateid);
5274 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Trond Myklebustde186432014-07-10 14:07:26 -04005275fput:
5276 fput(filp);
Trond Myklebust858cc572014-07-29 21:34:16 -04005277put_stateid:
5278 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005280 nfsd4_bump_seqid(cstate, status);
Jeff Layton58fb12e2014-07-29 21:34:27 -04005281 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005282 if (file_lock)
5283 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284 return status;
5285
5286out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07005287 status = nfserrno(err);
Trond Myklebustde186432014-07-10 14:07:26 -04005288 goto fput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289}
5290
5291/*
5292 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005293 * true: locks held by lockowner
5294 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005296static bool
5297check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298{
5299 struct file_lock **flpp;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005300 int status = false;
5301 struct file *filp = find_any_file(fp);
5302 struct inode *inode;
5303
5304 if (!filp) {
5305 /* Any valid lock stateid should have some sort of access */
5306 WARN_ON_ONCE(1);
5307 return status;
5308 }
5309
5310 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311
Jeff Layton1c8c6012013-06-21 08:58:15 -04005312 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08005314 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005315 status = true;
5316 break;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08005317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04005319 spin_unlock(&inode->i_lock);
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005320 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 return status;
5322}
5323
Al Virob37ad282006-10-19 23:28:59 -07005324__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08005325nfsd4_release_lockowner(struct svc_rqst *rqstp,
5326 struct nfsd4_compound_state *cstate,
5327 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328{
5329 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Laytonfd449072014-06-30 11:48:41 -04005330 struct nfs4_stateowner *sop = NULL, *tmp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005331 struct nfs4_lockowner *lo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005332 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 struct xdr_netobj *owner = &rlockowner->rl_owner;
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005334 unsigned int hashval = ownerstr_hashval(clid->cl_id, owner);
Al Virob37ad282006-10-19 23:28:59 -07005335 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005336 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
5338 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
5339 clid->cl_boot, clid->cl_id);
5340
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 nfs4_lock_state();
5342
Jeff Layton4b24ca72014-06-30 11:48:44 -04005343 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005344 if (status)
5345 goto out;
5346
NeilBrown3e9e3db2005-06-23 22:04:20 -07005347 status = nfserr_locks_held;
J. Bruce Fields06f1f862011-11-07 16:58:18 -05005348
Jeff Laytonfd449072014-06-30 11:48:41 -04005349 /* Find the matching lock stateowner */
5350 list_for_each_entry(tmp, &nn->ownerstr_hashtbl[hashval], so_strhash) {
5351 if (tmp->so_is_open_owner)
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005352 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04005353 if (same_owner_str(tmp, owner, clid)) {
5354 sop = tmp;
Jeff Layton5adfd882014-07-29 21:34:31 -04005355 atomic_inc(&sop->so_count);
Jeff Laytonfd449072014-06-30 11:48:41 -04005356 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07005358 }
Jeff Laytonfd449072014-06-30 11:48:41 -04005359
5360 /* No matching owner found, maybe a replay? Just declare victory... */
5361 if (!sop) {
5362 status = nfs_ok;
5363 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 }
Jeff Laytonfd449072014-06-30 11:48:41 -04005365
5366 lo = lockowner(sop);
5367 /* see if there are still any locks associated with it */
5368 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
Jeff Layton5adfd882014-07-29 21:34:31 -04005369 if (check_for_locks(stp->st_stid.sc_file, lo)) {
5370 nfs4_put_stateowner(sop);
Jeff Laytonfd449072014-06-30 11:48:41 -04005371 goto out;
Jeff Layton5adfd882014-07-29 21:34:31 -04005372 }
Jeff Laytonfd449072014-06-30 11:48:41 -04005373 }
5374
5375 status = nfs_ok;
5376 release_lockowner(lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377out:
5378 nfs4_unlock_state();
5379 return status;
5380}
5381
5382static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07005383alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384{
NeilBrowna55370a2005-06-23 22:03:52 -07005385 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386}
5387
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005388bool
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005389nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07005390{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005391 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07005392
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005393 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005394 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07005395}
5396
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397/*
5398 * failure => all reset bets are off, nfserr_no_grace...
5399 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05005400struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005401nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402{
5403 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05005404 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405
NeilBrowna55370a2005-06-23 22:03:52 -07005406 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
5407 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05005408 if (crp) {
5409 strhashval = clientstr_hashval(name);
5410 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005411 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Jeff Layton772a9bb2012-11-12 15:00:54 -05005412 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005413 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005414 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05005415 }
5416 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417}
5418
Jeff Layton2a4317c2012-03-21 16:42:43 -04005419void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005420nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05005421{
5422 list_del(&crp->cr_strhash);
5423 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005424 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05005425}
5426
5427void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005428nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429{
5430 struct nfs4_client_reclaim *crp = NULL;
5431 int i;
5432
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005434 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
5435 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005437 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 }
5439 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005440 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441}
5442
5443/*
5444 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04005445struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005446nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447{
5448 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 struct nfs4_client_reclaim *crp = NULL;
5450
Jeff Layton278c9312012-11-12 15:00:52 -05005451 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
Jeff Layton278c9312012-11-12 15:00:52 -05005453 strhashval = clientstr_hashval(recdir);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005454 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Jeff Layton278c9312012-11-12 15:00:52 -05005455 if (same_name(crp->cr_recdir, recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 return crp;
5457 }
5458 }
5459 return NULL;
5460}
5461
5462/*
5463* Called from OPEN. Look for clientid in reclaim list.
5464*/
Al Virob37ad282006-10-19 23:28:59 -07005465__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005466nfs4_check_open_reclaim(clientid_t *clid,
5467 struct nfsd4_compound_state *cstate,
5468 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005470 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04005471
5472 /* find clientid in conf_id_hashtbl */
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005473 status = lookup_clientid(clid, cstate, nn);
5474 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04005475 return nfserr_reclaim_bad;
5476
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005477 if (nfsd4_client_record_check(cstate->clp))
5478 return nfserr_reclaim_bad;
5479
5480 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481}
5482
Bryan Schumaker65178db2011-11-01 13:35:21 -04005483#ifdef CONFIG_NFSD_FAULT_INJECTION
5484
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005485u64 nfsd_forget_client(struct nfs4_client *clp, u64 max)
5486{
J. Bruce Fields221a6872013-04-01 22:23:49 -04005487 if (mark_client_expired(clp))
5488 return 0;
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005489 expire_client(clp);
5490 return 1;
5491}
5492
Bryan Schumaker184c1842012-11-29 11:40:44 -05005493u64 nfsd_print_client(struct nfs4_client *clp, u64 num)
5494{
5495 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05005496 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05005497 printk(KERN_INFO "NFS Client: %s\n", buf);
5498 return 1;
5499}
5500
5501static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
5502 const char *type)
5503{
5504 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05005505 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05005506 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
5507}
5508
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005509static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
5510 void (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05005511{
5512 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05005513 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005514 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05005515 u64 count = 0;
5516
5517 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005518 list_for_each_entry_safe(stp, st_next,
5519 &oop->oo_owner.so_stateids, st_perstateowner) {
5520 list_for_each_entry_safe(lst, lst_next,
5521 &stp->st_locks, st_locks) {
Bryan Schumakerfc291712012-11-29 11:40:40 -05005522 if (func)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005523 func(lst);
Bryan Schumakerfc291712012-11-29 11:40:40 -05005524 if (++count == max)
5525 return count;
5526 }
5527 }
5528 }
5529
5530 return count;
5531}
5532
5533u64 nfsd_forget_client_locks(struct nfs4_client *clp, u64 max)
5534{
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005535 return nfsd_foreach_client_lock(clp, max, release_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05005536}
5537
Bryan Schumaker184c1842012-11-29 11:40:44 -05005538u64 nfsd_print_client_locks(struct nfs4_client *clp, u64 max)
5539{
5540 u64 count = nfsd_foreach_client_lock(clp, max, NULL);
5541 nfsd_print_count(clp, count, "locked files");
5542 return count;
5543}
5544
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05005545static u64 nfsd_foreach_client_open(struct nfs4_client *clp, u64 max, void (*func)(struct nfs4_openowner *))
5546{
5547 struct nfs4_openowner *oop, *next;
5548 u64 count = 0;
5549
5550 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
5551 if (func)
5552 func(oop);
5553 if (++count == max)
5554 break;
5555 }
5556
5557 return count;
5558}
5559
5560u64 nfsd_forget_client_openowners(struct nfs4_client *clp, u64 max)
5561{
5562 return nfsd_foreach_client_open(clp, max, release_openowner);
5563}
5564
Bryan Schumaker184c1842012-11-29 11:40:44 -05005565u64 nfsd_print_client_openowners(struct nfs4_client *clp, u64 max)
5566{
5567 u64 count = nfsd_foreach_client_open(clp, max, NULL);
5568 nfsd_print_count(clp, count, "open files");
5569 return count;
5570}
5571
Bryan Schumaker269de302012-11-29 11:40:42 -05005572static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
5573 struct list_head *victims)
5574{
5575 struct nfs4_delegation *dp, *next;
5576 u64 count = 0;
5577
Benny Halevycdc975052014-05-30 09:09:30 -04005578 lockdep_assert_held(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005579 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04005580 if (victims) {
5581 /*
5582 * It's not safe to mess with delegations that have a
5583 * non-zero dl_time. They might have already been broken
5584 * and could be processed by the laundromat outside of
5585 * the state_lock. Just leave them be.
5586 */
5587 if (dp->dl_time != 0)
5588 continue;
5589
Jeff Layton42690672014-07-25 07:34:20 -04005590 unhash_delegation_locked(dp);
5591 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04005592 }
Bryan Schumaker269de302012-11-29 11:40:42 -05005593 if (++count == max)
5594 break;
5595 }
5596 return count;
5597}
5598
5599u64 nfsd_forget_client_delegations(struct nfs4_client *clp, u64 max)
5600{
5601 struct nfs4_delegation *dp, *next;
5602 LIST_HEAD(victims);
5603 u64 count;
5604
Benny Halevycdc975052014-05-30 09:09:30 -04005605 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005606 count = nfsd_find_all_delegations(clp, max, &victims);
Benny Halevycdc975052014-05-30 09:09:30 -04005607 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005608
Jeff Layton2d4a5322014-07-25 07:34:21 -04005609 list_for_each_entry_safe(dp, next, &victims, dl_recall_lru) {
5610 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005611 revoke_delegation(dp);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005612 }
Bryan Schumaker269de302012-11-29 11:40:42 -05005613
5614 return count;
5615}
5616
5617u64 nfsd_recall_client_delegations(struct nfs4_client *clp, u64 max)
5618{
Jeff Laytondff13992014-07-08 14:02:49 -04005619 struct nfs4_delegation *dp;
Bryan Schumaker269de302012-11-29 11:40:42 -05005620 LIST_HEAD(victims);
5621 u64 count;
5622
Benny Halevycdc975052014-05-30 09:09:30 -04005623 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005624 count = nfsd_find_all_delegations(clp, max, &victims);
Jeff Laytondff13992014-07-08 14:02:49 -04005625 while (!list_empty(&victims)) {
5626 dp = list_first_entry(&victims, struct nfs4_delegation,
5627 dl_recall_lru);
5628 list_del_init(&dp->dl_recall_lru);
5629 dp->dl_time = 0;
Bryan Schumaker269de302012-11-29 11:40:42 -05005630 nfsd_break_one_deleg(dp);
Jeff Laytondff13992014-07-08 14:02:49 -04005631 }
Benny Halevycdc975052014-05-30 09:09:30 -04005632 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005633
5634 return count;
5635}
5636
Bryan Schumaker184c1842012-11-29 11:40:44 -05005637u64 nfsd_print_client_delegations(struct nfs4_client *clp, u64 max)
5638{
5639 u64 count = 0;
5640
Benny Halevycdc975052014-05-30 09:09:30 -04005641 spin_lock(&state_lock);
Bryan Schumaker184c1842012-11-29 11:40:44 -05005642 count = nfsd_find_all_delegations(clp, max, NULL);
Benny Halevycdc975052014-05-30 09:09:30 -04005643 spin_unlock(&state_lock);
Bryan Schumaker184c1842012-11-29 11:40:44 -05005644
5645 nfsd_print_count(clp, count, "delegations");
5646 return count;
5647}
5648
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005649u64 nfsd_for_n_state(u64 max, u64 (*func)(struct nfs4_client *, u64))
Bryan Schumaker65178db2011-11-01 13:35:21 -04005650{
5651 struct nfs4_client *clp, *next;
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005652 u64 count = 0;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005653 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
Bryan Schumaker65178db2011-11-01 13:35:21 -04005654
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005655 if (!nfsd_netns_ready(nn))
5656 return 0;
5657
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005658 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005659 count += func(clp, max - count);
5660 if ((max != 0) && (count >= max))
Bryan Schumaker65178db2011-11-01 13:35:21 -04005661 break;
5662 }
Bryan Schumaker65178db2011-11-01 13:35:21 -04005663
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005664 return count;
5665}
5666
Bryan Schumaker6c1e82a2012-11-29 11:40:46 -05005667struct nfs4_client *nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
5668{
5669 struct nfs4_client *clp;
5670 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
5671
5672 if (!nfsd_netns_ready(nn))
5673 return NULL;
5674
5675 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
5676 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
5677 return clp;
5678 }
5679 return NULL;
5680}
5681
Bryan Schumaker65178db2011-11-01 13:35:21 -04005682#endif /* CONFIG_NFSD_FAULT_INJECTION */
5683
Meelap Shahc2f1a552007-07-17 04:04:39 -07005684/*
5685 * Since the lifetime of a delegation isn't limited to that of an open, a
5686 * client may quite reasonably hang on to a delegation as long as it has
5687 * the inode cached. This becomes an obvious problem the first time a
5688 * client's inode cache approaches the size of the server's total memory.
5689 *
5690 * For now we avoid this problem by imposing a hard limit on the number
5691 * of delegations, which varies according to the server's memory size.
5692 */
5693static void
5694set_max_delegations(void)
5695{
5696 /*
5697 * Allow at most 4 delegations per megabyte of RAM. Quick
5698 * estimates suggest that in the worst case (where every delegation
5699 * is for a different inode), a delegation could take about 1.5K,
5700 * giving a worst case usage of about 6% of memory.
5701 */
5702 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
5703}
5704
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005705static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005706{
5707 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5708 int i;
5709
5710 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
5711 CLIENT_HASH_SIZE, GFP_KERNEL);
5712 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005713 goto err;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005714 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
5715 CLIENT_HASH_SIZE, GFP_KERNEL);
5716 if (!nn->unconf_id_hashtbl)
5717 goto err_unconf_id;
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005718 nn->ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
5719 OWNER_HASH_SIZE, GFP_KERNEL);
5720 if (!nn->ownerstr_hashtbl)
5721 goto err_ownerstr;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005722 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
5723 SESSION_HASH_SIZE, GFP_KERNEL);
5724 if (!nn->sessionid_hashtbl)
5725 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005726
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005727 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005728 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005729 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005730 }
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005731 for (i = 0; i < OWNER_HASH_SIZE; i++)
5732 INIT_LIST_HEAD(&nn->ownerstr_hashtbl[i]);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005733 for (i = 0; i < SESSION_HASH_SIZE; i++)
5734 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005735 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005736 nn->unconf_name_tree = RB_ROOT;
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005737 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03005738 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005739 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005740 spin_lock_init(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005741
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005742 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005743 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005744
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005745 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005746
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005747err_sessionid:
Stanislav Kinsbursky20e9e2b2012-11-14 18:21:46 +03005748 kfree(nn->ownerstr_hashtbl);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005749err_ownerstr:
5750 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005751err_unconf_id:
5752 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005753err:
5754 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005755}
5756
5757static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005758nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005759{
5760 int i;
5761 struct nfs4_client *clp = NULL;
5762 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5763
5764 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
5765 while (!list_empty(&nn->conf_id_hashtbl[i])) {
5766 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
5767 destroy_client(clp);
5768 }
5769 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005770
Kinglong Mee2b905632014-03-26 22:09:30 +08005771 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
5772 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
5773 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
5774 destroy_client(clp);
5775 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005776 }
5777
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005778 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005779 kfree(nn->ownerstr_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005780 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005781 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005782 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005783}
5784
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03005785int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005786nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07005787{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005788 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005789 int ret;
5790
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005791 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005792 if (ret)
5793 return ret;
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005794 nfsd4_client_tracking_init(net);
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04005795 nn->boot_time = get_seconds();
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005796 locks_start_grace(net, &nn->nfsd4_manager);
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005797 nn->grace_ended = false;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005798 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %p)\n",
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03005799 nn->nfsd4_grace, net);
5800 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005801 return 0;
5802}
5803
5804/* initialization to perform when the nfsd service is started: */
5805
5806int
5807nfs4_state_start(void)
5808{
5809 int ret;
5810
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005811 ret = set_callback_cred();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005812 if (ret)
5813 return -ENOMEM;
NeilBrown58da2822005-06-23 22:03:19 -07005814 laundry_wq = create_singlethread_workqueue("nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05005815 if (laundry_wq == NULL) {
5816 ret = -ENOMEM;
5817 goto out_recovery;
5818 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005819 ret = nfsd4_create_callback_queue();
5820 if (ret)
5821 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005822
Meelap Shahc2f1a552007-07-17 04:04:39 -07005823 set_max_delegations();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005824
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005825 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005826
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005827out_free_laundry:
5828 destroy_workqueue(laundry_wq);
Jeff Laytona6d6b782012-03-05 11:42:36 -05005829out_recovery:
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005830 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831}
5832
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03005833void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005834nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005838 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005840 cancel_delayed_work_sync(&nn->laundromat_work);
5841 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05005842
J. Bruce Fieldse50a26d2013-10-30 10:33:09 -04005843 nfs4_lock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04005845 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005846 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04005848 unhash_delegation_locked(dp);
5849 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 }
Benny Halevycdc975052014-05-30 09:09:30 -04005851 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852 list_for_each_safe(pos, next, &reaplist) {
5853 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04005854 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04005855 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 }
5857
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005858 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005859 nfs4_state_destroy_net(net);
J. Bruce Fieldse50a26d2013-10-30 10:33:09 -04005860 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861}
5862
5863void
5864nfs4_state_shutdown(void)
5865{
NeilBrown5e8d5c22006-04-10 22:55:37 -07005866 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04005867 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005869
5870static void
5871get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5872{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01005873 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
5874 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005875}
5876
5877static void
5878put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5879{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01005880 if (cstate->minorversion) {
5881 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
5882 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
5883 }
5884}
5885
5886void
5887clear_current_stateid(struct nfsd4_compound_state *cstate)
5888{
5889 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005890}
5891
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005892/*
5893 * functions to set current state id
5894 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005895void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01005896nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5897{
5898 put_stateid(cstate, &odp->od_stateid);
5899}
5900
5901void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005902nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
5903{
5904 put_stateid(cstate, &open->op_stateid);
5905}
5906
5907void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005908nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5909{
5910 put_stateid(cstate, &close->cl_stateid);
5911}
5912
5913void
5914nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
5915{
5916 put_stateid(cstate, &lock->lk_resp_stateid);
5917}
5918
5919/*
5920 * functions to consume current state id
5921 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01005922
5923void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01005924nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5925{
5926 get_stateid(cstate, &odp->od_stateid);
5927}
5928
5929void
5930nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
5931{
5932 get_stateid(cstate, &drp->dr_stateid);
5933}
5934
5935void
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01005936nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
5937{
5938 get_stateid(cstate, &fsp->fr_stateid);
5939}
5940
5941void
5942nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
5943{
5944 get_stateid(cstate, &setattr->sa_stateid);
5945}
5946
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005947void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005948nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5949{
5950 get_stateid(cstate, &close->cl_stateid);
5951}
5952
5953void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005954nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005955{
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005956 get_stateid(cstate, &locku->lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005957}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01005958
5959void
5960nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
5961{
5962 get_stateid(cstate, &read->rd_stateid);
5963}
5964
5965void
5966nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
5967{
5968 get_stateid(cstate, &write->wr_stateid);
5969}