blob: f3018cb267692043b5f8cd67d8adc7d5a82c6217 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002* Copyright (c) 2001 The Regents of the University of Michigan.
3* All rights reserved.
4*
5* Kendrick Smith <kmsmith@umich.edu>
6* Andy Adamson <kandros@umich.edu>
7*
8* Redistribution and use in source and binary forms, with or without
9* modification, are permitted provided that the following conditions
10* are met:
11*
12* 1. Redistributions of source code must retain the above copyright
13* notice, this list of conditions and the following disclaimer.
14* 2. Redistributions in binary form must reproduce the above copyright
15* notice, this list of conditions and the following disclaimer in the
16* documentation and/or other materials provided with the distribution.
17* 3. Neither the name of the University nor the names of its
18* contributors may be used to endorse or promote products derived
19* from this software without specific prior written permission.
20*
21* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32*
33*/
34
Dave Hansenaceaf782008-02-15 14:37:31 -080035#include <linux/file.h>
Arnd Bergmannb89f4322010-09-18 15:09:31 +020036#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
NeilBrown0964a3d2005-06-23 22:04:32 -070038#include <linux/namei.h>
Meelap Shahc2f1a552007-07-17 04:04:39 -070039#include <linux/swap.h>
Bryan Schumaker17456802011-07-13 10:50:48 -040040#include <linux/pagemap.h>
Chuck Lever7df302f2012-05-29 13:56:37 -040041#include <linux/ratelimit.h>
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -050042#include <linux/sunrpc/svcauth_gss.h>
Jeff Layton59766872013-02-04 12:50:00 -050043#include <linux/sunrpc/addr.h>
NeilBrown6282cd52014-06-04 17:39:26 +100044#include <linux/hash.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020045#include "xdr4.h"
J. Bruce Fields06b332a2013-04-09 11:34:36 -040046#include "xdr4cb.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050047#include "vfs.h"
J. Bruce Fieldsbfa4b362012-04-25 16:49:18 -040048#include "current_stateid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040050#include "netns.h"
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define NFSDDBG_FACILITY NFSDDBG_PROC
53
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050054#define all_ones {{~0,~0},~0}
55static const stateid_t one_stateid = {
56 .si_generation = ~0,
57 .si_opaque = all_ones,
58};
59static const stateid_t zero_stateid = {
60 /* all fields zero */
61};
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010062static const stateid_t currentstateid = {
63 .si_generation = 1,
64};
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050065
Andy Adamsonec6b5d72009-04-03 08:28:28 +030066static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070067
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050068#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
69#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010070#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* forward declarations */
Jeff Laytonf9c00c32014-07-23 16:17:41 -040073static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
Trond Myklebust60116952014-07-29 21:34:06 -040074static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
J. Bruce Fields8b671b82009-02-22 14:51:34 -080076/* Locking: */
77
78/* Currently used for almost all code touching nfsv4 state: */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080079static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
J. Bruce Fields8b671b82009-02-22 14:51:34 -080081/*
82 * Currently used for the del_recall_lru and file hash table. In an
83 * effort to decrease the scope of the client_mutex, this spinlock may
84 * eventually cover more:
85 */
Benny Halevycdc97502014-05-30 09:09:30 -040086static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080087
Christoph Hellwigabf11352014-05-21 07:43:03 -070088static struct kmem_cache *openowner_slab;
89static struct kmem_cache *lockowner_slab;
90static struct kmem_cache *file_slab;
91static struct kmem_cache *stateid_slab;
92static struct kmem_cache *deleg_slab;
NeilBrowne60d4392005-06-23 22:03:01 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094void
95nfs4_lock_state(void)
96{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080097 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400100static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800101
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400102static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800103{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400104 return ses->se_flags & NFS4_SESSION_DEAD;
105}
106
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400107static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
108{
109 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400110 return nfserr_jukebox;
111 ses->se_flags |= NFS4_SESSION_DEAD;
112 return nfs_ok;
113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115void
116nfs4_unlock_state(void)
117{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800118 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
J. Bruce Fields221a6872013-04-01 22:23:49 -0400121static bool is_client_expired(struct nfs4_client *clp)
122{
123 return clp->cl_time == 0;
124}
125
126static __be32 mark_client_expired_locked(struct nfs4_client *clp)
127{
128 if (atomic_read(&clp->cl_refcount))
129 return nfserr_jukebox;
130 clp->cl_time = 0;
131 return nfs_ok;
132}
133
134static __be32 mark_client_expired(struct nfs4_client *clp)
135{
136 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
137 __be32 ret;
138
139 spin_lock(&nn->client_lock);
140 ret = mark_client_expired_locked(clp);
141 spin_unlock(&nn->client_lock);
142 return ret;
143}
144
145static __be32 get_client_locked(struct nfs4_client *clp)
146{
147 if (is_client_expired(clp))
148 return nfserr_expired;
149 atomic_inc(&clp->cl_refcount);
150 return nfs_ok;
151}
152
153/* must be called under the client_lock */
154static inline void
155renew_client_locked(struct nfs4_client *clp)
156{
157 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
158
159 if (is_client_expired(clp)) {
160 WARN_ON(1);
161 printk("%s: client (clientid %08x/%08x) already expired\n",
162 __func__,
163 clp->cl_clientid.cl_boot,
164 clp->cl_clientid.cl_id);
165 return;
166 }
167
168 dprintk("renewing client (clientid %08x/%08x)\n",
169 clp->cl_clientid.cl_boot,
170 clp->cl_clientid.cl_id);
171 list_move_tail(&clp->cl_lru, &nn->client_lru);
172 clp->cl_time = get_seconds();
173}
174
175static inline void
176renew_client(struct nfs4_client *clp)
177{
178 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
179
180 spin_lock(&nn->client_lock);
181 renew_client_locked(clp);
182 spin_unlock(&nn->client_lock);
183}
184
Fengguang Wuba138432013-04-16 22:14:15 -0400185static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400186{
187 if (!atomic_dec_and_test(&clp->cl_refcount))
188 return;
189 if (!is_client_expired(clp))
190 renew_client_locked(clp);
191}
192
Jeff Layton4b24ca72014-06-30 11:48:44 -0400193static void put_client_renew(struct nfs4_client *clp)
194{
195 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
196
Jeff Laytond6c249b2014-07-08 14:02:50 -0400197 if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
198 return;
199 if (!is_client_expired(clp))
200 renew_client_locked(clp);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400201 spin_unlock(&nn->client_lock);
202}
203
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400204static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
205{
206 __be32 status;
207
208 if (is_session_dead(ses))
209 return nfserr_badsession;
210 status = get_client_locked(ses->se_client);
211 if (status)
212 return status;
213 atomic_inc(&ses->se_ref);
214 return nfs_ok;
215}
216
217static void nfsd4_put_session_locked(struct nfsd4_session *ses)
218{
219 struct nfs4_client *clp = ses->se_client;
220
221 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
222 free_session(ses);
223 put_client_renew_locked(clp);
224}
225
226static void nfsd4_put_session(struct nfsd4_session *ses)
227{
228 struct nfs4_client *clp = ses->se_client;
229 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
230
231 spin_lock(&nn->client_lock);
232 nfsd4_put_session_locked(ses);
233 spin_unlock(&nn->client_lock);
234}
235
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237static inline u32
238opaque_hashval(const void *ptr, int nbytes)
239{
240 unsigned char *cptr = (unsigned char *) ptr;
241
242 u32 x = 0;
243 while (nbytes--) {
244 x *= 37;
245 x += *cptr++;
246 }
247 return x;
248}
249
J. Bruce Fields32513b42011-10-13 16:00:16 -0400250static void nfsd4_free_file(struct nfs4_file *f)
251{
252 kmem_cache_free(file_slab, f);
253}
254
NeilBrown13cd2182005-06-23 22:03:10 -0700255static inline void
256put_nfs4_file(struct nfs4_file *fi)
257{
Jeff Layton02e12152014-07-16 10:31:57 -0400258 might_lock(&state_lock);
259
Benny Halevycdc97502014-05-30 09:09:30 -0400260 if (atomic_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton89876f82013-04-02 09:01:59 -0400261 hlist_del(&fi->fi_hash);
Benny Halevycdc97502014-05-30 09:09:30 -0400262 spin_unlock(&state_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400263 nfsd4_free_file(fi);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800264 }
NeilBrown13cd2182005-06-23 22:03:10 -0700265}
266
267static inline void
268get_nfs4_file(struct nfs4_file *fi)
269{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800270 atomic_inc(&fi->fi_ref);
NeilBrown13cd2182005-06-23 22:03:10 -0700271}
272
Trond Myklebustde186432014-07-10 14:07:26 -0400273static struct file *
274__nfs4_get_fd(struct nfs4_file *f, int oflag)
275{
276 if (f->fi_fds[oflag])
277 return get_file(f->fi_fds[oflag]);
278 return NULL;
279}
280
281static struct file *
282find_writeable_file_locked(struct nfs4_file *f)
283{
284 struct file *ret;
285
286 lockdep_assert_held(&f->fi_lock);
287
288 ret = __nfs4_get_fd(f, O_WRONLY);
289 if (!ret)
290 ret = __nfs4_get_fd(f, O_RDWR);
291 return ret;
292}
293
294static struct file *
295find_writeable_file(struct nfs4_file *f)
296{
297 struct file *ret;
298
299 spin_lock(&f->fi_lock);
300 ret = find_writeable_file_locked(f);
301 spin_unlock(&f->fi_lock);
302
303 return ret;
304}
305
306static struct file *find_readable_file_locked(struct nfs4_file *f)
307{
308 struct file *ret;
309
310 lockdep_assert_held(&f->fi_lock);
311
312 ret = __nfs4_get_fd(f, O_RDONLY);
313 if (!ret)
314 ret = __nfs4_get_fd(f, O_RDWR);
315 return ret;
316}
317
318static struct file *
319find_readable_file(struct nfs4_file *f)
320{
321 struct file *ret;
322
323 spin_lock(&f->fi_lock);
324 ret = find_readable_file_locked(f);
325 spin_unlock(&f->fi_lock);
326
327 return ret;
328}
329
330static struct file *
331find_any_file(struct nfs4_file *f)
332{
333 struct file *ret;
334
335 spin_lock(&f->fi_lock);
336 ret = __nfs4_get_fd(f, O_RDWR);
337 if (!ret) {
338 ret = __nfs4_get_fd(f, O_WRONLY);
339 if (!ret)
340 ret = __nfs4_get_fd(f, O_RDONLY);
341 }
342 spin_unlock(&f->fi_lock);
343 return ret;
344}
345
Trond Myklebust02a35082014-07-25 07:34:22 -0400346static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800347unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700348
349/*
350 * Open owner state (share locks)
351 */
352
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500353/* hash tables for lock and open owners */
354#define OWNER_HASH_BITS 8
355#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
356#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700357
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500358static unsigned int ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400359{
360 unsigned int ret;
361
362 ret = opaque_hashval(ownername->data, ownername->len);
363 ret += clientid;
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500364 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400365}
NeilBrownef0f3392006-04-10 22:55:41 -0700366
NeilBrownef0f3392006-04-10 22:55:41 -0700367/* hash table for nfs4_file */
368#define FILE_HASH_BITS 8
369#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800370
Trond Myklebustca943212014-07-23 16:17:39 -0400371static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400372{
Trond Myklebustca943212014-07-23 16:17:39 -0400373 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
374}
375
376static unsigned int file_hashval(struct knfsd_fh *fh)
377{
378 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
379}
380
381static bool nfsd_fh_match(struct knfsd_fh *fh1, struct knfsd_fh *fh2)
382{
383 return fh1->fh_size == fh2->fh_size &&
384 !memcmp(fh1->fh_base.fh_pad,
385 fh2->fh_base.fh_pad,
386 fh1->fh_size);
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400387}
388
Jeff Layton89876f82013-04-02 09:01:59 -0400389static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700390
Jeff Layton12659652014-07-10 14:07:28 -0400391static void
392__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400393{
Jeff Layton7214e862014-07-10 14:07:33 -0400394 lockdep_assert_held(&fp->fi_lock);
395
Jeff Layton12659652014-07-10 14:07:28 -0400396 if (access & NFS4_SHARE_ACCESS_WRITE)
397 atomic_inc(&fp->fi_access[O_WRONLY]);
398 if (access & NFS4_SHARE_ACCESS_READ)
399 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400400}
401
Jeff Layton12659652014-07-10 14:07:28 -0400402static __be32
403nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400404{
Jeff Layton7214e862014-07-10 14:07:33 -0400405 lockdep_assert_held(&fp->fi_lock);
406
Jeff Layton12659652014-07-10 14:07:28 -0400407 /* Does this access mode make sense? */
408 if (access & ~NFS4_SHARE_ACCESS_BOTH)
409 return nfserr_inval;
410
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400411 /* Does it conflict with a deny mode already set? */
412 if ((access & fp->fi_share_deny) != 0)
413 return nfserr_share_denied;
414
Jeff Layton12659652014-07-10 14:07:28 -0400415 __nfs4_file_get_access(fp, access);
416 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400417}
418
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400419static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
420{
421 /* Common case is that there is no deny mode. */
422 if (deny) {
423 /* Does this deny mode make sense? */
424 if (deny & ~NFS4_SHARE_DENY_BOTH)
425 return nfserr_inval;
426
427 if ((deny & NFS4_SHARE_DENY_READ) &&
428 atomic_read(&fp->fi_access[O_RDONLY]))
429 return nfserr_share_denied;
430
431 if ((deny & NFS4_SHARE_DENY_WRITE) &&
432 atomic_read(&fp->fi_access[O_WRONLY]))
433 return nfserr_share_denied;
434 }
435 return nfs_ok;
436}
437
J. Bruce Fields998db522010-08-07 09:21:41 -0400438static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400439{
Trond Myklebustde186432014-07-10 14:07:26 -0400440 might_lock(&fp->fi_lock);
441
442 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
443 struct file *f1 = NULL;
444 struct file *f2 = NULL;
445
Jeff Layton6d338b52014-07-10 14:07:29 -0400446 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400447 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400448 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400449 spin_unlock(&fp->fi_lock);
450 if (f1)
451 fput(f1);
452 if (f2)
453 fput(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400454 }
455}
456
Jeff Layton12659652014-07-10 14:07:28 -0400457static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400458{
Jeff Layton12659652014-07-10 14:07:28 -0400459 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
460
461 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400462 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400463 if (access & NFS4_SHARE_ACCESS_READ)
464 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400465}
466
Trond Myklebust60116952014-07-29 21:34:06 -0400467static struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl,
468 struct kmem_cache *slab)
J. Bruce Fields996e0932011-10-17 11:14:48 -0400469{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500470 struct nfs4_stid *stid;
471 int new_id;
472
Trond Myklebustf8338832014-07-25 07:34:19 -0400473 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500474 if (!stid)
475 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400476
Jeff Layton4770d722014-07-29 21:34:10 -0400477 idr_preload(GFP_KERNEL);
478 spin_lock(&cl->cl_lock);
479 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 0, 0, GFP_NOWAIT);
480 spin_unlock(&cl->cl_lock);
481 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700482 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500483 goto out_free;
484 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500485 stid->sc_stateid.si_opaque.so_id = new_id;
486 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
487 /* Will be incremented before return to client: */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -0400488 atomic_set(&stid->sc_count, 1);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500489
J. Bruce Fields996e0932011-10-17 11:14:48 -0400490 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500491 * It shouldn't be a problem to reuse an opaque stateid value.
492 * I don't think it is for 4.1. But with 4.0 I worry that, for
493 * example, a stray write retransmission could be accepted by
494 * the server when it should have been rejected. Therefore,
495 * adopt a trick from the sctp code to attempt to maximize the
496 * amount of time until an id is reused, by ensuring they always
497 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400498 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500499 return stid;
500out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800501 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500502 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400503}
504
Jeff Laytonb49e0842014-07-29 21:34:11 -0400505static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400506{
Trond Myklebust60116952014-07-29 21:34:06 -0400507 struct nfs4_stid *stid;
508 struct nfs4_ol_stateid *stp;
509
510 stid = nfs4_alloc_stid(clp, stateid_slab);
511 if (!stid)
512 return NULL;
513
514 stp = openlockstateid(stid);
515 stp->st_stid.sc_free = nfs4_free_ol_stateid;
516 return stp;
517}
518
519static void nfs4_free_deleg(struct nfs4_stid *stid)
520{
Trond Myklebust60116952014-07-29 21:34:06 -0400521 kmem_cache_free(deleg_slab, stid);
522 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400523}
524
NeilBrown6282cd52014-06-04 17:39:26 +1000525/*
526 * When we recall a delegation, we should be careful not to hand it
527 * out again straight away.
528 * To ensure this we keep a pair of bloom filters ('new' and 'old')
529 * in which the filehandles of recalled delegations are "stored".
530 * If a filehandle appear in either filter, a delegation is blocked.
531 * When a delegation is recalled, the filehandle is stored in the "new"
532 * filter.
533 * Every 30 seconds we swap the filters and clear the "new" one,
534 * unless both are empty of course.
535 *
536 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
537 * low 3 bytes as hash-table indices.
538 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400539 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000540 * is used to manage concurrent access. Testing does not need the lock
541 * except when swapping the two filters.
542 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400543static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000544static struct bloom_pair {
545 int entries, old_entries;
546 time_t swap_time;
547 int new; /* index into 'set' */
548 DECLARE_BITMAP(set[2], 256);
549} blocked_delegations;
550
551static int delegation_blocked(struct knfsd_fh *fh)
552{
553 u32 hash;
554 struct bloom_pair *bd = &blocked_delegations;
555
556 if (bd->entries == 0)
557 return 0;
558 if (seconds_since_boot() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400559 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000560 if (seconds_since_boot() - bd->swap_time > 30) {
561 bd->entries -= bd->old_entries;
562 bd->old_entries = bd->entries;
563 memset(bd->set[bd->new], 0,
564 sizeof(bd->set[0]));
565 bd->new = 1-bd->new;
566 bd->swap_time = seconds_since_boot();
567 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400568 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000569 }
570 hash = arch_fast_hash(&fh->fh_base, fh->fh_size, 0);
571 if (test_bit(hash&255, bd->set[0]) &&
572 test_bit((hash>>8)&255, bd->set[0]) &&
573 test_bit((hash>>16)&255, bd->set[0]))
574 return 1;
575
576 if (test_bit(hash&255, bd->set[1]) &&
577 test_bit((hash>>8)&255, bd->set[1]) &&
578 test_bit((hash>>16)&255, bd->set[1]))
579 return 1;
580
581 return 0;
582}
583
584static void block_delegations(struct knfsd_fh *fh)
585{
586 u32 hash;
587 struct bloom_pair *bd = &blocked_delegations;
588
589 hash = arch_fast_hash(&fh->fh_base, fh->fh_size, 0);
590
Jeff Laytonf54fe962014-07-25 07:34:26 -0400591 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000592 __set_bit(hash&255, bd->set[bd->new]);
593 __set_bit((hash>>8)&255, bd->set[bd->new]);
594 __set_bit((hash>>16)&255, bd->set[bd->new]);
595 if (bd->entries == 0)
596 bd->swap_time = seconds_since_boot();
597 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400598 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000599}
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601static struct nfs4_delegation *
Jeff Laytonf9416e22014-07-25 07:34:23 -0400602alloc_init_deleg(struct nfs4_client *clp, struct svc_fh *current_fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400605 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400608 n = atomic_long_inc_return(&num_delegations);
609 if (n < 0 || n > max_delegations)
610 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000611 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400612 goto out_dec;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400613 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700614 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400615 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400616
617 dp->dl_stid.sc_free = nfs4_free_deleg;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400618 /*
619 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400620 * meaning of seqid 0 isn't meaningful, really, but let's avoid
621 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400622 */
623 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700624 INIT_LIST_HEAD(&dp->dl_perfile);
625 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 INIT_LIST_HEAD(&dp->dl_recall_lru);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400627 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Jeff Layton02e12152014-07-16 10:31:57 -0400628 INIT_WORK(&dp->dl_recall.cb_work, nfsd4_run_cb_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400630out_dec:
631 atomic_long_dec(&num_delegations);
632 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635void
Trond Myklebust60116952014-07-29 21:34:06 -0400636nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Trond Myklebust11b91642014-07-29 21:34:08 -0400638 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400639 struct nfs4_client *clp = s->sc_client;
640
Jeff Layton4770d722014-07-29 21:34:10 -0400641 might_lock(&clp->cl_lock);
642
643 if (!atomic_dec_and_lock(&s->sc_count, &clp->cl_lock))
Trond Myklebust60116952014-07-29 21:34:06 -0400644 return;
645 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Jeff Layton4770d722014-07-29 21:34:10 -0400646 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400647 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400648 if (fp)
649 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500652static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Jeff Layton417c6622014-07-21 09:34:57 -0400654 lockdep_assert_held(&state_lock);
655
J. Bruce Fieldscbf7a752014-03-03 12:19:18 -0500656 if (!fp->fi_lease)
657 return;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500658 if (atomic_dec_and_test(&fp->fi_delegees)) {
659 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
660 fp->fi_lease = NULL;
J. Bruce Fields4ee63622011-04-15 18:08:26 -0400661 fput(fp->fi_deleg_file);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500662 fp->fi_deleg_file = NULL;
663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400666static void unhash_stid(struct nfs4_stid *s)
667{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500668 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400669}
670
Benny Halevy931ee562014-05-30 09:09:27 -0400671static void
672hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
673{
Benny Halevycdc97502014-05-30 09:09:30 -0400674 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400675 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400676
Trond Myklebust67cb1272014-07-29 21:34:17 -0400677 atomic_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -0400678 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -0400679 list_add(&dp->dl_perfile, &fp->fi_delegations);
680 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683static void
Jeff Layton42690672014-07-25 07:34:20 -0400684unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Trond Myklebust11b91642014-07-29 21:34:08 -0400686 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -0400687
Jeff Layton42690672014-07-25 07:34:20 -0400688 lockdep_assert_held(&state_lock);
689
Trond Myklebustb0fc29d2014-07-16 10:31:59 -0400690 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -0400691 /* Ensure that deleg break won't try to requeue it */
692 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -0400693 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400694 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -0400696 list_del_init(&dp->dl_perfile);
697 spin_unlock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400698 if (fp)
Trond Myklebustf8338832014-07-25 07:34:19 -0400699 nfs4_put_deleg_lease(fp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400700}
701
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400702static void destroy_delegation(struct nfs4_delegation *dp)
703{
Jeff Layton42690672014-07-25 07:34:20 -0400704 spin_lock(&state_lock);
705 unhash_delegation_locked(dp);
706 spin_unlock(&state_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400707 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400708}
709
710static void revoke_delegation(struct nfs4_delegation *dp)
711{
712 struct nfs4_client *clp = dp->dl_stid.sc_client;
713
Jeff Layton2d4a5322014-07-25 07:34:21 -0400714 WARN_ON(!list_empty(&dp->dl_recall_lru));
715
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400716 if (clp->cl_minorversion == 0)
Trond Myklebust60116952014-07-29 21:34:06 -0400717 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400718 else {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400719 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
Jeff Layton2d4a5322014-07-25 07:34:21 -0400720 spin_lock(&clp->cl_lock);
721 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
722 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400723 }
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/*
727 * SETCLIENTID state
728 */
729
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400730static unsigned int clientid_hashval(u32 id)
731{
732 return id & CLIENT_HASH_MASK;
733}
734
735static unsigned int clientstr_hashval(const char *name)
736{
737 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400741 * We store the NONE, READ, WRITE, and BOTH bits separately in the
742 * st_{access,deny}_bmap field of the stateid, in order to track not
743 * only what share bits are currently in force, but also what
744 * combinations of share bits previous opens have used. This allows us
745 * to enforce the recommendation of rfc 3530 14.2.19 that the server
746 * return an error if the client attempt to downgrade to a combination
747 * of share bits not explicable by closing some of its previous opens.
748 *
749 * XXX: This enforcement is actually incomplete, since we don't keep
750 * track of access/deny bit combinations; so, e.g., we allow:
751 *
752 * OPEN allow read, deny write
753 * OPEN allow both, deny none
754 * DOWNGRADE allow read, deny none
755 *
756 * which we should reject.
757 */
Jeff Layton5ae037e2012-05-11 09:45:11 -0400758static unsigned int
759bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400760 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -0400761 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400762
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400763 for (i = 1; i < 4; i++) {
764 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -0400765 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400766 }
Jeff Layton5ae037e2012-05-11 09:45:11 -0400767 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400768}
769
Jeff Layton82c5ff12012-05-11 09:45:13 -0400770/* set share access for a given stateid */
771static inline void
772set_access(u32 access, struct nfs4_ol_stateid *stp)
773{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400774 unsigned char mask = 1 << access;
775
776 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
777 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -0400778}
779
780/* clear share access for a given stateid */
781static inline void
782clear_access(u32 access, struct nfs4_ol_stateid *stp)
783{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400784 unsigned char mask = 1 << access;
785
786 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
787 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -0400788}
789
790/* test whether a given stateid has access */
791static inline bool
792test_access(u32 access, struct nfs4_ol_stateid *stp)
793{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400794 unsigned char mask = 1 << access;
795
796 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -0400797}
798
Jeff Laytonce0fc432012-05-11 09:45:14 -0400799/* set share deny for a given stateid */
800static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -0400801set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -0400802{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400803 unsigned char mask = 1 << deny;
804
805 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
806 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -0400807}
808
809/* clear share deny for a given stateid */
810static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -0400811clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -0400812{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400813 unsigned char mask = 1 << deny;
814
815 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
816 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -0400817}
818
819/* test whether a given stateid is denying specific access */
820static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -0400821test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -0400822{
Jeff Laytonc11c5912014-07-10 14:07:30 -0400823 unsigned char mask = 1 << deny;
824
825 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400826}
827
828static int nfs4_access_to_omode(u32 access)
829{
J. Bruce Fields8f34a432010-09-02 15:23:16 -0400830 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400831 case NFS4_SHARE_ACCESS_READ:
832 return O_RDONLY;
833 case NFS4_SHARE_ACCESS_WRITE:
834 return O_WRONLY;
835 case NFS4_SHARE_ACCESS_BOTH:
836 return O_RDWR;
837 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -0500838 WARN_ON_ONCE(1);
839 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400840}
841
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400842/*
843 * A stateid that had a deny mode associated with it is being released
844 * or downgraded. Recalculate the deny mode on the file.
845 */
846static void
847recalculate_deny_mode(struct nfs4_file *fp)
848{
849 struct nfs4_ol_stateid *stp;
850
851 spin_lock(&fp->fi_lock);
852 fp->fi_share_deny = 0;
853 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
854 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
855 spin_unlock(&fp->fi_lock);
856}
857
858static void
859reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
860{
861 int i;
862 bool change = false;
863
864 for (i = 1; i < 4; i++) {
865 if ((i & deny) != i) {
866 change = true;
867 clear_deny(i, stp);
868 }
869 }
870
871 /* Recalculate per-file deny mode if there was a change */
872 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -0400873 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400874}
875
Jeff Layton82c5ff12012-05-11 09:45:13 -0400876/* release all access and file references for a given stateid */
877static void
878release_all_access(struct nfs4_ol_stateid *stp)
879{
880 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -0400881 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400882
883 if (fp && stp->st_deny_bmap != 0)
884 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -0400885
886 for (i = 1; i < 4; i++) {
887 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -0400888 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -0400889 clear_access(i, stp);
890 }
891}
892
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400893static void unhash_generic_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500894{
Trond Myklebust11b91642014-07-29 21:34:08 -0400895 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -0400896
Jeff Layton1c755dc2014-07-29 21:34:12 -0400897 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
898
Trond Myklebust1d31a252014-07-10 14:07:25 -0400899 spin_lock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500900 list_del(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -0400901 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500902 list_del(&stp->st_perstateowner);
903}
904
Trond Myklebust60116952014-07-29 21:34:06 -0400905static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500906{
Trond Myklebust60116952014-07-29 21:34:06 -0400907 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -0400908
Trond Myklebust60116952014-07-29 21:34:06 -0400909 release_all_access(stp);
Trond Myklebust60116952014-07-29 21:34:06 -0400910 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500911}
912
Jeff Laytonb49e0842014-07-29 21:34:11 -0400913static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500914{
Jeff Laytonb49e0842014-07-29 21:34:11 -0400915 struct nfs4_ol_stateid *stp = openlockstateid(stid);
916 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500917 struct file *file;
918
Jeff Laytonb49e0842014-07-29 21:34:11 -0400919 file = find_any_file(stp->st_stid.sc_file);
920 if (file)
921 filp_close(file, (fl_owner_t)lo);
922 nfs4_free_ol_stateid(stid);
923}
924
925static void __release_lock_stateid(struct nfs4_ol_stateid *stp)
926{
Jeff Layton1c755dc2014-07-29 21:34:12 -0400927 struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner);
928
929 spin_lock(&oo->oo_owner.so_client->cl_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400930 list_del(&stp->st_locks);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500931 unhash_generic_stateid(stp);
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400932 unhash_stid(&stp->st_stid);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400933 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400934 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500935}
936
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400937static void unhash_lockowner(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500938{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400939 struct nfs4_ol_stateid *stp;
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500940
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400941 list_del(&lo->lo_owner.so_strhash);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400942 while (!list_empty(&lo->lo_owner.so_stateids)) {
943 stp = list_first_entry(&lo->lo_owner.so_stateids,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -0400944 struct nfs4_ol_stateid, st_perstateowner);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400945 __release_lock_stateid(stp);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500946 }
947}
948
Trond Myklebust50cc6232014-04-18 14:44:03 -0400949static void nfs4_free_lockowner(struct nfs4_lockowner *lo)
950{
951 kfree(lo->lo_owner.so_owner.data);
952 kmem_cache_free(lockowner_slab, lo);
953}
954
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400955static void release_lockowner(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500956{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400957 unhash_lockowner(lo);
958 nfs4_free_lockowner(lo);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500959}
960
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400961static void release_lockowner_if_empty(struct nfs4_lockowner *lo)
962{
963 if (list_empty(&lo->lo_owner.so_stateids))
964 release_lockowner(lo);
965}
966
967static void release_lock_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500968{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400969 struct nfs4_lockowner *lo;
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500970
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400971 lo = lockowner(stp->st_stateowner);
972 __release_lock_stateid(stp);
973 release_lockowner_if_empty(lo);
974}
975
976static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp)
Jeff Layton1c755dc2014-07-29 21:34:12 -0400977 __releases(&open_stp->st_stateowner->so_client->cl_lock)
978 __acquires(&open_stp->st_stateowner->so_client->cl_lock)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400979{
980 struct nfs4_ol_stateid *stp;
981
982 while (!list_empty(&open_stp->st_locks)) {
983 stp = list_entry(open_stp->st_locks.next,
984 struct nfs4_ol_stateid, st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400985 spin_unlock(&open_stp->st_stateowner->so_client->cl_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400986 release_lock_stateid(stp);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400987 spin_lock(&open_stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500988 }
989}
990
J. Bruce Fields38c387b2011-09-16 17:42:48 -0400991static void unhash_open_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields22839632009-01-11 14:27:17 -0500992{
Jeff Layton1c755dc2014-07-29 21:34:12 -0400993 spin_lock(&stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields22839632009-01-11 14:27:17 -0500994 unhash_generic_stateid(stp);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -0400995 release_open_stateid_locks(stp);
Jeff Layton1c755dc2014-07-29 21:34:12 -0400996 spin_unlock(&stp->st_stateowner->so_client->cl_lock);
J. Bruce Fields38c387b2011-09-16 17:42:48 -0400997}
998
999static void release_open_stateid(struct nfs4_ol_stateid *stp)
1000{
1001 unhash_open_stateid(stp);
Trond Myklebust60116952014-07-29 21:34:06 -04001002 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields22839632009-01-11 14:27:17 -05001003}
1004
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001005static void unhash_openowner(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001006{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04001007 struct nfs4_ol_stateid *stp;
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001008
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001009 list_del(&oo->oo_owner.so_strhash);
1010 list_del(&oo->oo_perclient);
1011 while (!list_empty(&oo->oo_owner.so_stateids)) {
1012 stp = list_first_entry(&oo->oo_owner.so_stateids,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04001013 struct nfs4_ol_stateid, st_perstateowner);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001014 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001015 }
1016}
1017
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001018static void release_last_closed_stateid(struct nfs4_openowner *oo)
1019{
1020 struct nfs4_ol_stateid *s = oo->oo_last_closed_stid;
1021
1022 if (s) {
Trond Myklebust60116952014-07-29 21:34:06 -04001023 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001024 oo->oo_last_closed_stid = NULL;
1025 }
1026}
1027
Trond Myklebust50cc6232014-04-18 14:44:03 -04001028static void nfs4_free_openowner(struct nfs4_openowner *oo)
1029{
1030 kfree(oo->oo_owner.so_owner.data);
1031 kmem_cache_free(openowner_slab, oo);
1032}
1033
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001034static void release_openowner(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001035{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001036 unhash_openowner(oo);
1037 list_del(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001038 release_last_closed_stateid(oo);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001039 nfs4_free_openowner(oo);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001040}
1041
Marc Eshel5282fd72009-04-03 08:27:52 +03001042static inline int
1043hash_sessionid(struct nfs4_sessionid *sessionid)
1044{
1045 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1046
1047 return sid->sequence % SESSION_HASH_SIZE;
1048}
1049
Trond Myklebust8f199b82012-03-20 15:11:17 -04001050#ifdef NFSD_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001051static inline void
1052dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1053{
1054 u32 *ptr = (u32 *)(&sessionid->data[0]);
1055 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1056}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001057#else
1058static inline void
1059dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1060{
1061}
1062#endif
1063
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001064/*
1065 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1066 * won't be used for replay.
1067 */
1068void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1069{
1070 struct nfs4_stateowner *so = cstate->replay_owner;
1071
1072 if (nfserr == nfserr_replay_me)
1073 return;
1074
1075 if (!seqid_mutating_err(ntohl(nfserr))) {
1076 cstate->replay_owner = NULL;
1077 return;
1078 }
1079 if (!so)
1080 return;
1081 if (so->so_is_open_owner)
1082 release_last_closed_stateid(openowner(so));
1083 so->so_seqid++;
1084 return;
1085}
Marc Eshel5282fd72009-04-03 08:27:52 +03001086
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001087static void
1088gen_sessionid(struct nfsd4_session *ses)
1089{
1090 struct nfs4_client *clp = ses->se_client;
1091 struct nfsd4_sessionid *sid;
1092
1093 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1094 sid->clientid = clp->cl_clientid;
1095 sid->sequence = current_sessionid++;
1096 sid->reserved = 0;
1097}
1098
1099/*
Andy Adamsona6496372009-08-28 08:45:01 -04001100 * The protocol defines ca_maxresponssize_cached to include the size of
1101 * the rpc header, but all we need to cache is the data starting after
1102 * the end of the initial SEQUENCE operation--the rest we regenerate
1103 * each time. Therefore we can advertise a ca_maxresponssize_cached
1104 * value that is the number of bytes in our cache plus a few additional
1105 * bytes. In order to stay on the safe side, and not promise more than
1106 * we can cache, those additional bytes must be the minimum possible: 24
1107 * bytes of rpc header (xid through accept state, with AUTH_NULL
1108 * verifier), 12 for the compound header (with zero-length tag), and 44
1109 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001110 */
Andy Adamsona6496372009-08-28 08:45:01 -04001111#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1112
Andy Adamson557ce262009-08-28 08:45:04 -04001113static void
1114free_session_slots(struct nfsd4_session *ses)
1115{
1116 int i;
1117
1118 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
1119 kfree(ses->se_slots[i]);
1120}
1121
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001122/*
1123 * We don't actually need to cache the rpc and session headers, so we
1124 * can allocate a little less for each slot:
1125 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001126static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001127{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001128 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001129
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001130 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1131 size = 0;
1132 else
1133 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1134 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001135}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001136
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001137/*
1138 * XXX: If we run out of reserved DRC memory we could (up to a point)
1139 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001140 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001141 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001142static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001143{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001144 u32 slotsize = slot_bytes(ca);
1145 u32 num = ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001146 int avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001147
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001148 spin_lock(&nfsd_drc_lock);
Zhang Yanfei697ce9b2013-02-22 16:35:47 -08001149 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION,
1150 nfsd_drc_max_mem - nfsd_drc_mem_used);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001151 num = min_t(int, num, avail / slotsize);
1152 nfsd_drc_mem_used += num * slotsize;
1153 spin_unlock(&nfsd_drc_lock);
1154
1155 return num;
1156}
1157
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001158static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001159{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001160 int slotsize = slot_bytes(ca);
1161
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001162 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001163 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001164 spin_unlock(&nfsd_drc_lock);
1165}
1166
Kinglong Mee60810e52014-01-01 00:35:47 +08001167static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1168 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001169{
Kinglong Mee60810e52014-01-01 00:35:47 +08001170 int numslots = fattrs->maxreqs;
1171 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001172 struct nfsd4_session *new;
1173 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001174
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001175 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001176 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1177 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001178
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001179 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001180 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001181 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001182 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001183 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001184 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001185 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001186 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001187 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001188
1189 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1190 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1191
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001192 return new;
1193out_free:
1194 while (i--)
1195 kfree(new->se_slots[i]);
1196 kfree(new);
1197 return NULL;
1198}
1199
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001200static void free_conn(struct nfsd4_conn *c)
1201{
1202 svc_xprt_put(c->cn_xprt);
1203 kfree(c);
1204}
1205
1206static void nfsd4_conn_lost(struct svc_xpt_user *u)
1207{
1208 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1209 struct nfs4_client *clp = c->cn_session->se_client;
1210
1211 spin_lock(&clp->cl_lock);
1212 if (!list_empty(&c->cn_persession)) {
1213 list_del(&c->cn_persession);
1214 free_conn(c);
1215 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001216 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001217 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001218}
1219
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001220static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001221{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001222 struct nfsd4_conn *conn;
1223
1224 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1225 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001226 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001227 svc_xprt_get(rqstp->rq_xprt);
1228 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001229 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001230 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1231 return conn;
1232}
1233
J. Bruce Fields328ead22010-09-29 16:11:06 -04001234static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1235{
1236 conn->cn_session = ses;
1237 list_add(&conn->cn_persession, &ses->se_conns);
1238}
1239
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001240static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1241{
1242 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001243
1244 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001245 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001246 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001247}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001248
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001249static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001250{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001251 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001252 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001253}
1254
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001255static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001256{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001257 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001258
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001259 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001260 ret = nfsd4_register_conn(conn);
1261 if (ret)
1262 /* oops; xprt is already down: */
1263 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001264 /* We may have gained or lost a callback channel: */
1265 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001266}
1267
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001268static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001269{
1270 u32 dir = NFS4_CDFC4_FORE;
1271
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001272 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001273 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001274 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001275}
1276
1277/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001278static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001279{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001280 struct nfs4_client *clp = s->se_client;
1281 struct nfsd4_conn *c;
1282
1283 spin_lock(&clp->cl_lock);
1284 while (!list_empty(&s->se_conns)) {
1285 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1286 list_del_init(&c->cn_persession);
1287 spin_unlock(&clp->cl_lock);
1288
1289 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1290 free_conn(c);
1291
1292 spin_lock(&clp->cl_lock);
1293 }
1294 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001295}
1296
J. Bruce Fields1377b692012-09-11 21:42:40 -04001297static void __free_session(struct nfsd4_session *ses)
1298{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001299 free_session_slots(ses);
1300 kfree(ses);
1301}
1302
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001303static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001304{
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001305 struct nfsd_net *nn = net_generic(ses->se_client->net, nfsd_net_id);
1306
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001307 lockdep_assert_held(&nn->client_lock);
1308 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001309 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001310 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001311}
Andy Adamson557ce262009-08-28 08:45:04 -04001312
Fengguang Wu135ae822012-11-10 07:20:25 -05001313static void init_session(struct svc_rqst *rqstp, struct nfsd4_session *new, struct nfs4_client *clp, struct nfsd4_create_session *cses)
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001314{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001315 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001316 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001317
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001318 new->se_client = clp;
1319 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001320
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001321 INIT_LIST_HEAD(&new->se_conns);
1322
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001323 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001324 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001325 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001326 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001327 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001328 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001329 spin_lock(&nn->client_lock);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001330 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001331 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001332 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001333 spin_unlock(&clp->cl_lock);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001334 spin_unlock(&nn->client_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001335
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001336 if (cses->flags & SESSION4_BACK_CHAN) {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001337 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001338 /*
1339 * This is a little silly; with sessions there's no real
1340 * use for the callback address. Use the peer address
1341 * as a reasonable default for now, but consider fixing
1342 * the rpc client not to require an address in the
1343 * future:
1344 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001345 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1346 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001347 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001348}
1349
Benny Halevy9089f1b2010-05-12 00:12:26 +03001350/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001351static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001352__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001353{
1354 struct nfsd4_session *elem;
1355 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001356 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001357
1358 dump_sessionid(__func__, sessionid);
1359 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001360 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001361 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001362 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1363 NFS4_MAX_SESSIONID_LEN)) {
1364 return elem;
1365 }
1366 }
1367
1368 dprintk("%s: session not found\n", __func__);
1369 return NULL;
1370}
1371
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001372static struct nfsd4_session *
1373find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1374 __be32 *ret)
1375{
1376 struct nfsd4_session *session;
1377 __be32 status = nfserr_badsession;
1378
1379 session = __find_in_sessionid_hashtbl(sessionid, net);
1380 if (!session)
1381 goto out;
1382 status = nfsd4_get_session_locked(session);
1383 if (status)
1384 session = NULL;
1385out:
1386 *ret = status;
1387 return session;
1388}
1389
Benny Halevy9089f1b2010-05-12 00:12:26 +03001390/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001391static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001392unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001393{
1394 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001395 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001396 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001397 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1401static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001402STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001404 if (clid->cl_boot == nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +03001406 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001407 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return 1;
1409}
1410
1411/*
1412 * XXX Should we use a slab cache ?
1413 * This type of memory management is somewhat inefficient, but we use it
1414 * anyway since SETCLIENTID is not a common operation.
1415 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001416static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
1418 struct nfs4_client *clp;
1419
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001420 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1421 if (clp == NULL)
1422 return NULL;
Thomas Meyer67114fe2011-11-17 23:43:40 +01001423 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001424 if (clp->cl_name.data == NULL) {
1425 kfree(clp);
1426 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001428 clp->cl_name.len = name.len;
Trond Myklebust5694c932014-04-18 14:43:56 -04001429 INIT_LIST_HEAD(&clp->cl_sessions);
1430 idr_init(&clp->cl_stateids);
1431 atomic_set(&clp->cl_refcount, 0);
1432 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1433 INIT_LIST_HEAD(&clp->cl_idhash);
1434 INIT_LIST_HEAD(&clp->cl_openowners);
1435 INIT_LIST_HEAD(&clp->cl_delegations);
1436 INIT_LIST_HEAD(&clp->cl_lru);
1437 INIT_LIST_HEAD(&clp->cl_callbacks);
1438 INIT_LIST_HEAD(&clp->cl_revoked);
1439 spin_lock_init(&clp->cl_lock);
1440 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return clp;
1442}
1443
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001444static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445free_client(struct nfs4_client *clp)
1446{
Stanislav Kinsburskybca0ec62013-01-09 12:38:34 +03001447 struct nfsd_net __maybe_unused *nn = net_generic(clp->net, nfsd_net_id);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001448
1449 lockdep_assert_held(&nn->client_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001450 while (!list_empty(&clp->cl_sessions)) {
1451 struct nfsd4_session *ses;
1452 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1453 se_perclnt);
1454 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001455 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1456 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001457 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04001458 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001459 free_svc_cred(&clp->cl_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 kfree(clp->cl_name.data);
majianpeng2d32b292013-01-29 13:16:06 +08001461 idr_destroy(&clp->cl_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 kfree(clp);
1463}
1464
Benny Halevy84d38ac2010-05-12 00:13:16 +03001465/* must be called under the client_lock */
1466static inline void
1467unhash_client_locked(struct nfs4_client *clp)
1468{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001469 struct nfsd4_session *ses;
1470
Benny Halevy84d38ac2010-05-12 00:13:16 +03001471 list_del(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001472 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001473 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1474 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001475 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001476}
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478static void
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001479destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001481 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct list_head reaplist;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001484 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04001487 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07001488 while (!list_empty(&clp->cl_delegations)) {
1489 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton42690672014-07-25 07:34:20 -04001490 unhash_delegation_locked(dp);
1491 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
Benny Halevycdc97502014-05-30 09:09:30 -04001493 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 while (!list_empty(&reaplist)) {
1495 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04001496 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001497 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04001499 while (!list_empty(&clp->cl_revoked)) {
Benny Halevy956c4fe2013-10-29 11:39:12 +02001500 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001501 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001502 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02001503 }
NeilBrownea1da632005-06-23 22:04:17 -07001504 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001505 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
1506 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001508 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05001509 if (clp->cl_cb_conn.cb_xprt)
1510 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001511 list_del(&clp->cl_idhash);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001512 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001513 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001514 else
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001515 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001516 spin_lock(&nn->client_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001517 unhash_client_locked(clp);
J. Bruce Fields221a6872013-04-01 22:23:49 -04001518 WARN_ON_ONCE(atomic_read(&clp->cl_refcount));
1519 free_client(clp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001520 spin_unlock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001523static void expire_client(struct nfs4_client *clp)
1524{
1525 nfsd4_client_record_remove(clp);
1526 destroy_client(clp);
1527}
1528
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001529static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1530{
1531 memcpy(target->cl_verifier.data, source->data,
1532 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001535static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1536{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1538 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1539}
1540
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001541static int copy_cred(struct svc_cred *target, struct svc_cred *source)
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001542{
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001543 if (source->cr_principal) {
1544 target->cr_principal =
1545 kstrdup(source->cr_principal, GFP_KERNEL);
1546 if (target->cr_principal == NULL)
1547 return -ENOMEM;
1548 } else
1549 target->cr_principal = NULL;
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04001550 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 target->cr_uid = source->cr_uid;
1552 target->cr_gid = source->cr_gid;
1553 target->cr_group_info = source->cr_group_info;
1554 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04001555 target->cr_gss_mech = source->cr_gss_mech;
1556 if (source->cr_gss_mech)
1557 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001561static long long
1562compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
1563{
1564 long long res;
1565
1566 res = o1->len - o2->len;
1567 if (res)
1568 return res;
1569 return (long long)memcmp(o1->data, o2->data, o1->len);
1570}
1571
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001572static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001573{
NeilBrowna55370a2005-06-23 22:03:52 -07001574 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
1577static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001578same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1579{
1580 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001584same_clid(clientid_t *cl1, clientid_t *cl2)
1585{
1586 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001589static bool groups_equal(struct group_info *g1, struct group_info *g2)
1590{
1591 int i;
1592
1593 if (g1->ngroups != g2->ngroups)
1594 return false;
1595 for (i=0; i<g1->ngroups; i++)
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001596 if (!gid_eq(GROUP_AT(g1, i), GROUP_AT(g2, i)))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001597 return false;
1598 return true;
1599}
1600
J. Bruce Fields68eb3502012-08-21 12:48:30 -04001601/*
1602 * RFC 3530 language requires clid_inuse be returned when the
1603 * "principal" associated with a requests differs from that previously
1604 * used. We use uid, gid's, and gss principal string as our best
1605 * approximation. We also don't want to allow non-gss use of a client
1606 * established using gss: in theory cr_principal should catch that
1607 * change, but in practice cr_principal can be null even in the gss case
1608 * since gssd doesn't always pass down a principal string.
1609 */
1610static bool is_gss_cred(struct svc_cred *cr)
1611{
1612 /* Is cr_flavor one of the gss "pseudoflavors"?: */
1613 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
1614}
1615
1616
Vivek Trivedi5559b502012-07-24 21:18:20 +05301617static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001618same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1619{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04001620 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001621 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
1622 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001623 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
1624 return false;
1625 if (cr1->cr_principal == cr2->cr_principal)
1626 return true;
1627 if (!cr1->cr_principal || !cr2->cr_principal)
1628 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05301629 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
J. Bruce Fields57266a62013-04-13 14:27:29 -04001632static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
1633{
1634 struct svc_cred *cr = &rqstp->rq_cred;
1635 u32 service;
1636
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04001637 if (!cr->cr_gss_mech)
1638 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04001639 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
1640 return service == RPC_GSS_SVC_INTEGRITY ||
1641 service == RPC_GSS_SVC_PRIVACY;
1642}
1643
1644static bool mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
1645{
1646 struct svc_cred *cr = &rqstp->rq_cred;
1647
1648 if (!cl->cl_mach_cred)
1649 return true;
1650 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
1651 return false;
1652 if (!svc_rqst_integrity_protected(rqstp))
1653 return false;
1654 if (!cr->cr_principal)
1655 return false;
1656 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
1657}
1658
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001659static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fields5ec7b462007-11-21 21:58:56 -05001660{
1661 static u32 current_clientid = 1;
1662
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001663 clp->cl_clientid.cl_boot = nn->boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 clp->cl_clientid.cl_id = current_clientid++;
1665}
1666
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001667static void gen_confirm(struct nfs4_client *clp)
1668{
Chuck Leverab4684d2012-03-02 17:13:50 -05001669 __be32 verf[2];
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001670 static u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Jeff Laytonf4199922014-06-17 07:44:11 -04001672 /*
1673 * This is opaque to client, so no need to byte-swap. Use
1674 * __force to keep sparse happy
1675 */
1676 verf[0] = (__force __be32)get_seconds();
1677 verf[1] = (__force __be32)i++;
Chuck Leverab4684d2012-03-02 17:13:50 -05001678 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Jeff Layton4770d722014-07-29 21:34:10 -04001681static struct nfs4_stid *
1682find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04001683{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05001684 struct nfs4_stid *ret;
1685
1686 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
1687 if (!ret || !ret->sc_type)
1688 return NULL;
1689 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04001690}
1691
Jeff Layton4770d722014-07-29 21:34:10 -04001692static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04001693find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04001694{
1695 struct nfs4_stid *s;
1696
Jeff Layton4770d722014-07-29 21:34:10 -04001697 spin_lock(&cl->cl_lock);
1698 s = find_stateid_locked(cl, t);
1699 if (s != NULL && !(typemask & s->sc_type))
1700 s = NULL;
1701 spin_unlock(&cl->cl_lock);
1702 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04001703}
1704
Jeff Layton2216d442012-11-12 15:00:57 -05001705static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001706 struct svc_rqst *rqstp, nfs4_verifier *verf)
1707{
1708 struct nfs4_client *clp;
1709 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001710 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001711 struct net *net = SVC_NET(rqstp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001712 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001713
1714 clp = alloc_client(name);
1715 if (clp == NULL)
1716 return NULL;
1717
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001718 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1719 if (ret) {
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001720 spin_lock(&nn->client_lock);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001721 free_client(clp);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03001722 spin_unlock(&nn->client_lock);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001723 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001724 }
Jeff Layton02e12152014-07-16 10:31:57 -04001725 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_run_cb_null);
Benny Halevy07cd4902010-05-12 00:13:41 +03001726 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001727 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001728 copy_verf(clp, verf);
1729 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001730 gen_confirm(clp);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001731 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001732 clp->net = net;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001733 return clp;
1734}
1735
NeilBrownfd39ca92005-06-23 22:04:03 -07001736static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001737add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
1738{
1739 struct rb_node **new = &(root->rb_node), *parent = NULL;
1740 struct nfs4_client *clp;
1741
1742 while (*new) {
1743 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
1744 parent = *new;
1745
1746 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
1747 new = &((*new)->rb_left);
1748 else
1749 new = &((*new)->rb_right);
1750 }
1751
1752 rb_link_node(&new_clp->cl_namenode, parent, new);
1753 rb_insert_color(&new_clp->cl_namenode, root);
1754}
1755
1756static struct nfs4_client *
1757find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
1758{
1759 long long cmp;
1760 struct rb_node *node = root->rb_node;
1761 struct nfs4_client *clp;
1762
1763 while (node) {
1764 clp = rb_entry(node, struct nfs4_client, cl_namenode);
1765 cmp = compare_blob(&clp->cl_name, name);
1766 if (cmp > 0)
1767 node = node->rb_left;
1768 else if (cmp < 0)
1769 node = node->rb_right;
1770 else
1771 return clp;
1772 }
1773 return NULL;
1774}
1775
1776static void
1777add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001780 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001782 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001783 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001785 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Benny Halevy36acb662010-05-12 00:13:04 +03001786 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
NeilBrownfd39ca92005-06-23 22:04:03 -07001789static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790move_to_confirmed(struct nfs4_client *clp)
1791{
1792 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03001793 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03001796 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001797 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001798 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001799 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 renew_client(clp);
1801}
1802
1803static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001804find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
1806 struct nfs4_client *clp;
1807 unsigned int idhashval = clientid_hashval(clid->cl_id);
1808
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001809 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001810 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04001811 if ((bool)clp->cl_minorversion != sessions)
1812 return NULL;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001813 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04001815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
1817 return NULL;
1818}
1819
1820static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001821find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
1822{
1823 struct list_head *tbl = nn->conf_id_hashtbl;
1824
1825 return find_client_in_id_table(tbl, clid, sessions);
1826}
1827
1828static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03001829find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001831 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04001833 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001836static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001837{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001838 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001839}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001840
NeilBrown28ce6052005-06-23 22:03:56 -07001841static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001842find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07001843{
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03001844 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07001845}
1846
1847static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001848find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07001849{
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03001850 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07001851}
1852
NeilBrownfd39ca92005-06-23 22:04:03 -07001853static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001854gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
J. Bruce Fields07263f12010-05-31 19:09:40 -04001856 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001857 struct sockaddr *sa = svc_addr(rqstp);
1858 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04001859 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Jeff Layton7077ecb2009-08-14 12:57:58 -04001861 /* Currently, we only support tcp and tcp6 for the callback channel */
1862 if (se->se_callback_netid_len == 3 &&
1863 !memcmp(se->se_callback_netid_val, "tcp", 3))
1864 expected_family = AF_INET;
1865 else if (se->se_callback_netid_len == 4 &&
1866 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1867 expected_family = AF_INET6;
1868 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 goto out_err;
1870
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03001871 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001872 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04001873 (struct sockaddr *)&conn->cb_addr,
1874 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001875
J. Bruce Fields07263f12010-05-31 19:09:40 -04001876 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001878
J. Bruce Fields07263f12010-05-31 19:09:40 -04001879 if (conn->cb_addr.ss_family == AF_INET6)
1880 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04001881
J. Bruce Fields07263f12010-05-31 19:09:40 -04001882 conn->cb_prog = se->se_callback_prog;
1883 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08001884 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return;
1886out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04001887 conn->cb_addr.ss_family = AF_UNSPEC;
1888 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07001889 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 "will not receive delegations\n",
1891 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return;
1894}
1895
Andy Adamson074fe892009-04-03 08:28:15 +03001896/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04001897 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03001898 */
Trond Myklebustb6076642014-06-30 11:48:35 -04001899static void
Andy Adamson074fe892009-04-03 08:28:15 +03001900nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1901{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001902 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04001903 struct nfsd4_slot *slot = resp->cstate.slot;
1904 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03001905
Andy Adamson557ce262009-08-28 08:45:04 -04001906 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001907
Andy Adamson557ce262009-08-28 08:45:04 -04001908 slot->sl_opcnt = resp->opcnt;
1909 slot->sl_status = resp->cstate.status;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001910
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05001911 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001912 if (nfsd4_not_cached(resp)) {
Andy Adamson557ce262009-08-28 08:45:04 -04001913 slot->sl_datalen = 0;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001914 return;
1915 }
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001916 base = resp->cstate.data_offset;
1917 slot->sl_datalen = buf->len - base;
1918 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Andy Adamson557ce262009-08-28 08:45:04 -04001919 WARN("%s: sessions DRC could not cache compound\n", __func__);
1920 return;
Andy Adamson074fe892009-04-03 08:28:15 +03001921}
1922
1923/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04001924 * Encode the replay sequence operation from the slot values.
1925 * If cachethis is FALSE encode the uncached rep error on the next
1926 * operation which sets resp->p and increments resp->opcnt for
1927 * nfs4svc_encode_compoundres.
1928 *
Andy Adamson074fe892009-04-03 08:28:15 +03001929 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04001930static __be32
1931nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1932 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03001933{
Andy Adamsonabfabf82009-07-23 19:02:18 -04001934 struct nfsd4_op *op;
1935 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001936
Andy Adamsonabfabf82009-07-23 19:02:18 -04001937 /* Encode the replayed sequence operation */
1938 op = &args->ops[resp->opcnt - 1];
1939 nfsd4_encode_operation(resp, op);
1940
1941 /* Return nfserr_retry_uncached_rep in next operation. */
J. Bruce Fields73e79482012-02-13 16:39:00 -05001942 if (args->opcnt > 1 && !(slot->sl_flags & NFSD4_SLOT_CACHETHIS)) {
Andy Adamsonabfabf82009-07-23 19:02:18 -04001943 op = &args->ops[resp->opcnt++];
1944 op->status = nfserr_retry_uncached_rep;
1945 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03001946 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04001947 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03001948}
1949
1950/*
Andy Adamson557ce262009-08-28 08:45:04 -04001951 * The sequence operation is not cached because we can use the slot and
1952 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03001953 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04001954static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001955nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1956 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001957{
Andy Adamson557ce262009-08-28 08:45:04 -04001958 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001959 struct xdr_stream *xdr = &resp->xdr;
1960 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03001961 __be32 status;
1962
Andy Adamson557ce262009-08-28 08:45:04 -04001963 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001964
Andy Adamsonabfabf82009-07-23 19:02:18 -04001965 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04001966 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04001967 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03001968
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001969 p = xdr_reserve_space(xdr, slot->sl_datalen);
1970 if (!p) {
1971 WARN_ON_ONCE(1);
1972 return nfserr_serverfault;
1973 }
1974 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
1975 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03001976
Andy Adamson557ce262009-08-28 08:45:04 -04001977 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04001978 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03001979}
1980
Andy Adamson0733d212009-04-03 08:28:01 +03001981/*
1982 * Set the exchange_id flags returned by the server.
1983 */
1984static void
1985nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1986{
1987 /* pNFS is not supported */
1988 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1989
1990 /* Referrals are supported, Migration is not. */
1991 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1992
1993 /* set the wire flags to return to client. */
1994 clid->flags = new->cl_exchange_flags;
1995}
1996
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04001997static bool client_has_state(struct nfs4_client *clp)
1998{
1999 /*
2000 * Note clp->cl_openowners check isn't quite right: there's no
2001 * need to count owners without stateid's.
2002 *
2003 * Also note we should probably be using this in 4.0 case too.
2004 */
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002005 return !list_empty(&clp->cl_openowners)
2006 || !list_empty(&clp->cl_delegations)
2007 || !list_empty(&clp->cl_sessions);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002008}
2009
Al Virob37ad282006-10-19 23:28:59 -07002010__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03002011nfsd4_exchange_id(struct svc_rqst *rqstp,
2012 struct nfsd4_compound_state *cstate,
2013 struct nfsd4_exchange_id *exid)
2014{
Andy Adamson0733d212009-04-03 08:28:01 +03002015 struct nfs4_client *unconf, *conf, *new;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002016 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04002017 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03002018 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04002019 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002020 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002021 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03002022
Jeff Layton363168b2009-08-14 12:57:56 -04002023 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03002024 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04002025 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03002026 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04002027 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03002028
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002029 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03002030 return nfserr_inval;
2031
Andy Adamson0733d212009-04-03 08:28:01 +03002032 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002033 case SP4_MACH_CRED:
2034 if (!svc_rqst_integrity_protected(rqstp))
2035 return nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002036 case SP4_NONE:
2037 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05002038 default: /* checked by xdr code */
2039 WARN_ON_ONCE(1);
Andy Adamson0733d212009-04-03 08:28:01 +03002040 case SP4_SSV:
J. Bruce Fieldsdd303332013-04-12 18:10:56 -04002041 return nfserr_encr_alg_unsupp;
Andy Adamson0733d212009-04-03 08:28:01 +03002042 }
2043
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002044 /* Cases below refer to rfc 5661 section 18.35.4: */
Andy Adamson0733d212009-04-03 08:28:01 +03002045 nfs4_lock_state();
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002046 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03002047 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002048 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
2049 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
2050
J. Bruce Fields136e6582012-05-12 20:37:23 -04002051 if (update) {
2052 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002053 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002054 goto out;
2055 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002056 if (!mach_creds_match(conf, rqstp)) {
2057 status = nfserr_wrong_cred;
2058 goto out;
2059 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002060 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03002061 status = nfserr_perm;
2062 goto out;
2063 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002064 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03002065 status = nfserr_not_same;
2066 goto out;
2067 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002068 /* case 6 */
2069 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
2070 new = conf;
2071 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03002072 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002073 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002074 if (client_has_state(conf)) {
2075 status = nfserr_clid_inuse;
2076 goto out;
2077 }
Andy Adamson0733d212009-04-03 08:28:01 +03002078 expire_client(conf);
2079 goto out_new;
2080 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002081 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04002082 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002083 new = conf;
2084 goto out_copy;
2085 }
2086 /* case 5, client reboot */
J. Bruce Fields136e6582012-05-12 20:37:23 -04002087 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002088 }
2089
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002090 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002091 status = nfserr_noent;
2092 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03002093 }
2094
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002095 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002096 if (unconf) /* case 4, possible retry or client restart */
Andy Adamson0733d212009-04-03 08:28:01 +03002097 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002098
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002099 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03002100out_new:
Jeff Layton2216d442012-11-12 15:00:57 -05002101 new = create_client(exid->clname, rqstp, &verf);
Andy Adamson0733d212009-04-03 08:28:01 +03002102 if (new == NULL) {
J. Bruce Fields47310302010-06-22 16:17:12 -04002103 status = nfserr_jukebox;
Andy Adamson0733d212009-04-03 08:28:01 +03002104 goto out;
2105 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04002106 new->cl_minorversion = cstate->minorversion;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002107 new->cl_mach_cred = (exid->spa_how == SP4_MACH_CRED);
Andy Adamson0733d212009-04-03 08:28:01 +03002108
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002109 gen_clid(new, nn);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002110 add_to_unconfirmed(new);
Andy Adamson0733d212009-04-03 08:28:01 +03002111out_copy:
2112 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
2113 exid->clientid.cl_id = new->cl_clientid.cl_id;
2114
J. Bruce Fields778df3f2012-05-25 21:40:23 -04002115 exid->seqid = new->cl_cs_slot.sl_seqid + 1;
Andy Adamson0733d212009-04-03 08:28:01 +03002116 nfsd4_set_ex_flags(new, exid);
2117
2118 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04002119 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03002120 status = nfs_ok;
2121
2122out:
2123 nfs4_unlock_state();
Andy Adamson0733d212009-04-03 08:28:01 +03002124 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002125}
2126
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002127static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04002128check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002129{
Andy Adamson88e588d2009-07-23 19:02:15 -04002130 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
2131 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002132
2133 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04002134 if (slot_inuse) {
2135 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002136 return nfserr_jukebox;
2137 else
2138 return nfserr_seq_misordered;
2139 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05002140 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04002141 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03002142 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04002143 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002144 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002145 return nfserr_seq_misordered;
2146}
2147
Andy Adamson49557cc2009-07-23 19:02:16 -04002148/*
2149 * Cache the create session result into the create session single DRC
2150 * slot cache by saving the xdr structure. sl_seqid has been set.
2151 * Do this for solo or embedded create session operations.
2152 */
2153static void
2154nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002155 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04002156{
2157 slot->sl_status = nfserr;
2158 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
2159}
2160
2161static __be32
2162nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
2163 struct nfsd4_clid_slot *slot)
2164{
2165 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
2166 return slot->sl_status;
2167}
2168
Mi Jinlong1b74c252011-07-14 14:50:17 +08002169#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2170 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2171 1 + /* MIN tag is length with zero, only length */ \
2172 3 + /* version, opcount, opcode */ \
2173 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2174 /* seqid, slotID, slotID, cache */ \
2175 4 ) * sizeof(__be32))
2176
2177#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2178 2 + /* verifier: AUTH_NULL, length 0 */\
2179 1 + /* status */ \
2180 1 + /* MIN tag is length with zero, only length */ \
2181 3 + /* opcount, opcode, opstatus*/ \
2182 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2183 /* seqid, slotID, slotID, slotID, status */ \
2184 5 ) * sizeof(__be32))
2185
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002186static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08002187{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002188 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
2189
J. Bruce Fields373cd402013-04-08 15:42:12 -04002190 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
2191 return nfserr_toosmall;
2192 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
2193 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002194 ca->headerpadsz = 0;
2195 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
2196 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
2197 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
2198 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
2199 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
2200 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
2201 /*
2202 * Note decreasing slot size below client's request may make it
2203 * difficult for client to function correctly, whereas
2204 * decreasing the number of slots will (just?) affect
2205 * performance. When short on memory we therefore prefer to
2206 * decrease number of slots instead of their size. Clients that
2207 * request larger slots than they need will get poor results:
2208 */
2209 ca->maxreqs = nfsd4_get_drc_mem(ca);
2210 if (!ca->maxreqs)
2211 return nfserr_jukebox;
2212
J. Bruce Fields373cd402013-04-08 15:42:12 -04002213 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08002214}
2215
Kinglong Mee8a891632013-12-23 18:11:02 +08002216#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
2217 RPC_MAX_HEADER_WITH_AUTH) * sizeof(__be32))
2218#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
2219 RPC_MAX_REPHEADER_WITH_AUTH) * sizeof(__be32))
2220
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002221static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
2222{
2223 ca->headerpadsz = 0;
2224
2225 /*
2226 * These RPC_MAX_HEADER macros are overkill, especially since we
2227 * don't even do gss on the backchannel yet. But this is still
2228 * less than 1k. Tighten up this estimate in the unlikely event
2229 * it turns out to be a problem for some client:
2230 */
Kinglong Mee8a891632013-12-23 18:11:02 +08002231 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002232 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08002233 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002234 return nfserr_toosmall;
2235 ca->maxresp_cached = 0;
2236 if (ca->maxops < 2)
2237 return nfserr_toosmall;
2238
2239 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002240}
2241
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002242static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
2243{
2244 switch (cbs->flavor) {
2245 case RPC_AUTH_NULL:
2246 case RPC_AUTH_UNIX:
2247 return nfs_ok;
2248 default:
2249 /*
2250 * GSS case: the spec doesn't allow us to return this
2251 * error. But it also doesn't allow us not to support
2252 * GSS.
2253 * I'd rather this fail hard than return some error the
2254 * client might think it can already handle:
2255 */
2256 return nfserr_encr_alg_unsupp;
2257 }
2258}
2259
Andy Adamson069b6ad2009-04-03 08:27:58 +03002260__be32
2261nfsd4_create_session(struct svc_rqst *rqstp,
2262 struct nfsd4_compound_state *cstate,
2263 struct nfsd4_create_session *cr_ses)
2264{
Jeff Layton363168b2009-08-14 12:57:56 -04002265 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002266 struct nfs4_client *conf, *unconf;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002267 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002268 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002269 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002270 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002271 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002272
Mi Jinlonga62573d2011-03-23 17:57:07 +08002273 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
2274 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002275 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
2276 if (status)
2277 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002278 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04002279 if (status)
2280 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002281 status = check_backchannel_attrs(&cr_ses->back_channel);
2282 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08002283 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002284 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08002285 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002286 if (!new)
2287 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002288 conn = alloc_conn_from_crses(rqstp, cr_ses);
2289 if (!conn)
2290 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08002291
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002292 nfs4_lock_state();
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002293 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002294 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002295 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002296
2297 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002298 status = nfserr_wrong_cred;
2299 if (!mach_creds_match(conf, rqstp))
2300 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002301 cs_slot = &conf->cl_cs_slot;
2302 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002303 if (status == nfserr_replay_cache) {
Andy Adamson49557cc2009-07-23 19:02:16 -04002304 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002305 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002306 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002307 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002308 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002309 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002310 } else if (unconf) {
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002311 struct nfs4_client *old;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002312 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04002313 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002314 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002315 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002316 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002317 status = nfserr_wrong_cred;
2318 if (!mach_creds_match(unconf, rqstp))
2319 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002320 cs_slot = &unconf->cl_cs_slot;
2321 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002322 if (status) {
2323 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002324 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002325 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002326 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002327 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002328 if (old) {
2329 status = mark_client_expired(old);
2330 if (status)
2331 goto out_free_conn;
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002332 expire_client(old);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002333 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002334 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002335 conf = unconf;
2336 } else {
2337 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002338 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002339 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002340 status = nfs_ok;
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002341 /*
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002342 * We do not support RDMA or persistent sessions
2343 */
2344 cr_ses->flags &= ~SESSION4_PERSIST;
2345 cr_ses->flags &= ~SESSION4_RDMA;
2346
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002347 init_session(rqstp, new, conf, cr_ses);
2348 nfsd4_init_conn(rqstp, conn, new);
2349
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002350 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002351 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04002352 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04002353 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002354
Andy Adamson49557cc2009-07-23 19:02:16 -04002355 /* cache solo and embedded create sessions under the state lock */
2356 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002357 nfs4_unlock_state();
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002358 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002359out_free_conn:
Yanchuan Nian266533c2012-12-24 18:11:45 +08002360 nfs4_unlock_state();
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002361 free_conn(conn);
2362out_free_session:
2363 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002364out_release_drc_mem:
2365 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04002366 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002367}
2368
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002369static __be32 nfsd4_map_bcts_dir(u32 *dir)
2370{
2371 switch (*dir) {
2372 case NFS4_CDFC4_FORE:
2373 case NFS4_CDFC4_BACK:
2374 return nfs_ok;
2375 case NFS4_CDFC4_FORE_OR_BOTH:
2376 case NFS4_CDFC4_BACK_OR_BOTH:
2377 *dir = NFS4_CDFC4_BOTH;
2378 return nfs_ok;
2379 };
2380 return nfserr_inval;
2381}
2382
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002383__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
2384{
2385 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002386 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002387 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002388
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002389 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2390 if (status)
2391 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002392 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002393 session->se_cb_prog = bc->bc_cb_program;
2394 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002395 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002396
2397 nfsd4_probe_callback(session->se_client);
2398
2399 return nfs_ok;
2400}
2401
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002402__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2403 struct nfsd4_compound_state *cstate,
2404 struct nfsd4_bind_conn_to_session *bcts)
2405{
2406 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002407 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002408 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002409 struct net *net = SVC_NET(rqstp);
2410 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002411
2412 if (!nfsd4_last_compound_op(rqstp))
2413 return nfserr_not_only_op;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002414 nfs4_lock_state();
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002415 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002416 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002417 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002418 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002419 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002420 status = nfserr_wrong_cred;
2421 if (!mach_creds_match(session->se_client, rqstp))
2422 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002423 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002424 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002425 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002426 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002427 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002428 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002429 goto out;
2430 nfsd4_init_conn(rqstp, conn, session);
2431 status = nfs_ok;
2432out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002433 nfsd4_put_session(session);
2434out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002435 nfs4_unlock_state();
2436 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002437}
2438
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002439static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2440{
2441 if (!session)
2442 return 0;
2443 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2444}
2445
Andy Adamson069b6ad2009-04-03 08:27:58 +03002446__be32
2447nfsd4_destroy_session(struct svc_rqst *r,
2448 struct nfsd4_compound_state *cstate,
2449 struct nfsd4_destroy_session *sessionid)
2450{
Benny Halevye10e0cf2009-04-03 08:28:38 +03002451 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002452 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002453 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002454 struct net *net = SVC_NET(r);
2455 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002456
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002457 nfs4_lock_state();
2458 status = nfserr_not_only_op;
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002459 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04002460 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002461 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002462 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04002463 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03002464 dump_sessionid(__func__, &sessionid->sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002465 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002466 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002467 if (!ses)
2468 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002469 status = nfserr_wrong_cred;
2470 if (!mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002471 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002472 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002473 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002474 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03002475 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002476 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002477
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05002478 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04002479
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002480 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002481 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002482out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002483 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002484out_client_lock:
2485 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002486out:
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002487 nfs4_unlock_state();
Benny Halevye10e0cf2009-04-03 08:28:38 +03002488 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002489}
2490
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002491static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002492{
2493 struct nfsd4_conn *c;
2494
2495 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002496 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04002497 return c;
2498 }
2499 }
2500 return NULL;
2501}
2502
J. Bruce Fields57266a62013-04-13 14:27:29 -04002503static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002504{
2505 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002506 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002507 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002508 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002509
2510 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002511 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002512 if (c)
2513 goto out_free;
2514 status = nfserr_conn_not_bound_to_session;
2515 if (clp->cl_mach_cred)
2516 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002517 __nfsd4_hash_conn(new, ses);
2518 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002519 ret = nfsd4_register_conn(new);
2520 if (ret)
2521 /* oops; xprt is already down: */
2522 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002523 return nfs_ok;
2524out_free:
2525 spin_unlock(&clp->cl_lock);
2526 free_conn(new);
2527 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002528}
2529
Mi Jinlong868b89c2011-04-27 09:09:58 +08002530static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
2531{
2532 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2533
2534 return args->opcnt > session->se_fchannel.maxops;
2535}
2536
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002537static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
2538 struct nfsd4_session *session)
2539{
2540 struct xdr_buf *xb = &rqstp->rq_arg;
2541
2542 return xb->len > session->se_fchannel.maxreq_sz;
2543}
2544
Andy Adamson069b6ad2009-04-03 08:27:58 +03002545__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03002546nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002547 struct nfsd4_compound_state *cstate,
2548 struct nfsd4_sequence *seq)
2549{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03002550 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002551 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002552 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002553 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002554 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002555 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002556 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002557 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002558 struct net *net = SVC_NET(rqstp);
2559 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002560
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03002561 if (resp->opcnt != 1)
2562 return nfserr_sequence_pos;
2563
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002564 /*
2565 * Will be either used or freed by nfsd4_sequence_check_conn
2566 * below.
2567 */
2568 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
2569 if (!conn)
2570 return nfserr_jukebox;
2571
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002572 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002573 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002574 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04002575 goto out_no_session;
2576 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002577
Mi Jinlong868b89c2011-04-27 09:09:58 +08002578 status = nfserr_too_many_ops;
2579 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002580 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08002581
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002582 status = nfserr_req_too_big;
2583 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002584 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08002585
Benny Halevyb85d4c02009-04-03 08:28:08 +03002586 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03002587 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002588 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002589
Andy Adamson557ce262009-08-28 08:45:04 -04002590 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03002591 dprintk("%s: slotid %d\n", __func__, seq->slotid);
2592
Andy Adamsona8dfdae2009-08-28 08:45:02 -04002593 /* We do not negotiate the number of slots yet, so set the
2594 * maxslots to the session maxreqs which is used to encode
2595 * sr_highest_slotid and the sr_target_slot id to maxslots */
2596 seq->maxslots = session->se_fchannel.maxreqs;
2597
J. Bruce Fields73e79482012-02-13 16:39:00 -05002598 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
2599 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002600 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002601 status = nfserr_seq_misordered;
2602 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002603 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002604 cstate->slot = slot;
2605 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04002606 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03002607 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04002608 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03002609 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03002610 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03002611 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002612 }
2613 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002614 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002615
J. Bruce Fields57266a62013-04-13 14:27:29 -04002616 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002617 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002618 if (status)
2619 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002620
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002621 buflen = (seq->cachethis) ?
2622 session->se_fchannel.maxresp_cached :
2623 session->se_fchannel.maxresp_sz;
2624 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
2625 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002626 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002627 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04002628 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04002629
2630 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002631 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03002632 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002633 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05002634 if (seq->cachethis)
2635 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05002636 else
2637 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002638
2639 cstate->slot = slot;
2640 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04002641 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002642
Benny Halevyb85d4c02009-04-03 08:28:08 +03002643out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04002644 switch (clp->cl_cb_state) {
2645 case NFSD4_CB_DOWN:
2646 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
2647 break;
2648 case NFSD4_CB_FAULT:
2649 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
2650 break;
2651 default:
2652 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03002653 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04002654 if (!list_empty(&clp->cl_revoked))
2655 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002656out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08002657 if (conn)
2658 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002659 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002660 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002661out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002662 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002663 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002664}
2665
Trond Myklebustb6076642014-06-30 11:48:35 -04002666void
2667nfsd4_sequence_done(struct nfsd4_compoundres *resp)
2668{
2669 struct nfsd4_compound_state *cs = &resp->cstate;
2670
2671 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04002672 if (cs->status != nfserr_replay_cache) {
2673 nfsd4_store_cache_entry(resp);
2674 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
2675 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002676 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04002677 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04002678 } else if (cs->clp)
2679 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04002680}
2681
Mi Jinlong345c2842011-10-20 17:51:39 +08002682__be32
2683nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
2684{
2685 struct nfs4_client *conf, *unconf, *clp;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002686 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002687 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08002688
2689 nfs4_lock_state();
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002690 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002691 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002692 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08002693
2694 if (conf) {
2695 clp = conf;
2696
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04002697 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08002698 status = nfserr_clientid_busy;
2699 goto out;
2700 }
2701 } else if (unconf)
2702 clp = unconf;
2703 else {
2704 status = nfserr_stale_clientid;
2705 goto out;
2706 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002707 if (!mach_creds_match(clp, rqstp)) {
2708 status = nfserr_wrong_cred;
2709 goto out;
2710 }
Mi Jinlong345c2842011-10-20 17:51:39 +08002711 expire_client(clp);
2712out:
2713 nfs4_unlock_state();
Mi Jinlong345c2842011-10-20 17:51:39 +08002714 return status;
2715}
2716
Andy Adamson069b6ad2009-04-03 08:27:58 +03002717__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002718nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2719{
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002720 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002721
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002722 if (rc->rca_one_fs) {
2723 if (!cstate->current_fh.fh_dentry)
2724 return nfserr_nofilehandle;
2725 /*
2726 * We don't take advantage of the rca_one_fs case.
2727 * That's OK, it's optional, we can safely ignore it.
2728 */
2729 return nfs_ok;
2730 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002731
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002732 nfs4_lock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002733 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04002734 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
2735 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002736 goto out;
2737
2738 status = nfserr_stale_clientid;
2739 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002740 /*
2741 * The following error isn't really legal.
2742 * But we only get here if the client just explicitly
2743 * destroyed the client. Surely it no longer cares what
2744 * error it gets back on an operation for the dead
2745 * client.
2746 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002747 goto out;
2748
2749 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04002750 nfsd4_client_record_create(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002751out:
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002752 nfs4_unlock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08002753 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002754}
2755
2756__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002757nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2758 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002760 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 nfs4_verifier clverifier = setclid->se_verf;
NeilBrown28ce6052005-06-23 22:03:56 -07002762 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07002763 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002764 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2765
J. Bruce Fields63db4632012-05-18 21:54:19 -04002766 /* Cases below refer to rfc 3530 section 14.2.33: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 nfs4_lock_state();
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002768 conf = find_confirmed_client_by_name(&clname, nn);
NeilBrown28ce6052005-06-23 22:03:56 -07002769 if (conf) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04002770 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002772 if (clp_used_exchangeid(conf))
2773 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04002774 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04002775 char addr_str[INET6_ADDRSTRLEN];
2776 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2777 sizeof(addr_str));
2778 dprintk("NFSD: setclientid: string in use by client "
2779 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 goto out;
2781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002783 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04002784 if (unconf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 status = nfserr_jukebox;
Jeff Layton2216d442012-11-12 15:00:57 -05002787 new = create_client(clname, rqstp, &clverifier);
J. Bruce Fields8f930712012-05-18 22:06:41 -04002788 if (new == NULL)
2789 goto out;
J. Bruce Fields34b232b2012-05-18 22:23:42 -04002790 if (conf && same_verf(&conf->cl_verifier, &clverifier))
J. Bruce Fields63db4632012-05-18 21:54:19 -04002791 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 copy_clid(new, conf);
J. Bruce Fields34b232b2012-05-18 22:23:42 -04002793 else /* case 4 (new client) or cases 2, 3 (client reboot): */
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002794 gen_clid(new, nn);
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002795 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002796 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002797 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2799 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2800 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2801 status = nfs_ok;
2802out:
2803 nfs4_unlock_state();
2804 return status;
2805}
2806
2807
Al Virob37ad282006-10-19 23:28:59 -07002808__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002809nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2810 struct nfsd4_compound_state *cstate,
2811 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
NeilBrown21ab45a2005-06-23 22:04:14 -07002813 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2815 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07002816 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03002817 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04002819 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 return nfserr_stale_clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07002822
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002823 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002824 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002825 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04002826 * We try hard to give out unique clientid's, so if we get an
2827 * attempt to confirm the same clientid with a different cred,
2828 * there's a bug somewhere. Let's charitably assume it's our
2829 * bug.
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002830 */
J. Bruce Fields8695b902012-05-19 10:05:58 -04002831 status = nfserr_serverfault;
2832 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
2833 goto out;
2834 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
2835 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04002836 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002837 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
2838 if (conf && !unconf) /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 status = nfs_ok;
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002840 else /* case 4: client hasn't noticed we rebooted yet? */
2841 status = nfserr_stale_clientid;
2842 goto out;
2843 }
2844 status = nfs_ok;
2845 if (conf) { /* case 1: callback update */
J. Bruce Fields8695b902012-05-19 10:05:58 -04002846 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2847 nfsd4_probe_callback(conf);
2848 expire_client(unconf);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04002849 } else { /* case 3: normal case; new or rebooted client */
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002850 conf = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002851 if (conf) {
2852 status = mark_client_expired(conf);
2853 if (status)
2854 goto out;
J. Bruce Fields8695b902012-05-19 10:05:58 -04002855 expire_client(conf);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002856 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04002857 move_to_confirmed(unconf);
J. Bruce Fieldsf3d03b92012-05-23 11:38:38 -04002858 nfsd4_probe_callback(unconf);
NeilBrown08e89872005-06-23 22:04:11 -07002859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 nfs4_unlock_state();
2862 return status;
2863}
2864
J. Bruce Fields32513b42011-10-13 16:00:16 -04002865static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
J. Bruce Fields32513b42011-10-13 16:00:16 -04002867 return kmem_cache_alloc(file_slab, GFP_KERNEL);
2868}
2869
2870/* OPEN Share state helper functions */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04002871static void nfsd4_init_file(struct nfs4_file *fp, struct knfsd_fh *fh)
J. Bruce Fields32513b42011-10-13 16:00:16 -04002872{
Trond Myklebustca943212014-07-23 16:17:39 -04002873 unsigned int hashval = file_hashval(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Trond Myklebust950e0112014-06-30 11:48:31 -04002875 lockdep_assert_held(&state_lock);
2876
J. Bruce Fields32513b42011-10-13 16:00:16 -04002877 atomic_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04002878 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04002879 INIT_LIST_HEAD(&fp->fi_stateids);
2880 INIT_LIST_HEAD(&fp->fi_delegations);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04002881 fh_copy_shallow(&fp->fi_fhandle, fh);
J. Bruce Fields32513b42011-10-13 16:00:16 -04002882 fp->fi_had_conflict = false;
2883 fp->fi_lease = NULL;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04002884 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04002885 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2886 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Jeff Layton89876f82013-04-02 09:01:59 -04002887 hlist_add_head(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04002890void
NeilBrowne60d4392005-06-23 22:03:01 -07002891nfsd4_free_slabs(void)
2892{
Christoph Hellwigabf11352014-05-21 07:43:03 -07002893 kmem_cache_destroy(openowner_slab);
2894 kmem_cache_destroy(lockowner_slab);
2895 kmem_cache_destroy(file_slab);
2896 kmem_cache_destroy(stateid_slab);
2897 kmem_cache_destroy(deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002898}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Bryan Schumaker72083392011-11-01 15:24:59 -04002900int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901nfsd4_init_slabs(void)
2902{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002903 openowner_slab = kmem_cache_create("nfsd4_openowners",
2904 sizeof(struct nfs4_openowner), 0, 0, NULL);
2905 if (openowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002906 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002907 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08002908 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002909 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002910 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07002911 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09002912 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002913 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002914 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07002915 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04002916 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07002917 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002918 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07002919 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09002920 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002921 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07002922 goto out_free_stateid_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07002924
2925out_free_stateid_slab:
2926 kmem_cache_destroy(stateid_slab);
2927out_free_file_slab:
2928 kmem_cache_destroy(file_slab);
2929out_free_lockowner_slab:
2930 kmem_cache_destroy(lockowner_slab);
2931out_free_openowner_slab:
2932 kmem_cache_destroy(openowner_slab);
2933out:
NeilBrowne60d4392005-06-23 22:03:01 -07002934 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2935 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936}
2937
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002938static void init_nfs4_replay(struct nfs4_replay *rp)
2939{
2940 rp->rp_status = nfserr_serverfault;
2941 rp->rp_buflen = 0;
2942 rp->rp_buf = rp->rp_ibuf;
2943}
2944
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002945static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946{
2947 struct nfs4_stateowner *sop;
2948
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002949 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002950 if (!sop)
2951 return NULL;
2952
2953 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2954 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002955 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002956 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002958 sop->so_owner.len = owner->len;
2959
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002960 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002961 sop->so_client = clp;
2962 init_nfs4_replay(&sop->so_replay);
2963 return sop;
2964}
2965
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002966static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002967{
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03002968 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2969
2970 list_add(&oo->oo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002971 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
2973
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002974static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04002975alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04002976 struct nfsd4_compound_state *cstate)
2977{
Trond Myklebust13d6f662014-06-30 11:48:45 -04002978 struct nfs4_client *clp = cstate->clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002979 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002981 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
2982 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 return NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002984 oo->oo_owner.so_is_open_owner = 1;
2985 oo->oo_owner.so_seqid = open->op_seqid;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04002986 oo->oo_flags = NFS4_OO_NEW;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04002987 if (nfsd4_has_session(cstate))
2988 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002989 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04002990 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002991 INIT_LIST_HEAD(&oo->oo_close_lru);
2992 hash_openowner(oo, clp, strhashval);
2993 return oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994}
2995
J. Bruce Fields996e0932011-10-17 11:14:48 -04002996static void init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002997 struct nfs4_openowner *oo = open->op_openowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04002999 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05003000 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04003001 INIT_LIST_HEAD(&stp->st_locks);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003002 stp->st_stateowner = &oo->oo_owner;
NeilBrown13cd2182005-06-23 22:03:10 -07003003 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04003004 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 stp->st_access_bmap = 0;
3006 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07003007 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04003008 spin_lock(&oo->oo_owner.so_client->cl_lock);
3009 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003010 spin_lock(&fp->fi_lock);
3011 list_add(&stp->st_perfile, &fp->fi_stateids);
3012 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04003013 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014}
3015
3016static void
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003017move_to_close_lru(struct nfs4_openowner *oo, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003019 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
3020
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003021 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003023 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003024 oo->oo_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003028same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
3029 clientid_t *clid)
3030{
3031 return (sop->so_owner.len == owner->len) &&
3032 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
3033 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034}
3035
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003036static struct nfs4_openowner *
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003037find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
3038 bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039{
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003040 struct nfs4_stateowner *so;
3041 struct nfs4_openowner *oo;
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04003042 struct nfs4_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003044 list_for_each_entry(so, &nn->ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05003045 if (!so->so_is_open_owner)
3046 continue;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003047 if (same_owner_str(so, &open->op_owner, &open->op_clientid)) {
3048 oo = openowner(so);
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04003049 clp = oo->oo_owner.so_client;
3050 if ((bool)clp->cl_minorversion != sessions)
3051 return NULL;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04003052 renew_client(oo->oo_owner.so_client);
3053 return oo;
3054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
3056 return NULL;
3057}
3058
3059/* search file_hashtbl[] for file */
3060static struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003061find_file_locked(struct knfsd_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062{
Trond Myklebustca943212014-07-23 16:17:39 -04003063 unsigned int hashval = file_hashval(fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 struct nfs4_file *fp;
3065
Trond Myklebust950e0112014-06-30 11:48:31 -04003066 lockdep_assert_held(&state_lock);
3067
Jeff Layton89876f82013-04-02 09:01:59 -04003068 hlist_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
Trond Myklebustca943212014-07-23 16:17:39 -04003069 if (nfsd_fh_match(&fp->fi_fhandle, fh)) {
NeilBrown13cd2182005-06-23 22:03:10 -07003070 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07003072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
3074 return NULL;
3075}
3076
Trond Myklebust950e0112014-06-30 11:48:31 -04003077static struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003078find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003079{
3080 struct nfs4_file *fp;
3081
3082 spin_lock(&state_lock);
Trond Myklebustca943212014-07-23 16:17:39 -04003083 fp = find_file_locked(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003084 spin_unlock(&state_lock);
3085 return fp;
3086}
3087
3088static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003089find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003090{
3091 struct nfs4_file *fp;
3092
3093 spin_lock(&state_lock);
Trond Myklebustca943212014-07-23 16:17:39 -04003094 fp = find_file_locked(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003095 if (fp == NULL) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003096 nfsd4_init_file(new, fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003097 fp = new;
3098 }
3099 spin_unlock(&state_lock);
3100
3101 return fp;
3102}
3103
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04003104/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 * Called to check deny when READ with all zero stateid or
3106 * WRITE with all zero or all one stateid
3107 */
Al Virob37ad282006-10-19 23:28:59 -07003108static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
3110{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003112 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Trond Myklebustca943212014-07-23 16:17:39 -04003114 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07003115 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003116 return ret;
3117 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04003118 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003119 if (fp->fi_share_deny & deny_type)
3120 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003121 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07003122 put_nfs4_file(fp);
3123 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124}
3125
Jeff Layton02e12152014-07-16 10:31:57 -04003126void nfsd4_prepare_cb_recall(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127{
Trond Myklebust11b91642014-07-29 21:34:08 -04003128 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
3129 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003130
Trond Myklebust11b91642014-07-29 21:34:08 -04003131 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04003132
Jeff Layton02e12152014-07-16 10:31:57 -04003133 /*
3134 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04003135 * already holding inode->i_lock.
3136 *
Jeff Laytondff13992014-07-08 14:02:49 -04003137 * If the dl_time != 0, then we know that it has already been
3138 * queued for a lease break. Don't queue it again.
3139 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04003140 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04003141 if (dp->dl_time == 0) {
Jeff Laytondff13992014-07-08 14:02:49 -04003142 dp->dl_time = get_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04003143 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04003144 }
Jeff Layton02e12152014-07-16 10:31:57 -04003145 spin_unlock(&state_lock);
3146}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Jeff Layton02e12152014-07-16 10:31:57 -04003148static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
3149{
3150 /*
3151 * We're assuming the state code never drops its reference
3152 * without first removing the lease. Since we're in this lease
3153 * callback (and since the lease code is serialized by the kernel
3154 * lock) we know the server hasn't removed the lease yet, we know
3155 * it's safe to take a reference.
3156 */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -04003157 atomic_inc(&dp->dl_stid.sc_count);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003158 nfsd4_cb_recall(dp);
3159}
3160
Jeff Layton1c8c6012013-06-21 08:58:15 -04003161/* Called from break_lease() with i_lock held. */
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003162static void nfsd_break_deleg_cb(struct file_lock *fl)
3163{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003164 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
3165 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003166
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003167 if (!fp) {
3168 WARN(1, "(%p)->fl_owner NULL\n", fl);
3169 return;
3170 }
3171 if (fp->fi_had_conflict) {
3172 WARN(1, "duplicate break on %p\n", fp);
3173 return;
3174 }
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003175 /*
3176 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003177 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003178 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003179 */
3180 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Jeff Layton02e12152014-07-16 10:31:57 -04003182 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003183 fp->fi_had_conflict = true;
3184 /*
3185 * If there are no delegations on the list, then we can't count on this
3186 * lease ever being cleaned up. Set the fl_break_time to jiffies so that
3187 * time_out_leases will do it ASAP. The fact that fi_had_conflict is now
3188 * true should keep any new delegations from being hashed.
3189 */
3190 if (list_empty(&fp->fi_delegations))
3191 fl->fl_break_time = jiffies;
3192 else
3193 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
3194 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04003195 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
3197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198static
3199int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
3200{
3201 if (arg & F_UNLCK)
3202 return lease_modify(onlist, arg);
3203 else
3204 return -EAGAIN;
3205}
3206
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003207static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04003208 .lm_break = nfsd_break_deleg_cb,
3209 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210};
3211
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003212static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
3213{
3214 if (nfsd4_has_session(cstate))
3215 return nfs_ok;
3216 if (seqid == so->so_seqid - 1)
3217 return nfserr_replay_me;
3218 if (seqid == so->so_seqid)
3219 return nfs_ok;
3220 return nfserr_bad_seqid;
3221}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Jeff Layton4b24ca72014-06-30 11:48:44 -04003223static __be32 lookup_clientid(clientid_t *clid,
3224 struct nfsd4_compound_state *cstate,
3225 struct nfsd_net *nn)
3226{
3227 struct nfs4_client *found;
3228
3229 if (cstate->clp) {
3230 found = cstate->clp;
3231 if (!same_clid(&found->cl_clientid, clid))
3232 return nfserr_stale_clientid;
3233 return nfs_ok;
3234 }
3235
3236 if (STALE_CLIENTID(clid, nn))
3237 return nfserr_stale_clientid;
3238
3239 /*
3240 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
3241 * cached already then we know this is for is for v4.0 and "sessions"
3242 * will be false.
3243 */
3244 WARN_ON_ONCE(cstate->session);
3245 found = find_confirmed_client(clid, false, nn);
3246 if (!found)
3247 return nfserr_expired;
3248
3249 /* Cache the nfs4_client in cstate! */
3250 cstate->clp = found;
3251 atomic_inc(&found->cl_refcount);
3252 return nfs_ok;
3253}
3254
Al Virob37ad282006-10-19 23:28:59 -07003255__be32
Andy Adamson66689582009-04-03 08:28:45 +03003256nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03003257 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 clientid_t *clientid = &open->op_clientid;
3260 struct nfs4_client *clp = NULL;
3261 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003262 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003263 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003265 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003267 /*
3268 * In case we need it later, after we've already created the
3269 * file and don't want to risk a further failure:
3270 */
3271 open->op_file = nfsd4_alloc_file();
3272 if (open->op_file == NULL)
3273 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Trond Myklebust2d91e892014-06-30 11:48:46 -04003275 status = lookup_clientid(clientid, cstate, nn);
3276 if (status)
3277 return status;
3278 clp = cstate->clp;
3279
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05003280 strhashval = ownerstr_hashval(clientid->cl_id, &open->op_owner);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003281 oo = find_openstateowner_str(strhashval, open, cstate->minorversion, nn);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003282 open->op_openowner = oo;
3283 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003284 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003286 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003287 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003288 release_openowner(oo);
3289 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003290 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003291 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003292 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
3293 if (status)
3294 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003295 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003296new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04003297 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04003298 if (oo == NULL)
3299 return nfserr_jukebox;
3300 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003301alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04003302 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003303 if (!open->op_stp)
3304 return nfserr_jukebox;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08003305 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306}
3307
Al Virob37ad282006-10-19 23:28:59 -07003308static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07003309nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
3310{
3311 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
3312 return nfserr_openmode;
3313 else
3314 return nfs_ok;
3315}
3316
Daniel Mackc47d8322011-05-16 16:38:14 +02003317static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04003318{
J. Bruce Fields24a01112010-05-18 20:01:35 -04003319 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
3320}
3321
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003322static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04003323{
3324 struct nfs4_stid *ret;
3325
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003326 ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04003327 if (!ret)
3328 return NULL;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003329 /* FIXME: move into find_stateid_by_type */
3330 atomic_inc(&ret->sc_count);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04003331 return delegstateid(ret);
3332}
3333
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003334static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
3335{
3336 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
3337 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
3338}
3339
Al Virob37ad282006-10-19 23:28:59 -07003340static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04003341nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07003342 struct nfs4_delegation **dp)
3343{
3344 int flags;
Al Virob37ad282006-10-19 23:28:59 -07003345 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003346 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07003347
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003348 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
3349 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07003350 goto out;
J. Bruce Fields24a01112010-05-18 20:01:35 -04003351 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003352 status = nfs4_check_delegmode(deleg, flags);
3353 if (status) {
3354 nfs4_put_stid(&deleg->dl_stid);
3355 goto out;
3356 }
3357 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003358out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003359 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07003360 return nfs_ok;
3361 if (status)
3362 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003363 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003364 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07003365}
3366
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003367static struct nfs4_ol_stateid *
3368nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003370 struct nfs4_ol_stateid *local, *ret = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003371 struct nfs4_openowner *oo = open->op_openowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Trond Myklebust1d31a252014-07-10 14:07:25 -04003373 spin_lock(&fp->fi_lock);
NeilBrown8beefa22005-06-23 22:03:08 -07003374 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 /* ignore lock owners */
3376 if (local->st_stateowner->so_is_open_owner == 0)
3377 continue;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003378 if (local->st_stateowner == &oo->oo_owner) {
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003379 ret = local;
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04003380 atomic_inc(&ret->st_stid.sc_count);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003381 break;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 }
Trond Myklebust1d31a252014-07-10 14:07:25 -04003384 spin_unlock(&fp->fi_lock);
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003385 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386}
3387
J. Bruce Fields21fb4012010-07-28 12:21:23 -04003388static inline int nfs4_access_to_access(u32 nfs4_access)
3389{
3390 int flags = 0;
3391
3392 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
3393 flags |= NFSD_MAY_READ;
3394 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
3395 flags |= NFSD_MAY_WRITE;
3396 return flags;
3397}
3398
Al Virob37ad282006-10-19 23:28:59 -07003399static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
3401 struct nfsd4_open *open)
3402{
3403 struct iattr iattr = {
3404 .ia_valid = ATTR_SIZE,
3405 .ia_size = 0,
3406 };
3407 if (!open->op_truncate)
3408 return 0;
3409 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08003410 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
3412}
3413
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003414static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003415 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
3416 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003417{
Trond Myklebustde186432014-07-10 14:07:26 -04003418 struct file *filp = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003419 __be32 status;
3420 int oflag = nfs4_access_to_omode(open->op_share_access);
3421 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003422 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003423
Trond Myklebustde186432014-07-10 14:07:26 -04003424 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003425
3426 /*
3427 * Are we trying to set a deny mode that would conflict with
3428 * current access?
3429 */
3430 status = nfs4_file_check_deny(fp, open->op_share_deny);
3431 if (status != nfs_ok) {
3432 spin_unlock(&fp->fi_lock);
3433 goto out;
3434 }
3435
3436 /* set access to the file */
3437 status = nfs4_file_get_access(fp, open->op_share_access);
3438 if (status != nfs_ok) {
3439 spin_unlock(&fp->fi_lock);
3440 goto out;
3441 }
3442
3443 /* Set access bits in stateid */
3444 old_access_bmap = stp->st_access_bmap;
3445 set_access(open->op_share_access, stp);
3446
3447 /* Set new deny mask */
3448 old_deny_bmap = stp->st_deny_bmap;
3449 set_deny(open->op_share_deny, stp);
3450 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3451
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003452 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04003453 spin_unlock(&fp->fi_lock);
3454 status = nfsd_open(rqstp, cur_fh, S_IFREG, access, &filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003455 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003456 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04003457 spin_lock(&fp->fi_lock);
3458 if (!fp->fi_fds[oflag]) {
3459 fp->fi_fds[oflag] = filp;
3460 filp = NULL;
3461 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003462 }
Trond Myklebustde186432014-07-10 14:07:26 -04003463 spin_unlock(&fp->fi_lock);
3464 if (filp)
3465 fput(filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003466
3467 status = nfsd4_truncate(rqstp, cur_fh, open);
3468 if (status)
3469 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003470out:
3471 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003472out_put_access:
3473 stp->st_access_bmap = old_access_bmap;
3474 nfs4_file_put_access(fp, open->op_share_access);
3475 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
3476 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003477}
3478
Al Virob37ad282006-10-19 23:28:59 -07003479static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003480nfs4_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 -07003481{
Al Virob37ad282006-10-19 23:28:59 -07003482 __be32 status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003483 unsigned char old_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003485 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003486 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04003487
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003488 /* test and set deny mode */
3489 spin_lock(&fp->fi_lock);
3490 status = nfs4_file_check_deny(fp, open->op_share_deny);
3491 if (status == nfs_ok) {
3492 old_deny_bmap = stp->st_deny_bmap;
3493 set_deny(open->op_share_deny, stp);
3494 fp->fi_share_deny |=
3495 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3496 }
3497 spin_unlock(&fp->fi_lock);
3498
3499 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003502 status = nfsd4_truncate(rqstp, cur_fh, open);
3503 if (status != nfs_ok)
3504 reset_union_bmap_deny(old_deny_bmap, stp);
3505 return status;
3506}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508static void
J. Bruce Fields1255a8f2012-03-06 14:35:16 -05003509nfs4_set_claim_prev(struct nfsd4_open *open, bool has_session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510{
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003511 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512}
3513
J. Bruce Fields14a24e92010-12-10 19:02:49 -05003514/* Should we give out recallable state?: */
3515static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
3516{
3517 if (clp->cl_cb_state == NFSD4_CB_UP)
3518 return true;
3519 /*
3520 * In the sessions case, since we don't have to establish a
3521 * separate connection for callbacks, we assume it's OK
3522 * until we hear otherwise:
3523 */
3524 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
3525}
3526
Jeff Laytond564fbe2014-07-16 10:31:58 -04003527static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003528{
3529 struct file_lock *fl;
3530
3531 fl = locks_alloc_lock();
3532 if (!fl)
3533 return NULL;
3534 locks_init_lock(fl);
3535 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04003536 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003537 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
3538 fl->fl_end = OFFSET_MAX;
Jeff Laytond564fbe2014-07-16 10:31:58 -04003539 fl->fl_owner = (fl_owner_t)fp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003540 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05003541 return fl;
3542}
3543
J. Bruce Fields99c41512013-05-21 16:21:25 -04003544static int nfs4_setlease(struct nfs4_delegation *dp)
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003545{
Trond Myklebust11b91642014-07-29 21:34:08 -04003546 struct nfs4_file *fp = dp->dl_stid.sc_file;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003547 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04003548 struct file *filp;
3549 int status = 0;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003550
Jeff Laytond564fbe2014-07-16 10:31:58 -04003551 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003552 if (!fl)
3553 return -ENOMEM;
Jeff Layton417c6622014-07-21 09:34:57 -04003554 filp = find_readable_file(fp);
3555 if (!filp) {
3556 /* We should always have a readable file here */
3557 WARN_ON_ONCE(1);
3558 return -EBADF;
3559 }
3560 fl->fl_file = filp;
3561 status = vfs_setlease(filp, fl->fl_type, &fl);
3562 if (status) {
3563 locks_free_lock(fl);
3564 goto out_fput;
3565 }
Benny Halevycdc97502014-05-30 09:09:30 -04003566 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003567 spin_lock(&fp->fi_lock);
3568 /* Did the lease get broken before we took the lock? */
3569 status = -EAGAIN;
3570 if (fp->fi_had_conflict)
3571 goto out_unlock;
3572 /* Race breaker */
3573 if (fp->fi_lease) {
3574 status = 0;
3575 atomic_inc(&fp->fi_delegees);
3576 hash_delegation_locked(dp, fp);
3577 goto out_unlock;
3578 }
3579 fp->fi_lease = fl;
3580 fp->fi_deleg_file = filp;
3581 atomic_set(&fp->fi_delegees, 1);
Benny Halevy931ee562014-05-30 09:09:27 -04003582 hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04003583 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04003584 spin_unlock(&state_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003585 return 0;
Jeff Layton417c6622014-07-21 09:34:57 -04003586out_unlock:
3587 spin_unlock(&fp->fi_lock);
3588 spin_unlock(&state_lock);
3589out_fput:
3590 fput(filp);
J. Bruce Fieldse8730882012-01-23 13:52:01 -05003591 return status;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003592}
3593
Jeff Layton0b266932014-07-25 07:34:25 -04003594static struct nfs4_delegation *
3595nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
3596 struct nfs4_file *fp)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003597{
Jeff Layton0b266932014-07-25 07:34:25 -04003598 int status;
3599 struct nfs4_delegation *dp;
Jeff Layton417c6622014-07-21 09:34:57 -04003600
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04003601 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04003602 return ERR_PTR(-EAGAIN);
3603
3604 dp = alloc_init_deleg(clp, fh);
3605 if (!dp)
3606 return ERR_PTR(-ENOMEM);
3607
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04003608 get_nfs4_file(fp);
Benny Halevycdc97502014-05-30 09:09:30 -04003609 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003610 spin_lock(&fp->fi_lock);
Trond Myklebust11b91642014-07-29 21:34:08 -04003611 dp->dl_stid.sc_file = fp;
Jeff Layton417c6622014-07-21 09:34:57 -04003612 if (!fp->fi_lease) {
3613 spin_unlock(&fp->fi_lock);
3614 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04003615 status = nfs4_setlease(dp);
3616 goto out;
Jeff Layton417c6622014-07-21 09:34:57 -04003617 }
J. Bruce Fieldscbf7a752014-03-03 12:19:18 -05003618 atomic_inc(&fp->fi_delegees);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003619 if (fp->fi_had_conflict) {
Jeff Layton417c6622014-07-21 09:34:57 -04003620 status = -EAGAIN;
3621 goto out_unlock;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003622 }
Benny Halevy931ee562014-05-30 09:09:27 -04003623 hash_delegation_locked(dp, fp);
Jeff Layton0b266932014-07-25 07:34:25 -04003624 status = 0;
Jeff Layton417c6622014-07-21 09:34:57 -04003625out_unlock:
3626 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04003627 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04003628out:
3629 if (status) {
Trond Myklebust60116952014-07-29 21:34:06 -04003630 nfs4_put_stid(&dp->dl_stid);
Jeff Layton0b266932014-07-25 07:34:25 -04003631 return ERR_PTR(status);
3632 }
3633 return dp;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05003634}
3635
Benny Halevy4aa89132012-02-21 14:16:44 -08003636static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
3637{
3638 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3639 if (status == -EAGAIN)
3640 open->op_why_no_deleg = WND4_CONTENTION;
3641 else {
3642 open->op_why_no_deleg = WND4_RESOURCE;
3643 switch (open->op_deleg_want) {
3644 case NFS4_SHARE_WANT_READ_DELEG:
3645 case NFS4_SHARE_WANT_WRITE_DELEG:
3646 case NFS4_SHARE_WANT_ANY_DELEG:
3647 break;
3648 case NFS4_SHARE_WANT_CANCEL:
3649 open->op_why_no_deleg = WND4_CANCELLED;
3650 break;
3651 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05003652 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08003653 }
3654 }
3655}
3656
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657/*
3658 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04003659 *
3660 * Note we don't support write delegations, and won't until the vfs has
3661 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 */
3663static void
Jeff Layton4cf59222014-07-25 07:34:24 -04003664nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
3665 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666{
3667 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04003668 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
3669 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05003670 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04003671 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003673 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07003674 open->op_recall = 0;
3675 switch (open->op_claim_type) {
3676 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05003677 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07003678 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04003679 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
3680 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003681 break;
3682 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00003683 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003684 /*
3685 * Let's not give out any delegations till everyone's
3686 * had the chance to reclaim theirs....
3687 */
Jeff Layton4cf59222014-07-25 07:34:24 -04003688 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04003689 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003690 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04003691 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04003692 /*
3693 * Also, if the file was opened for write or
3694 * create, there's a good chance the client's
3695 * about to write to it, resulting in an
3696 * immediate recall (since we don't support
3697 * write delegations):
3698 */
NeilBrown7b190fe2005-06-23 22:03:23 -07003699 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04003700 goto out_no_deleg;
3701 if (open->op_create == NFS4_OPEN_CREATE)
3702 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003703 break;
3704 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003705 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07003706 }
Trond Myklebust11b91642014-07-29 21:34:08 -04003707 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file);
Jeff Layton0b266932014-07-25 07:34:25 -04003708 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003709 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04003711 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003713 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04003714 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04003715 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04003716 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003717 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05003718out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04003719 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
3720 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04003721 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04003722 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04003723 open->op_recall = 1;
3724 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04003725
3726 /* 4.1 client asking for a delegation? */
3727 if (open->op_deleg_want)
3728 nfsd4_open_deleg_none_ext(open, status);
3729 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730}
3731
Benny Halevye27f49c2012-02-21 14:16:54 -08003732static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
3733 struct nfs4_delegation *dp)
3734{
3735 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
3736 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3737 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3738 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
3739 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
3740 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3741 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3742 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
3743 }
3744 /* Otherwise the client must be confused wanting a delegation
3745 * it already has, therefore we don't return
3746 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
3747 */
3748}
3749
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750/*
3751 * called with nfs4_lock_state() held.
3752 */
Al Virob37ad282006-10-19 23:28:59 -07003753__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
3755{
Andy Adamson66689582009-04-03 08:28:45 +03003756 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04003757 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003759 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07003760 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003761 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 /*
3764 * Lookup file; if found, lookup stateid and check open request,
3765 * and check for delegations in the process of being recalled.
3766 * If not found, create the nfs4_file struct
3767 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003768 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04003769 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04003770 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07003771 if (status)
3772 goto out;
Jeff Laytona46cb7f2014-07-10 14:07:35 -04003773 stp = nfsd4_find_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04003775 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07003776 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04003777 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07003778 goto out;
J. Bruce Fields3e772462011-08-10 19:07:33 -04003779 status = nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 }
3781
3782 /*
3783 * OPEN the file, or upgrade an existing OPEN.
3784 * If truncate fails, the OPEN fails.
3785 */
3786 if (stp) {
3787 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003788 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 if (status)
3790 goto out;
3791 } else {
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003792 stp = open->op_stp;
3793 open->op_stp = NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -04003794 init_open_stateid(stp, fp, open);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04003795 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
3796 if (status) {
3797 release_open_stateid(stp);
3798 goto out;
3799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 }
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003801 update_stateid(&stp->st_stid.sc_stateid);
3802 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Benny Halevyd24433c2012-02-16 20:57:17 +02003804 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02003805 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
3806 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3807 open->op_why_no_deleg = WND4_NOT_WANTED;
3808 goto nodeleg;
3809 }
3810 }
3811
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 /*
3813 * Attempt to hand out a delegation. No error return, because the
3814 * OPEN succeeds even if we fail.
3815 */
Jeff Layton4cf59222014-07-25 07:34:24 -04003816 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02003817nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 status = nfs_ok;
3819
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003820 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003821 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822out:
Benny Halevyd24433c2012-02-16 20:57:17 +02003823 /* 4.1 client trying to upgrade/downgrade delegation? */
3824 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08003825 open->op_deleg_want)
3826 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02003827
NeilBrown13cd2182005-06-23 22:03:10 -07003828 if (fp)
3829 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07003830 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fields1255a8f2012-03-06 14:35:16 -05003831 nfs4_set_claim_prev(open, nfsd4_has_session(&resp->cstate));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 /*
3833 * To finish the open response, we just need to set the rflags.
3834 */
3835 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04003836 if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
Andy Adamson66689582009-04-03 08:28:45 +03003837 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04003839 if (dp)
3840 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04003841 if (stp)
3842 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
3844 return status;
3845}
3846
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003847void nfsd4_cleanup_open_state(struct nfsd4_open *open, __be32 status)
3848{
3849 if (open->op_openowner) {
3850 struct nfs4_openowner *oo = open->op_openowner;
3851
3852 if (!list_empty(&oo->oo_owner.so_stateids))
3853 list_del_init(&oo->oo_close_lru);
3854 if (oo->oo_flags & NFS4_OO_NEW) {
3855 if (status) {
3856 release_openowner(oo);
3857 open->op_openowner = NULL;
3858 } else
3859 oo->oo_flags &= ~NFS4_OO_NEW;
3860 }
3861 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04003862 if (open->op_file)
3863 nfsd4_free_file(open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04003864 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04003865 nfs4_put_stid(&open->op_stp->st_stid);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04003866}
3867
Al Virob37ad282006-10-19 23:28:59 -07003868__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003869nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3870 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871{
3872 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07003873 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003874 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
3876 nfs4_lock_state();
3877 dprintk("process_renew(%08x/%08x): starting\n",
3878 clid->cl_boot, clid->cl_id);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003879 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05003880 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003882 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07003884 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04003885 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 goto out;
3887 status = nfs_ok;
3888out:
3889 nfs4_unlock_state();
3890 return status;
3891}
3892
NeilBrowna76b4312005-06-23 22:04:01 -07003893static void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003894nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07003895{
Jeff Layton33dcc482012-04-10 11:08:48 -04003896 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04003897 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04003898 return;
3899
NeilBrowna76b4312005-06-23 22:04:01 -07003900 dprintk("NFSD: end of grace period\n");
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04003901 nn->grace_ended = true;
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003902 nfsd4_record_grace_done(nn, nn->boot_time);
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04003903 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05003904 /*
3905 * Now that every NFSv4 client has had the chance to recover and
3906 * to see the (possibly new, possibly shorter) lease time, we
3907 * can safely set the next grace time to the current lease time:
3908 */
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03003909 nn->nfsd4_grace = nn->nfsd4_lease;
NeilBrowna76b4312005-06-23 22:04:01 -07003910}
3911
NeilBrownfd39ca92005-06-23 22:04:03 -07003912static time_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003913nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914{
3915 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003916 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 struct nfs4_delegation *dp;
3918 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03003919 time_t cutoff = get_seconds() - nn->nfsd4_lease;
Jeff Laytona832e7a2014-05-30 09:09:26 -04003920 time_t t, new_timeo = nn->nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
3922 nfs4_lock_state();
3923
3924 dprintk("NFSD: laundromat service - starting\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03003925 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03003926 INIT_LIST_HEAD(&reaplist);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003927 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03003928 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 clp = list_entry(pos, struct nfs4_client, cl_lru);
3930 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3931 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04003932 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 break;
3934 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003935 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03003936 dprintk("NFSD: client in use (clientid %08x)\n",
3937 clp->cl_clientid.cl_id);
3938 continue;
3939 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003940 list_move(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03003941 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003942 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03003943 list_for_each_safe(pos, next, &reaplist) {
3944 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 dprintk("NFSD: purging unused client (clientid %08x)\n",
3946 clp->cl_clientid.cl_id);
3947 expire_client(clp);
3948 }
Benny Halevycdc97502014-05-30 09:09:30 -04003949 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003950 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Stanislav Kinsbursky4e37a7c22012-11-26 15:22:03 +03003952 if (net_generic(dp->dl_stid.sc_client->net, nfsd_net_id) != nn)
3953 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04003955 t = dp->dl_time - cutoff;
3956 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 break;
3958 }
Jeff Layton42690672014-07-25 07:34:20 -04003959 unhash_delegation_locked(dp);
3960 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 }
Benny Halevycdc97502014-05-30 09:09:30 -04003962 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04003963 while (!list_empty(&reaplist)) {
3964 dp = list_first_entry(&reaplist, struct nfs4_delegation,
3965 dl_recall_lru);
3966 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003967 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 }
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003969 list_for_each_safe(pos, next, &nn->close_lru) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003970 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
3971 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04003972 t = oo->oo_time - cutoff;
3973 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 break;
3975 }
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003976 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 }
Jeff Laytona832e7a2014-05-30 09:09:26 -04003978 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 nfs4_unlock_state();
Jeff Laytona832e7a2014-05-30 09:09:26 -04003980 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981}
3982
Harvey Harrisona254b242008-02-20 12:49:00 -08003983static struct workqueue_struct *laundry_wq;
3984static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08003985
3986static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003987laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988{
3989 time_t t;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003990 struct delayed_work *dwork = container_of(laundry, struct delayed_work,
3991 work);
3992 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
3993 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003995 t = nfs4_laundromat(nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03003997 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998}
3999
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004000static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07004001{
Trond Myklebust11b91642014-07-29 21:34:08 -04004002 if (!nfsd_fh_match(&fhp->fh_handle, &stp->st_stid.sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004003 return nfserr_bad_stateid;
4004 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005}
4006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004008access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004010 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
4011 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
4012 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013}
4014
4015static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004016access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004018 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
4019 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020}
4021
4022static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004023__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024{
Al Virob37ad282006-10-19 23:28:59 -07004025 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
J. Bruce Fields02921912010-07-29 15:16:59 -04004027 /* For lock stateid's, we test the parent open, not the lock: */
4028 if (stp->st_openstp)
4029 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004030 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004032 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 goto out;
4034 status = nfs_ok;
4035out:
4036 return status;
4037}
4038
Al Virob37ad282006-10-19 23:28:59 -07004039static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004040check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004042 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 return nfs_ok;
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004044 else if (locks_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004045 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 * conflicting state; so we must wait out the grace period. */
4047 return nfserr_grace;
4048 } else if (flags & WR_STATE)
4049 return nfs4_share_conflict(current_fh,
4050 NFS4_SHARE_DENY_WRITE);
4051 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4052 return nfs4_share_conflict(current_fh,
4053 NFS4_SHARE_DENY_READ);
4054}
4055
4056/*
4057 * Allow READ/WRITE during grace period on recovered state only for files
4058 * that are not able to provide mandatory locking.
4059 */
4060static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004061grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062{
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004063 return locks_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064}
4065
J. Bruce Fields81b82962011-08-23 11:03:29 -04004066/* Returns true iff a is later than b: */
4067static bool stateid_generation_after(stateid_t *a, stateid_t *b)
4068{
Jim Rees1a9357f2013-05-17 17:33:00 -04004069 return (s32)(a->si_generation - b->si_generation) > 0;
J. Bruce Fields81b82962011-08-23 11:03:29 -04004070}
4071
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004072static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05004073{
Andy Adamson66689582009-04-03 08:28:45 +03004074 /*
4075 * When sessions are used the stateid generation number is ignored
4076 * when it is zero.
4077 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04004078 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04004079 return nfs_ok;
4080
4081 if (in->si_generation == ref->si_generation)
4082 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03004083
J. Bruce Fields0836f582008-01-26 19:08:12 -05004084 /* If the client sends us a stateid from the future, it's buggy: */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004085 if (stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05004086 return nfserr_bad_stateid;
4087 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04004088 * However, we could see a stateid from the past, even from a
4089 * non-buggy client. For example, if the client sends a lock
4090 * while some IO is outstanding, the lock may bump si_generation
4091 * while the IO is still in flight. The client could avoid that
4092 * situation by waiting for responses on all the IO requests,
4093 * but better performance may result in retrying IO that
4094 * receives an old_stateid error if requests are rarely
4095 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05004096 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004097 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05004098}
4099
Chuck Lever7df302f2012-05-29 13:56:37 -04004100static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04004101{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004102 struct nfs4_stid *s;
4103 struct nfs4_ol_stateid *ols;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004104 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04004105
Chuck Lever7df302f2012-05-29 13:56:37 -04004106 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004107 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004108 /* Client debugging aid. */
4109 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
4110 char addr_str[INET6_ADDRSTRLEN];
4111 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
4112 sizeof(addr_str));
4113 pr_warn_ratelimited("NFSD: client %s testing state ID "
4114 "with incorrect client ID\n", addr_str);
Jeff Layton1af71cc2014-07-29 21:34:14 -04004115 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004116 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004117 spin_lock(&cl->cl_lock);
4118 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004119 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004120 goto out_unlock;
J. Bruce Fields36279ac2011-09-26 12:53:00 -04004121 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04004122 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004123 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04004124 switch (s->sc_type) {
4125 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004126 status = nfs_ok;
4127 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004128 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004129 status = nfserr_deleg_revoked;
4130 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004131 case NFS4_OPEN_STID:
4132 case NFS4_LOCK_STID:
4133 ols = openlockstateid(s);
4134 if (ols->st_stateowner->so_is_open_owner
4135 && !(openowner(ols->st_stateowner)->oo_flags
4136 & NFS4_OO_CONFIRMED))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004137 status = nfserr_bad_stateid;
4138 else
4139 status = nfs_ok;
4140 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004141 default:
4142 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004143 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04004144 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004145 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004146 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04004147 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004148out_unlock:
4149 spin_unlock(&cl->cl_lock);
4150 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04004151}
4152
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004153static __be32
4154nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
4155 stateid_t *stateid, unsigned char typemask,
4156 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004157{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04004158 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004159
4160 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
4161 return nfserr_bad_stateid;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004162 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004163 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04004164 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004165 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004166 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04004167 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04004168 if (status)
4169 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004170 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004171 if (!*s)
4172 return nfserr_bad_stateid;
4173 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004174}
4175
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176/*
4177* Checks for stateid operations
4178*/
Al Virob37ad282006-10-19 23:28:59 -07004179__be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004180nfs4_preprocess_stateid_op(struct net *net, struct nfsd4_compound_state *cstate,
Benny Halevydd453df2009-04-03 08:28:41 +03004181 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182{
J. Bruce Fields69064a22011-09-09 11:54:57 -04004183 struct nfs4_stid *s;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004184 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03004186 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 struct inode *ino = current_fh->fh_dentry->d_inode;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004188 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Trond Myklebust14bcab12014-04-18 14:44:07 -04004189 struct file *file = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004190 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 if (filpp)
4193 *filpp = NULL;
4194
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004195 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 return nfserr_grace;
4197
4198 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004199 return check_special_stateids(net, current_fh, stateid, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Trond Myklebust14bcab12014-04-18 14:44:07 -04004201 nfs4_lock_state();
4202
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004203 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004204 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004205 &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004206 if (status)
Trond Myklebust14bcab12014-04-18 14:44:07 -04004207 goto out;
J. Bruce Fields69064a22011-09-09 11:54:57 -04004208 status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
4209 if (status)
4210 goto out;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004211 switch (s->sc_type) {
4212 case NFS4_DELEG_STID:
J. Bruce Fields69064a22011-09-09 11:54:57 -04004213 dp = delegstateid(s);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08004214 status = nfs4_check_delegmode(dp, flags);
4215 if (status)
4216 goto out;
Dan Carpenter43b01782010-10-27 23:19:04 +02004217 if (filpp) {
Trond Myklebust11b91642014-07-29 21:34:08 -04004218 file = dp->dl_stid.sc_file->fi_deleg_file;
Trond Myklebust14bcab12014-04-18 14:44:07 -04004219 if (!file) {
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004220 WARN_ON_ONCE(1);
4221 status = nfserr_serverfault;
4222 goto out;
4223 }
Trond Myklebustde186432014-07-10 14:07:26 -04004224 get_file(file);
Dan Carpenter43b01782010-10-27 23:19:04 +02004225 }
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004226 break;
4227 case NFS4_OPEN_STID:
4228 case NFS4_LOCK_STID:
J. Bruce Fields69064a22011-09-09 11:54:57 -04004229 stp = openlockstateid(s);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004230 status = nfs4_check_fh(current_fh, stp);
4231 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004233 if (stp->st_stateowner->so_is_open_owner
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004234 && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08004236 status = nfs4_check_openmode(stp, flags);
4237 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 goto out;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004239 if (filpp) {
Trond Myklebust11b91642014-07-29 21:34:08 -04004240 struct nfs4_file *fp = stp->st_stid.sc_file;
4241
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004242 if (flags & RD_STATE)
Trond Myklebust11b91642014-07-29 21:34:08 -04004243 file = find_readable_file(fp);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004244 else
Trond Myklebust11b91642014-07-29 21:34:08 -04004245 file = find_writeable_file(fp);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004246 }
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004247 break;
4248 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04004249 status = nfserr_bad_stateid;
4250 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 }
4252 status = nfs_ok;
Trond Myklebust14bcab12014-04-18 14:44:07 -04004253 if (file)
Trond Myklebustde186432014-07-10 14:07:26 -04004254 *filpp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255out:
Trond Myklebust14bcab12014-04-18 14:44:07 -04004256 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 return status;
4258}
4259
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004260static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004261nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004262{
J. Bruce Fieldsa1b8ff42014-05-20 15:55:21 -04004263 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
4264
Trond Myklebust11b91642014-07-29 21:34:08 -04004265 if (check_for_locks(stp->st_stid.sc_file, lo))
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004266 return nfserr_locks_held;
Jeff Laytonc53530d2014-06-30 11:48:39 -04004267 release_lockowner_if_empty(lo);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004268 return nfs_ok;
4269}
4270
4271/*
Bryan Schumaker17456802011-07-13 10:50:48 -04004272 * Test if the stateid is valid
4273 */
4274__be32
4275nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4276 struct nfsd4_test_stateid *test_stateid)
4277{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004278 struct nfsd4_test_stateid_id *stateid;
4279 struct nfs4_client *cl = cstate->session->se_client;
4280
4281 nfs4_lock_state();
4282 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04004283 stateid->ts_id_status =
4284 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004285 nfs4_unlock_state();
4286
Bryan Schumaker17456802011-07-13 10:50:48 -04004287 return nfs_ok;
4288}
4289
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004290__be32
4291nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4292 struct nfsd4_free_stateid *free_stateid)
4293{
4294 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004295 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004296 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004297 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004298 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004299
4300 nfs4_lock_state();
Jeff Layton1af71cc2014-07-29 21:34:14 -04004301 spin_lock(&cl->cl_lock);
4302 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004303 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004304 goto out_unlock;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004305 switch (s->sc_type) {
4306 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004307 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004308 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004309 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004310 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4311 if (ret)
4312 break;
4313 ret = nfserr_locks_held;
4314 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04004315 case NFS4_LOCK_STID:
4316 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4317 if (ret)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004318 break;
4319 spin_unlock(&cl->cl_lock);
4320 ret = nfsd4_free_lock_stateid(openlockstateid(s));
4321 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004322 case NFS4_REVOKED_DELEG_STID:
4323 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04004324 list_del_init(&dp->dl_recall_lru);
4325 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04004326 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004327 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004328 goto out;
4329 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004330 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004331out_unlock:
4332 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04004333out:
4334 nfs4_unlock_state();
4335 return ret;
4336}
4337
NeilBrown4c4cd222005-07-07 17:59:27 -07004338static inline int
4339setlkflg (int type)
4340{
4341 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
4342 RD_STATE : WR_STATE;
4343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004345static __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 -04004346{
4347 struct svc_fh *current_fh = &cstate->current_fh;
4348 struct nfs4_stateowner *sop = stp->st_stateowner;
4349 __be32 status;
4350
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004351 status = nfsd4_check_seqid(cstate, sop, seqid);
4352 if (status)
4353 return status;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004354 if (stp->st_stid.sc_type == NFS4_CLOSED_STID
4355 || stp->st_stid.sc_type == NFS4_REVOKED_DELEG_STID)
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004356 /*
4357 * "Closed" stateid's exist *only* to return
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004358 * nfserr_replay_me from the previous step, and
4359 * revoked delegations are kept only for free_stateid.
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004360 */
4361 return nfserr_bad_stateid;
4362 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
4363 if (status)
4364 return status;
4365 return nfs4_check_fh(current_fh, stp);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004366}
4367
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368/*
4369 * Checks for sequence id mutating operations.
4370 */
Al Virob37ad282006-10-19 23:28:59 -07004371static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03004372nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04004373 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004374 struct nfs4_ol_stateid **stpp,
4375 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376{
J. Bruce Fields0836f582008-01-26 19:08:12 -05004377 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004378 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004379 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004381 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
4382 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07004383
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004385 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004386 if (status)
4387 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004388 stp = openlockstateid(s);
J. Bruce Fields3d74e6a2013-03-22 17:44:19 -04004389 if (!nfsd4_has_session(cstate))
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004390 cstate->replay_owner = stp->st_stateowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
Trond Myklebuste17f99b2014-06-30 11:48:34 -04004392 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
4393 if (!status)
4394 *stpp = stp;
4395 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004396}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05004397
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004398static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
4399 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004400{
4401 __be32 status;
4402 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004404 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004405 NFS4_OPEN_STID, stpp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04004406 if (status)
4407 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004408 oo = openowner((*stpp)->st_stateowner);
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004409 if (!(oo->oo_flags & NFS4_OO_CONFIRMED))
NeilBrown3a4f98b2005-07-07 17:59:26 -07004410 return nfserr_bad_stateid;
NeilBrown3a4f98b2005-07-07 17:59:26 -07004411 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412}
4413
Al Virob37ad282006-10-19 23:28:59 -07004414__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004415nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004416 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417{
Al Virob37ad282006-10-19 23:28:59 -07004418 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004419 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004420 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004421 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422
Al Viroa6a9f182013-09-16 10:57:01 -04004423 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
4424 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004426 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07004427 if (status)
4428 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
4430 nfs4_lock_state();
4431
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004432 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004433 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004434 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004435 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004436 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004437 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004438 status = nfserr_bad_stateid;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004439 if (oo->oo_flags & NFS4_OO_CONFIRMED)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004440 goto out;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004441 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004442 update_stateid(&stp->st_stid.sc_stateid);
4443 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004444 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004445 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07004446
Jeff Layton2a4317c2012-03-21 16:42:43 -04004447 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04004448 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004450 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04004451 if (!cstate->replay_owner)
4452 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 return status;
4454}
4455
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004456static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004458 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004459 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04004460 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04004461 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004462}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04004463
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004464static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
4465{
4466 switch (to_access) {
4467 case NFS4_SHARE_ACCESS_READ:
4468 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
4469 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4470 break;
4471 case NFS4_SHARE_ACCESS_WRITE:
4472 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
4473 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4474 break;
4475 case NFS4_SHARE_ACCESS_BOTH:
4476 break;
4477 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004478 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 }
4480}
4481
Al Virob37ad282006-10-19 23:28:59 -07004482__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004483nfsd4_open_downgrade(struct svc_rqst *rqstp,
4484 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004485 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486{
Al Virob37ad282006-10-19 23:28:59 -07004487 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004488 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004489 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
Al Viroa6a9f182013-09-16 10:57:01 -04004491 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
4492 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04004494 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02004495 if (od->od_deleg_want)
4496 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
4497 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498
4499 nfs4_lock_state();
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004500 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004501 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004502 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004505 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04004506 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 stp->st_access_bmap, od->od_share_access);
4508 goto out;
4509 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04004510 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04004511 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 stp->st_deny_bmap, od->od_share_deny);
4513 goto out;
4514 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04004515 nfs4_stateid_downgrade(stp, od->od_share_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
Jeff Laytonce0fc432012-05-11 09:45:14 -04004517 reset_union_bmap_deny(od->od_share_deny, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004519 update_stateid(&stp->st_stid.sc_stateid);
4520 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 status = nfs_ok;
4522out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004523 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04004524 if (!cstate->replay_owner)
4525 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 return status;
4527}
4528
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004529static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
4530{
Trond Myklebustacf92952014-06-30 11:48:37 -04004531 struct nfs4_client *clp = s->st_stid.sc_client;
4532 struct nfs4_openowner *oo = openowner(s->st_stateowner);
4533
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004534 s->st_stid.sc_type = NFS4_CLOSED_STID;
Trond Myklebustacf92952014-06-30 11:48:37 -04004535 unhash_open_stateid(s);
4536
4537 if (clp->cl_minorversion) {
Trond Myklebustacf92952014-06-30 11:48:37 -04004538 if (list_empty(&oo->oo_owner.so_stateids))
4539 release_openowner(oo);
Trond Myklebust60116952014-07-29 21:34:06 -04004540 nfs4_put_stid(&s->st_stid);
Trond Myklebustacf92952014-06-30 11:48:37 -04004541 } else {
Trond Myklebust60116952014-07-29 21:34:06 -04004542 /*
4543 * In the 4.0 case we need to keep the owners around a
4544 * little while to handle CLOSE replay. We still do need
4545 * to release any file access that is held by them
4546 * before returning however.
4547 */
4548 release_all_access(s);
Trond Myklebust11b91642014-07-29 21:34:08 -04004549 if (s->st_stid.sc_file) {
4550 put_nfs4_file(s->st_stid.sc_file);
4551 s->st_stid.sc_file = NULL;
Trond Myklebustf8338832014-07-25 07:34:19 -04004552 }
Trond Myklebustacf92952014-06-30 11:48:37 -04004553 oo->oo_last_closed_stid = s;
Trond Myklebustacf92952014-06-30 11:48:37 -04004554 if (list_empty(&oo->oo_owner.so_stateids))
4555 move_to_close_lru(oo, clp->net);
4556 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04004557}
4558
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559/*
4560 * nfs4_unlock_state() called after encode
4561 */
Al Virob37ad282006-10-19 23:28:59 -07004562__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004563nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004564 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565{
Al Virob37ad282006-10-19 23:28:59 -07004566 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004567 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004568 struct net *net = SVC_NET(rqstp);
4569 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Al Viroa6a9f182013-09-16 10:57:01 -04004571 dprintk("NFSD: nfsd4_close on file %pd\n",
4572 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574 nfs4_lock_state();
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004575 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
4576 &close->cl_stateid,
4577 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004578 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04004579 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004580 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 goto out;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004582 update_stateid(&stp->st_stid.sc_stateid);
4583 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004585 nfsd4_close_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586out:
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04004587 if (!cstate->replay_owner)
4588 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 return status;
4590}
4591
Al Virob37ad282006-10-19 23:28:59 -07004592__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004593nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4594 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004596 struct nfs4_delegation *dp;
4597 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004598 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07004599 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004600 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004602 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004603 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
4605 nfs4_lock_state();
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004606 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004607 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004608 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004609 dp = delegstateid(s);
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004610 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004611 if (status)
4612 goto out;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004613
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004614 destroy_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004616 nfs4_unlock_state();
4617
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 return status;
4619}
4620
4621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
Benny Halevy87df4de2008-12-15 19:42:03 +02004624static inline u64
4625end_offset(u64 start, u64 len)
4626{
4627 u64 end;
4628
4629 end = start + len;
4630 return end >= start ? end: NFS4_MAX_UINT64;
4631}
4632
4633/* last octet in a range */
4634static inline u64
4635last_byte_offset(u64 start, u64 len)
4636{
4637 u64 end;
4638
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004639 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02004640 end = start + len;
4641 return end > start ? end - 1: NFS4_MAX_UINT64;
4642}
4643
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644/*
4645 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
4646 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
4647 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
4648 * locking, this prevents us from being completely protocol-compliant. The
4649 * real solution to this problem is to start using unsigned file offsets in
4650 * the VFS, but this is a very deep change!
4651 */
4652static inline void
4653nfs4_transform_lock_offset(struct file_lock *lock)
4654{
4655 if (lock->fl_start < 0)
4656 lock->fl_start = OFFSET_MAX;
4657 if (lock->fl_end < 0)
4658 lock->fl_end = OFFSET_MAX;
4659}
4660
NeilBrownd5b90262006-04-10 22:55:22 -07004661/* Hack!: For now, we're defining this just so we can use a pointer to it
4662 * as a unique cookie to identify our (NFSv4's) posix locks. */
Alexey Dobriyan7b021962009-09-21 17:01:12 -07004663static const struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07004664};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
4666static inline void
4667nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
4668{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004669 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
NeilBrownd5b90262006-04-10 22:55:22 -07004671 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004672 lo = (struct nfs4_lockowner *) fl->fl_owner;
4673 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
4674 lo->lo_owner.so_owner.len, GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04004675 if (!deny->ld_owner.data)
4676 /* We just don't care that much */
4677 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004678 deny->ld_owner.len = lo->lo_owner.so_owner.len;
4679 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07004680 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04004681nevermind:
4682 deny->ld_owner.len = 0;
4683 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07004684 deny->ld_clientid.cl_boot = 0;
4685 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 }
4687 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02004688 deny->ld_length = NFS4_MAX_UINT64;
4689 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 deny->ld_length = fl->fl_end - fl->fl_start + 1;
4691 deny->ld_type = NFS4_READ_LT;
4692 if (fl->fl_type != F_RDLCK)
4693 deny->ld_type = NFS4_WRITE_LT;
4694}
4695
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004696static struct nfs4_lockowner *
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004697find_lockowner_str(clientid_t *clid, struct xdr_netobj *owner,
4698 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699{
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004700 unsigned int strhashval = ownerstr_hashval(clid->cl_id, owner);
4701 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004703 list_for_each_entry(so, &nn->ownerstr_hashtbl[strhashval], so_strhash) {
4704 if (so->so_is_open_owner)
4705 continue;
4706 if (!same_owner_str(so, owner, clid))
4707 continue;
4708 return lockowner(so);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 }
4710 return NULL;
4711}
4712
4713/*
4714 * Alloc a lock owner structure.
4715 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004716 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05004718 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004720static struct nfs4_lockowner *
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004721alloc_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 -04004722 struct nfs4_lockowner *lo;
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004723 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004725 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
4726 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 return NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004728 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
4729 lo->lo_owner.so_is_open_owner = 0;
Neil Brownb59e3c02005-09-13 01:25:38 -07004730 /* It is the openowner seqid that will be incremented in encode in the
4731 * case of new lockowners; so increment the lock seqid manually: */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004732 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004733 list_add(&lo->lo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004734 return lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735}
4736
Jeff Layton356a95e2014-07-29 21:34:13 -04004737static void
4738init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
4739 struct nfs4_file *fp, struct inode *inode,
4740 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04004742 struct nfs4_client *clp = lo->lo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Jeff Layton356a95e2014-07-29 21:34:13 -04004744 lockdep_assert_held(&clp->cl_lock);
4745
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004746 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05004747 stp->st_stid.sc_type = NFS4_LOCK_STID;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004748 stp->st_stateowner = &lo->lo_owner;
NeilBrown13cd2182005-06-23 22:03:10 -07004749 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04004750 stp->st_stid.sc_file = fp;
Jeff Laytonb49e0842014-07-29 21:34:11 -04004751 stp->st_stid.sc_free = nfs4_free_lock_stateid;
J. Bruce Fields0997b172011-03-02 18:01:35 -05004752 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07004754 stp->st_openstp = open_stp;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04004755 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04004756 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004757 spin_lock(&fp->fi_lock);
4758 list_add(&stp->st_perfile, &fp->fi_stateids);
4759 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760}
4761
Jeff Laytonc53530d2014-06-30 11:48:39 -04004762static struct nfs4_ol_stateid *
4763find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
4764{
4765 struct nfs4_ol_stateid *lst;
Jeff Layton356a95e2014-07-29 21:34:13 -04004766 struct nfs4_client *clp = lo->lo_owner.so_client;
4767
4768 lockdep_assert_held(&clp->cl_lock);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004769
4770 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004771 if (lst->st_stid.sc_file == fp) {
4772 atomic_inc(&lst->st_stid.sc_count);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004773 return lst;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004774 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04004775 }
4776 return NULL;
4777}
4778
Jeff Layton356a95e2014-07-29 21:34:13 -04004779static struct nfs4_ol_stateid *
4780find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
4781 struct inode *inode, struct nfs4_ol_stateid *ost,
4782 bool *new)
4783{
4784 struct nfs4_stid *ns = NULL;
4785 struct nfs4_ol_stateid *lst;
4786 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4787 struct nfs4_client *clp = oo->oo_owner.so_client;
4788
4789 spin_lock(&clp->cl_lock);
4790 lst = find_lock_stateid(lo, fi);
4791 if (lst == NULL) {
4792 spin_unlock(&clp->cl_lock);
4793 ns = nfs4_alloc_stid(clp, stateid_slab);
4794 if (ns == NULL)
4795 return NULL;
4796
4797 spin_lock(&clp->cl_lock);
4798 lst = find_lock_stateid(lo, fi);
4799 if (likely(!lst)) {
4800 lst = openlockstateid(ns);
4801 init_lock_stateid(lst, lo, fi, inode, ost);
4802 ns = NULL;
4803 *new = true;
4804 }
4805 }
4806 spin_unlock(&clp->cl_lock);
4807 if (ns)
4808 nfs4_put_stid(ns);
4809 return lst;
4810}
Jeff Laytonc53530d2014-06-30 11:48:39 -04004811
NeilBrownfd39ca92005-06-23 22:04:03 -07004812static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813check_lock_length(u64 offset, u64 length)
4814{
Benny Halevy87df4de2008-12-15 19:42:03 +02004815 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 LOFF_OVERFLOW(offset, length)));
4817}
4818
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004819static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05004820{
Trond Myklebust11b91642014-07-29 21:34:08 -04004821 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05004822
Jeff Layton7214e862014-07-10 14:07:33 -04004823 lockdep_assert_held(&fp->fi_lock);
4824
Jeff Layton82c5ff12012-05-11 09:45:13 -04004825 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05004826 return;
Jeff Layton12659652014-07-10 14:07:28 -04004827 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04004828 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05004829}
4830
Jeff Layton356a95e2014-07-29 21:34:13 -04004831static __be32
4832lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
4833 struct nfs4_ol_stateid *ost,
4834 struct nfsd4_lock *lock,
4835 struct nfs4_ol_stateid **lst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004836{
Trond Myklebust11b91642014-07-29 21:34:08 -04004837 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004838 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4839 struct nfs4_client *cl = oo->oo_owner.so_client;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004840 struct inode *inode = cstate->current_fh.fh_dentry->d_inode;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004841 struct nfs4_lockowner *lo;
4842 unsigned int strhashval;
Stanislav Kinsbursky20e9e2b2012-11-14 18:21:46 +03004843 struct nfsd_net *nn = net_generic(cl->net, nfsd_net_id);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004844
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04004845 lo = find_lockowner_str(&cl->cl_clientid, &lock->v.new.owner, nn);
Jeff Laytonc53530d2014-06-30 11:48:39 -04004846 if (!lo) {
4847 strhashval = ownerstr_hashval(cl->cl_clientid.cl_id,
4848 &lock->v.new.owner);
4849 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
4850 if (lo == NULL)
4851 return nfserr_jukebox;
4852 } else {
4853 /* with an existing lockowner, seqids must be the same */
4854 if (!cstate->minorversion &&
4855 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004856 return nfserr_bad_seqid;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004857 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04004858
Jeff Layton356a95e2014-07-29 21:34:13 -04004859 *lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004860 if (*lst == NULL) {
Jeff Layton356a95e2014-07-29 21:34:13 -04004861 release_lockowner_if_empty(lo);
4862 return nfserr_jukebox;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004863 }
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004864 return nfs_ok;
4865}
4866
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867/*
4868 * LOCK operation
4869 */
Al Virob37ad282006-10-19 23:28:59 -07004870__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004871nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004872 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004874 struct nfs4_openowner *open_sop = NULL;
4875 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004876 struct nfs4_ol_stateid *lock_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04004877 struct nfs4_file *fp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04004878 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04004879 struct file_lock *file_lock = NULL;
4880 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004881 __be32 status = 0;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004882 bool new_state = false;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004883 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07004884 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004885 struct net *net = SVC_NET(rqstp);
4886 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
4888 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
4889 (long long) lock->lk_offset,
4890 (long long) lock->lk_length);
4891
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 if (check_lock_length(lock->lk_offset, lock->lk_length))
4893 return nfserr_inval;
4894
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004895 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02004896 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08004897 dprintk("NFSD: nfsd4_lock: permission denied!\n");
4898 return status;
4899 }
4900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 nfs4_lock_state();
4902
4903 if (lock->lk_is_new) {
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004904 struct nfs4_ol_stateid *open_stp = NULL;
J. Bruce Fields684e5632011-11-04 17:08:10 -04004905
4906 if (nfsd4_has_session(cstate))
4907 /* See rfc 5661 18.10.3: given clientid is ignored: */
4908 memcpy(&lock->v.new.clientid,
4909 &cstate->session->se_client->cl_clientid,
4910 sizeof(clientid_t));
4911
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004913 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04004917 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 lock->lk_new_open_seqid,
4919 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004920 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07004921 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004923 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004924 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04004925 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004926 &lock->v.new.clientid))
4927 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004928 status = lookup_or_create_lock_state(cstate, open_stp, lock,
4929 &lock_stp, &new_state);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004930 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03004931 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004932 lock->lk_old_lock_seqid,
4933 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004934 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04004935 /* FIXME: move into nfs4_preprocess_seqid_op */
4936 if (!status)
4937 atomic_inc(&lock_stp->st_stid.sc_count);
4938 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04004939 if (status)
4940 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04004941 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004943 lkflg = setlkflg(lock->lk_type);
4944 status = nfs4_check_openmode(lock_stp, lkflg);
4945 if (status)
4946 goto out;
4947
NeilBrown0dd395d2005-07-07 17:59:15 -07004948 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004949 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004950 goto out;
4951 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004952 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004953 goto out;
4954
Jeff Layton21179d82012-08-21 08:03:32 -04004955 file_lock = locks_alloc_lock();
4956 if (!file_lock) {
4957 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4958 status = nfserr_jukebox;
4959 goto out;
4960 }
4961
Trond Myklebust11b91642014-07-29 21:34:08 -04004962 fp = lock_stp->st_stid.sc_file;
Jeff Layton21179d82012-08-21 08:03:32 -04004963 locks_init_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 switch (lock->lk_type) {
4965 case NFS4_READ_LT:
4966 case NFS4_READW_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04004967 spin_lock(&fp->fi_lock);
4968 filp = find_readable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05004969 if (filp)
4970 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04004971 spin_unlock(&fp->fi_lock);
Jeff Layton21179d82012-08-21 08:03:32 -04004972 file_lock->fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004973 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 case NFS4_WRITE_LT:
4975 case NFS4_WRITEW_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04004976 spin_lock(&fp->fi_lock);
4977 filp = find_writeable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05004978 if (filp)
4979 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04004980 spin_unlock(&fp->fi_lock);
Jeff Layton21179d82012-08-21 08:03:32 -04004981 file_lock->fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004982 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 default:
4984 status = nfserr_inval;
4985 goto out;
4986 }
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004987 if (!filp) {
4988 status = nfserr_openmode;
4989 goto out;
4990 }
Jeff Layton21179d82012-08-21 08:03:32 -04004991 file_lock->fl_owner = (fl_owner_t)lock_sop;
4992 file_lock->fl_pid = current->tgid;
4993 file_lock->fl_file = filp;
4994 file_lock->fl_flags = FL_POSIX;
4995 file_lock->fl_lmops = &nfsd_posix_mng_ops;
4996 file_lock->fl_start = lock->lk_offset;
4997 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
4998 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999
Jeff Layton21179d82012-08-21 08:03:32 -04005000 conflock = locks_alloc_lock();
5001 if (!conflock) {
5002 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5003 status = nfserr_jukebox;
5004 goto out;
5005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006
Jeff Layton21179d82012-08-21 08:03:32 -04005007 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07005008 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 case 0: /* success! */
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005010 update_stateid(&lock_stp->st_stid.sc_stateid);
5011 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07005013 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005014 break;
5015 case (EAGAIN): /* conflock holds conflicting lock */
5016 status = nfserr_denied;
5017 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04005018 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 case (EDEADLK):
5021 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005022 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04005023 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05005024 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04005025 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08005026 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028out:
Trond Myklebustde186432014-07-10 14:07:26 -04005029 if (filp)
5030 fput(filp);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005031 if (lock_stp)
5032 nfs4_put_stid(&lock_stp->st_stid);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005033 if (status && new_state)
Jeff Laytonc53530d2014-06-30 11:48:39 -04005034 release_lock_stateid(lock_stp);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005035 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04005036 if (!cstate->replay_owner)
5037 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005038 if (file_lock)
5039 locks_free_lock(file_lock);
5040 if (conflock)
5041 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 return status;
5043}
5044
5045/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005046 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
5047 * so we do a temporary open here just to get an open file to pass to
5048 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
5049 * inode operation.)
5050 */
Al Viro04da6e92012-04-13 00:00:04 -04005051static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005052{
5053 struct file *file;
Al Viro04da6e92012-04-13 00:00:04 -04005054 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
5055 if (!err) {
5056 err = nfserrno(vfs_test_lock(file, lock));
5057 nfsd_close(file);
5058 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08005059 return err;
5060}
5061
5062/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 * LOCKT operation
5064 */
Al Virob37ad282006-10-19 23:28:59 -07005065__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005066nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5067 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068{
Jeff Layton21179d82012-08-21 08:03:32 -04005069 struct file_lock *file_lock = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005070 struct nfs4_lockowner *lo;
Al Virob37ad282006-10-19 23:28:59 -07005071 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005072 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005074 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 return nfserr_grace;
5076
5077 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
5078 return nfserr_inval;
5079
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 nfs4_lock_state();
5081
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005082 if (!nfsd4_has_session(cstate)) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005083 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005084 if (status)
5085 goto out;
5086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
J. Bruce Fields75c096f2011-08-15 18:39:32 -04005088 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
Jeff Layton21179d82012-08-21 08:03:32 -04005091 file_lock = locks_alloc_lock();
5092 if (!file_lock) {
5093 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5094 status = nfserr_jukebox;
5095 goto out;
5096 }
5097 locks_init_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 switch (lockt->lt_type) {
5099 case NFS4_READ_LT:
5100 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04005101 file_lock->fl_type = F_RDLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 break;
5103 case NFS4_WRITE_LT:
5104 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04005105 file_lock->fl_type = F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 break;
5107 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04005108 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 status = nfserr_inval;
5110 goto out;
5111 }
5112
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005113 lo = find_lockowner_str(&lockt->lt_clientid, &lockt->lt_owner, nn);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005114 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04005115 file_lock->fl_owner = (fl_owner_t)lo;
5116 file_lock->fl_pid = current->tgid;
5117 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
Jeff Layton21179d82012-08-21 08:03:32 -04005119 file_lock->fl_start = lockt->lt_offset;
5120 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
Jeff Layton21179d82012-08-21 08:03:32 -04005122 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123
Jeff Layton21179d82012-08-21 08:03:32 -04005124 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04005125 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05005126 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04005127
Jeff Layton21179d82012-08-21 08:03:32 -04005128 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04005130 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 }
5132out:
5133 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005134 if (file_lock)
5135 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 return status;
5137}
5138
Al Virob37ad282006-10-19 23:28:59 -07005139__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005140nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005141 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005143 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04005145 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005146 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07005147 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005148 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
5149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
5151 (long long) locku->lu_offset,
5152 (long long) locku->lu_length);
5153
5154 if (check_lock_length(locku->lu_offset, locku->lu_length))
5155 return nfserr_inval;
5156
5157 nfs4_lock_state();
5158
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005159 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005160 &locku->lu_stateid, NFS4_LOCK_STID,
5161 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005162 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 goto out;
Trond Myklebust858cc572014-07-29 21:34:16 -04005164 /* FIXME: move into nfs4_preprocess_seqid_op */
5165 atomic_inc(&stp->st_stid.sc_count);
Trond Myklebust11b91642014-07-29 21:34:08 -04005166 filp = find_any_file(stp->st_stid.sc_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005167 if (!filp) {
5168 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04005169 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005170 }
Jeff Layton21179d82012-08-21 08:03:32 -04005171 file_lock = locks_alloc_lock();
5172 if (!file_lock) {
5173 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5174 status = nfserr_jukebox;
Trond Myklebustde186432014-07-10 14:07:26 -04005175 goto fput;
Jeff Layton21179d82012-08-21 08:03:32 -04005176 }
5177 locks_init_lock(file_lock);
5178 file_lock->fl_type = F_UNLCK;
J. Bruce Fields0a262ff2013-06-17 17:29:40 -04005179 file_lock->fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
Jeff Layton21179d82012-08-21 08:03:32 -04005180 file_lock->fl_pid = current->tgid;
5181 file_lock->fl_file = filp;
5182 file_lock->fl_flags = FL_POSIX;
5183 file_lock->fl_lmops = &nfsd_posix_mng_ops;
5184 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
Jeff Layton21179d82012-08-21 08:03:32 -04005186 file_lock->fl_end = last_byte_offset(locku->lu_offset,
5187 locku->lu_length);
5188 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189
Jeff Layton21179d82012-08-21 08:03:32 -04005190 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07005191 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05005192 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 goto out_nfserr;
5194 }
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005195 update_stateid(&stp->st_stid.sc_stateid);
5196 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
Trond Myklebustde186432014-07-10 14:07:26 -04005197fput:
5198 fput(filp);
Trond Myklebust858cc572014-07-29 21:34:16 -04005199put_stateid:
5200 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005202 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields71c3bcd2011-09-27 21:42:29 -04005203 if (!cstate->replay_owner)
5204 nfs4_unlock_state();
Jeff Layton21179d82012-08-21 08:03:32 -04005205 if (file_lock)
5206 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 return status;
5208
5209out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07005210 status = nfserrno(err);
Trond Myklebustde186432014-07-10 14:07:26 -04005211 goto fput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212}
5213
5214/*
5215 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005216 * true: locks held by lockowner
5217 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005219static bool
5220check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221{
5222 struct file_lock **flpp;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005223 int status = false;
5224 struct file *filp = find_any_file(fp);
5225 struct inode *inode;
5226
5227 if (!filp) {
5228 /* Any valid lock stateid should have some sort of access */
5229 WARN_ON_ONCE(1);
5230 return status;
5231 }
5232
5233 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
Jeff Layton1c8c6012013-06-21 08:58:15 -04005235 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08005237 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005238 status = true;
5239 break;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08005240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04005242 spin_unlock(&inode->i_lock);
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005243 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 return status;
5245}
5246
Al Virob37ad282006-10-19 23:28:59 -07005247__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08005248nfsd4_release_lockowner(struct svc_rqst *rqstp,
5249 struct nfsd4_compound_state *cstate,
5250 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251{
5252 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Laytonfd449072014-06-30 11:48:41 -04005253 struct nfs4_stateowner *sop = NULL, *tmp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005254 struct nfs4_lockowner *lo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005255 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 struct xdr_netobj *owner = &rlockowner->rl_owner;
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005257 unsigned int hashval = ownerstr_hashval(clid->cl_id, owner);
Al Virob37ad282006-10-19 23:28:59 -07005258 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005259 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260
5261 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
5262 clid->cl_boot, clid->cl_id);
5263
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 nfs4_lock_state();
5265
Jeff Layton4b24ca72014-06-30 11:48:44 -04005266 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005267 if (status)
5268 goto out;
5269
NeilBrown3e9e3db2005-06-23 22:04:20 -07005270 status = nfserr_locks_held;
J. Bruce Fields06f1f862011-11-07 16:58:18 -05005271
Jeff Laytonfd449072014-06-30 11:48:41 -04005272 /* Find the matching lock stateowner */
5273 list_for_each_entry(tmp, &nn->ownerstr_hashtbl[hashval], so_strhash) {
5274 if (tmp->so_is_open_owner)
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005275 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04005276 if (same_owner_str(tmp, owner, clid)) {
5277 sop = tmp;
5278 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07005280 }
Jeff Laytonfd449072014-06-30 11:48:41 -04005281
5282 /* No matching owner found, maybe a replay? Just declare victory... */
5283 if (!sop) {
5284 status = nfs_ok;
5285 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 }
Jeff Laytonfd449072014-06-30 11:48:41 -04005287
5288 lo = lockowner(sop);
5289 /* see if there are still any locks associated with it */
5290 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
Trond Myklebust11b91642014-07-29 21:34:08 -04005291 if (check_for_locks(stp->st_stid.sc_file, lo))
Jeff Laytonfd449072014-06-30 11:48:41 -04005292 goto out;
5293 }
5294
5295 status = nfs_ok;
5296 release_lockowner(lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297out:
5298 nfs4_unlock_state();
5299 return status;
5300}
5301
5302static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07005303alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304{
NeilBrowna55370a2005-06-23 22:03:52 -07005305 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306}
5307
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005308bool
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005309nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07005310{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005311 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07005312
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005313 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005314 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07005315}
5316
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317/*
5318 * failure => all reset bets are off, nfserr_no_grace...
5319 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05005320struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005321nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322{
5323 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05005324 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325
NeilBrowna55370a2005-06-23 22:03:52 -07005326 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
5327 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05005328 if (crp) {
5329 strhashval = clientstr_hashval(name);
5330 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005331 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Jeff Layton772a9bb2012-11-12 15:00:54 -05005332 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05005333 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005334 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05005335 }
5336 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337}
5338
Jeff Layton2a4317c2012-03-21 16:42:43 -04005339void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005340nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05005341{
5342 list_del(&crp->cr_strhash);
5343 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005344 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05005345}
5346
5347void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005348nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349{
5350 struct nfs4_client_reclaim *crp = NULL;
5351 int i;
5352
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005354 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
5355 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005357 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 }
5359 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005360 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361}
5362
5363/*
5364 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04005365struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005366nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367{
5368 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 struct nfs4_client_reclaim *crp = NULL;
5370
Jeff Layton278c9312012-11-12 15:00:52 -05005371 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
Jeff Layton278c9312012-11-12 15:00:52 -05005373 strhashval = clientstr_hashval(recdir);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03005374 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Jeff Layton278c9312012-11-12 15:00:52 -05005375 if (same_name(crp->cr_recdir, recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 return crp;
5377 }
5378 }
5379 return NULL;
5380}
5381
5382/*
5383* Called from OPEN. Look for clientid in reclaim list.
5384*/
Al Virob37ad282006-10-19 23:28:59 -07005385__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005386nfs4_check_open_reclaim(clientid_t *clid,
5387 struct nfsd4_compound_state *cstate,
5388 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005390 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04005391
5392 /* find clientid in conf_id_hashtbl */
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005393 status = lookup_clientid(clid, cstate, nn);
5394 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04005395 return nfserr_reclaim_bad;
5396
Trond Myklebust0fe492d2014-06-30 11:48:47 -04005397 if (nfsd4_client_record_check(cstate->clp))
5398 return nfserr_reclaim_bad;
5399
5400 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401}
5402
Bryan Schumaker65178db2011-11-01 13:35:21 -04005403#ifdef CONFIG_NFSD_FAULT_INJECTION
5404
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005405u64 nfsd_forget_client(struct nfs4_client *clp, u64 max)
5406{
J. Bruce Fields221a6872013-04-01 22:23:49 -04005407 if (mark_client_expired(clp))
5408 return 0;
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005409 expire_client(clp);
5410 return 1;
5411}
5412
Bryan Schumaker184c1842012-11-29 11:40:44 -05005413u64 nfsd_print_client(struct nfs4_client *clp, u64 num)
5414{
5415 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05005416 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05005417 printk(KERN_INFO "NFS Client: %s\n", buf);
5418 return 1;
5419}
5420
5421static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
5422 const char *type)
5423{
5424 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05005425 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05005426 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
5427}
5428
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005429static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
5430 void (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05005431{
5432 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05005433 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005434 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05005435 u64 count = 0;
5436
5437 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005438 list_for_each_entry_safe(stp, st_next,
5439 &oop->oo_owner.so_stateids, st_perstateowner) {
5440 list_for_each_entry_safe(lst, lst_next,
5441 &stp->st_locks, st_locks) {
Bryan Schumakerfc291712012-11-29 11:40:40 -05005442 if (func)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005443 func(lst);
Bryan Schumakerfc291712012-11-29 11:40:40 -05005444 if (++count == max)
5445 return count;
5446 }
5447 }
5448 }
5449
5450 return count;
5451}
5452
5453u64 nfsd_forget_client_locks(struct nfs4_client *clp, u64 max)
5454{
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005455 return nfsd_foreach_client_lock(clp, max, release_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05005456}
5457
Bryan Schumaker184c1842012-11-29 11:40:44 -05005458u64 nfsd_print_client_locks(struct nfs4_client *clp, u64 max)
5459{
5460 u64 count = nfsd_foreach_client_lock(clp, max, NULL);
5461 nfsd_print_count(clp, count, "locked files");
5462 return count;
5463}
5464
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05005465static u64 nfsd_foreach_client_open(struct nfs4_client *clp, u64 max, void (*func)(struct nfs4_openowner *))
5466{
5467 struct nfs4_openowner *oop, *next;
5468 u64 count = 0;
5469
5470 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
5471 if (func)
5472 func(oop);
5473 if (++count == max)
5474 break;
5475 }
5476
5477 return count;
5478}
5479
5480u64 nfsd_forget_client_openowners(struct nfs4_client *clp, u64 max)
5481{
5482 return nfsd_foreach_client_open(clp, max, release_openowner);
5483}
5484
Bryan Schumaker184c1842012-11-29 11:40:44 -05005485u64 nfsd_print_client_openowners(struct nfs4_client *clp, u64 max)
5486{
5487 u64 count = nfsd_foreach_client_open(clp, max, NULL);
5488 nfsd_print_count(clp, count, "open files");
5489 return count;
5490}
5491
Bryan Schumaker269de302012-11-29 11:40:42 -05005492static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
5493 struct list_head *victims)
5494{
5495 struct nfs4_delegation *dp, *next;
5496 u64 count = 0;
5497
Benny Halevycdc97502014-05-30 09:09:30 -04005498 lockdep_assert_held(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005499 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04005500 if (victims) {
5501 /*
5502 * It's not safe to mess with delegations that have a
5503 * non-zero dl_time. They might have already been broken
5504 * and could be processed by the laundromat outside of
5505 * the state_lock. Just leave them be.
5506 */
5507 if (dp->dl_time != 0)
5508 continue;
5509
Jeff Layton42690672014-07-25 07:34:20 -04005510 unhash_delegation_locked(dp);
5511 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04005512 }
Bryan Schumaker269de302012-11-29 11:40:42 -05005513 if (++count == max)
5514 break;
5515 }
5516 return count;
5517}
5518
5519u64 nfsd_forget_client_delegations(struct nfs4_client *clp, u64 max)
5520{
5521 struct nfs4_delegation *dp, *next;
5522 LIST_HEAD(victims);
5523 u64 count;
5524
Benny Halevycdc97502014-05-30 09:09:30 -04005525 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005526 count = nfsd_find_all_delegations(clp, max, &victims);
Benny Halevycdc97502014-05-30 09:09:30 -04005527 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005528
Jeff Layton2d4a5322014-07-25 07:34:21 -04005529 list_for_each_entry_safe(dp, next, &victims, dl_recall_lru) {
5530 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005531 revoke_delegation(dp);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005532 }
Bryan Schumaker269de302012-11-29 11:40:42 -05005533
5534 return count;
5535}
5536
5537u64 nfsd_recall_client_delegations(struct nfs4_client *clp, u64 max)
5538{
Jeff Laytondff13992014-07-08 14:02:49 -04005539 struct nfs4_delegation *dp;
Bryan Schumaker269de302012-11-29 11:40:42 -05005540 LIST_HEAD(victims);
5541 u64 count;
5542
Benny Halevycdc97502014-05-30 09:09:30 -04005543 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005544 count = nfsd_find_all_delegations(clp, max, &victims);
Jeff Laytondff13992014-07-08 14:02:49 -04005545 while (!list_empty(&victims)) {
5546 dp = list_first_entry(&victims, struct nfs4_delegation,
5547 dl_recall_lru);
5548 list_del_init(&dp->dl_recall_lru);
5549 dp->dl_time = 0;
Bryan Schumaker269de302012-11-29 11:40:42 -05005550 nfsd_break_one_deleg(dp);
Jeff Laytondff13992014-07-08 14:02:49 -04005551 }
Benny Halevycdc97502014-05-30 09:09:30 -04005552 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05005553
5554 return count;
5555}
5556
Bryan Schumaker184c1842012-11-29 11:40:44 -05005557u64 nfsd_print_client_delegations(struct nfs4_client *clp, u64 max)
5558{
5559 u64 count = 0;
5560
Benny Halevycdc97502014-05-30 09:09:30 -04005561 spin_lock(&state_lock);
Bryan Schumaker184c1842012-11-29 11:40:44 -05005562 count = nfsd_find_all_delegations(clp, max, NULL);
Benny Halevycdc97502014-05-30 09:09:30 -04005563 spin_unlock(&state_lock);
Bryan Schumaker184c1842012-11-29 11:40:44 -05005564
5565 nfsd_print_count(clp, count, "delegations");
5566 return count;
5567}
5568
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005569u64 nfsd_for_n_state(u64 max, u64 (*func)(struct nfs4_client *, u64))
Bryan Schumaker65178db2011-11-01 13:35:21 -04005570{
5571 struct nfs4_client *clp, *next;
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005572 u64 count = 0;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005573 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
Bryan Schumaker65178db2011-11-01 13:35:21 -04005574
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005575 if (!nfsd_netns_ready(nn))
5576 return 0;
5577
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005578 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005579 count += func(clp, max - count);
5580 if ((max != 0) && (count >= max))
Bryan Schumaker65178db2011-11-01 13:35:21 -04005581 break;
5582 }
Bryan Schumaker65178db2011-11-01 13:35:21 -04005583
Bryan Schumaker44e34da602012-11-29 11:40:39 -05005584 return count;
5585}
5586
Bryan Schumaker6c1e82a2012-11-29 11:40:46 -05005587struct nfs4_client *nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
5588{
5589 struct nfs4_client *clp;
5590 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
5591
5592 if (!nfsd_netns_ready(nn))
5593 return NULL;
5594
5595 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
5596 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
5597 return clp;
5598 }
5599 return NULL;
5600}
5601
Bryan Schumaker65178db2011-11-01 13:35:21 -04005602#endif /* CONFIG_NFSD_FAULT_INJECTION */
5603
Meelap Shahc2f1a552007-07-17 04:04:39 -07005604/*
5605 * Since the lifetime of a delegation isn't limited to that of an open, a
5606 * client may quite reasonably hang on to a delegation as long as it has
5607 * the inode cached. This becomes an obvious problem the first time a
5608 * client's inode cache approaches the size of the server's total memory.
5609 *
5610 * For now we avoid this problem by imposing a hard limit on the number
5611 * of delegations, which varies according to the server's memory size.
5612 */
5613static void
5614set_max_delegations(void)
5615{
5616 /*
5617 * Allow at most 4 delegations per megabyte of RAM. Quick
5618 * estimates suggest that in the worst case (where every delegation
5619 * is for a different inode), a delegation could take about 1.5K,
5620 * giving a worst case usage of about 6% of memory.
5621 */
5622 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
5623}
5624
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005625static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005626{
5627 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5628 int i;
5629
5630 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
5631 CLIENT_HASH_SIZE, GFP_KERNEL);
5632 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005633 goto err;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005634 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
5635 CLIENT_HASH_SIZE, GFP_KERNEL);
5636 if (!nn->unconf_id_hashtbl)
5637 goto err_unconf_id;
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005638 nn->ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
5639 OWNER_HASH_SIZE, GFP_KERNEL);
5640 if (!nn->ownerstr_hashtbl)
5641 goto err_ownerstr;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005642 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
5643 SESSION_HASH_SIZE, GFP_KERNEL);
5644 if (!nn->sessionid_hashtbl)
5645 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005646
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005647 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005648 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005649 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005650 }
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005651 for (i = 0; i < OWNER_HASH_SIZE; i++)
5652 INIT_LIST_HEAD(&nn->ownerstr_hashtbl[i]);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005653 for (i = 0; i < SESSION_HASH_SIZE; i++)
5654 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005655 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005656 nn->unconf_name_tree = RB_ROOT;
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005657 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03005658 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005659 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005660 spin_lock_init(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005661
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005662 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005663 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005664
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005665 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005666
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005667err_sessionid:
Stanislav Kinsbursky20e9e2b2012-11-14 18:21:46 +03005668 kfree(nn->ownerstr_hashtbl);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005669err_ownerstr:
5670 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005671err_unconf_id:
5672 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03005673err:
5674 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005675}
5676
5677static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005678nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005679{
5680 int i;
5681 struct nfs4_client *clp = NULL;
5682 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5683
5684 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
5685 while (!list_empty(&nn->conf_id_hashtbl[i])) {
5686 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
5687 destroy_client(clp);
5688 }
5689 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005690
Kinglong Mee2b905632014-03-26 22:09:30 +08005691 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
5692 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
5693 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
5694 destroy_client(clp);
5695 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03005696 }
5697
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03005698 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03005699 kfree(nn->ownerstr_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03005700 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005701 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005702 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005703}
5704
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03005705int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005706nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07005707{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005708 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005709 int ret;
5710
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005711 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03005712 if (ret)
5713 return ret;
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005714 nfsd4_client_tracking_init(net);
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04005715 nn->boot_time = get_seconds();
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005716 locks_start_grace(net, &nn->nfsd4_manager);
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005717 nn->grace_ended = false;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005718 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %p)\n",
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03005719 nn->nfsd4_grace, net);
5720 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005721 return 0;
5722}
5723
5724/* initialization to perform when the nfsd service is started: */
5725
5726int
5727nfs4_state_start(void)
5728{
5729 int ret;
5730
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005731 ret = set_callback_cred();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005732 if (ret)
5733 return -ENOMEM;
NeilBrown58da2822005-06-23 22:03:19 -07005734 laundry_wq = create_singlethread_workqueue("nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05005735 if (laundry_wq == NULL) {
5736 ret = -ENOMEM;
5737 goto out_recovery;
5738 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005739 ret = nfsd4_create_callback_queue();
5740 if (ret)
5741 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005742
Meelap Shahc2f1a552007-07-17 04:04:39 -07005743 set_max_delegations();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005744
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005745 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03005746
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005747out_free_laundry:
5748 destroy_workqueue(laundry_wq);
Jeff Laytona6d6b782012-03-05 11:42:36 -05005749out_recovery:
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05005750 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751}
5752
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03005753void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005754nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005758 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005760 cancel_delayed_work_sync(&nn->laundromat_work);
5761 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05005762
J. Bruce Fieldse50a26d2013-10-30 10:33:09 -04005763 nfs4_lock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04005765 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005766 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04005768 unhash_delegation_locked(dp);
5769 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 }
Benny Halevycdc97502014-05-30 09:09:30 -04005771 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772 list_for_each_safe(pos, next, &reaplist) {
5773 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04005774 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04005775 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 }
5777
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005778 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03005779 nfs4_state_destroy_net(net);
J. Bruce Fieldse50a26d2013-10-30 10:33:09 -04005780 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781}
5782
5783void
5784nfs4_state_shutdown(void)
5785{
NeilBrown5e8d5c22006-04-10 22:55:37 -07005786 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04005787 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005789
5790static void
5791get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5792{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01005793 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
5794 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005795}
5796
5797static void
5798put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5799{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01005800 if (cstate->minorversion) {
5801 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
5802 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
5803 }
5804}
5805
5806void
5807clear_current_stateid(struct nfsd4_compound_state *cstate)
5808{
5809 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005810}
5811
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005812/*
5813 * functions to set current state id
5814 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005815void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01005816nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5817{
5818 put_stateid(cstate, &odp->od_stateid);
5819}
5820
5821void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005822nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
5823{
5824 put_stateid(cstate, &open->op_stateid);
5825}
5826
5827void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005828nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5829{
5830 put_stateid(cstate, &close->cl_stateid);
5831}
5832
5833void
5834nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
5835{
5836 put_stateid(cstate, &lock->lk_resp_stateid);
5837}
5838
5839/*
5840 * functions to consume current state id
5841 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01005842
5843void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01005844nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5845{
5846 get_stateid(cstate, &odp->od_stateid);
5847}
5848
5849void
5850nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
5851{
5852 get_stateid(cstate, &drp->dr_stateid);
5853}
5854
5855void
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01005856nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
5857{
5858 get_stateid(cstate, &fsp->fr_stateid);
5859}
5860
5861void
5862nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
5863{
5864 get_stateid(cstate, &setattr->sa_stateid);
5865}
5866
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005867void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005868nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5869{
5870 get_stateid(cstate, &close->cl_stateid);
5871}
5872
5873void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005874nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005875{
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01005876 get_stateid(cstate, &locku->lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01005877}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01005878
5879void
5880nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
5881{
5882 get_stateid(cstate, &read->rd_stateid);
5883}
5884
5885void
5886nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
5887{
5888 get_stateid(cstate, &write->wr_stateid);
5889}