blob: c4762d8aa9f8b8b51870c6fc7b6c008dde8b3c00 [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>
Daniel Borkmann87545892014-12-10 16:33:11 +010044#include <linux/jhash.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"
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020051#include "pnfs.h"
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define NFSDDBG_FACILITY NFSDDBG_PROC
54
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050055#define all_ones {{~0,~0},~0}
56static const stateid_t one_stateid = {
57 .si_generation = ~0,
58 .si_opaque = all_ones,
59};
60static const stateid_t zero_stateid = {
61 /* all fields zero */
62};
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010063static const stateid_t currentstateid = {
64 .si_generation = 1,
65};
Trond Myklebust5cd35862017-11-03 08:00:12 -040066static const stateid_t close_stateid = {
67 .si_generation = 0xffffffffU,
68};
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050069
Andy Adamsonec6b5d72009-04-03 08:28:28 +030070static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070071
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050072#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
73#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010074#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
Andrew Elblef25e2222017-11-09 13:41:10 -050075#define CLOSE_STATEID(stateid) (!memcmp((stateid), &close_stateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* forward declarations */
Jeff Laytonf9c00c32014-07-23 16:17:41 -040078static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
Trond Myklebust60116952014-07-29 21:34:06 -040079static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
J. Bruce Fields8b671b82009-02-22 14:51:34 -080081/* Locking: */
82
J. Bruce Fields8b671b82009-02-22 14:51:34 -080083/*
84 * Currently used for the del_recall_lru and file hash table. In an
85 * effort to decrease the scope of the client_mutex, this spinlock may
86 * eventually cover more:
87 */
Benny Halevycdc97502014-05-30 09:09:30 -040088static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080089
Jeff Laytonb401be222014-07-29 21:34:33 -040090/*
91 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
92 * the refcount on the open stateid to drop.
93 */
94static DECLARE_WAIT_QUEUE_HEAD(close_wq);
95
Christoph Hellwigabf11352014-05-21 07:43:03 -070096static struct kmem_cache *openowner_slab;
97static struct kmem_cache *lockowner_slab;
98static struct kmem_cache *file_slab;
99static struct kmem_cache *stateid_slab;
100static struct kmem_cache *deleg_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +0200101static struct kmem_cache *odstate_slab;
NeilBrowne60d4392005-06-23 22:03:01 -0700102
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400103static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800104
Julia Lawallc4cb8972015-11-21 22:57:39 +0100105static const struct nfsd4_callback_ops nfsd4_cb_recall_ops;
Jeff Layton76d348f2016-09-16 16:28:24 -0400106static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops;
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200107
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400108static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800109{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400110 return ses->se_flags & NFS4_SESSION_DEAD;
111}
112
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400113static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
114{
115 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400116 return nfserr_jukebox;
117 ses->se_flags |= NFS4_SESSION_DEAD;
118 return nfs_ok;
119}
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
J. Bruce Fields221a6872013-04-01 22:23:49 -0400126static __be32 get_client_locked(struct nfs4_client *clp)
127{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400128 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
129
130 lockdep_assert_held(&nn->client_lock);
131
J. Bruce Fields221a6872013-04-01 22:23:49 -0400132 if (is_client_expired(clp))
133 return nfserr_expired;
134 atomic_inc(&clp->cl_refcount);
135 return nfs_ok;
136}
137
138/* must be called under the client_lock */
139static inline void
140renew_client_locked(struct nfs4_client *clp)
141{
142 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
143
144 if (is_client_expired(clp)) {
145 WARN_ON(1);
146 printk("%s: client (clientid %08x/%08x) already expired\n",
147 __func__,
148 clp->cl_clientid.cl_boot,
149 clp->cl_clientid.cl_id);
150 return;
151 }
152
153 dprintk("renewing client (clientid %08x/%08x)\n",
154 clp->cl_clientid.cl_boot,
155 clp->cl_clientid.cl_id);
156 list_move_tail(&clp->cl_lru, &nn->client_lru);
157 clp->cl_time = get_seconds();
158}
159
Fengguang Wuba138432013-04-16 22:14:15 -0400160static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400161{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400162 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
163
164 lockdep_assert_held(&nn->client_lock);
165
J. Bruce Fields221a6872013-04-01 22:23:49 -0400166 if (!atomic_dec_and_test(&clp->cl_refcount))
167 return;
168 if (!is_client_expired(clp))
169 renew_client_locked(clp);
170}
171
Jeff Layton4b24ca72014-06-30 11:48:44 -0400172static void put_client_renew(struct nfs4_client *clp)
173{
174 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
175
Jeff Laytond6c249b2014-07-08 14:02:50 -0400176 if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
177 return;
178 if (!is_client_expired(clp))
179 renew_client_locked(clp);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400180 spin_unlock(&nn->client_lock);
181}
182
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400183static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
184{
185 __be32 status;
186
187 if (is_session_dead(ses))
188 return nfserr_badsession;
189 status = get_client_locked(ses->se_client);
190 if (status)
191 return status;
192 atomic_inc(&ses->se_ref);
193 return nfs_ok;
194}
195
196static void nfsd4_put_session_locked(struct nfsd4_session *ses)
197{
198 struct nfs4_client *clp = ses->se_client;
Trond Myklebust0a880a22014-07-30 08:27:10 -0400199 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
200
201 lockdep_assert_held(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400202
203 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
204 free_session(ses);
205 put_client_renew_locked(clp);
206}
207
208static void nfsd4_put_session(struct nfsd4_session *ses)
209{
210 struct nfs4_client *clp = ses->se_client;
211 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
212
213 spin_lock(&nn->client_lock);
214 nfsd4_put_session_locked(ses);
215 spin_unlock(&nn->client_lock);
216}
217
Jeff Layton76d348f2016-09-16 16:28:24 -0400218static struct nfsd4_blocked_lock *
219find_blocked_lock(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
220 struct nfsd_net *nn)
221{
222 struct nfsd4_blocked_lock *cur, *found = NULL;
223
Jeff Layton0cc11a62016-10-20 09:34:31 -0400224 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400225 list_for_each_entry(cur, &lo->lo_blocked, nbl_list) {
226 if (fh_match(fh, &cur->nbl_fh)) {
227 list_del_init(&cur->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -0400228 list_del_init(&cur->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400229 found = cur;
230 break;
231 }
232 }
Jeff Layton0cc11a62016-10-20 09:34:31 -0400233 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400234 if (found)
235 posix_unblock_lock(&found->nbl_lock);
236 return found;
237}
238
239static struct nfsd4_blocked_lock *
240find_or_allocate_block(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
241 struct nfsd_net *nn)
242{
243 struct nfsd4_blocked_lock *nbl;
244
245 nbl = find_blocked_lock(lo, fh, nn);
246 if (!nbl) {
247 nbl= kmalloc(sizeof(*nbl), GFP_KERNEL);
248 if (nbl) {
249 fh_copy_shallow(&nbl->nbl_fh, fh);
250 locks_init_lock(&nbl->nbl_lock);
251 nfsd4_init_cb(&nbl->nbl_cb, lo->lo_owner.so_client,
252 &nfsd4_cb_notify_lock_ops,
253 NFSPROC4_CLNT_CB_NOTIFY_LOCK);
254 }
255 }
256 return nbl;
257}
258
259static void
260free_blocked_lock(struct nfsd4_blocked_lock *nbl)
261{
262 locks_release_private(&nbl->nbl_lock);
263 kfree(nbl);
264}
265
Jeff Laytone294c4c2018-03-16 11:32:02 -0400266static void
267remove_blocked_locks(struct nfs4_lockowner *lo)
268{
269 struct nfs4_client *clp = lo->lo_owner.so_client;
270 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
271 struct nfsd4_blocked_lock *nbl;
272 LIST_HEAD(reaplist);
273
274 /* Dequeue all blocked locks */
275 spin_lock(&nn->blocked_locks_lock);
276 while (!list_empty(&lo->lo_blocked)) {
277 nbl = list_first_entry(&lo->lo_blocked,
278 struct nfsd4_blocked_lock,
279 nbl_list);
280 list_del_init(&nbl->nbl_list);
281 list_move(&nbl->nbl_lru, &reaplist);
282 }
283 spin_unlock(&nn->blocked_locks_lock);
284
285 /* Now free them */
286 while (!list_empty(&reaplist)) {
287 nbl = list_first_entry(&reaplist, struct nfsd4_blocked_lock,
288 nbl_lru);
289 list_del_init(&nbl->nbl_lru);
290 posix_unblock_lock(&nbl->nbl_lock);
291 free_blocked_lock(nbl);
292 }
293}
294
Jeff Layton76d348f2016-09-16 16:28:24 -0400295static int
296nfsd4_cb_notify_lock_done(struct nfsd4_callback *cb, struct rpc_task *task)
297{
298 /*
299 * Since this is just an optimization, we don't try very hard if it
300 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
301 * just quit trying on anything else.
302 */
303 switch (task->tk_status) {
304 case -NFS4ERR_DELAY:
305 rpc_delay(task, 1 * HZ);
306 return 0;
307 default:
308 return 1;
309 }
310}
311
312static void
313nfsd4_cb_notify_lock_release(struct nfsd4_callback *cb)
314{
315 struct nfsd4_blocked_lock *nbl = container_of(cb,
316 struct nfsd4_blocked_lock, nbl_cb);
317
318 free_blocked_lock(nbl);
319}
320
321static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops = {
322 .done = nfsd4_cb_notify_lock_done,
323 .release = nfsd4_cb_notify_lock_release,
324};
325
Kinglong Meeb5971af2014-08-22 10:18:43 -0400326static inline struct nfs4_stateowner *
327nfs4_get_stateowner(struct nfs4_stateowner *sop)
328{
329 atomic_inc(&sop->so_count);
330 return sop;
331}
332
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400333static int
Trond Myklebustd4f04892014-07-29 21:34:36 -0400334same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400335{
336 return (sop->so_owner.len == owner->len) &&
Trond Myklebustd4f04892014-07-29 21:34:36 -0400337 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400338}
339
340static struct nfs4_openowner *
341find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400342 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400343{
344 struct nfs4_stateowner *so;
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400345
Trond Myklebustd4f04892014-07-29 21:34:36 -0400346 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400347
Trond Myklebustd4f04892014-07-29 21:34:36 -0400348 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
349 so_strhash) {
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400350 if (!so->so_is_open_owner)
351 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -0400352 if (same_owner_str(so, &open->op_owner))
353 return openowner(nfs4_get_stateowner(so));
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400354 }
355 return NULL;
356}
357
358static struct nfs4_openowner *
359find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400360 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400361{
362 struct nfs4_openowner *oo;
363
Trond Myklebustd4f04892014-07-29 21:34:36 -0400364 spin_lock(&clp->cl_lock);
365 oo = find_openstateowner_str_locked(hashval, open, clp);
366 spin_unlock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400367 return oo;
368}
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static inline u32
371opaque_hashval(const void *ptr, int nbytes)
372{
373 unsigned char *cptr = (unsigned char *) ptr;
374
375 u32 x = 0;
376 while (nbytes--) {
377 x *= 37;
378 x += *cptr++;
379 }
380 return x;
381}
382
Jeff Layton5b095e92014-10-23 08:01:02 -0400383static void nfsd4_free_file_rcu(struct rcu_head *rcu)
J. Bruce Fields32513b42011-10-13 16:00:16 -0400384{
Jeff Layton5b095e92014-10-23 08:01:02 -0400385 struct nfs4_file *fp = container_of(rcu, struct nfs4_file, fi_rcu);
386
387 kmem_cache_free(file_slab, fp);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400388}
389
Christoph Hellwige6ba76e2014-08-14 08:50:16 +0200390void
NeilBrown13cd2182005-06-23 22:03:10 -0700391put_nfs4_file(struct nfs4_file *fi)
392{
Jeff Layton02e12152014-07-16 10:31:57 -0400393 might_lock(&state_lock);
394
Benny Halevycdc97502014-05-30 09:09:30 -0400395 if (atomic_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton5b095e92014-10-23 08:01:02 -0400396 hlist_del_rcu(&fi->fi_hash);
Benny Halevycdc97502014-05-30 09:09:30 -0400397 spin_unlock(&state_lock);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200398 WARN_ON_ONCE(!list_empty(&fi->fi_clnt_odstate));
Jeff Layton5b095e92014-10-23 08:01:02 -0400399 WARN_ON_ONCE(!list_empty(&fi->fi_delegations));
400 call_rcu(&fi->fi_rcu, nfsd4_free_file_rcu);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800401 }
NeilBrown13cd2182005-06-23 22:03:10 -0700402}
403
Trond Myklebustde186432014-07-10 14:07:26 -0400404static struct file *
405__nfs4_get_fd(struct nfs4_file *f, int oflag)
406{
407 if (f->fi_fds[oflag])
408 return get_file(f->fi_fds[oflag]);
409 return NULL;
410}
411
412static struct file *
413find_writeable_file_locked(struct nfs4_file *f)
414{
415 struct file *ret;
416
417 lockdep_assert_held(&f->fi_lock);
418
419 ret = __nfs4_get_fd(f, O_WRONLY);
420 if (!ret)
421 ret = __nfs4_get_fd(f, O_RDWR);
422 return ret;
423}
424
425static struct file *
426find_writeable_file(struct nfs4_file *f)
427{
428 struct file *ret;
429
430 spin_lock(&f->fi_lock);
431 ret = find_writeable_file_locked(f);
432 spin_unlock(&f->fi_lock);
433
434 return ret;
435}
436
437static struct file *find_readable_file_locked(struct nfs4_file *f)
438{
439 struct file *ret;
440
441 lockdep_assert_held(&f->fi_lock);
442
443 ret = __nfs4_get_fd(f, O_RDONLY);
444 if (!ret)
445 ret = __nfs4_get_fd(f, O_RDWR);
446 return ret;
447}
448
449static struct file *
450find_readable_file(struct nfs4_file *f)
451{
452 struct file *ret;
453
454 spin_lock(&f->fi_lock);
455 ret = find_readable_file_locked(f);
456 spin_unlock(&f->fi_lock);
457
458 return ret;
459}
460
Christoph Hellwig4d227fc2014-08-17 07:40:00 -0500461struct file *
Trond Myklebustde186432014-07-10 14:07:26 -0400462find_any_file(struct nfs4_file *f)
463{
464 struct file *ret;
465
466 spin_lock(&f->fi_lock);
467 ret = __nfs4_get_fd(f, O_RDWR);
468 if (!ret) {
469 ret = __nfs4_get_fd(f, O_WRONLY);
470 if (!ret)
471 ret = __nfs4_get_fd(f, O_RDONLY);
472 }
473 spin_unlock(&f->fi_lock);
474 return ret;
475}
476
Trond Myklebust02a35082014-07-25 07:34:22 -0400477static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800478unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700479
480/*
481 * Open owner state (share locks)
482 */
483
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500484/* hash tables for lock and open owners */
485#define OWNER_HASH_BITS 8
486#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
487#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700488
Trond Myklebustd4f04892014-07-29 21:34:36 -0400489static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400490{
491 unsigned int ret;
492
493 ret = opaque_hashval(ownername->data, ownername->len);
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500494 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400495}
NeilBrownef0f3392006-04-10 22:55:41 -0700496
NeilBrownef0f3392006-04-10 22:55:41 -0700497/* hash table for nfs4_file */
498#define FILE_HASH_BITS 8
499#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800500
Trond Myklebustca943212014-07-23 16:17:39 -0400501static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400502{
Trond Myklebustca943212014-07-23 16:17:39 -0400503 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
504}
505
506static unsigned int file_hashval(struct knfsd_fh *fh)
507{
508 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
509}
510
Jeff Layton89876f82013-04-02 09:01:59 -0400511static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700512
Jeff Layton12659652014-07-10 14:07:28 -0400513static void
514__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400515{
Jeff Layton7214e862014-07-10 14:07:33 -0400516 lockdep_assert_held(&fp->fi_lock);
517
Jeff Layton12659652014-07-10 14:07:28 -0400518 if (access & NFS4_SHARE_ACCESS_WRITE)
519 atomic_inc(&fp->fi_access[O_WRONLY]);
520 if (access & NFS4_SHARE_ACCESS_READ)
521 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400522}
523
Jeff Layton12659652014-07-10 14:07:28 -0400524static __be32
525nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400526{
Jeff Layton7214e862014-07-10 14:07:33 -0400527 lockdep_assert_held(&fp->fi_lock);
528
Jeff Layton12659652014-07-10 14:07:28 -0400529 /* Does this access mode make sense? */
530 if (access & ~NFS4_SHARE_ACCESS_BOTH)
531 return nfserr_inval;
532
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400533 /* Does it conflict with a deny mode already set? */
534 if ((access & fp->fi_share_deny) != 0)
535 return nfserr_share_denied;
536
Jeff Layton12659652014-07-10 14:07:28 -0400537 __nfs4_file_get_access(fp, access);
538 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400539}
540
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400541static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
542{
543 /* Common case is that there is no deny mode. */
544 if (deny) {
545 /* Does this deny mode make sense? */
546 if (deny & ~NFS4_SHARE_DENY_BOTH)
547 return nfserr_inval;
548
549 if ((deny & NFS4_SHARE_DENY_READ) &&
550 atomic_read(&fp->fi_access[O_RDONLY]))
551 return nfserr_share_denied;
552
553 if ((deny & NFS4_SHARE_DENY_WRITE) &&
554 atomic_read(&fp->fi_access[O_WRONLY]))
555 return nfserr_share_denied;
556 }
557 return nfs_ok;
558}
559
J. Bruce Fields998db522010-08-07 09:21:41 -0400560static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400561{
Trond Myklebustde186432014-07-10 14:07:26 -0400562 might_lock(&fp->fi_lock);
563
564 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
565 struct file *f1 = NULL;
566 struct file *f2 = NULL;
567
Jeff Layton6d338b52014-07-10 14:07:29 -0400568 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400569 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400570 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400571 spin_unlock(&fp->fi_lock);
572 if (f1)
573 fput(f1);
574 if (f2)
575 fput(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400576 }
577}
578
Jeff Layton12659652014-07-10 14:07:28 -0400579static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400580{
Jeff Layton12659652014-07-10 14:07:28 -0400581 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
582
583 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400584 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400585 if (access & NFS4_SHARE_ACCESS_READ)
586 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400587}
588
Sachin Bhamare8287f002015-04-27 14:50:14 +0200589/*
590 * Allocate a new open/delegation state counter. This is needed for
591 * pNFS for proper return on close semantics.
592 *
593 * Note that we only allocate it for pNFS-enabled exports, otherwise
594 * all pointers to struct nfs4_clnt_odstate are always NULL.
595 */
596static struct nfs4_clnt_odstate *
597alloc_clnt_odstate(struct nfs4_client *clp)
598{
599 struct nfs4_clnt_odstate *co;
600
601 co = kmem_cache_zalloc(odstate_slab, GFP_KERNEL);
602 if (co) {
603 co->co_client = clp;
604 atomic_set(&co->co_odcount, 1);
605 }
606 return co;
607}
608
609static void
610hash_clnt_odstate_locked(struct nfs4_clnt_odstate *co)
611{
612 struct nfs4_file *fp = co->co_file;
613
614 lockdep_assert_held(&fp->fi_lock);
615 list_add(&co->co_perfile, &fp->fi_clnt_odstate);
616}
617
618static inline void
619get_clnt_odstate(struct nfs4_clnt_odstate *co)
620{
621 if (co)
622 atomic_inc(&co->co_odcount);
623}
624
625static void
626put_clnt_odstate(struct nfs4_clnt_odstate *co)
627{
628 struct nfs4_file *fp;
629
630 if (!co)
631 return;
632
633 fp = co->co_file;
634 if (atomic_dec_and_lock(&co->co_odcount, &fp->fi_lock)) {
635 list_del(&co->co_perfile);
636 spin_unlock(&fp->fi_lock);
637
638 nfsd4_return_all_file_layouts(co->co_client, fp);
639 kmem_cache_free(odstate_slab, co);
640 }
641}
642
643static struct nfs4_clnt_odstate *
644find_or_hash_clnt_odstate(struct nfs4_file *fp, struct nfs4_clnt_odstate *new)
645{
646 struct nfs4_clnt_odstate *co;
647 struct nfs4_client *cl;
648
649 if (!new)
650 return NULL;
651
652 cl = new->co_client;
653
654 spin_lock(&fp->fi_lock);
655 list_for_each_entry(co, &fp->fi_clnt_odstate, co_perfile) {
656 if (co->co_client == cl) {
657 get_clnt_odstate(co);
658 goto out;
659 }
660 }
661 co = new;
662 co->co_file = fp;
663 hash_clnt_odstate_locked(new);
664out:
665 spin_unlock(&fp->fi_lock);
666 return co;
667}
668
Kinglong Mee743146d32017-01-18 19:04:42 +0800669struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab,
670 void (*sc_free)(struct nfs4_stid *))
J. Bruce Fields996e0932011-10-17 11:14:48 -0400671{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500672 struct nfs4_stid *stid;
673 int new_id;
674
Trond Myklebustf8338832014-07-25 07:34:19 -0400675 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500676 if (!stid)
677 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400678
Jeff Layton4770d722014-07-29 21:34:10 -0400679 idr_preload(GFP_KERNEL);
680 spin_lock(&cl->cl_lock);
681 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 0, 0, GFP_NOWAIT);
682 spin_unlock(&cl->cl_lock);
683 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700684 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500685 goto out_free;
Kinglong Mee743146d32017-01-18 19:04:42 +0800686
687 stid->sc_free = sc_free;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500688 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500689 stid->sc_stateid.si_opaque.so_id = new_id;
690 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
691 /* Will be incremented before return to client: */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -0400692 atomic_set(&stid->sc_count, 1);
Jeff Layton9767feb2015-10-01 09:05:50 -0400693 spin_lock_init(&stid->sc_lock);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500694
J. Bruce Fields996e0932011-10-17 11:14:48 -0400695 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500696 * It shouldn't be a problem to reuse an opaque stateid value.
697 * I don't think it is for 4.1. But with 4.0 I worry that, for
698 * example, a stray write retransmission could be accepted by
699 * the server when it should have been rejected. Therefore,
700 * adopt a trick from the sctp code to attempt to maximize the
701 * amount of time until an id is reused, by ensuring they always
702 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400703 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500704 return stid;
705out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800706 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500707 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400708}
709
Jeff Laytonb49e0842014-07-29 21:34:11 -0400710static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400711{
Trond Myklebust60116952014-07-29 21:34:06 -0400712 struct nfs4_stid *stid;
Trond Myklebust60116952014-07-29 21:34:06 -0400713
Kinglong Mee743146d32017-01-18 19:04:42 +0800714 stid = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_ol_stateid);
Trond Myklebust60116952014-07-29 21:34:06 -0400715 if (!stid)
716 return NULL;
717
Kinglong Mee743146d32017-01-18 19:04:42 +0800718 return openlockstateid(stid);
Trond Myklebust60116952014-07-29 21:34:06 -0400719}
720
721static void nfs4_free_deleg(struct nfs4_stid *stid)
722{
Trond Myklebust60116952014-07-29 21:34:06 -0400723 kmem_cache_free(deleg_slab, stid);
724 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400725}
726
NeilBrown6282cd52014-06-04 17:39:26 +1000727/*
728 * When we recall a delegation, we should be careful not to hand it
729 * out again straight away.
730 * To ensure this we keep a pair of bloom filters ('new' and 'old')
731 * in which the filehandles of recalled delegations are "stored".
732 * If a filehandle appear in either filter, a delegation is blocked.
733 * When a delegation is recalled, the filehandle is stored in the "new"
734 * filter.
735 * Every 30 seconds we swap the filters and clear the "new" one,
736 * unless both are empty of course.
737 *
738 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
739 * low 3 bytes as hash-table indices.
740 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400741 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000742 * is used to manage concurrent access. Testing does not need the lock
743 * except when swapping the two filters.
744 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400745static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000746static struct bloom_pair {
747 int entries, old_entries;
748 time_t swap_time;
749 int new; /* index into 'set' */
750 DECLARE_BITMAP(set[2], 256);
751} blocked_delegations;
752
753static int delegation_blocked(struct knfsd_fh *fh)
754{
755 u32 hash;
756 struct bloom_pair *bd = &blocked_delegations;
757
758 if (bd->entries == 0)
759 return 0;
760 if (seconds_since_boot() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400761 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000762 if (seconds_since_boot() - bd->swap_time > 30) {
763 bd->entries -= bd->old_entries;
764 bd->old_entries = bd->entries;
765 memset(bd->set[bd->new], 0,
766 sizeof(bd->set[0]));
767 bd->new = 1-bd->new;
768 bd->swap_time = seconds_since_boot();
769 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400770 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000771 }
Daniel Borkmann87545892014-12-10 16:33:11 +0100772 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000773 if (test_bit(hash&255, bd->set[0]) &&
774 test_bit((hash>>8)&255, bd->set[0]) &&
775 test_bit((hash>>16)&255, bd->set[0]))
776 return 1;
777
778 if (test_bit(hash&255, bd->set[1]) &&
779 test_bit((hash>>8)&255, bd->set[1]) &&
780 test_bit((hash>>16)&255, bd->set[1]))
781 return 1;
782
783 return 0;
784}
785
786static void block_delegations(struct knfsd_fh *fh)
787{
788 u32 hash;
789 struct bloom_pair *bd = &blocked_delegations;
790
Daniel Borkmann87545892014-12-10 16:33:11 +0100791 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000792
Jeff Laytonf54fe962014-07-25 07:34:26 -0400793 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000794 __set_bit(hash&255, bd->set[bd->new]);
795 __set_bit((hash>>8)&255, bd->set[bd->new]);
796 __set_bit((hash>>16)&255, bd->set[bd->new]);
797 if (bd->entries == 0)
798 bd->swap_time = seconds_since_boot();
799 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400800 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803static struct nfs4_delegation *
Sachin Bhamare8287f002015-04-27 14:50:14 +0200804alloc_init_deleg(struct nfs4_client *clp, struct svc_fh *current_fh,
805 struct nfs4_clnt_odstate *odstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400808 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400811 n = atomic_long_inc_return(&num_delegations);
812 if (n < 0 || n > max_delegations)
813 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000814 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400815 goto out_dec;
Kinglong Mee743146d32017-01-18 19:04:42 +0800816 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab, nfs4_free_deleg));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700817 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400818 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400819
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400820 /*
821 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400822 * meaning of seqid 0 isn't meaningful, really, but let's avoid
823 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400824 */
825 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700826 INIT_LIST_HEAD(&dp->dl_perfile);
827 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 INIT_LIST_HEAD(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200829 dp->dl_clnt_odstate = odstate;
830 get_clnt_odstate(odstate);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400831 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Christoph Hellwigf0b5de12014-09-24 12:19:18 +0200832 dp->dl_retries = 1;
833 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200834 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400836out_dec:
837 atomic_long_dec(&num_delegations);
838 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
841void
Trond Myklebust60116952014-07-29 21:34:06 -0400842nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Trond Myklebust11b91642014-07-29 21:34:08 -0400844 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400845 struct nfs4_client *clp = s->sc_client;
846
Jeff Layton4770d722014-07-29 21:34:10 -0400847 might_lock(&clp->cl_lock);
848
Jeff Laytonb401be222014-07-29 21:34:33 -0400849 if (!atomic_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
850 wake_up_all(&close_wq);
Trond Myklebust60116952014-07-29 21:34:06 -0400851 return;
Jeff Laytonb401be222014-07-29 21:34:33 -0400852 }
Trond Myklebust60116952014-07-29 21:34:06 -0400853 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Jeff Layton4770d722014-07-29 21:34:10 -0400854 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400855 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400856 if (fp)
857 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Jeff Layton9767feb2015-10-01 09:05:50 -0400860void
861nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid)
862{
863 stateid_t *src = &stid->sc_stateid;
864
865 spin_lock(&stid->sc_lock);
866 if (unlikely(++src->si_generation == 0))
867 src->si_generation = 1;
868 memcpy(dst, src, sizeof(*dst));
869 spin_unlock(&stid->sc_lock);
870}
871
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500872static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Jeff Layton6bcc0342014-08-09 10:22:40 -0400874 struct file *filp = NULL;
Jeff Layton417c6622014-07-21 09:34:57 -0400875
Jeff Layton6bcc0342014-08-09 10:22:40 -0400876 spin_lock(&fp->fi_lock);
Jeff Layton67db1032014-12-13 09:11:40 -0500877 if (fp->fi_deleg_file && --fp->fi_delegees == 0)
Jeff Layton6bcc0342014-08-09 10:22:40 -0400878 swap(filp, fp->fi_deleg_file);
Jeff Layton6bcc0342014-08-09 10:22:40 -0400879 spin_unlock(&fp->fi_lock);
880
881 if (filp) {
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +0100882 vfs_setlease(filp, F_UNLCK, NULL, (void **)&fp);
Jeff Layton6bcc0342014-08-09 10:22:40 -0400883 fput(filp);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Christoph Hellwigcd61c522014-08-14 08:44:57 +0200887void nfs4_unhash_stid(struct nfs4_stid *s)
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400888{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500889 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400890}
891
Andrew Elble34ed9872015-10-15 12:07:28 -0400892/**
893 * nfs4_get_existing_delegation - Discover if this delegation already exists
894 * @clp: a pointer to the nfs4_client we're granting a delegation to
895 * @fp: a pointer to the nfs4_file we're granting a delegation on
896 *
897 * Return:
898 * On success: NULL if an existing delegation was not found.
899 *
900 * On error: -EAGAIN if one was previously granted to this nfs4_client
901 * for this nfs4_file.
902 *
903 */
904
905static int
906nfs4_get_existing_delegation(struct nfs4_client *clp, struct nfs4_file *fp)
Benny Halevy931ee562014-05-30 09:09:27 -0400907{
Andrew Elble34ed9872015-10-15 12:07:28 -0400908 struct nfs4_delegation *searchdp = NULL;
909 struct nfs4_client *searchclp = NULL;
910
Benny Halevycdc97502014-05-30 09:09:30 -0400911 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400912 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400913
Andrew Elble34ed9872015-10-15 12:07:28 -0400914 list_for_each_entry(searchdp, &fp->fi_delegations, dl_perfile) {
915 searchclp = searchdp->dl_stid.sc_client;
916 if (clp == searchclp) {
917 return -EAGAIN;
918 }
919 }
920 return 0;
921}
922
923/**
924 * hash_delegation_locked - Add a delegation to the appropriate lists
925 * @dp: a pointer to the nfs4_delegation we are adding.
926 * @fp: a pointer to the nfs4_file we're granting a delegation on
927 *
928 * Return:
929 * On success: NULL if the delegation was successfully hashed.
930 *
931 * On error: -EAGAIN if one was previously granted to this
932 * nfs4_client for this nfs4_file. Delegation is not hashed.
933 *
934 */
935
936static int
937hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
938{
939 int status;
940 struct nfs4_client *clp = dp->dl_stid.sc_client;
941
942 lockdep_assert_held(&state_lock);
943 lockdep_assert_held(&fp->fi_lock);
944
945 status = nfs4_get_existing_delegation(clp, fp);
946 if (status)
947 return status;
948 ++fp->fi_delegees;
Trond Myklebust67cb1272014-07-29 21:34:17 -0400949 atomic_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -0400950 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -0400951 list_add(&dp->dl_perfile, &fp->fi_delegations);
Andrew Elble34ed9872015-10-15 12:07:28 -0400952 list_add(&dp->dl_perclnt, &clp->cl_delegations);
953 return 0;
Benny Halevy931ee562014-05-30 09:09:27 -0400954}
955
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400956static bool
Jeff Layton42690672014-07-25 07:34:20 -0400957unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Trond Myklebust11b91642014-07-29 21:34:08 -0400959 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -0400960
Jeff Layton42690672014-07-25 07:34:20 -0400961 lockdep_assert_held(&state_lock);
962
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400963 if (list_empty(&dp->dl_perfile))
964 return false;
965
Trond Myklebustb0fc29d2014-07-16 10:31:59 -0400966 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -0400967 /* Ensure that deleg break won't try to requeue it */
968 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -0400969 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400970 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -0400972 list_del_init(&dp->dl_perfile);
973 spin_unlock(&fp->fi_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400974 return true;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400975}
976
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400977static void destroy_delegation(struct nfs4_delegation *dp)
978{
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400979 bool unhashed;
980
Jeff Layton42690672014-07-25 07:34:20 -0400981 spin_lock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400982 unhashed = unhash_delegation_locked(dp);
Jeff Layton42690672014-07-25 07:34:20 -0400983 spin_unlock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400984 if (unhashed) {
985 put_clnt_odstate(dp->dl_clnt_odstate);
986 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
987 nfs4_put_stid(&dp->dl_stid);
988 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400989}
990
991static void revoke_delegation(struct nfs4_delegation *dp)
992{
993 struct nfs4_client *clp = dp->dl_stid.sc_client;
994
Jeff Layton2d4a5322014-07-25 07:34:21 -0400995 WARN_ON(!list_empty(&dp->dl_recall_lru));
996
Sachin Bhamare8287f002015-04-27 14:50:14 +0200997 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -0400998 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
999
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001000 if (clp->cl_minorversion == 0)
Trond Myklebust60116952014-07-29 21:34:06 -04001001 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001002 else {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001003 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
Jeff Layton2d4a5322014-07-25 07:34:21 -04001004 spin_lock(&clp->cl_lock);
1005 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
1006 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001007 }
1008}
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010/*
1011 * SETCLIENTID state
1012 */
1013
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001014static unsigned int clientid_hashval(u32 id)
1015{
1016 return id & CLIENT_HASH_MASK;
1017}
1018
1019static unsigned int clientstr_hashval(const char *name)
1020{
1021 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
1022}
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001025 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1026 * st_{access,deny}_bmap field of the stateid, in order to track not
1027 * only what share bits are currently in force, but also what
1028 * combinations of share bits previous opens have used. This allows us
1029 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1030 * return an error if the client attempt to downgrade to a combination
1031 * of share bits not explicable by closing some of its previous opens.
1032 *
1033 * XXX: This enforcement is actually incomplete, since we don't keep
1034 * track of access/deny bit combinations; so, e.g., we allow:
1035 *
1036 * OPEN allow read, deny write
1037 * OPEN allow both, deny none
1038 * DOWNGRADE allow read, deny none
1039 *
1040 * which we should reject.
1041 */
Jeff Layton5ae037e2012-05-11 09:45:11 -04001042static unsigned int
1043bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001044 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -04001045 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001046
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001047 for (i = 1; i < 4; i++) {
1048 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -04001049 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001050 }
Jeff Layton5ae037e2012-05-11 09:45:11 -04001051 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001052}
1053
Jeff Layton82c5ff12012-05-11 09:45:13 -04001054/* set share access for a given stateid */
1055static inline void
1056set_access(u32 access, struct nfs4_ol_stateid *stp)
1057{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001058 unsigned char mask = 1 << access;
1059
1060 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1061 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001062}
1063
1064/* clear share access for a given stateid */
1065static inline void
1066clear_access(u32 access, struct nfs4_ol_stateid *stp)
1067{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001068 unsigned char mask = 1 << access;
1069
1070 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1071 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001072}
1073
1074/* test whether a given stateid has access */
1075static inline bool
1076test_access(u32 access, struct nfs4_ol_stateid *stp)
1077{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001078 unsigned char mask = 1 << access;
1079
1080 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001081}
1082
Jeff Laytonce0fc432012-05-11 09:45:14 -04001083/* set share deny for a given stateid */
1084static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001085set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001086{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001087 unsigned char mask = 1 << deny;
1088
1089 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1090 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001091}
1092
1093/* clear share deny for a given stateid */
1094static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001095clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001096{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001097 unsigned char mask = 1 << deny;
1098
1099 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1100 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001101}
1102
1103/* test whether a given stateid is denying specific access */
1104static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -04001105test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001106{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001107 unsigned char mask = 1 << deny;
1108
1109 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001110}
1111
1112static int nfs4_access_to_omode(u32 access)
1113{
J. Bruce Fields8f34a432010-09-02 15:23:16 -04001114 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001115 case NFS4_SHARE_ACCESS_READ:
1116 return O_RDONLY;
1117 case NFS4_SHARE_ACCESS_WRITE:
1118 return O_WRONLY;
1119 case NFS4_SHARE_ACCESS_BOTH:
1120 return O_RDWR;
1121 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05001122 WARN_ON_ONCE(1);
1123 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001124}
1125
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001126/*
1127 * A stateid that had a deny mode associated with it is being released
1128 * or downgraded. Recalculate the deny mode on the file.
1129 */
1130static void
1131recalculate_deny_mode(struct nfs4_file *fp)
1132{
1133 struct nfs4_ol_stateid *stp;
1134
1135 spin_lock(&fp->fi_lock);
1136 fp->fi_share_deny = 0;
1137 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
1138 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
1139 spin_unlock(&fp->fi_lock);
1140}
1141
1142static void
1143reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
1144{
1145 int i;
1146 bool change = false;
1147
1148 for (i = 1; i < 4; i++) {
1149 if ((i & deny) != i) {
1150 change = true;
1151 clear_deny(i, stp);
1152 }
1153 }
1154
1155 /* Recalculate per-file deny mode if there was a change */
1156 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -04001157 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001158}
1159
Jeff Layton82c5ff12012-05-11 09:45:13 -04001160/* release all access and file references for a given stateid */
1161static void
1162release_all_access(struct nfs4_ol_stateid *stp)
1163{
1164 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -04001165 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001166
1167 if (fp && stp->st_deny_bmap != 0)
1168 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001169
1170 for (i = 1; i < 4; i++) {
1171 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -04001172 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001173 clear_access(i, stp);
1174 }
1175}
1176
Kinglong Meed50ffde2015-07-16 12:05:07 +08001177static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop)
1178{
1179 kfree(sop->so_owner.data);
1180 sop->so_ops->so_free(sop);
1181}
1182
Jeff Layton6b180f02014-07-29 21:34:26 -04001183static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
1184{
Jeff Laytona819ecc2014-07-29 21:34:38 -04001185 struct nfs4_client *clp = sop->so_client;
1186
1187 might_lock(&clp->cl_lock);
1188
1189 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
Jeff Layton6b180f02014-07-29 21:34:26 -04001190 return;
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001191 sop->so_ops->so_unhash(sop);
Jeff Laytona819ecc2014-07-29 21:34:38 -04001192 spin_unlock(&clp->cl_lock);
Kinglong Meed50ffde2015-07-16 12:05:07 +08001193 nfs4_free_stateowner(sop);
Jeff Layton6b180f02014-07-29 21:34:26 -04001194}
1195
Jeff Laytone8568732015-08-24 12:41:47 -04001196static bool unhash_ol_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001197{
Trond Myklebust11b91642014-07-29 21:34:08 -04001198 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -04001199
Jeff Layton1c755dc2014-07-29 21:34:12 -04001200 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
1201
Jeff Laytone8568732015-08-24 12:41:47 -04001202 if (list_empty(&stp->st_perfile))
1203 return false;
1204
Trond Myklebust1d31a252014-07-10 14:07:25 -04001205 spin_lock(&fp->fi_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001206 list_del_init(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -04001207 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001208 list_del(&stp->st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001209 return true;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001210}
1211
Trond Myklebust60116952014-07-29 21:34:06 -04001212static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001213{
Trond Myklebust60116952014-07-29 21:34:06 -04001214 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -04001215
Sachin Bhamare8287f002015-04-27 14:50:14 +02001216 put_clnt_odstate(stp->st_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04001217 release_all_access(stp);
Jeff Laytond3134b12014-07-29 21:34:32 -04001218 if (stp->st_stateowner)
1219 nfs4_put_stateowner(stp->st_stateowner);
Trond Myklebust60116952014-07-29 21:34:06 -04001220 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001221}
1222
Jeff Laytonb49e0842014-07-29 21:34:11 -04001223static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001224{
Jeff Laytonb49e0842014-07-29 21:34:11 -04001225 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1226 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001227 struct file *file;
1228
Jeff Laytonb49e0842014-07-29 21:34:11 -04001229 file = find_any_file(stp->st_stid.sc_file);
1230 if (file)
1231 filp_close(file, (fl_owner_t)lo);
1232 nfs4_free_ol_stateid(stid);
1233}
1234
Jeff Layton2c41beb2014-07-29 21:34:41 -04001235/*
1236 * Put the persistent reference to an already unhashed generic stateid, while
1237 * holding the cl_lock. If it's the last reference, then put it onto the
1238 * reaplist for later destruction.
1239 */
1240static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
1241 struct list_head *reaplist)
1242{
1243 struct nfs4_stid *s = &stp->st_stid;
1244 struct nfs4_client *clp = s->sc_client;
1245
1246 lockdep_assert_held(&clp->cl_lock);
1247
1248 WARN_ON_ONCE(!list_empty(&stp->st_locks));
1249
1250 if (!atomic_dec_and_test(&s->sc_count)) {
1251 wake_up_all(&close_wq);
1252 return;
1253 }
1254
1255 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1256 list_add(&stp->st_locks, reaplist);
1257}
1258
Jeff Laytone8568732015-08-24 12:41:47 -04001259static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Layton3c1c9952014-07-29 21:34:39 -04001260{
Chuck Leverf46c4452016-10-29 18:19:03 -04001261 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001262
1263 list_del_init(&stp->st_locks);
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001264 nfs4_unhash_stid(&stp->st_stid);
Jeff Laytone8568732015-08-24 12:41:47 -04001265 return unhash_ol_stateid(stp);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001266}
1267
Jeff Layton5adfd882014-07-29 21:34:31 -04001268static void release_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Laytonb49e0842014-07-29 21:34:11 -04001269{
Chuck Leverf46c4452016-10-29 18:19:03 -04001270 struct nfs4_client *clp = stp->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04001271 bool unhashed;
Jeff Layton1c755dc2014-07-29 21:34:12 -04001272
Chuck Leverf46c4452016-10-29 18:19:03 -04001273 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001274 unhashed = unhash_lock_stateid(stp);
Chuck Leverf46c4452016-10-29 18:19:03 -04001275 spin_unlock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001276 if (unhashed)
1277 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001278}
1279
Trond Myklebustc58c6612014-07-29 21:34:35 -04001280static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001281{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001282 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustc58c6612014-07-29 21:34:35 -04001283
Trond Myklebustd4f04892014-07-29 21:34:36 -04001284 lockdep_assert_held(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04001285
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001286 list_del_init(&lo->lo_owner.so_strhash);
1287}
1288
Jeff Layton2c41beb2014-07-29 21:34:41 -04001289/*
1290 * Free a list of generic stateids that were collected earlier after being
1291 * fully unhashed.
1292 */
1293static void
1294free_ol_stateid_reaplist(struct list_head *reaplist)
1295{
1296 struct nfs4_ol_stateid *stp;
Kinglong Meefb94d762014-08-05 21:20:27 +08001297 struct nfs4_file *fp;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001298
1299 might_sleep();
1300
1301 while (!list_empty(reaplist)) {
1302 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1303 st_locks);
1304 list_del(&stp->st_locks);
Kinglong Meefb94d762014-08-05 21:20:27 +08001305 fp = stp->st_stid.sc_file;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001306 stp->st_stid.sc_free(&stp->st_stid);
Kinglong Meefb94d762014-08-05 21:20:27 +08001307 if (fp)
1308 put_nfs4_file(fp);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001309 }
1310}
1311
Jeff Laytond83017f2014-07-29 21:34:42 -04001312static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1313 struct list_head *reaplist)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001314{
1315 struct nfs4_ol_stateid *stp;
1316
Jeff Laytone8568732015-08-24 12:41:47 -04001317 lockdep_assert_held(&open_stp->st_stid.sc_client->cl_lock);
1318
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001319 while (!list_empty(&open_stp->st_locks)) {
1320 stp = list_entry(open_stp->st_locks.next,
1321 struct nfs4_ol_stateid, st_locks);
Jeff Laytone8568732015-08-24 12:41:47 -04001322 WARN_ON(!unhash_lock_stateid(stp));
Jeff Laytond83017f2014-07-29 21:34:42 -04001323 put_ol_stateid_locked(stp, reaplist);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001324 }
1325}
1326
Jeff Laytone8568732015-08-24 12:41:47 -04001327static bool unhash_open_stateid(struct nfs4_ol_stateid *stp,
Jeff Laytond83017f2014-07-29 21:34:42 -04001328 struct list_head *reaplist)
J. Bruce Fields22839632009-01-11 14:27:17 -05001329{
Jeff Laytone8568732015-08-24 12:41:47 -04001330 bool unhashed;
1331
Jeff Layton2c41beb2014-07-29 21:34:41 -04001332 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1333
Jeff Laytone8568732015-08-24 12:41:47 -04001334 unhashed = unhash_ol_stateid(stp);
Jeff Laytond83017f2014-07-29 21:34:42 -04001335 release_open_stateid_locks(stp, reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04001336 return unhashed;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001337}
1338
1339static void release_open_stateid(struct nfs4_ol_stateid *stp)
1340{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001341 LIST_HEAD(reaplist);
1342
1343 spin_lock(&stp->st_stid.sc_client->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001344 if (unhash_open_stateid(stp, &reaplist))
1345 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001346 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1347 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fields22839632009-01-11 14:27:17 -05001348}
1349
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001350static void unhash_openowner_locked(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001351{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001352 struct nfs4_client *clp = oo->oo_owner.so_client;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001353
Trond Myklebustd4f04892014-07-29 21:34:36 -04001354 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001355
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001356 list_del_init(&oo->oo_owner.so_strhash);
1357 list_del_init(&oo->oo_perclient);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001358}
1359
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001360static void release_last_closed_stateid(struct nfs4_openowner *oo)
1361{
Jeff Layton217526e2014-07-30 08:27:11 -04001362 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1363 nfsd_net_id);
1364 struct nfs4_ol_stateid *s;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001365
Jeff Layton217526e2014-07-30 08:27:11 -04001366 spin_lock(&nn->client_lock);
1367 s = oo->oo_last_closed_stid;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001368 if (s) {
Jeff Laytond3134b12014-07-29 21:34:32 -04001369 list_del_init(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001370 oo->oo_last_closed_stid = NULL;
1371 }
Jeff Layton217526e2014-07-30 08:27:11 -04001372 spin_unlock(&nn->client_lock);
1373 if (s)
1374 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001375}
1376
Jeff Layton2c41beb2014-07-29 21:34:41 -04001377static void release_openowner(struct nfs4_openowner *oo)
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001378{
1379 struct nfs4_ol_stateid *stp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001380 struct nfs4_client *clp = oo->oo_owner.so_client;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001381 struct list_head reaplist;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001382
Jeff Layton2c41beb2014-07-29 21:34:41 -04001383 INIT_LIST_HEAD(&reaplist);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001384
Trond Myklebustd4f04892014-07-29 21:34:36 -04001385 spin_lock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001386 unhash_openowner_locked(oo);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001387 while (!list_empty(&oo->oo_owner.so_stateids)) {
1388 stp = list_first_entry(&oo->oo_owner.so_stateids,
1389 struct nfs4_ol_stateid, st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001390 if (unhash_open_stateid(stp, &reaplist))
1391 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001392 }
Trond Myklebustd4f04892014-07-29 21:34:36 -04001393 spin_unlock(&clp->cl_lock);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001394 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001395 release_last_closed_stateid(oo);
Jeff Layton6b180f02014-07-29 21:34:26 -04001396 nfs4_put_stateowner(&oo->oo_owner);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001397}
1398
Marc Eshel5282fd72009-04-03 08:27:52 +03001399static inline int
1400hash_sessionid(struct nfs4_sessionid *sessionid)
1401{
1402 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1403
1404 return sid->sequence % SESSION_HASH_SIZE;
1405}
1406
Mark Salter135dd002015-04-06 09:46:00 -04001407#ifdef CONFIG_SUNRPC_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001408static inline void
1409dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1410{
1411 u32 *ptr = (u32 *)(&sessionid->data[0]);
1412 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1413}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001414#else
1415static inline void
1416dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1417{
1418}
1419#endif
1420
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001421/*
1422 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1423 * won't be used for replay.
1424 */
1425void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1426{
1427 struct nfs4_stateowner *so = cstate->replay_owner;
1428
1429 if (nfserr == nfserr_replay_me)
1430 return;
1431
1432 if (!seqid_mutating_err(ntohl(nfserr))) {
Jeff Layton58fb12e2014-07-29 21:34:27 -04001433 nfsd4_cstate_clear_replay(cstate);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001434 return;
1435 }
1436 if (!so)
1437 return;
1438 if (so->so_is_open_owner)
1439 release_last_closed_stateid(openowner(so));
1440 so->so_seqid++;
1441 return;
1442}
Marc Eshel5282fd72009-04-03 08:27:52 +03001443
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001444static void
1445gen_sessionid(struct nfsd4_session *ses)
1446{
1447 struct nfs4_client *clp = ses->se_client;
1448 struct nfsd4_sessionid *sid;
1449
1450 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1451 sid->clientid = clp->cl_clientid;
1452 sid->sequence = current_sessionid++;
1453 sid->reserved = 0;
1454}
1455
1456/*
Andy Adamsona6496372009-08-28 08:45:01 -04001457 * The protocol defines ca_maxresponssize_cached to include the size of
1458 * the rpc header, but all we need to cache is the data starting after
1459 * the end of the initial SEQUENCE operation--the rest we regenerate
1460 * each time. Therefore we can advertise a ca_maxresponssize_cached
1461 * value that is the number of bytes in our cache plus a few additional
1462 * bytes. In order to stay on the safe side, and not promise more than
1463 * we can cache, those additional bytes must be the minimum possible: 24
1464 * bytes of rpc header (xid through accept state, with AUTH_NULL
1465 * verifier), 12 for the compound header (with zero-length tag), and 44
1466 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001467 */
Andy Adamsona6496372009-08-28 08:45:01 -04001468#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1469
Andy Adamson557ce262009-08-28 08:45:04 -04001470static void
1471free_session_slots(struct nfsd4_session *ses)
1472{
1473 int i;
1474
J. Bruce Fields877362f2017-10-17 20:38:49 -04001475 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
1476 free_svc_cred(&ses->se_slots[i]->sl_cred);
Andy Adamson557ce262009-08-28 08:45:04 -04001477 kfree(ses->se_slots[i]);
J. Bruce Fields877362f2017-10-17 20:38:49 -04001478 }
Andy Adamson557ce262009-08-28 08:45:04 -04001479}
1480
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001481/*
1482 * We don't actually need to cache the rpc and session headers, so we
1483 * can allocate a little less for each slot:
1484 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001485static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001486{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001487 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001488
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001489 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1490 size = 0;
1491 else
1492 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1493 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001494}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001495
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001496/*
1497 * XXX: If we run out of reserved DRC memory we could (up to a point)
1498 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001499 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001500 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001501static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001502{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001503 u32 slotsize = slot_bytes(ca);
1504 u32 num = ca->maxreqs;
J. Bruce Fieldscdc106c6c2019-02-21 10:47:00 -05001505 unsigned long avail, total_avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001506
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001507 spin_lock(&nfsd_drc_lock);
J. Bruce Fieldscdc106c6c2019-02-21 10:47:00 -05001508 total_avail = nfsd_drc_max_mem - nfsd_drc_mem_used;
1509 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION, total_avail);
J. Bruce Fields6d548072017-09-19 19:25:41 -04001510 /*
1511 * Never use more than a third of the remaining memory,
1512 * unless it's the only way to give this client a slot:
1513 */
J. Bruce Fieldscdc106c6c2019-02-21 10:47:00 -05001514 avail = clamp_t(int, avail, slotsize, total_avail/3);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001515 num = min_t(int, num, avail / slotsize);
1516 nfsd_drc_mem_used += num * slotsize;
1517 spin_unlock(&nfsd_drc_lock);
1518
1519 return num;
1520}
1521
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001522static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001523{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001524 int slotsize = slot_bytes(ca);
1525
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001526 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001527 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001528 spin_unlock(&nfsd_drc_lock);
1529}
1530
Kinglong Mee60810e52014-01-01 00:35:47 +08001531static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1532 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001533{
Kinglong Mee60810e52014-01-01 00:35:47 +08001534 int numslots = fattrs->maxreqs;
1535 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001536 struct nfsd4_session *new;
1537 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001538
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001539 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001540 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1541 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001542
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001543 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001544 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001545 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001546 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001547 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001548 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001549 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001550 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001551 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001552
1553 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1554 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1555
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001556 return new;
1557out_free:
1558 while (i--)
1559 kfree(new->se_slots[i]);
1560 kfree(new);
1561 return NULL;
1562}
1563
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001564static void free_conn(struct nfsd4_conn *c)
1565{
1566 svc_xprt_put(c->cn_xprt);
1567 kfree(c);
1568}
1569
1570static void nfsd4_conn_lost(struct svc_xpt_user *u)
1571{
1572 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1573 struct nfs4_client *clp = c->cn_session->se_client;
1574
1575 spin_lock(&clp->cl_lock);
1576 if (!list_empty(&c->cn_persession)) {
1577 list_del(&c->cn_persession);
1578 free_conn(c);
1579 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001580 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001581 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001582}
1583
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001584static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001585{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001586 struct nfsd4_conn *conn;
1587
1588 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1589 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001590 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001591 svc_xprt_get(rqstp->rq_xprt);
1592 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001593 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001594 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1595 return conn;
1596}
1597
J. Bruce Fields328ead22010-09-29 16:11:06 -04001598static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1599{
1600 conn->cn_session = ses;
1601 list_add(&conn->cn_persession, &ses->se_conns);
1602}
1603
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001604static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1605{
1606 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001607
1608 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001609 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001610 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001611}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001612
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001613static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001614{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001615 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001616 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001617}
1618
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001619static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001620{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001621 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001622
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001623 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001624 ret = nfsd4_register_conn(conn);
1625 if (ret)
1626 /* oops; xprt is already down: */
1627 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001628 /* We may have gained or lost a callback channel: */
1629 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001630}
1631
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001632static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001633{
1634 u32 dir = NFS4_CDFC4_FORE;
1635
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001636 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001637 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001638 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001639}
1640
1641/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001642static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001643{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001644 struct nfs4_client *clp = s->se_client;
1645 struct nfsd4_conn *c;
1646
1647 spin_lock(&clp->cl_lock);
1648 while (!list_empty(&s->se_conns)) {
1649 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1650 list_del_init(&c->cn_persession);
1651 spin_unlock(&clp->cl_lock);
1652
1653 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1654 free_conn(c);
1655
1656 spin_lock(&clp->cl_lock);
1657 }
1658 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001659}
1660
J. Bruce Fields1377b692012-09-11 21:42:40 -04001661static void __free_session(struct nfsd4_session *ses)
1662{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001663 free_session_slots(ses);
1664 kfree(ses);
1665}
1666
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001667static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001668{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001669 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001670 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001671 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001672}
Andy Adamson557ce262009-08-28 08:45:04 -04001673
Fengguang Wu135ae822012-11-10 07:20:25 -05001674static 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 -04001675{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001676 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001677 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001678
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001679 new->se_client = clp;
1680 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001681
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001682 INIT_LIST_HEAD(&new->se_conns);
1683
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001684 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001685 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001686 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001687 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001688 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001689 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001690 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001691 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001692 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001693 spin_unlock(&clp->cl_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001694
Chuck Leverb0d2e422014-08-22 15:10:59 -04001695 {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001696 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001697 /*
1698 * This is a little silly; with sessions there's no real
1699 * use for the callback address. Use the peer address
1700 * as a reasonable default for now, but consider fixing
1701 * the rpc client not to require an address in the
1702 * future:
1703 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001704 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1705 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001706 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001707}
1708
Benny Halevy9089f1b2010-05-12 00:12:26 +03001709/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001710static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001711__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001712{
1713 struct nfsd4_session *elem;
1714 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001715 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001716
Trond Myklebust0a880a22014-07-30 08:27:10 -04001717 lockdep_assert_held(&nn->client_lock);
1718
Marc Eshel5282fd72009-04-03 08:27:52 +03001719 dump_sessionid(__func__, sessionid);
1720 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001721 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001722 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001723 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1724 NFS4_MAX_SESSIONID_LEN)) {
1725 return elem;
1726 }
1727 }
1728
1729 dprintk("%s: session not found\n", __func__);
1730 return NULL;
1731}
1732
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001733static struct nfsd4_session *
1734find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1735 __be32 *ret)
1736{
1737 struct nfsd4_session *session;
1738 __be32 status = nfserr_badsession;
1739
1740 session = __find_in_sessionid_hashtbl(sessionid, net);
1741 if (!session)
1742 goto out;
1743 status = nfsd4_get_session_locked(session);
1744 if (status)
1745 session = NULL;
1746out:
1747 *ret = status;
1748 return session;
1749}
1750
Benny Halevy9089f1b2010-05-12 00:12:26 +03001751/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001752static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001753unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001754{
Trond Myklebust0a880a22014-07-30 08:27:10 -04001755 struct nfs4_client *clp = ses->se_client;
1756 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1757
1758 lockdep_assert_held(&nn->client_lock);
1759
Andy Adamson7116ed62009-04-03 08:27:43 +03001760 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001761 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001762 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001763 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001764}
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1767static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001768STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
J. Bruce Fieldsbbc7f332015-01-20 11:51:26 -05001770 /*
1771 * We're assuming the clid was not given out from a boot
1772 * precisely 2^32 (about 136 years) before this one. That seems
1773 * a safe assumption:
1774 */
1775 if (clid->cl_boot == (u32)nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +03001777 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001778 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return 1;
1780}
1781
1782/*
1783 * XXX Should we use a slab cache ?
1784 * This type of memory management is somewhat inefficient, but we use it
1785 * anyway since SETCLIENTID is not a common operation.
1786 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001787static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
1789 struct nfs4_client *clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001790 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001792 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1793 if (clp == NULL)
1794 return NULL;
Thomas Meyer67114fe2011-11-17 23:43:40 +01001795 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001796 if (clp->cl_name.data == NULL)
1797 goto err_no_name;
1798 clp->cl_ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
1799 OWNER_HASH_SIZE, GFP_KERNEL);
1800 if (!clp->cl_ownerstr_hashtbl)
1801 goto err_no_hashtbl;
1802 for (i = 0; i < OWNER_HASH_SIZE; i++)
1803 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001804 clp->cl_name.len = name.len;
Trond Myklebust5694c932014-04-18 14:43:56 -04001805 INIT_LIST_HEAD(&clp->cl_sessions);
1806 idr_init(&clp->cl_stateids);
1807 atomic_set(&clp->cl_refcount, 0);
1808 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1809 INIT_LIST_HEAD(&clp->cl_idhash);
1810 INIT_LIST_HEAD(&clp->cl_openowners);
1811 INIT_LIST_HEAD(&clp->cl_delegations);
1812 INIT_LIST_HEAD(&clp->cl_lru);
Trond Myklebust5694c932014-04-18 14:43:56 -04001813 INIT_LIST_HEAD(&clp->cl_revoked);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001814#ifdef CONFIG_NFSD_PNFS
1815 INIT_LIST_HEAD(&clp->cl_lo_states);
1816#endif
Trond Myklebust5694c932014-04-18 14:43:56 -04001817 spin_lock_init(&clp->cl_lock);
1818 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001820err_no_hashtbl:
1821 kfree(clp->cl_name.data);
1822err_no_name:
1823 kfree(clp);
1824 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001827static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828free_client(struct nfs4_client *clp)
1829{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001830 while (!list_empty(&clp->cl_sessions)) {
1831 struct nfsd4_session *ses;
1832 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1833 se_perclnt);
1834 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001835 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1836 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001837 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04001838 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001839 free_svc_cred(&clp->cl_cred);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001840 kfree(clp->cl_ownerstr_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 kfree(clp->cl_name.data);
majianpeng2d32b292013-01-29 13:16:06 +08001842 idr_destroy(&clp->cl_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 kfree(clp);
1844}
1845
Benny Halevy84d38ac2010-05-12 00:13:16 +03001846/* must be called under the client_lock */
Trond Myklebust4beb3452014-07-30 08:27:02 -04001847static void
Benny Halevy84d38ac2010-05-12 00:13:16 +03001848unhash_client_locked(struct nfs4_client *clp)
1849{
Trond Myklebust4beb3452014-07-30 08:27:02 -04001850 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001851 struct nfsd4_session *ses;
1852
Trond Myklebust0a880a22014-07-30 08:27:10 -04001853 lockdep_assert_held(&nn->client_lock);
1854
Trond Myklebust4beb3452014-07-30 08:27:02 -04001855 /* Mark the client as expired! */
1856 clp->cl_time = 0;
1857 /* Make it invisible */
1858 if (!list_empty(&clp->cl_idhash)) {
1859 list_del_init(&clp->cl_idhash);
1860 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
1861 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
1862 else
1863 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
1864 }
1865 list_del_init(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001866 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001867 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1868 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001869 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001870}
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872static void
Trond Myklebust4beb3452014-07-30 08:27:02 -04001873unhash_client(struct nfs4_client *clp)
1874{
1875 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1876
1877 spin_lock(&nn->client_lock);
1878 unhash_client_locked(clp);
1879 spin_unlock(&nn->client_lock);
1880}
1881
Jeff Layton97403d92014-07-30 08:27:12 -04001882static __be32 mark_client_expired_locked(struct nfs4_client *clp)
1883{
1884 if (atomic_read(&clp->cl_refcount))
1885 return nfserr_jukebox;
1886 unhash_client_locked(clp);
1887 return nfs_ok;
1888}
1889
Trond Myklebust4beb3452014-07-30 08:27:02 -04001890static void
1891__destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Jeff Laytone294c4c2018-03-16 11:32:02 -04001893 int i;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001894 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 struct list_head reaplist;
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04001899 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07001900 while (!list_empty(&clp->cl_delegations)) {
1901 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001902 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04001903 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
Benny Halevycdc97502014-05-30 09:09:30 -04001905 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 while (!list_empty(&reaplist)) {
1907 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04001908 list_del_init(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +02001909 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -04001910 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
Trond Myklebust60116952014-07-29 21:34:06 -04001911 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04001913 while (!list_empty(&clp->cl_revoked)) {
Andrew Elblec8764862015-02-25 17:46:27 -05001914 dp = list_entry(clp->cl_revoked.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001915 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001916 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02001917 }
NeilBrownea1da632005-06-23 22:04:17 -07001918 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001919 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
Kinglong Meeb5971af2014-08-22 10:18:43 -04001920 nfs4_get_stateowner(&oo->oo_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001921 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
Jeff Laytone294c4c2018-03-16 11:32:02 -04001923 for (i = 0; i < OWNER_HASH_SIZE; i++) {
1924 struct nfs4_stateowner *so, *tmp;
1925
1926 list_for_each_entry_safe(so, tmp, &clp->cl_ownerstr_hashtbl[i],
1927 so_strhash) {
1928 /* Should be no openowners at this point */
1929 WARN_ON_ONCE(so->so_is_open_owner);
1930 remove_blocked_locks(lockowner(so));
1931 }
1932 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001933 nfsd4_return_all_client_layouts(clp);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001934 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05001935 if (clp->cl_cb_conn.cb_xprt)
1936 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
J. Bruce Fields221a6872013-04-01 22:23:49 -04001937 free_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
Trond Myklebust4beb3452014-07-30 08:27:02 -04001940static void
1941destroy_client(struct nfs4_client *clp)
1942{
1943 unhash_client(clp);
1944 __destroy_client(clp);
1945}
1946
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001947static void expire_client(struct nfs4_client *clp)
1948{
Trond Myklebust4beb3452014-07-30 08:27:02 -04001949 unhash_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001950 nfsd4_client_record_remove(clp);
Trond Myklebust4beb3452014-07-30 08:27:02 -04001951 __destroy_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001952}
1953
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001954static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1955{
1956 memcpy(target->cl_verifier.data, source->data,
1957 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001960static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1961{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1963 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1964}
1965
J. Bruce Fields50043852015-11-20 15:58:37 -05001966int strdup_if_nonnull(char **target, char *source)
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001967{
J. Bruce Fields50043852015-11-20 15:58:37 -05001968 if (source) {
1969 *target = kstrdup(source, GFP_KERNEL);
1970 if (!*target)
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001971 return -ENOMEM;
1972 } else
J. Bruce Fields50043852015-11-20 15:58:37 -05001973 *target = NULL;
1974 return 0;
1975}
1976
1977static int copy_cred(struct svc_cred *target, struct svc_cred *source)
1978{
1979 int ret;
1980
1981 ret = strdup_if_nonnull(&target->cr_principal, source->cr_principal);
1982 if (ret)
1983 return ret;
J. Bruce Fields414ca012015-11-20 10:48:02 -05001984 ret = strdup_if_nonnull(&target->cr_raw_principal,
1985 source->cr_raw_principal);
1986 if (ret)
1987 return ret;
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04001988 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 target->cr_uid = source->cr_uid;
1990 target->cr_gid = source->cr_gid;
1991 target->cr_group_info = source->cr_group_info;
1992 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04001993 target->cr_gss_mech = source->cr_gss_mech;
1994 if (source->cr_gss_mech)
1995 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001996 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997}
1998
Rasmus Villemoesef17af22014-12-05 16:40:07 +01001999static int
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002000compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
2001{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002002 if (o1->len < o2->len)
2003 return -1;
2004 if (o1->len > o2->len)
2005 return 1;
2006 return memcmp(o1->data, o2->data, o1->len);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002007}
2008
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002009static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002010{
NeilBrowna55370a2005-06-23 22:03:52 -07002011 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
2014static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002015same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
2016{
2017 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
2020static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002021same_clid(clientid_t *cl1, clientid_t *cl2)
2022{
2023 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002026static bool groups_equal(struct group_info *g1, struct group_info *g2)
2027{
2028 int i;
2029
2030 if (g1->ngroups != g2->ngroups)
2031 return false;
2032 for (i=0; i<g1->ngroups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -07002033 if (!gid_eq(g1->gid[i], g2->gid[i]))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002034 return false;
2035 return true;
2036}
2037
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002038/*
2039 * RFC 3530 language requires clid_inuse be returned when the
2040 * "principal" associated with a requests differs from that previously
2041 * used. We use uid, gid's, and gss principal string as our best
2042 * approximation. We also don't want to allow non-gss use of a client
2043 * established using gss: in theory cr_principal should catch that
2044 * change, but in practice cr_principal can be null even in the gss case
2045 * since gssd doesn't always pass down a principal string.
2046 */
2047static bool is_gss_cred(struct svc_cred *cr)
2048{
2049 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2050 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
2051}
2052
2053
Vivek Trivedi5559b502012-07-24 21:18:20 +05302054static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002055same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
2056{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002057 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002058 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
2059 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002060 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
2061 return false;
2062 if (cr1->cr_principal == cr2->cr_principal)
2063 return true;
2064 if (!cr1->cr_principal || !cr2->cr_principal)
2065 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05302066 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
J. Bruce Fields57266a62013-04-13 14:27:29 -04002069static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
2070{
2071 struct svc_cred *cr = &rqstp->rq_cred;
2072 u32 service;
2073
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04002074 if (!cr->cr_gss_mech)
2075 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002076 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
2077 return service == RPC_GSS_SVC_INTEGRITY ||
2078 service == RPC_GSS_SVC_PRIVACY;
2079}
2080
Andrew Elblededeb132016-06-15 12:52:08 -04002081bool nfsd4_mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
J. Bruce Fields57266a62013-04-13 14:27:29 -04002082{
2083 struct svc_cred *cr = &rqstp->rq_cred;
2084
2085 if (!cl->cl_mach_cred)
2086 return true;
2087 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
2088 return false;
2089 if (!svc_rqst_integrity_protected(rqstp))
2090 return false;
J. Bruce Fields414ca012015-11-20 10:48:02 -05002091 if (cl->cl_cred.cr_raw_principal)
2092 return 0 == strcmp(cl->cl_cred.cr_raw_principal,
2093 cr->cr_raw_principal);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002094 if (!cr->cr_principal)
2095 return false;
2096 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
2097}
2098
Jeff Layton294ac322014-07-30 08:27:15 -04002099static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05002100{
Chuck Leverab4684d2012-03-02 17:13:50 -05002101 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Jeff Laytonf4199922014-06-17 07:44:11 -04002103 /*
2104 * This is opaque to client, so no need to byte-swap. Use
2105 * __force to keep sparse happy
2106 */
2107 verf[0] = (__force __be32)get_seconds();
Kinglong Mee19311aa82015-07-18 07:33:31 +08002108 verf[1] = (__force __be32)nn->clverifier_counter++;
Chuck Leverab4684d2012-03-02 17:13:50 -05002109 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
Jeff Layton294ac322014-07-30 08:27:15 -04002112static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
2113{
2114 clp->cl_clientid.cl_boot = nn->boot_time;
2115 clp->cl_clientid.cl_id = nn->clientid_counter++;
2116 gen_confirm(clp, nn);
2117}
2118
Jeff Layton4770d722014-07-29 21:34:10 -04002119static struct nfs4_stid *
2120find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04002121{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05002122 struct nfs4_stid *ret;
2123
2124 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
2125 if (!ret || !ret->sc_type)
2126 return NULL;
2127 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04002128}
2129
Jeff Layton4770d722014-07-29 21:34:10 -04002130static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04002131find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04002132{
2133 struct nfs4_stid *s;
2134
Jeff Layton4770d722014-07-29 21:34:10 -04002135 spin_lock(&cl->cl_lock);
2136 s = find_stateid_locked(cl, t);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002137 if (s != NULL) {
2138 if (typemask & s->sc_type)
2139 atomic_inc(&s->sc_count);
2140 else
2141 s = NULL;
2142 }
Jeff Layton4770d722014-07-29 21:34:10 -04002143 spin_unlock(&cl->cl_lock);
2144 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04002145}
2146
Jeff Layton2216d442012-11-12 15:00:57 -05002147static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002148 struct svc_rqst *rqstp, nfs4_verifier *verf)
2149{
2150 struct nfs4_client *clp;
2151 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002152 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002153 struct net *net = SVC_NET(rqstp);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002154
2155 clp = alloc_client(name);
2156 if (clp == NULL)
2157 return NULL;
2158
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002159 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
2160 if (ret) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002161 free_client(clp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002162 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002163 }
Christoph Hellwig0162ac22014-09-24 12:19:19 +02002164 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
Benny Halevy07cd4902010-05-12 00:13:41 +03002165 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002166 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002167 copy_verf(clp, verf);
2168 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04002169 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002170 clp->net = net;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002171 return clp;
2172}
2173
NeilBrownfd39ca92005-06-23 22:04:03 -07002174static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002175add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
2176{
2177 struct rb_node **new = &(root->rb_node), *parent = NULL;
2178 struct nfs4_client *clp;
2179
2180 while (*new) {
2181 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
2182 parent = *new;
2183
2184 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
2185 new = &((*new)->rb_left);
2186 else
2187 new = &((*new)->rb_right);
2188 }
2189
2190 rb_link_node(&new_clp->cl_namenode, parent, new);
2191 rb_insert_color(&new_clp->cl_namenode, root);
2192}
2193
2194static struct nfs4_client *
2195find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
2196{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002197 int cmp;
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002198 struct rb_node *node = root->rb_node;
2199 struct nfs4_client *clp;
2200
2201 while (node) {
2202 clp = rb_entry(node, struct nfs4_client, cl_namenode);
2203 cmp = compare_blob(&clp->cl_name, name);
2204 if (cmp > 0)
2205 node = node->rb_left;
2206 else if (cmp < 0)
2207 node = node->rb_right;
2208 else
2209 return clp;
2210 }
2211 return NULL;
2212}
2213
2214static void
2215add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
2217 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002218 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Trond Myklebust0a880a22014-07-30 08:27:10 -04002220 lockdep_assert_held(&nn->client_lock);
2221
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002222 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002223 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002225 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002226 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
NeilBrownfd39ca92005-06-23 22:04:03 -07002229static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230move_to_confirmed(struct nfs4_client *clp)
2231{
2232 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002233 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Trond Myklebust0a880a22014-07-30 08:27:10 -04002235 lockdep_assert_held(&nn->client_lock);
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002238 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002239 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002240 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002241 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002242 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
2245static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002246find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 struct nfs4_client *clp;
2249 unsigned int idhashval = clientid_hashval(clid->cl_id);
2250
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002251 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002252 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04002253 if ((bool)clp->cl_minorversion != sessions)
2254 return NULL;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002255 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 }
2259 return NULL;
2260}
2261
2262static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002263find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
2264{
2265 struct list_head *tbl = nn->conf_id_hashtbl;
2266
Trond Myklebust0a880a22014-07-30 08:27:10 -04002267 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002268 return find_client_in_id_table(tbl, clid, sessions);
2269}
2270
2271static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002272find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002274 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Trond Myklebust0a880a22014-07-30 08:27:10 -04002276 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002277 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002280static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002281{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002282 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002283}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002284
NeilBrown28ce6052005-06-23 22:03:56 -07002285static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002286find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002287{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002288 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002289 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002290}
2291
2292static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002293find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002294{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002295 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002296 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002297}
2298
NeilBrownfd39ca92005-06-23 22:04:03 -07002299static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002300gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
J. Bruce Fields07263f12010-05-31 19:09:40 -04002302 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002303 struct sockaddr *sa = svc_addr(rqstp);
2304 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04002305 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Jeff Layton7077ecb2009-08-14 12:57:58 -04002307 /* Currently, we only support tcp and tcp6 for the callback channel */
2308 if (se->se_callback_netid_len == 3 &&
2309 !memcmp(se->se_callback_netid_val, "tcp", 3))
2310 expected_family = AF_INET;
2311 else if (se->se_callback_netid_len == 4 &&
2312 !memcmp(se->se_callback_netid_val, "tcp6", 4))
2313 expected_family = AF_INET6;
2314 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 goto out_err;
2316
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002317 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002318 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04002319 (struct sockaddr *)&conn->cb_addr,
2320 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002321
J. Bruce Fields07263f12010-05-31 19:09:40 -04002322 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002324
J. Bruce Fields07263f12010-05-31 19:09:40 -04002325 if (conn->cb_addr.ss_family == AF_INET6)
2326 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04002327
J. Bruce Fields07263f12010-05-31 19:09:40 -04002328 conn->cb_prog = se->se_callback_prog;
2329 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08002330 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return;
2332out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04002333 conn->cb_addr.ss_family = AF_UNSPEC;
2334 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07002335 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 "will not receive delegations\n",
2337 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return;
2340}
2341
Andy Adamson074fe892009-04-03 08:28:15 +03002342/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04002343 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03002344 */
Trond Myklebustb6076642014-06-30 11:48:35 -04002345static void
Andy Adamson074fe892009-04-03 08:28:15 +03002346nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
2347{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002348 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04002349 struct nfsd4_slot *slot = resp->cstate.slot;
2350 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03002351
Andy Adamson557ce262009-08-28 08:45:04 -04002352 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002353
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002354 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamson557ce262009-08-28 08:45:04 -04002355 slot->sl_opcnt = resp->opcnt;
2356 slot->sl_status = resp->cstate.status;
J. Bruce Fields877362f2017-10-17 20:38:49 -04002357 free_svc_cred(&slot->sl_cred);
2358 copy_cred(&slot->sl_cred, &resp->rqstp->rq_cred);
Andy Adamsonbf864a32009-04-03 08:28:35 +03002359
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002360 if (!nfsd4_cache_this(resp)) {
2361 slot->sl_flags &= ~NFSD4_SLOT_CACHED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03002362 return;
2363 }
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002364 slot->sl_flags |= NFSD4_SLOT_CACHED;
2365
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002366 base = resp->cstate.data_offset;
2367 slot->sl_datalen = buf->len - base;
2368 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Dan Carpenterd3f03402015-11-21 13:28:50 +03002369 WARN(1, "%s: sessions DRC could not cache compound\n",
2370 __func__);
Andy Adamson557ce262009-08-28 08:45:04 -04002371 return;
Andy Adamson074fe892009-04-03 08:28:15 +03002372}
2373
2374/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04002375 * Encode the replay sequence operation from the slot values.
2376 * If cachethis is FALSE encode the uncached rep error on the next
2377 * operation which sets resp->p and increments resp->opcnt for
2378 * nfs4svc_encode_compoundres.
2379 *
Andy Adamson074fe892009-04-03 08:28:15 +03002380 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04002381static __be32
2382nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
2383 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03002384{
Andy Adamsonabfabf82009-07-23 19:02:18 -04002385 struct nfsd4_op *op;
2386 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03002387
Andy Adamsonabfabf82009-07-23 19:02:18 -04002388 /* Encode the replayed sequence operation */
2389 op = &args->ops[resp->opcnt - 1];
2390 nfsd4_encode_operation(resp, op);
2391
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002392 if (slot->sl_flags & NFSD4_SLOT_CACHED)
2393 return op->status;
2394 if (args->opcnt == 1) {
2395 /*
2396 * The original operation wasn't a solo sequence--we
2397 * always cache those--so this retry must not match the
2398 * original:
2399 */
2400 op->status = nfserr_seq_false_retry;
2401 } else {
Andy Adamsonabfabf82009-07-23 19:02:18 -04002402 op = &args->ops[resp->opcnt++];
2403 op->status = nfserr_retry_uncached_rep;
2404 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03002405 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04002406 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03002407}
2408
2409/*
Andy Adamson557ce262009-08-28 08:45:04 -04002410 * The sequence operation is not cached because we can use the slot and
2411 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03002412 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04002413static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03002414nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
2415 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03002416{
Andy Adamson557ce262009-08-28 08:45:04 -04002417 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002418 struct xdr_stream *xdr = &resp->xdr;
2419 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03002420 __be32 status;
2421
Andy Adamson557ce262009-08-28 08:45:04 -04002422 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002423
Andy Adamsonabfabf82009-07-23 19:02:18 -04002424 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04002425 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04002426 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03002427
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002428 p = xdr_reserve_space(xdr, slot->sl_datalen);
2429 if (!p) {
2430 WARN_ON_ONCE(1);
2431 return nfserr_serverfault;
2432 }
2433 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
2434 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03002435
Andy Adamson557ce262009-08-28 08:45:04 -04002436 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002437 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03002438}
2439
Andy Adamson0733d212009-04-03 08:28:01 +03002440/*
2441 * Set the exchange_id flags returned by the server.
2442 */
2443static void
2444nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
2445{
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002446#ifdef CONFIG_NFSD_PNFS
2447 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_PNFS_MDS;
2448#else
Andy Adamson0733d212009-04-03 08:28:01 +03002449 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002450#endif
Andy Adamson0733d212009-04-03 08:28:01 +03002451
2452 /* Referrals are supported, Migration is not. */
2453 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
2454
2455 /* set the wire flags to return to client. */
2456 clid->flags = new->cl_exchange_flags;
2457}
2458
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002459static bool client_has_openowners(struct nfs4_client *clp)
2460{
2461 struct nfs4_openowner *oo;
2462
2463 list_for_each_entry(oo, &clp->cl_openowners, oo_perclient) {
2464 if (!list_empty(&oo->oo_owner.so_stateids))
2465 return true;
2466 }
2467 return false;
2468}
2469
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002470static bool client_has_state(struct nfs4_client *clp)
2471{
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002472 return client_has_openowners(clp)
Kinglong Mee47e970b2015-07-21 13:09:17 +08002473#ifdef CONFIG_NFSD_PNFS
2474 || !list_empty(&clp->cl_lo_states)
2475#endif
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002476 || !list_empty(&clp->cl_delegations)
2477 || !list_empty(&clp->cl_sessions);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002478}
2479
Al Virob37ad282006-10-19 23:28:59 -07002480__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03002481nfsd4_exchange_id(struct svc_rqst *rqstp,
2482 struct nfsd4_compound_state *cstate,
2483 struct nfsd4_exchange_id *exid)
2484{
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002485 struct nfs4_client *conf, *new;
2486 struct nfs4_client *unconf = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002487 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04002488 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03002489 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04002490 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002491 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002492 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03002493
Jeff Layton363168b2009-08-14 12:57:56 -04002494 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03002495 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04002496 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03002497 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04002498 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03002499
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002500 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03002501 return nfserr_inval;
2502
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002503 new = create_client(exid->clname, rqstp, &verf);
2504 if (new == NULL)
2505 return nfserr_jukebox;
2506
Andy Adamson0733d212009-04-03 08:28:01 +03002507 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002508 case SP4_MACH_CRED:
Andrew Elbleed941642016-06-15 12:52:09 -04002509 exid->spo_must_enforce[0] = 0;
2510 exid->spo_must_enforce[1] = (
2511 1 << (OP_BIND_CONN_TO_SESSION - 32) |
2512 1 << (OP_EXCHANGE_ID - 32) |
2513 1 << (OP_CREATE_SESSION - 32) |
2514 1 << (OP_DESTROY_SESSION - 32) |
2515 1 << (OP_DESTROY_CLIENTID - 32));
2516
2517 exid->spo_must_allow[0] &= (1 << (OP_CLOSE) |
2518 1 << (OP_OPEN_DOWNGRADE) |
2519 1 << (OP_LOCKU) |
2520 1 << (OP_DELEGRETURN));
2521
2522 exid->spo_must_allow[1] &= (
2523 1 << (OP_TEST_STATEID - 32) |
2524 1 << (OP_FREE_STATEID - 32));
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002525 if (!svc_rqst_integrity_protected(rqstp)) {
2526 status = nfserr_inval;
2527 goto out_nolock;
2528 }
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05002529 /*
2530 * Sometimes userspace doesn't give us a principal.
2531 * Which is a bug, really. Anyway, we can't enforce
2532 * MACH_CRED in that case, better to give up now:
2533 */
J. Bruce Fields414ca012015-11-20 10:48:02 -05002534 if (!new->cl_cred.cr_principal &&
2535 !new->cl_cred.cr_raw_principal) {
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05002536 status = nfserr_serverfault;
2537 goto out_nolock;
2538 }
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002539 new->cl_mach_cred = true;
Andy Adamson0733d212009-04-03 08:28:01 +03002540 case SP4_NONE:
2541 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05002542 default: /* checked by xdr code */
2543 WARN_ON_ONCE(1);
Andy Adamson0733d212009-04-03 08:28:01 +03002544 case SP4_SSV:
Kinglong Mee8edf4b02016-02-26 22:36:42 +08002545 status = nfserr_encr_alg_unsupp;
2546 goto out_nolock;
Andy Adamson0733d212009-04-03 08:28:01 +03002547 }
2548
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002549 /* Cases below refer to rfc 5661 section 18.35.4: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002550 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002551 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03002552 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002553 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
2554 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
2555
J. Bruce Fields136e6582012-05-12 20:37:23 -04002556 if (update) {
2557 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002558 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002559 goto out;
2560 }
Andrew Elblededeb132016-06-15 12:52:08 -04002561 if (!nfsd4_mach_creds_match(conf, rqstp)) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002562 status = nfserr_wrong_cred;
2563 goto out;
2564 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002565 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03002566 status = nfserr_perm;
2567 goto out;
2568 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002569 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03002570 status = nfserr_not_same;
2571 goto out;
2572 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002573 /* case 6 */
2574 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002575 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03002576 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002577 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002578 if (client_has_state(conf)) {
2579 status = nfserr_clid_inuse;
2580 goto out;
2581 }
Andy Adamson0733d212009-04-03 08:28:01 +03002582 goto out_new;
2583 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002584 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04002585 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002586 goto out_copy;
2587 }
2588 /* case 5, client reboot */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002589 conf = NULL;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002590 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002591 }
2592
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002593 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002594 status = nfserr_noent;
2595 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03002596 }
2597
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002598 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002599 if (unconf) /* case 4, possible retry or client restart */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002600 unhash_client_locked(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002601
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002602 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03002603out_new:
Jeff Laytonfd699b82014-07-30 08:27:14 -04002604 if (conf) {
2605 status = mark_client_expired_locked(conf);
2606 if (status)
2607 goto out;
2608 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04002609 new->cl_minorversion = cstate->minorversion;
Andrew Elbleed941642016-06-15 12:52:09 -04002610 new->cl_spo_must_allow.u.words[0] = exid->spo_must_allow[0];
2611 new->cl_spo_must_allow.u.words[1] = exid->spo_must_allow[1];
Andy Adamson0733d212009-04-03 08:28:01 +03002612
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002613 gen_clid(new, nn);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002614 add_to_unconfirmed(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002615 swap(new, conf);
Andy Adamson0733d212009-04-03 08:28:01 +03002616out_copy:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002617 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
2618 exid->clientid.cl_id = conf->cl_clientid.cl_id;
Andy Adamson0733d212009-04-03 08:28:01 +03002619
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002620 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
2621 nfsd4_set_ex_flags(conf, exid);
Andy Adamson0733d212009-04-03 08:28:01 +03002622
2623 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002624 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03002625 status = nfs_ok;
2626
2627out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002628 spin_unlock(&nn->client_lock);
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002629out_nolock:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002630 if (new)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002631 expire_client(new);
2632 if (unconf)
2633 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002634 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002635}
2636
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002637static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04002638check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002639{
Andy Adamson88e588d2009-07-23 19:02:15 -04002640 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
2641 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002642
2643 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04002644 if (slot_inuse) {
2645 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002646 return nfserr_jukebox;
2647 else
2648 return nfserr_seq_misordered;
2649 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05002650 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04002651 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03002652 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04002653 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002654 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002655 return nfserr_seq_misordered;
2656}
2657
Andy Adamson49557cc2009-07-23 19:02:16 -04002658/*
2659 * Cache the create session result into the create session single DRC
2660 * slot cache by saving the xdr structure. sl_seqid has been set.
2661 * Do this for solo or embedded create session operations.
2662 */
2663static void
2664nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002665 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04002666{
2667 slot->sl_status = nfserr;
2668 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
2669}
2670
2671static __be32
2672nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
2673 struct nfsd4_clid_slot *slot)
2674{
2675 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
2676 return slot->sl_status;
2677}
2678
Mi Jinlong1b74c252011-07-14 14:50:17 +08002679#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2680 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2681 1 + /* MIN tag is length with zero, only length */ \
2682 3 + /* version, opcount, opcode */ \
2683 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2684 /* seqid, slotID, slotID, cache */ \
2685 4 ) * sizeof(__be32))
2686
2687#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2688 2 + /* verifier: AUTH_NULL, length 0 */\
2689 1 + /* status */ \
2690 1 + /* MIN tag is length with zero, only length */ \
2691 3 + /* opcount, opcode, opstatus*/ \
2692 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2693 /* seqid, slotID, slotID, slotID, status */ \
2694 5 ) * sizeof(__be32))
2695
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002696static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08002697{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002698 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
2699
J. Bruce Fields373cd402013-04-08 15:42:12 -04002700 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
2701 return nfserr_toosmall;
2702 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
2703 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002704 ca->headerpadsz = 0;
2705 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
2706 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
2707 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
2708 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
2709 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
2710 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
2711 /*
2712 * Note decreasing slot size below client's request may make it
2713 * difficult for client to function correctly, whereas
2714 * decreasing the number of slots will (just?) affect
2715 * performance. When short on memory we therefore prefer to
2716 * decrease number of slots instead of their size. Clients that
2717 * request larger slots than they need will get poor results:
2718 */
2719 ca->maxreqs = nfsd4_get_drc_mem(ca);
2720 if (!ca->maxreqs)
2721 return nfserr_jukebox;
2722
J. Bruce Fields373cd402013-04-08 15:42:12 -04002723 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08002724}
2725
Chuck Lever45006322016-03-01 13:06:02 -05002726/*
2727 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
2728 * These are based on similar macros in linux/sunrpc/msg_prot.h .
2729 */
2730#define RPC_MAX_HEADER_WITH_AUTH_SYS \
2731 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
2732
2733#define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
2734 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
2735
Kinglong Mee8a891632013-12-23 18:11:02 +08002736#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05002737 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08002738#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05002739 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
2740 sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08002741
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002742static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
2743{
2744 ca->headerpadsz = 0;
2745
Kinglong Mee8a891632013-12-23 18:11:02 +08002746 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002747 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08002748 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002749 return nfserr_toosmall;
2750 ca->maxresp_cached = 0;
2751 if (ca->maxops < 2)
2752 return nfserr_toosmall;
2753
2754 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002755}
2756
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002757static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
2758{
2759 switch (cbs->flavor) {
2760 case RPC_AUTH_NULL:
2761 case RPC_AUTH_UNIX:
2762 return nfs_ok;
2763 default:
2764 /*
2765 * GSS case: the spec doesn't allow us to return this
2766 * error. But it also doesn't allow us not to support
2767 * GSS.
2768 * I'd rather this fail hard than return some error the
2769 * client might think it can already handle:
2770 */
2771 return nfserr_encr_alg_unsupp;
2772 }
2773}
2774
Andy Adamson069b6ad2009-04-03 08:27:58 +03002775__be32
2776nfsd4_create_session(struct svc_rqst *rqstp,
2777 struct nfsd4_compound_state *cstate,
2778 struct nfsd4_create_session *cr_ses)
2779{
Jeff Layton363168b2009-08-14 12:57:56 -04002780 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002781 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04002782 struct nfs4_client *old = NULL;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002783 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002784 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002785 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002786 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002787 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002788
Mi Jinlonga62573d2011-03-23 17:57:07 +08002789 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
2790 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002791 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
2792 if (status)
2793 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002794 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04002795 if (status)
2796 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002797 status = check_backchannel_attrs(&cr_ses->back_channel);
2798 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08002799 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002800 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08002801 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002802 if (!new)
2803 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002804 conn = alloc_conn_from_crses(rqstp, cr_ses);
2805 if (!conn)
2806 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08002807
Jeff Laytond20c11d2014-07-30 08:27:07 -04002808 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002809 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002810 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002811 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002812
2813 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002814 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002815 if (!nfsd4_mach_creds_match(conf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002816 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002817 cs_slot = &conf->cl_cs_slot;
2818 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Kinglong Meef5e22bb2015-07-13 17:32:34 +08002819 if (status) {
2820 if (status == nfserr_replay_cache)
2821 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002822 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002823 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002824 } else if (unconf) {
2825 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04002826 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002827 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002828 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002829 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002830 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002831 if (!nfsd4_mach_creds_match(unconf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002832 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002833 cs_slot = &unconf->cl_cs_slot;
2834 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002835 if (status) {
2836 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002837 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002838 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002839 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002840 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002841 if (old) {
Jeff Laytond20c11d2014-07-30 08:27:07 -04002842 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04002843 if (status) {
2844 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002845 goto out_free_conn;
Jeff Layton7abea1e2014-07-30 08:27:13 -04002846 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04002847 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002848 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002849 conf = unconf;
2850 } else {
2851 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002852 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002853 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002854 status = nfs_ok;
Chuck Lever4ce85c82016-03-01 13:05:27 -05002855 /* Persistent sessions are not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002856 cr_ses->flags &= ~SESSION4_PERSIST;
Chuck Lever4ce85c82016-03-01 13:05:27 -05002857 /* Upshifting from TCP to RDMA is not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002858 cr_ses->flags &= ~SESSION4_RDMA;
2859
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002860 init_session(rqstp, new, conf, cr_ses);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002861 nfsd4_get_session_locked(new);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002862
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002863 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002864 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04002865 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04002866 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002867
Jeff Laytond20c11d2014-07-30 08:27:07 -04002868 /* cache solo and embedded create sessions under the client_lock */
Andy Adamson49557cc2009-07-23 19:02:16 -04002869 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002870 spin_unlock(&nn->client_lock);
2871 /* init connection and backchannel */
2872 nfsd4_init_conn(rqstp, conn, new);
2873 nfsd4_put_session(new);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002874 if (old)
2875 expire_client(old);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002876 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002877out_free_conn:
Jeff Laytond20c11d2014-07-30 08:27:07 -04002878 spin_unlock(&nn->client_lock);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002879 free_conn(conn);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002880 if (old)
2881 expire_client(old);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002882out_free_session:
2883 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002884out_release_drc_mem:
2885 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04002886 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002887}
2888
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002889static __be32 nfsd4_map_bcts_dir(u32 *dir)
2890{
2891 switch (*dir) {
2892 case NFS4_CDFC4_FORE:
2893 case NFS4_CDFC4_BACK:
2894 return nfs_ok;
2895 case NFS4_CDFC4_FORE_OR_BOTH:
2896 case NFS4_CDFC4_BACK_OR_BOTH:
2897 *dir = NFS4_CDFC4_BOTH;
2898 return nfs_ok;
2899 };
2900 return nfserr_inval;
2901}
2902
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002903__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
2904{
2905 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002906 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002907 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002908
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002909 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2910 if (status)
2911 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002912 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002913 session->se_cb_prog = bc->bc_cb_program;
2914 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002915 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002916
2917 nfsd4_probe_callback(session->se_client);
2918
2919 return nfs_ok;
2920}
2921
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002922__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2923 struct nfsd4_compound_state *cstate,
2924 struct nfsd4_bind_conn_to_session *bcts)
2925{
2926 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002927 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002928 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002929 struct net *net = SVC_NET(rqstp);
2930 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002931
2932 if (!nfsd4_last_compound_op(rqstp))
2933 return nfserr_not_only_op;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002934 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002935 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002936 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002937 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002938 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002939 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002940 if (!nfsd4_mach_creds_match(session->se_client, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002941 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002942 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002943 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002944 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002945 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002946 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002947 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002948 goto out;
2949 nfsd4_init_conn(rqstp, conn, session);
2950 status = nfs_ok;
2951out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002952 nfsd4_put_session(session);
2953out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002954 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002955}
2956
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002957static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2958{
2959 if (!session)
2960 return 0;
2961 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2962}
2963
Andy Adamson069b6ad2009-04-03 08:27:58 +03002964__be32
2965nfsd4_destroy_session(struct svc_rqst *r,
2966 struct nfsd4_compound_state *cstate,
2967 struct nfsd4_destroy_session *sessionid)
2968{
Benny Halevye10e0cf2009-04-03 08:28:38 +03002969 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002970 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002971 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002972 struct net *net = SVC_NET(r);
2973 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002974
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002975 status = nfserr_not_only_op;
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002976 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04002977 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002978 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002979 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04002980 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03002981 dump_sessionid(__func__, &sessionid->sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002982 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002983 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002984 if (!ses)
2985 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002986 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002987 if (!nfsd4_mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002988 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002989 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002990 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002991 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03002992 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002993 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002994
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05002995 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04002996
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002997 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002998 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002999out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003000 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003001out_client_lock:
3002 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003003out:
Benny Halevye10e0cf2009-04-03 08:28:38 +03003004 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003005}
3006
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003007static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003008{
3009 struct nfsd4_conn *c;
3010
3011 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003012 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04003013 return c;
3014 }
3015 }
3016 return NULL;
3017}
3018
J. Bruce Fields57266a62013-04-13 14:27:29 -04003019static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003020{
3021 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003022 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003023 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003024 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003025
3026 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003027 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003028 if (c)
3029 goto out_free;
3030 status = nfserr_conn_not_bound_to_session;
3031 if (clp->cl_mach_cred)
3032 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003033 __nfsd4_hash_conn(new, ses);
3034 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003035 ret = nfsd4_register_conn(new);
3036 if (ret)
3037 /* oops; xprt is already down: */
3038 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003039 return nfs_ok;
3040out_free:
3041 spin_unlock(&clp->cl_lock);
3042 free_conn(new);
3043 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003044}
3045
Mi Jinlong868b89c2011-04-27 09:09:58 +08003046static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
3047{
3048 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3049
3050 return args->opcnt > session->se_fchannel.maxops;
3051}
3052
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003053static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
3054 struct nfsd4_session *session)
3055{
3056 struct xdr_buf *xb = &rqstp->rq_arg;
3057
3058 return xb->len > session->se_fchannel.maxreq_sz;
3059}
3060
J. Bruce Fields877362f2017-10-17 20:38:49 -04003061static bool replay_matches_cache(struct svc_rqst *rqstp,
3062 struct nfsd4_sequence *seq, struct nfsd4_slot *slot)
3063{
3064 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3065
3066 if ((bool)(slot->sl_flags & NFSD4_SLOT_CACHETHIS) !=
3067 (bool)seq->cachethis)
3068 return false;
3069 /*
3070 * If there's an error than the reply can have fewer ops than
3071 * the call. But if we cached a reply with *more* ops than the
3072 * call you're sending us now, then this new call is clearly not
3073 * really a replay of the old one:
3074 */
3075 if (slot->sl_opcnt < argp->opcnt)
3076 return false;
3077 /* This is the only check explicitly called by spec: */
3078 if (!same_creds(&rqstp->rq_cred, &slot->sl_cred))
3079 return false;
3080 /*
3081 * There may be more comparisons we could actually do, but the
3082 * spec doesn't require us to catch every case where the calls
3083 * don't match (that would require caching the call as well as
3084 * the reply), so we don't bother.
3085 */
3086 return true;
3087}
3088
Andy Adamson069b6ad2009-04-03 08:27:58 +03003089__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03003090nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003091 struct nfsd4_compound_state *cstate,
3092 struct nfsd4_sequence *seq)
3093{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03003094 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003095 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003096 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003097 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003098 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003099 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003100 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003101 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003102 struct net *net = SVC_NET(rqstp);
3103 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003104
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03003105 if (resp->opcnt != 1)
3106 return nfserr_sequence_pos;
3107
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003108 /*
3109 * Will be either used or freed by nfsd4_sequence_check_conn
3110 * below.
3111 */
3112 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
3113 if (!conn)
3114 return nfserr_jukebox;
3115
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003116 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003117 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003118 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04003119 goto out_no_session;
3120 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003121
Mi Jinlong868b89c2011-04-27 09:09:58 +08003122 status = nfserr_too_many_ops;
3123 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003124 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08003125
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003126 status = nfserr_req_too_big;
3127 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003128 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003129
Benny Halevyb85d4c02009-04-03 08:28:08 +03003130 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003131 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003132 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003133
Andy Adamson557ce262009-08-28 08:45:04 -04003134 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03003135 dprintk("%s: slotid %d\n", __func__, seq->slotid);
3136
Andy Adamsona8dfdae2009-08-28 08:45:02 -04003137 /* We do not negotiate the number of slots yet, so set the
3138 * maxslots to the session maxreqs which is used to encode
3139 * sr_highest_slotid and the sr_target_slot id to maxslots */
3140 seq->maxslots = session->se_fchannel.maxreqs;
3141
J. Bruce Fields73e79482012-02-13 16:39:00 -05003142 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
3143 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003144 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003145 status = nfserr_seq_misordered;
3146 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003147 goto out_put_session;
J. Bruce Fields877362f2017-10-17 20:38:49 -04003148 status = nfserr_seq_false_retry;
3149 if (!replay_matches_cache(rqstp, seq, slot))
3150 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003151 cstate->slot = slot;
3152 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003153 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03003154 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04003155 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03003156 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003157 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003158 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003159 }
3160 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003161 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003162
J. Bruce Fields57266a62013-04-13 14:27:29 -04003163 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003164 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003165 if (status)
3166 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003167
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003168 buflen = (seq->cachethis) ?
3169 session->se_fchannel.maxresp_cached :
3170 session->se_fchannel.maxresp_sz;
3171 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
3172 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04003173 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003174 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04003175 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003176
3177 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003178 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003179 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003180 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05003181 if (seq->cachethis)
3182 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003183 else
3184 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003185
3186 cstate->slot = slot;
3187 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003188 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003189
Benny Halevyb85d4c02009-04-03 08:28:08 +03003190out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04003191 switch (clp->cl_cb_state) {
3192 case NFSD4_CB_DOWN:
3193 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
3194 break;
3195 case NFSD4_CB_FAULT:
3196 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
3197 break;
3198 default:
3199 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003200 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003201 if (!list_empty(&clp->cl_revoked))
3202 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003203out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08003204 if (conn)
3205 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003206 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003207 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003208out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003209 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003210 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003211}
3212
Trond Myklebustb6076642014-06-30 11:48:35 -04003213void
3214nfsd4_sequence_done(struct nfsd4_compoundres *resp)
3215{
3216 struct nfsd4_compound_state *cs = &resp->cstate;
3217
3218 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04003219 if (cs->status != nfserr_replay_cache) {
3220 nfsd4_store_cache_entry(resp);
3221 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
3222 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003223 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04003224 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003225 } else if (cs->clp)
3226 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04003227}
3228
Mi Jinlong345c2842011-10-20 17:51:39 +08003229__be32
3230nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
3231{
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003232 struct nfs4_client *conf, *unconf;
3233 struct nfs4_client *clp = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003234 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003235 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08003236
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003237 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003238 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003239 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003240 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08003241
3242 if (conf) {
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04003243 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08003244 status = nfserr_clientid_busy;
3245 goto out;
3246 }
Jeff Laytonfd699b82014-07-30 08:27:14 -04003247 status = mark_client_expired_locked(conf);
3248 if (status)
3249 goto out;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003250 clp = conf;
Mi Jinlong345c2842011-10-20 17:51:39 +08003251 } else if (unconf)
3252 clp = unconf;
3253 else {
3254 status = nfserr_stale_clientid;
3255 goto out;
3256 }
Andrew Elblededeb132016-06-15 12:52:08 -04003257 if (!nfsd4_mach_creds_match(clp, rqstp)) {
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003258 clp = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003259 status = nfserr_wrong_cred;
3260 goto out;
3261 }
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003262 unhash_client_locked(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003263out:
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003264 spin_unlock(&nn->client_lock);
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003265 if (clp)
3266 expire_client(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003267 return status;
3268}
3269
Andy Adamson069b6ad2009-04-03 08:27:58 +03003270__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003271nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
3272{
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003273 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003274
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003275 if (rc->rca_one_fs) {
3276 if (!cstate->current_fh.fh_dentry)
3277 return nfserr_nofilehandle;
3278 /*
3279 * We don't take advantage of the rca_one_fs case.
3280 * That's OK, it's optional, we can safely ignore it.
3281 */
Christophe JAILLETd28c4422016-07-02 08:24:32 +02003282 return nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003283 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003284
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003285 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04003286 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
3287 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003288 goto out;
3289
3290 status = nfserr_stale_clientid;
3291 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003292 /*
3293 * The following error isn't really legal.
3294 * But we only get here if the client just explicitly
3295 * destroyed the client. Surely it no longer cares what
3296 * error it gets back on an operation for the dead
3297 * client.
3298 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003299 goto out;
3300
3301 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04003302 nfsd4_client_record_create(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003303out:
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003304 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003305}
3306
3307__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003308nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3309 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310{
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003311 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 nfs4_verifier clverifier = setclid->se_verf;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003313 struct nfs4_client *conf, *new;
3314 struct nfs4_client *unconf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003315 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003316 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3317
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003318 new = create_client(clname, rqstp, &clverifier);
3319 if (new == NULL)
3320 return nfserr_jukebox;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003321 /* Cases below refer to rfc 3530 section 14.2.33: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003322 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003323 conf = find_confirmed_client_by_name(&clname, nn);
J. Bruce Fields2b634822015-10-15 15:33:23 -04003324 if (conf && client_has_state(conf)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003325 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05003327 if (clp_used_exchangeid(conf))
3328 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04003329 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04003330 char addr_str[INET6_ADDRSTRLEN];
3331 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
3332 sizeof(addr_str));
3333 dprintk("NFSD: setclientid: string in use by client "
3334 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 goto out;
3336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003338 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04003339 if (unconf)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003340 unhash_client_locked(unconf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003341 if (conf && same_verf(&conf->cl_verifier, &clverifier)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003342 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 copy_clid(new, conf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003344 gen_confirm(new, nn);
3345 } else /* case 4 (new client) or cases 2, 3 (client reboot): */
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003346 gen_clid(new, nn);
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04003347 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09003348 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003349 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
3351 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
3352 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003353 new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 status = nfs_ok;
3355out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003356 spin_unlock(&nn->client_lock);
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003357 if (new)
3358 free_client(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003359 if (unconf)
3360 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 return status;
3362}
3363
3364
Al Virob37ad282006-10-19 23:28:59 -07003365__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003366nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
3367 struct nfsd4_compound_state *cstate,
3368 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
NeilBrown21ab45a2005-06-23 22:04:14 -07003370 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003371 struct nfs4_client *old = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
3373 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07003374 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003375 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003377 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return nfserr_stale_clientid;
NeilBrown21ab45a2005-06-23 22:04:14 -07003379
Jeff Laytond20c11d2014-07-30 08:27:07 -04003380 spin_lock(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003381 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003382 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003383 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04003384 * We try hard to give out unique clientid's, so if we get an
3385 * attempt to confirm the same clientid with a different cred,
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003386 * the client may be buggy; this should never happen.
3387 *
3388 * Nevertheless, RFC 7530 recommends INUSE for this case:
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003389 */
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003390 status = nfserr_clid_inuse;
J. Bruce Fields8695b902012-05-19 10:05:58 -04003391 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
3392 goto out;
3393 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
3394 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003395 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003396 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003397 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
3398 /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 status = nfs_ok;
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003400 } else /* case 4: client hasn't noticed we rebooted yet? */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003401 status = nfserr_stale_clientid;
3402 goto out;
3403 }
3404 status = nfs_ok;
3405 if (conf) { /* case 1: callback update */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003406 old = unconf;
3407 unhash_client_locked(old);
J. Bruce Fields8695b902012-05-19 10:05:58 -04003408 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003409 } else { /* case 3: normal case; new or rebooted client */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003410 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
3411 if (old) {
J. Bruce Fields2b634822015-10-15 15:33:23 -04003412 status = nfserr_clid_inuse;
3413 if (client_has_state(old)
3414 && !same_creds(&unconf->cl_cred,
3415 &old->cl_cred))
3416 goto out;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003417 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003418 if (status) {
3419 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003420 goto out;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003421 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003422 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04003423 move_to_confirmed(unconf);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003424 conf = unconf;
NeilBrown08e89872005-06-23 22:04:11 -07003425 }
Jeff Laytond20c11d2014-07-30 08:27:07 -04003426 get_client_locked(conf);
3427 spin_unlock(&nn->client_lock);
3428 nfsd4_probe_callback(conf);
3429 spin_lock(&nn->client_lock);
3430 put_client_renew_locked(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431out:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003432 spin_unlock(&nn->client_lock);
3433 if (old)
3434 expire_client(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 return status;
3436}
3437
J. Bruce Fields32513b42011-10-13 16:00:16 -04003438static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
J. Bruce Fields32513b42011-10-13 16:00:16 -04003440 return kmem_cache_alloc(file_slab, GFP_KERNEL);
3441}
3442
3443/* OPEN Share state helper functions */
Jeff Layton5b095e92014-10-23 08:01:02 -04003444static void nfsd4_init_file(struct knfsd_fh *fh, unsigned int hashval,
3445 struct nfs4_file *fp)
J. Bruce Fields32513b42011-10-13 16:00:16 -04003446{
Trond Myklebust950e0112014-06-30 11:48:31 -04003447 lockdep_assert_held(&state_lock);
3448
J. Bruce Fields32513b42011-10-13 16:00:16 -04003449 atomic_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003450 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04003451 INIT_LIST_HEAD(&fp->fi_stateids);
3452 INIT_LIST_HEAD(&fp->fi_delegations);
Sachin Bhamare8287f002015-04-27 14:50:14 +02003453 INIT_LIST_HEAD(&fp->fi_clnt_odstate);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04003454 fh_copy_shallow(&fp->fi_fhandle, fh);
Jeff Layton0c637be2014-08-22 12:05:43 -04003455 fp->fi_deleg_file = NULL;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003456 fp->fi_had_conflict = false;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003457 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003458 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
3459 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003460#ifdef CONFIG_NFSD_PNFS
3461 INIT_LIST_HEAD(&fp->fi_lo_states);
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02003462 atomic_set(&fp->fi_lo_recalls, 0);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003463#endif
Jeff Layton5b095e92014-10-23 08:01:02 -04003464 hlist_add_head_rcu(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003467void
NeilBrowne60d4392005-06-23 22:03:01 -07003468nfsd4_free_slabs(void)
3469{
Sachin Bhamare8287f002015-04-27 14:50:14 +02003470 kmem_cache_destroy(odstate_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07003471 kmem_cache_destroy(openowner_slab);
3472 kmem_cache_destroy(lockowner_slab);
3473 kmem_cache_destroy(file_slab);
3474 kmem_cache_destroy(stateid_slab);
3475 kmem_cache_destroy(deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07003476}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Bryan Schumaker72083392011-11-01 15:24:59 -04003478int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479nfsd4_init_slabs(void)
3480{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003481 openowner_slab = kmem_cache_create("nfsd4_openowners",
3482 sizeof(struct nfs4_openowner), 0, 0, NULL);
3483 if (openowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003484 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003485 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08003486 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003487 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003488 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07003489 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09003490 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07003491 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003492 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07003493 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003494 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07003495 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003496 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07003497 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09003498 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07003499 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003500 goto out_free_stateid_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +02003501 odstate_slab = kmem_cache_create("nfsd4_odstate",
3502 sizeof(struct nfs4_clnt_odstate), 0, 0, NULL);
3503 if (odstate_slab == NULL)
3504 goto out_free_deleg_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07003506
Sachin Bhamare8287f002015-04-27 14:50:14 +02003507out_free_deleg_slab:
3508 kmem_cache_destroy(deleg_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07003509out_free_stateid_slab:
3510 kmem_cache_destroy(stateid_slab);
3511out_free_file_slab:
3512 kmem_cache_destroy(file_slab);
3513out_free_lockowner_slab:
3514 kmem_cache_destroy(lockowner_slab);
3515out_free_openowner_slab:
3516 kmem_cache_destroy(openowner_slab);
3517out:
NeilBrowne60d4392005-06-23 22:03:01 -07003518 dprintk("nfsd4: out of memory while initializing nfsv4\n");
3519 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520}
3521
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003522static void init_nfs4_replay(struct nfs4_replay *rp)
3523{
3524 rp->rp_status = nfserr_serverfault;
3525 rp->rp_buflen = 0;
3526 rp->rp_buf = rp->rp_ibuf;
Jeff Layton58fb12e2014-07-29 21:34:27 -04003527 mutex_init(&rp->rp_mutex);
3528}
3529
3530static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
3531 struct nfs4_stateowner *so)
3532{
3533 if (!nfsd4_has_session(cstate)) {
3534 mutex_lock(&so->so_replay.rp_mutex);
Kinglong Meeb5971af2014-08-22 10:18:43 -04003535 cstate->replay_owner = nfs4_get_stateowner(so);
Jeff Layton58fb12e2014-07-29 21:34:27 -04003536 }
3537}
3538
3539void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
3540{
3541 struct nfs4_stateowner *so = cstate->replay_owner;
3542
3543 if (so != NULL) {
3544 cstate->replay_owner = NULL;
3545 mutex_unlock(&so->so_replay.rp_mutex);
3546 nfs4_put_stateowner(so);
3547 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003548}
3549
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003550static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551{
3552 struct nfs4_stateowner *sop;
3553
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003554 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003555 if (!sop)
3556 return NULL;
3557
3558 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
3559 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003560 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003561 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003563 sop->so_owner.len = owner->len;
3564
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003565 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003566 sop->so_client = clp;
3567 init_nfs4_replay(&sop->so_replay);
Jeff Layton6b180f02014-07-29 21:34:26 -04003568 atomic_set(&sop->so_count, 1);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003569 return sop;
3570}
3571
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003572static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003573{
Trond Myklebustd4f04892014-07-29 21:34:36 -04003574 lockdep_assert_held(&clp->cl_lock);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003575
Trond Myklebustd4f04892014-07-29 21:34:36 -04003576 list_add(&oo->oo_owner.so_strhash,
3577 &clp->cl_ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003578 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579}
3580
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003581static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
3582{
Trond Myklebustd4f04892014-07-29 21:34:36 -04003583 unhash_openowner_locked(openowner(so));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003584}
3585
Jeff Layton6b180f02014-07-29 21:34:26 -04003586static void nfs4_free_openowner(struct nfs4_stateowner *so)
3587{
3588 struct nfs4_openowner *oo = openowner(so);
3589
3590 kmem_cache_free(openowner_slab, oo);
3591}
3592
3593static const struct nfs4_stateowner_operations openowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003594 .so_unhash = nfs4_unhash_openowner,
3595 .so_free = nfs4_free_openowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04003596};
3597
Andrew Elble7fc05642015-11-05 20:42:43 -05003598static struct nfs4_ol_stateid *
3599nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
3600{
3601 struct nfs4_ol_stateid *local, *ret = NULL;
3602 struct nfs4_openowner *oo = open->op_openowner;
3603
3604 lockdep_assert_held(&fp->fi_lock);
3605
3606 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
3607 /* ignore lock owners */
3608 if (local->st_stateowner->so_is_open_owner == 0)
3609 continue;
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003610 if (local->st_stateowner != &oo->oo_owner)
3611 continue;
3612 if (local->st_stid.sc_type == NFS4_OPEN_STID) {
Andrew Elble7fc05642015-11-05 20:42:43 -05003613 ret = local;
3614 atomic_inc(&ret->st_stid.sc_count);
3615 break;
3616 }
3617 }
3618 return ret;
3619}
3620
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003621static __be32
3622nfsd4_verify_open_stid(struct nfs4_stid *s)
3623{
3624 __be32 ret = nfs_ok;
3625
3626 switch (s->sc_type) {
3627 default:
3628 break;
3629 case NFS4_CLOSED_STID:
3630 case NFS4_CLOSED_DELEG_STID:
3631 ret = nfserr_bad_stateid;
3632 break;
3633 case NFS4_REVOKED_DELEG_STID:
3634 ret = nfserr_deleg_revoked;
3635 }
3636 return ret;
3637}
3638
3639/* Lock the stateid st_mutex, and deal with races with CLOSE */
3640static __be32
3641nfsd4_lock_ol_stateid(struct nfs4_ol_stateid *stp)
3642{
3643 __be32 ret;
3644
3645 mutex_lock(&stp->st_mutex);
3646 ret = nfsd4_verify_open_stid(&stp->st_stid);
3647 if (ret != nfs_ok)
3648 mutex_unlock(&stp->st_mutex);
3649 return ret;
3650}
3651
3652static struct nfs4_ol_stateid *
3653nfsd4_find_and_lock_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
3654{
3655 struct nfs4_ol_stateid *stp;
3656 for (;;) {
3657 spin_lock(&fp->fi_lock);
3658 stp = nfsd4_find_existing_open(fp, open);
3659 spin_unlock(&fp->fi_lock);
3660 if (!stp || nfsd4_lock_ol_stateid(stp) == nfs_ok)
3661 break;
3662 nfs4_put_stid(&stp->st_stid);
3663 }
3664 return stp;
3665}
3666
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003667static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04003668alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003669 struct nfsd4_compound_state *cstate)
3670{
Trond Myklebust13d6f662014-06-30 11:48:45 -04003671 struct nfs4_client *clp = cstate->clp;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04003672 struct nfs4_openowner *oo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003674 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
3675 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 return NULL;
Jeff Layton6b180f02014-07-29 21:34:26 -04003677 oo->oo_owner.so_ops = &openowner_ops;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003678 oo->oo_owner.so_is_open_owner = 1;
3679 oo->oo_owner.so_seqid = open->op_seqid;
Jeff Laytond3134b12014-07-29 21:34:32 -04003680 oo->oo_flags = 0;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003681 if (nfsd4_has_session(cstate))
3682 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003683 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04003684 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003685 INIT_LIST_HEAD(&oo->oo_close_lru);
Trond Myklebustd4f04892014-07-29 21:34:36 -04003686 spin_lock(&clp->cl_lock);
3687 ret = find_openstateowner_str_locked(strhashval, open, clp);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04003688 if (ret == NULL) {
3689 hash_openowner(oo, clp, strhashval);
3690 ret = oo;
3691 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08003692 nfs4_free_stateowner(&oo->oo_owner);
3693
Trond Myklebustd4f04892014-07-29 21:34:36 -04003694 spin_unlock(&clp->cl_lock);
Jeff Laytonc5952332015-03-23 10:53:42 -04003695 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696}
3697
Andrew Elble7fc05642015-11-05 20:42:43 -05003698static struct nfs4_ol_stateid *
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003699init_open_stateid(struct nfs4_file *fp, struct nfsd4_open *open)
Andrew Elble7fc05642015-11-05 20:42:43 -05003700{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Andrew Elble7fc05642015-11-05 20:42:43 -05003702 struct nfs4_openowner *oo = open->op_openowner;
3703 struct nfs4_ol_stateid *retstp = NULL;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003704 struct nfs4_ol_stateid *stp;
Andrew Elble7fc05642015-11-05 20:42:43 -05003705
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003706 stp = open->op_stp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003707 /* We are moving these outside of the spinlocks to avoid the warnings */
3708 mutex_init(&stp->st_mutex);
3709 mutex_lock(&stp->st_mutex);
3710
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003711retry:
Andrew Elble7fc05642015-11-05 20:42:43 -05003712 spin_lock(&oo->oo_owner.so_client->cl_lock);
3713 spin_lock(&fp->fi_lock);
3714
3715 retstp = nfsd4_find_existing_open(fp, open);
3716 if (retstp)
3717 goto out_unlock;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003718
3719 open->op_stp = NULL;
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04003720 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05003721 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04003722 INIT_LIST_HEAD(&stp->st_locks);
Kinglong Meeb5971af2014-08-22 10:18:43 -04003723 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07003724 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04003725 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 stp->st_access_bmap = 0;
3727 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07003728 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04003729 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003730 list_add(&stp->st_perfile, &fp->fi_stateids);
Andrew Elble7fc05642015-11-05 20:42:43 -05003731
3732out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04003733 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04003734 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003735 if (retstp) {
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003736 /* Handle races with CLOSE */
3737 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
3738 nfs4_put_stid(&retstp->st_stid);
3739 goto retry;
3740 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003741 /* To keep mutex tracking happy */
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003742 mutex_unlock(&stp->st_mutex);
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003743 stp = retstp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003744 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003745 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746}
3747
Jeff Laytond3134b12014-07-29 21:34:32 -04003748/*
3749 * In the 4.0 case we need to keep the owners around a little while to handle
3750 * CLOSE replay. We still do need to release any file access that is held by
3751 * them before returning however.
3752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753static void
Jeff Laytond3134b12014-07-29 21:34:32 -04003754move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
Jeff Layton217526e2014-07-30 08:27:11 -04003756 struct nfs4_ol_stateid *last;
Jeff Laytond3134b12014-07-29 21:34:32 -04003757 struct nfs4_openowner *oo = openowner(s->st_stateowner);
3758 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
3759 nfsd_net_id);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003760
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003761 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Jeff Laytonb401be222014-07-29 21:34:33 -04003763 /*
3764 * We know that we hold one reference via nfsd4_close, and another
3765 * "persistent" reference for the client. If the refcount is higher
3766 * than 2, then there are still calls in progress that are using this
3767 * stateid. We can't put the sc_file reference until they are finished.
3768 * Wait for the refcount to drop to 2. Since it has been unhashed,
3769 * there should be no danger of the refcount going back up again at
3770 * this point.
3771 */
3772 wait_event(close_wq, atomic_read(&s->st_stid.sc_count) == 2);
3773
Jeff Laytond3134b12014-07-29 21:34:32 -04003774 release_all_access(s);
3775 if (s->st_stid.sc_file) {
3776 put_nfs4_file(s->st_stid.sc_file);
3777 s->st_stid.sc_file = NULL;
3778 }
Jeff Layton217526e2014-07-30 08:27:11 -04003779
3780 spin_lock(&nn->client_lock);
3781 last = oo->oo_last_closed_stid;
Jeff Laytond3134b12014-07-29 21:34:32 -04003782 oo->oo_last_closed_stid = s;
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003783 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003784 oo->oo_time = get_seconds();
Jeff Layton217526e2014-07-30 08:27:11 -04003785 spin_unlock(&nn->client_lock);
3786 if (last)
3787 nfs4_put_stid(&last->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788}
3789
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790/* search file_hashtbl[] for file */
3791static struct nfs4_file *
Jeff Layton5b095e92014-10-23 08:01:02 -04003792find_file_locked(struct knfsd_fh *fh, unsigned int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 struct nfs4_file *fp;
3795
Jeff Layton5b095e92014-10-23 08:01:02 -04003796 hlist_for_each_entry_rcu(fp, &file_hashtbl[hashval], fi_hash) {
Christoph Hellwig4d94c2e2014-08-14 08:41:48 +02003797 if (fh_match(&fp->fi_fhandle, fh)) {
Jeff Layton5b095e92014-10-23 08:01:02 -04003798 if (atomic_inc_not_zero(&fp->fi_ref))
3799 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07003800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 }
3802 return NULL;
3803}
3804
Christoph Hellwige6ba76e2014-08-14 08:50:16 +02003805struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003806find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003807{
3808 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04003809 unsigned int hashval = file_hashval(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003810
Jeff Layton5b095e92014-10-23 08:01:02 -04003811 rcu_read_lock();
3812 fp = find_file_locked(fh, hashval);
3813 rcu_read_unlock();
Trond Myklebust950e0112014-06-30 11:48:31 -04003814 return fp;
3815}
3816
3817static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003818find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003819{
3820 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04003821 unsigned int hashval = file_hashval(fh);
3822
3823 rcu_read_lock();
3824 fp = find_file_locked(fh, hashval);
3825 rcu_read_unlock();
3826 if (fp)
3827 return fp;
Trond Myklebust950e0112014-06-30 11:48:31 -04003828
3829 spin_lock(&state_lock);
Jeff Layton5b095e92014-10-23 08:01:02 -04003830 fp = find_file_locked(fh, hashval);
3831 if (likely(fp == NULL)) {
3832 nfsd4_init_file(fh, hashval, new);
Trond Myklebust950e0112014-06-30 11:48:31 -04003833 fp = new;
3834 }
3835 spin_unlock(&state_lock);
3836
3837 return fp;
3838}
3839
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04003840/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 * Called to check deny when READ with all zero stateid or
3842 * WRITE with all zero or all one stateid
3843 */
Al Virob37ad282006-10-19 23:28:59 -07003844static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
3846{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003848 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
Trond Myklebustca943212014-07-23 16:17:39 -04003850 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07003851 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003852 return ret;
3853 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04003854 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003855 if (fp->fi_share_deny & deny_type)
3856 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003857 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07003858 put_nfs4_file(fp);
3859 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860}
3861
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003862static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863{
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003864 struct nfs4_delegation *dp = cb_to_delegation(cb);
Trond Myklebust11b91642014-07-29 21:34:08 -04003865 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
3866 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003867
Trond Myklebust11b91642014-07-29 21:34:08 -04003868 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04003869
Jeff Layton02e12152014-07-16 10:31:57 -04003870 /*
3871 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04003872 * already holding inode->i_lock.
3873 *
Jeff Laytondff13992014-07-08 14:02:49 -04003874 * If the dl_time != 0, then we know that it has already been
3875 * queued for a lease break. Don't queue it again.
3876 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04003877 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04003878 if (dp->dl_time == 0) {
Jeff Laytondff13992014-07-08 14:02:49 -04003879 dp->dl_time = get_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04003880 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04003881 }
Jeff Layton02e12152014-07-16 10:31:57 -04003882 spin_unlock(&state_lock);
3883}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003885static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
3886 struct rpc_task *task)
3887{
3888 struct nfs4_delegation *dp = cb_to_delegation(cb);
3889
Andrew Elblea4579742015-08-31 12:06:41 -04003890 if (dp->dl_stid.sc_type == NFS4_CLOSED_DELEG_STID)
3891 return 1;
3892
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003893 switch (task->tk_status) {
3894 case 0:
3895 return 1;
3896 case -EBADHANDLE:
3897 case -NFS4ERR_BAD_STATEID:
3898 /*
3899 * Race: client probably got cb_recall before open reply
3900 * granting delegation.
3901 */
3902 if (dp->dl_retries--) {
3903 rpc_delay(task, 2 * HZ);
3904 return 0;
3905 }
3906 /*FALLTHRU*/
3907 default:
3908 return -1;
3909 }
3910}
3911
3912static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
3913{
3914 struct nfs4_delegation *dp = cb_to_delegation(cb);
3915
3916 nfs4_put_stid(&dp->dl_stid);
3917}
3918
Julia Lawallc4cb8972015-11-21 22:57:39 +01003919static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003920 .prepare = nfsd4_cb_recall_prepare,
3921 .done = nfsd4_cb_recall_done,
3922 .release = nfsd4_cb_recall_release,
3923};
3924
Jeff Layton02e12152014-07-16 10:31:57 -04003925static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
3926{
3927 /*
3928 * We're assuming the state code never drops its reference
3929 * without first removing the lease. Since we're in this lease
3930 * callback (and since the lease code is serialized by the kernel
3931 * lock) we know the server hasn't removed the lease yet, we know
3932 * it's safe to take a reference.
3933 */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -04003934 atomic_inc(&dp->dl_stid.sc_count);
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02003935 nfsd4_run_cb(&dp->dl_recall);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003936}
3937
Jeff Layton1c8c6012013-06-21 08:58:15 -04003938/* Called from break_lease() with i_lock held. */
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003939static bool
3940nfsd_break_deleg_cb(struct file_lock *fl)
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003941{
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003942 bool ret = false;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003943 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
3944 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003945
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003946 if (!fp) {
3947 WARN(1, "(%p)->fl_owner NULL\n", fl);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003948 return ret;
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003949 }
3950 if (fp->fi_had_conflict) {
3951 WARN(1, "duplicate break on %p\n", fp);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003952 return ret;
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003953 }
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003954 /*
3955 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003956 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003957 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003958 */
3959 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
Jeff Layton02e12152014-07-16 10:31:57 -04003961 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003962 fp->fi_had_conflict = true;
3963 /*
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003964 * If there are no delegations on the list, then return true
3965 * so that the lease code will go ahead and delete it.
Jeff Layton417c6622014-07-21 09:34:57 -04003966 */
3967 if (list_empty(&fp->fi_delegations))
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003968 ret = true;
Jeff Layton417c6622014-07-21 09:34:57 -04003969 else
3970 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
3971 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04003972 spin_unlock(&fp->fi_lock);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003973 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974}
3975
Jeff Laytonc45198e2014-09-01 07:12:07 -04003976static int
Jeff Layton7448cc32015-01-16 15:05:57 -05003977nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
3978 struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979{
3980 if (arg & F_UNLCK)
Jeff Laytonc45198e2014-09-01 07:12:07 -04003981 return lease_modify(onlist, arg, dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 else
3983 return -EAGAIN;
3984}
3985
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003986static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04003987 .lm_break = nfsd_break_deleg_cb,
3988 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989};
3990
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003991static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
3992{
3993 if (nfsd4_has_session(cstate))
3994 return nfs_ok;
3995 if (seqid == so->so_seqid - 1)
3996 return nfserr_replay_me;
3997 if (seqid == so->so_seqid)
3998 return nfs_ok;
3999 return nfserr_bad_seqid;
4000}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Jeff Layton4b24ca72014-06-30 11:48:44 -04004002static __be32 lookup_clientid(clientid_t *clid,
4003 struct nfsd4_compound_state *cstate,
4004 struct nfsd_net *nn)
4005{
4006 struct nfs4_client *found;
4007
4008 if (cstate->clp) {
4009 found = cstate->clp;
4010 if (!same_clid(&found->cl_clientid, clid))
4011 return nfserr_stale_clientid;
4012 return nfs_ok;
4013 }
4014
4015 if (STALE_CLIENTID(clid, nn))
4016 return nfserr_stale_clientid;
4017
4018 /*
4019 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
4020 * cached already then we know this is for is for v4.0 and "sessions"
4021 * will be false.
4022 */
4023 WARN_ON_ONCE(cstate->session);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004024 spin_lock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004025 found = find_confirmed_client(clid, false, nn);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004026 if (!found) {
4027 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004028 return nfserr_expired;
Trond Myklebust3e339f92014-07-30 08:27:09 -04004029 }
4030 atomic_inc(&found->cl_refcount);
4031 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004032
4033 /* Cache the nfs4_client in cstate! */
4034 cstate->clp = found;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004035 return nfs_ok;
4036}
4037
Al Virob37ad282006-10-19 23:28:59 -07004038__be32
Andy Adamson66689582009-04-03 08:28:45 +03004039nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004040 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 clientid_t *clientid = &open->op_clientid;
4043 struct nfs4_client *clp = NULL;
4044 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004045 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004046 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004048 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004050 /*
4051 * In case we need it later, after we've already created the
4052 * file and don't want to risk a further failure:
4053 */
4054 open->op_file = nfsd4_alloc_file();
4055 if (open->op_file == NULL)
4056 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Trond Myklebust2d91e892014-06-30 11:48:46 -04004058 status = lookup_clientid(clientid, cstate, nn);
4059 if (status)
4060 return status;
4061 clp = cstate->clp;
4062
Trond Myklebustd4f04892014-07-29 21:34:36 -04004063 strhashval = ownerstr_hashval(&open->op_owner);
4064 oo = find_openstateowner_str(strhashval, open, clp);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004065 open->op_openowner = oo;
4066 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004067 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004069 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004070 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004071 release_openowner(oo);
4072 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004073 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004074 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004075 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
4076 if (status)
4077 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004078 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004079new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04004080 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004081 if (oo == NULL)
4082 return nfserr_jukebox;
4083 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004084alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04004085 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004086 if (!open->op_stp)
4087 return nfserr_jukebox;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004088
4089 if (nfsd4_has_session(cstate) &&
4090 (cstate->current_fh.fh_export->ex_flags & NFSEXP_PNFS)) {
4091 open->op_odstate = alloc_clnt_odstate(clp);
4092 if (!open->op_odstate)
4093 return nfserr_jukebox;
4094 }
4095
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004096 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097}
4098
Al Virob37ad282006-10-19 23:28:59 -07004099static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07004100nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
4101{
4102 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
4103 return nfserr_openmode;
4104 else
4105 return nfs_ok;
4106}
4107
Daniel Mackc47d8322011-05-16 16:38:14 +02004108static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04004109{
J. Bruce Fields24a01112010-05-18 20:01:35 -04004110 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
4111}
4112
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004113static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004114{
4115 struct nfs4_stid *ret;
4116
Andrew Elble62f0b692017-11-03 14:06:31 -04004117 ret = find_stateid_by_type(cl, s,
4118 NFS4_DELEG_STID|NFS4_REVOKED_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004119 if (!ret)
4120 return NULL;
4121 return delegstateid(ret);
4122}
4123
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004124static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
4125{
4126 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
4127 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
4128}
4129
Al Virob37ad282006-10-19 23:28:59 -07004130static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04004131nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07004132 struct nfs4_delegation **dp)
4133{
4134 int flags;
Al Virob37ad282006-10-19 23:28:59 -07004135 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004136 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07004137
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004138 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
4139 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07004140 goto out;
Andrew Elble62f0b692017-11-03 14:06:31 -04004141 if (deleg->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID) {
4142 nfs4_put_stid(&deleg->dl_stid);
4143 if (cl->cl_minorversion)
4144 status = nfserr_deleg_revoked;
4145 goto out;
4146 }
J. Bruce Fields24a01112010-05-18 20:01:35 -04004147 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004148 status = nfs4_check_delegmode(deleg, flags);
4149 if (status) {
4150 nfs4_put_stid(&deleg->dl_stid);
4151 goto out;
4152 }
4153 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004154out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004155 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004156 return nfs_ok;
4157 if (status)
4158 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004159 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004160 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07004161}
4162
J. Bruce Fields21fb4012010-07-28 12:21:23 -04004163static inline int nfs4_access_to_access(u32 nfs4_access)
4164{
4165 int flags = 0;
4166
4167 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
4168 flags |= NFSD_MAY_READ;
4169 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
4170 flags |= NFSD_MAY_WRITE;
4171 return flags;
4172}
4173
Al Virob37ad282006-10-19 23:28:59 -07004174static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
4176 struct nfsd4_open *open)
4177{
4178 struct iattr iattr = {
4179 .ia_valid = ATTR_SIZE,
4180 .ia_size = 0,
4181 };
4182 if (!open->op_truncate)
4183 return 0;
4184 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08004185 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
4187}
4188
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004189static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004190 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
4191 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004192{
Trond Myklebustde186432014-07-10 14:07:26 -04004193 struct file *filp = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004194 __be32 status;
4195 int oflag = nfs4_access_to_omode(open->op_share_access);
4196 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004197 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004198
Trond Myklebustde186432014-07-10 14:07:26 -04004199 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004200
4201 /*
4202 * Are we trying to set a deny mode that would conflict with
4203 * current access?
4204 */
4205 status = nfs4_file_check_deny(fp, open->op_share_deny);
4206 if (status != nfs_ok) {
4207 spin_unlock(&fp->fi_lock);
4208 goto out;
4209 }
4210
4211 /* set access to the file */
4212 status = nfs4_file_get_access(fp, open->op_share_access);
4213 if (status != nfs_ok) {
4214 spin_unlock(&fp->fi_lock);
4215 goto out;
4216 }
4217
4218 /* Set access bits in stateid */
4219 old_access_bmap = stp->st_access_bmap;
4220 set_access(open->op_share_access, stp);
4221
4222 /* Set new deny mask */
4223 old_deny_bmap = stp->st_deny_bmap;
4224 set_deny(open->op_share_deny, stp);
4225 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4226
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004227 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04004228 spin_unlock(&fp->fi_lock);
4229 status = nfsd_open(rqstp, cur_fh, S_IFREG, access, &filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004230 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004231 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04004232 spin_lock(&fp->fi_lock);
4233 if (!fp->fi_fds[oflag]) {
4234 fp->fi_fds[oflag] = filp;
4235 filp = NULL;
4236 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004237 }
Trond Myklebustde186432014-07-10 14:07:26 -04004238 spin_unlock(&fp->fi_lock);
4239 if (filp)
4240 fput(filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004241
4242 status = nfsd4_truncate(rqstp, cur_fh, open);
4243 if (status)
4244 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004245out:
4246 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004247out_put_access:
4248 stp->st_access_bmap = old_access_bmap;
4249 nfs4_file_put_access(fp, open->op_share_access);
4250 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
4251 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004252}
4253
Al Virob37ad282006-10-19 23:28:59 -07004254static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004255nfs4_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 -07004256{
Al Virob37ad282006-10-19 23:28:59 -07004257 __be32 status;
Arnd Bergmann6ac75362015-05-12 23:31:29 +02004258 unsigned char old_deny_bmap = stp->st_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004260 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004261 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004262
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004263 /* test and set deny mode */
4264 spin_lock(&fp->fi_lock);
4265 status = nfs4_file_check_deny(fp, open->op_share_deny);
4266 if (status == nfs_ok) {
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004267 set_deny(open->op_share_deny, stp);
4268 fp->fi_share_deny |=
4269 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4270 }
4271 spin_unlock(&fp->fi_lock);
4272
4273 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004276 status = nfsd4_truncate(rqstp, cur_fh, open);
4277 if (status != nfs_ok)
4278 reset_union_bmap_deny(old_deny_bmap, stp);
4279 return status;
4280}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004282/* Should we give out recallable state?: */
4283static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
4284{
4285 if (clp->cl_cb_state == NFSD4_CB_UP)
4286 return true;
4287 /*
4288 * In the sessions case, since we don't have to establish a
4289 * separate connection for callbacks, we assume it's OK
4290 * until we hear otherwise:
4291 */
4292 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
4293}
4294
Jeff Laytond564fbe2014-07-16 10:31:58 -04004295static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004296{
4297 struct file_lock *fl;
4298
4299 fl = locks_alloc_lock();
4300 if (!fl)
4301 return NULL;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004302 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04004303 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004304 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
4305 fl->fl_end = OFFSET_MAX;
Jeff Laytond564fbe2014-07-16 10:31:58 -04004306 fl->fl_owner = (fl_owner_t)fp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004307 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004308 return fl;
4309}
4310
Andrew Elble34ed9872015-10-15 12:07:28 -04004311/**
4312 * nfs4_setlease - Obtain a delegation by requesting lease from vfs layer
4313 * @dp: a pointer to the nfs4_delegation we're adding.
4314 *
4315 * Return:
4316 * On success: Return code will be 0 on success.
4317 *
4318 * On error: -EAGAIN if there was an existing delegation.
4319 * nonzero if there is an error in other cases.
4320 *
4321 */
4322
J. Bruce Fields99c41512013-05-21 16:21:25 -04004323static int nfs4_setlease(struct nfs4_delegation *dp)
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004324{
Trond Myklebust11b91642014-07-29 21:34:08 -04004325 struct nfs4_file *fp = dp->dl_stid.sc_file;
Kinglong Meeefde6b42015-07-13 17:33:24 +08004326 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04004327 struct file *filp;
4328 int status = 0;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004329
Jeff Laytond564fbe2014-07-16 10:31:58 -04004330 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004331 if (!fl)
4332 return -ENOMEM;
Jeff Layton417c6622014-07-21 09:34:57 -04004333 filp = find_readable_file(fp);
4334 if (!filp) {
4335 /* We should always have a readable file here */
4336 WARN_ON_ONCE(1);
Kinglong Meeaf9dbaf2015-07-13 17:30:51 +08004337 locks_free_lock(fl);
Jeff Layton417c6622014-07-21 09:34:57 -04004338 return -EBADF;
4339 }
4340 fl->fl_file = filp;
Jeff Laytone6f5c782014-08-22 10:40:25 -04004341 status = vfs_setlease(filp, fl->fl_type, &fl, NULL);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04004342 if (fl)
Jeff Layton417c6622014-07-21 09:34:57 -04004343 locks_free_lock(fl);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04004344 if (status)
Jeff Layton417c6622014-07-21 09:34:57 -04004345 goto out_fput;
Benny Halevycdc97502014-05-30 09:09:30 -04004346 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004347 spin_lock(&fp->fi_lock);
4348 /* Did the lease get broken before we took the lock? */
4349 status = -EAGAIN;
4350 if (fp->fi_had_conflict)
4351 goto out_unlock;
4352 /* Race breaker */
Jeff Layton0c637be2014-08-22 12:05:43 -04004353 if (fp->fi_deleg_file) {
Andrew Elble34ed9872015-10-15 12:07:28 -04004354 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004355 goto out_unlock;
4356 }
Jeff Layton417c6622014-07-21 09:34:57 -04004357 fp->fi_deleg_file = filp;
Andrew Elble34ed9872015-10-15 12:07:28 -04004358 fp->fi_delegees = 0;
4359 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004360 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04004361 spin_unlock(&state_lock);
Andrew Elble34ed9872015-10-15 12:07:28 -04004362 if (status) {
4363 /* Should never happen, this is a new fi_deleg_file */
4364 WARN_ON_ONCE(1);
4365 goto out_fput;
4366 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004367 return 0;
Jeff Layton417c6622014-07-21 09:34:57 -04004368out_unlock:
4369 spin_unlock(&fp->fi_lock);
4370 spin_unlock(&state_lock);
4371out_fput:
4372 fput(filp);
J. Bruce Fieldse8730882012-01-23 13:52:01 -05004373 return status;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004374}
4375
Jeff Layton0b266932014-07-25 07:34:25 -04004376static struct nfs4_delegation *
4377nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +02004378 struct nfs4_file *fp, struct nfs4_clnt_odstate *odstate)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004379{
Jeff Layton0b266932014-07-25 07:34:25 -04004380 int status;
4381 struct nfs4_delegation *dp;
Jeff Layton417c6622014-07-21 09:34:57 -04004382
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004383 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04004384 return ERR_PTR(-EAGAIN);
4385
Andrew Elble34ed9872015-10-15 12:07:28 -04004386 spin_lock(&state_lock);
4387 spin_lock(&fp->fi_lock);
4388 status = nfs4_get_existing_delegation(clp, fp);
4389 spin_unlock(&fp->fi_lock);
4390 spin_unlock(&state_lock);
4391
4392 if (status)
4393 return ERR_PTR(status);
4394
Sachin Bhamare8287f002015-04-27 14:50:14 +02004395 dp = alloc_init_deleg(clp, fh, odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04004396 if (!dp)
4397 return ERR_PTR(-ENOMEM);
4398
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004399 get_nfs4_file(fp);
Benny Halevycdc97502014-05-30 09:09:30 -04004400 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004401 spin_lock(&fp->fi_lock);
Trond Myklebust11b91642014-07-29 21:34:08 -04004402 dp->dl_stid.sc_file = fp;
Jeff Layton0c637be2014-08-22 12:05:43 -04004403 if (!fp->fi_deleg_file) {
Jeff Layton417c6622014-07-21 09:34:57 -04004404 spin_unlock(&fp->fi_lock);
4405 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04004406 status = nfs4_setlease(dp);
4407 goto out;
Jeff Layton417c6622014-07-21 09:34:57 -04004408 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004409 if (fp->fi_had_conflict) {
Jeff Layton417c6622014-07-21 09:34:57 -04004410 status = -EAGAIN;
4411 goto out_unlock;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004412 }
Andrew Elble34ed9872015-10-15 12:07:28 -04004413 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004414out_unlock:
4415 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04004416 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04004417out:
4418 if (status) {
Sachin Bhamare8287f002015-04-27 14:50:14 +02004419 put_clnt_odstate(dp->dl_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04004420 nfs4_put_stid(&dp->dl_stid);
Jeff Layton0b266932014-07-25 07:34:25 -04004421 return ERR_PTR(status);
4422 }
4423 return dp;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004424}
4425
Benny Halevy4aa89132012-02-21 14:16:44 -08004426static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
4427{
4428 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4429 if (status == -EAGAIN)
4430 open->op_why_no_deleg = WND4_CONTENTION;
4431 else {
4432 open->op_why_no_deleg = WND4_RESOURCE;
4433 switch (open->op_deleg_want) {
4434 case NFS4_SHARE_WANT_READ_DELEG:
4435 case NFS4_SHARE_WANT_WRITE_DELEG:
4436 case NFS4_SHARE_WANT_ANY_DELEG:
4437 break;
4438 case NFS4_SHARE_WANT_CANCEL:
4439 open->op_why_no_deleg = WND4_CANCELLED;
4440 break;
4441 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004442 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08004443 }
4444 }
4445}
4446
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447/*
4448 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04004449 *
4450 * Note we don't support write delegations, and won't until the vfs has
4451 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 */
4453static void
Jeff Layton4cf59222014-07-25 07:34:24 -04004454nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
4455 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456{
4457 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04004458 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
4459 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004460 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004461 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004463 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07004464 open->op_recall = 0;
4465 switch (open->op_claim_type) {
4466 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05004467 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07004468 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004469 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
4470 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004471 break;
4472 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00004473 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004474 /*
4475 * Let's not give out any delegations till everyone's
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004476 * had the chance to reclaim theirs, *and* until
4477 * NLM locks have all been reclaimed:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004478 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004479 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004480 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004481 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004482 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04004483 /*
4484 * Also, if the file was opened for write or
4485 * create, there's a good chance the client's
4486 * about to write to it, resulting in an
4487 * immediate recall (since we don't support
4488 * write delegations):
4489 */
NeilBrown7b190fe2005-06-23 22:03:23 -07004490 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04004491 goto out_no_deleg;
4492 if (open->op_create == NFS4_OPEN_CREATE)
4493 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004494 break;
4495 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004496 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004497 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02004498 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file, stp->st_clnt_odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04004499 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004500 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004502 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004504 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004505 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04004506 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04004507 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004508 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004509out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004510 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
4511 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004512 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04004513 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004514 open->op_recall = 1;
4515 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04004516
4517 /* 4.1 client asking for a delegation? */
4518 if (open->op_deleg_want)
4519 nfsd4_open_deleg_none_ext(open, status);
4520 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521}
4522
Benny Halevye27f49c2012-02-21 14:16:54 -08004523static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
4524 struct nfs4_delegation *dp)
4525{
4526 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
4527 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4528 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4529 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
4530 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
4531 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4532 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4533 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
4534 }
4535 /* Otherwise the client must be confused wanting a delegation
4536 * it already has, therefore we don't return
4537 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
4538 */
4539}
4540
Al Virob37ad282006-10-19 23:28:59 -07004541__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
4543{
Andy Adamson66689582009-04-03 08:28:45 +03004544 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004545 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004547 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07004548 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004549 __be32 status;
Trond Myklebust1c404252017-11-03 08:00:11 -04004550 bool new_stp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 /*
4553 * Lookup file; if found, lookup stateid and check open request,
4554 * and check for delegations in the process of being recalled.
4555 * If not found, create the nfs4_file struct
4556 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004557 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04004558 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04004559 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07004560 if (status)
4561 goto out;
Trond Myklebust1c8ea412017-11-03 08:00:10 -04004562 stp = nfsd4_find_and_lock_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04004564 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004565 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004566 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004567 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 }
4569
Trond Myklebust1c404252017-11-03 08:00:11 -04004570 if (!stp) {
4571 stp = init_open_stateid(fp, open);
4572 if (!open->op_stp)
4573 new_stp = true;
4574 }
4575
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 /*
4577 * OPEN the file, or upgrade an existing OPEN.
4578 * If truncate fails, the OPEN fails.
Trond Myklebust1c404252017-11-03 08:00:11 -04004579 *
4580 * stp is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 */
Trond Myklebust1c404252017-11-03 08:00:11 -04004582 if (!new_stp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004584 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Jeff Layton35a92fe2015-09-17 07:47:08 -04004585 if (status) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04004586 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 goto out;
Jeff Layton35a92fe2015-09-17 07:47:08 -04004588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 } else {
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004590 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
4591 if (status) {
Trond Myklebust1c404252017-11-03 08:00:11 -04004592 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004593 release_open_stateid(stp);
Trond Myklebust1c404252017-11-03 08:00:11 -04004594 mutex_unlock(&stp->st_mutex);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004595 goto out;
4596 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02004597
4598 stp->st_clnt_odstate = find_or_hash_clnt_odstate(fp,
4599 open->op_odstate);
4600 if (stp->st_clnt_odstate == open->op_odstate)
4601 open->op_odstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 }
Trond Myklebust1c404252017-11-03 08:00:11 -04004603
Jeff Layton9767feb2015-10-01 09:05:50 -04004604 nfs4_inc_and_copy_stateid(&open->op_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04004605 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
Benny Halevyd24433c2012-02-16 20:57:17 +02004607 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02004608 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
4609 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4610 open->op_why_no_deleg = WND4_NOT_WANTED;
4611 goto nodeleg;
4612 }
4613 }
4614
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 /*
4616 * Attempt to hand out a delegation. No error return, because the
4617 * OPEN succeeds even if we fail.
4618 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004619 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02004620nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 status = nfs_ok;
4622
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004623 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004624 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625out:
Benny Halevyd24433c2012-02-16 20:57:17 +02004626 /* 4.1 client trying to upgrade/downgrade delegation? */
4627 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08004628 open->op_deleg_want)
4629 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02004630
NeilBrown13cd2182005-06-23 22:03:10 -07004631 if (fp)
4632 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07004633 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
Kinglong Mee87186022015-07-13 17:32:59 +08004634 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 /*
4636 * To finish the open response, we just need to set the rflags.
4637 */
4638 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Jeff Layton19e4c342016-09-16 16:28:27 -04004639 if (nfsd4_has_session(&resp->cstate))
4640 open->op_rflags |= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK;
4641 else if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Jeff Layton19e4c342016-09-16 16:28:27 -04004643
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004644 if (dp)
4645 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04004646 if (stp)
4647 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
4649 return status;
4650}
4651
Jeff Layton58fb12e2014-07-29 21:34:27 -04004652void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
Jeff Layton42297892015-03-23 10:53:44 -04004653 struct nfsd4_open *open)
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004654{
4655 if (open->op_openowner) {
Jeff Laytond3134b12014-07-29 21:34:32 -04004656 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004657
Jeff Laytond3134b12014-07-29 21:34:32 -04004658 nfsd4_cstate_assign_replay(cstate, so);
4659 nfs4_put_stateowner(so);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004660 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04004661 if (open->op_file)
Jeff Layton5b095e92014-10-23 08:01:02 -04004662 kmem_cache_free(file_slab, open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004663 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04004664 nfs4_put_stid(&open->op_stp->st_stid);
Sachin Bhamare8287f002015-04-27 14:50:14 +02004665 if (open->op_odstate)
4666 kmem_cache_free(odstate_slab, open->op_odstate);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004667}
4668
Al Virob37ad282006-10-19 23:28:59 -07004669__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08004670nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4671 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672{
4673 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07004674 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03004675 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 dprintk("process_renew(%08x/%08x): starting\n",
4678 clid->cl_boot, clid->cl_id);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004679 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05004680 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004682 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07004684 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04004685 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 goto out;
4687 status = nfs_ok;
4688out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 return status;
4690}
4691
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04004692void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03004693nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07004694{
Jeff Layton33dcc482012-04-10 11:08:48 -04004695 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04004696 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04004697 return;
4698
NeilBrowna76b4312005-06-23 22:04:01 -07004699 dprintk("NFSD: end of grace period\n");
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04004700 nn->grace_ended = true;
J. Bruce Fields70b28232014-09-16 17:37:32 -04004701 /*
4702 * If the server goes down again right now, an NFSv4
4703 * client will still be allowed to reclaim after it comes back up,
4704 * even if it hasn't yet had a chance to reclaim state this time.
4705 *
4706 */
Jeff Layton919b8042014-09-12 16:40:20 -04004707 nfsd4_record_grace_done(nn);
J. Bruce Fields70b28232014-09-16 17:37:32 -04004708 /*
4709 * At this point, NFSv4 clients can still reclaim. But if the
4710 * server crashes, any that have not yet reclaimed will be out
4711 * of luck on the next boot.
4712 *
4713 * (NFSv4.1+ clients are considered to have reclaimed once they
4714 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
4715 * have reclaimed after their first OPEN.)
4716 */
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04004717 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fields70b28232014-09-16 17:37:32 -04004718 /*
4719 * At this point, and once lockd and/or any other containers
4720 * exit their grace period, further reclaims will fail and
4721 * regular locking can resume.
4722 */
NeilBrowna76b4312005-06-23 22:04:01 -07004723}
4724
NeilBrownfd39ca92005-06-23 22:04:03 -07004725static time_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004726nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727{
4728 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004729 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 struct nfs4_delegation *dp;
Jeff Layton217526e2014-07-30 08:27:11 -04004731 struct nfs4_ol_stateid *stp;
Jeff Layton7919d0a2016-09-16 16:28:25 -04004732 struct nfsd4_blocked_lock *nbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03004734 time_t cutoff = get_seconds() - nn->nfsd4_lease;
Jeff Laytona832e7a2014-05-30 09:09:26 -04004735 time_t t, new_timeo = nn->nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 dprintk("NFSD: laundromat service - starting\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03004738 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03004739 INIT_LIST_HEAD(&reaplist);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03004740 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03004741 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 clp = list_entry(pos, struct nfs4_client, cl_lru);
4743 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
4744 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04004745 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 break;
4747 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04004748 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03004749 dprintk("NFSD: client in use (clientid %08x)\n",
4750 clp->cl_clientid.cl_id);
4751 continue;
4752 }
Trond Myklebust4864af92014-07-30 08:27:03 -04004753 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03004754 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03004755 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03004756 list_for_each_safe(pos, next, &reaplist) {
4757 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 dprintk("NFSD: purging unused client (clientid %08x)\n",
4759 clp->cl_clientid.cl_id);
Trond Myklebust4864af92014-07-30 08:27:03 -04004760 list_del_init(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 expire_client(clp);
4762 }
Benny Halevycdc97502014-05-30 09:09:30 -04004763 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04004764 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4766 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004767 t = dp->dl_time - cutoff;
4768 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 break;
4770 }
Jeff Layton3fcbbd22015-08-24 12:41:48 -04004771 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04004772 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 }
Benny Halevycdc97502014-05-30 09:09:30 -04004774 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04004775 while (!list_empty(&reaplist)) {
4776 dp = list_first_entry(&reaplist, struct nfs4_delegation,
4777 dl_recall_lru);
4778 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004779 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 }
Jeff Layton217526e2014-07-30 08:27:11 -04004781
4782 spin_lock(&nn->client_lock);
4783 while (!list_empty(&nn->close_lru)) {
4784 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
4785 oo_close_lru);
4786 if (time_after((unsigned long)oo->oo_time,
4787 (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004788 t = oo->oo_time - cutoff;
4789 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 break;
4791 }
Jeff Layton217526e2014-07-30 08:27:11 -04004792 list_del_init(&oo->oo_close_lru);
4793 stp = oo->oo_last_closed_stid;
4794 oo->oo_last_closed_stid = NULL;
4795 spin_unlock(&nn->client_lock);
4796 nfs4_put_stid(&stp->st_stid);
4797 spin_lock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 }
Jeff Layton217526e2014-07-30 08:27:11 -04004799 spin_unlock(&nn->client_lock);
4800
Jeff Layton7919d0a2016-09-16 16:28:25 -04004801 /*
4802 * It's possible for a client to try and acquire an already held lock
4803 * that is being held for a long time, and then lose interest in it.
4804 * So, we clean out any un-revisited request after a lease period
4805 * under the assumption that the client is no longer interested.
4806 *
4807 * RFC5661, sec. 9.6 states that the client must not rely on getting
4808 * notifications and must continue to poll for locks, even when the
4809 * server supports them. Thus this shouldn't lead to clients blocking
4810 * indefinitely once the lock does become free.
4811 */
4812 BUG_ON(!list_empty(&reaplist));
Jeff Layton0cc11a62016-10-20 09:34:31 -04004813 spin_lock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04004814 while (!list_empty(&nn->blocked_locks_lru)) {
4815 nbl = list_first_entry(&nn->blocked_locks_lru,
4816 struct nfsd4_blocked_lock, nbl_lru);
4817 if (time_after((unsigned long)nbl->nbl_time,
4818 (unsigned long)cutoff)) {
4819 t = nbl->nbl_time - cutoff;
4820 new_timeo = min(new_timeo, t);
4821 break;
4822 }
4823 list_move(&nbl->nbl_lru, &reaplist);
4824 list_del_init(&nbl->nbl_list);
4825 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04004826 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04004827
4828 while (!list_empty(&reaplist)) {
Naofumi Hondaaa1a6cf2017-11-09 10:57:16 -05004829 nbl = list_first_entry(&reaplist,
Jeff Layton7919d0a2016-09-16 16:28:25 -04004830 struct nfsd4_blocked_lock, nbl_lru);
4831 list_del_init(&nbl->nbl_lru);
4832 posix_unblock_lock(&nbl->nbl_lock);
4833 free_blocked_lock(nbl);
4834 }
4835
Jeff Laytona832e7a2014-05-30 09:09:26 -04004836 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Jeff Laytona832e7a2014-05-30 09:09:26 -04004837 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838}
4839
Harvey Harrisona254b242008-02-20 12:49:00 -08004840static struct workqueue_struct *laundry_wq;
4841static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08004842
4843static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004844laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845{
4846 time_t t;
Geliang Tang2e55f3a2016-01-01 22:06:28 +08004847 struct delayed_work *dwork = to_delayed_work(laundry);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004848 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
4849 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004851 t = nfs4_laundromat(nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004853 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854}
4855
Jeff Layton8fcd4612015-07-30 06:57:46 -04004856static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07004857{
Jeff Layton8fcd4612015-07-30 06:57:46 -04004858 if (!fh_match(&fhp->fh_handle, &stp->sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004859 return nfserr_bad_stateid;
4860 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861}
4862
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004864access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004866 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
4867 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
4868 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869}
4870
4871static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004872access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004874 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
4875 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876}
4877
4878static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004879__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880{
Al Virob37ad282006-10-19 23:28:59 -07004881 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882
J. Bruce Fields02921912010-07-29 15:16:59 -04004883 /* For lock stateid's, we test the parent open, not the lock: */
4884 if (stp->st_openstp)
4885 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004886 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004888 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 goto out;
4890 status = nfs_ok;
4891out:
4892 return status;
4893}
4894
Al Virob37ad282006-10-19 23:28:59 -07004895static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004896check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004898 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 return nfs_ok;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004900 else if (opens_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004901 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 * conflicting state; so we must wait out the grace period. */
4903 return nfserr_grace;
4904 } else if (flags & WR_STATE)
4905 return nfs4_share_conflict(current_fh,
4906 NFS4_SHARE_DENY_WRITE);
4907 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4908 return nfs4_share_conflict(current_fh,
4909 NFS4_SHARE_DENY_READ);
4910}
4911
4912/*
4913 * Allow READ/WRITE during grace period on recovered state only for files
4914 * that are not able to provide mandatory locking.
4915 */
4916static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004917grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918{
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004919 return opens_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920}
4921
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004922static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05004923{
Andy Adamson66689582009-04-03 08:28:45 +03004924 /*
4925 * When sessions are used the stateid generation number is ignored
4926 * when it is zero.
4927 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04004928 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04004929 return nfs_ok;
4930
4931 if (in->si_generation == ref->si_generation)
4932 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03004933
J. Bruce Fields0836f582008-01-26 19:08:12 -05004934 /* If the client sends us a stateid from the future, it's buggy: */
Jeff Layton14b7f4a2016-05-05 06:53:47 -04004935 if (nfsd4_stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05004936 return nfserr_bad_stateid;
4937 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04004938 * However, we could see a stateid from the past, even from a
4939 * non-buggy client. For example, if the client sends a lock
4940 * while some IO is outstanding, the lock may bump si_generation
4941 * while the IO is still in flight. The client could avoid that
4942 * situation by waiting for responses on all the IO requests,
4943 * but better performance may result in retrying IO that
4944 * receives an old_stateid error if requests are rarely
4945 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05004946 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004947 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05004948}
4949
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02004950static __be32 nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid *ols)
4951{
4952 if (ols->st_stateowner->so_is_open_owner &&
4953 !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
4954 return nfserr_bad_stateid;
4955 return nfs_ok;
4956}
4957
Chuck Lever7df302f2012-05-29 13:56:37 -04004958static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04004959{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004960 struct nfs4_stid *s;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004961 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04004962
Andrew Elblef25e2222017-11-09 13:41:10 -05004963 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
4964 CLOSE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004965 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004966 /* Client debugging aid. */
4967 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
4968 char addr_str[INET6_ADDRSTRLEN];
4969 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
4970 sizeof(addr_str));
4971 pr_warn_ratelimited("NFSD: client %s testing state ID "
4972 "with incorrect client ID\n", addr_str);
Jeff Layton1af71cc2014-07-29 21:34:14 -04004973 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004974 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004975 spin_lock(&cl->cl_lock);
4976 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004977 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004978 goto out_unlock;
J. Bruce Fields36279ac2011-09-26 12:53:00 -04004979 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04004980 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004981 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04004982 switch (s->sc_type) {
4983 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004984 status = nfs_ok;
4985 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004986 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004987 status = nfserr_deleg_revoked;
4988 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004989 case NFS4_OPEN_STID:
4990 case NFS4_LOCK_STID:
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02004991 status = nfsd4_check_openowner_confirmed(openlockstateid(s));
Jeff Layton1af71cc2014-07-29 21:34:14 -04004992 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004993 default:
4994 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004995 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04004996 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004997 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004998 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04004999 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005000out_unlock:
5001 spin_unlock(&cl->cl_lock);
5002 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04005003}
5004
Christoph Hellwigcd61c522014-08-14 08:44:57 +02005005__be32
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005006nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
5007 stateid_t *stateid, unsigned char typemask,
5008 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005009{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005010 __be32 status;
Andrew Elble62f0b692017-11-03 14:06:31 -04005011 bool return_revoked = false;
5012
5013 /*
5014 * only return revoked delegations if explicitly asked.
5015 * otherwise we report revoked or bad_stateid status.
5016 */
5017 if (typemask & NFS4_REVOKED_DELEG_STID)
5018 return_revoked = true;
5019 else if (typemask & NFS4_DELEG_STID)
5020 typemask |= NFS4_REVOKED_DELEG_STID;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005021
Andrew Elblef25e2222017-11-09 13:41:10 -05005022 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5023 CLOSE_STATEID(stateid))
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005024 return nfserr_bad_stateid;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005025 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005026 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005027 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005028 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005029 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005030 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005031 if (status)
5032 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005033 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005034 if (!*s)
5035 return nfserr_bad_stateid;
Andrew Elble62f0b692017-11-03 14:06:31 -04005036 if (((*s)->sc_type == NFS4_REVOKED_DELEG_STID) && !return_revoked) {
5037 nfs4_put_stid(*s);
5038 if (cstate->minorversion)
5039 return nfserr_deleg_revoked;
5040 return nfserr_bad_stateid;
5041 }
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005042 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005043}
5044
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005045static struct file *
5046nfs4_find_file(struct nfs4_stid *s, int flags)
5047{
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005048 if (!s)
5049 return NULL;
5050
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005051 switch (s->sc_type) {
5052 case NFS4_DELEG_STID:
5053 if (WARN_ON_ONCE(!s->sc_file->fi_deleg_file))
5054 return NULL;
5055 return get_file(s->sc_file->fi_deleg_file);
5056 case NFS4_OPEN_STID:
5057 case NFS4_LOCK_STID:
5058 if (flags & RD_STATE)
5059 return find_readable_file(s->sc_file);
5060 else
5061 return find_writeable_file(s->sc_file);
5062 break;
5063 }
5064
5065 return NULL;
5066}
5067
5068static __be32
5069nfs4_check_olstateid(struct svc_fh *fhp, struct nfs4_ol_stateid *ols, int flags)
5070{
5071 __be32 status;
5072
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005073 status = nfsd4_check_openowner_confirmed(ols);
5074 if (status)
5075 return status;
5076 return nfs4_check_openmode(ols, flags);
5077}
5078
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005079static __be32
5080nfs4_check_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfs4_stid *s,
5081 struct file **filpp, bool *tmp_file, int flags)
5082{
5083 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE;
5084 struct file *file;
5085 __be32 status;
5086
5087 file = nfs4_find_file(s, flags);
5088 if (file) {
5089 status = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
5090 acc | NFSD_MAY_OWNER_OVERRIDE);
5091 if (status) {
5092 fput(file);
5093 return status;
5094 }
5095
5096 *filpp = file;
5097 } else {
5098 status = nfsd_open(rqstp, fhp, S_IFREG, acc, filpp);
5099 if (status)
5100 return status;
5101
5102 if (tmp_file)
5103 *tmp_file = true;
5104 }
5105
5106 return 0;
5107}
5108
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109/*
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005110 * Checks for stateid operations
5111 */
Al Virob37ad282006-10-19 23:28:59 -07005112__be32
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005113nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01005114 struct nfsd4_compound_state *cstate, struct svc_fh *fhp,
5115 stateid_t *stateid, int flags, struct file **filpp, bool *tmp_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116{
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005117 struct inode *ino = d_inode(fhp->fh_dentry);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005118 struct net *net = SVC_NET(rqstp);
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005119 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005120 struct nfs4_stid *s = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005121 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 if (filpp)
5124 *filpp = NULL;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005125 if (tmp_file)
5126 *tmp_file = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005128 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 return nfserr_grace;
5130
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005131 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
5132 status = check_special_stateids(net, fhp, stateid, flags);
5133 goto done;
5134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005136 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04005137 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005138 &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005139 if (status)
Trond Myklebustc2d1d6a2014-07-30 08:27:25 -04005140 return status;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005141 status = check_stateid_generation(stateid, &s->sc_stateid,
5142 nfsd4_has_session(cstate));
J. Bruce Fields69064a22011-09-09 11:54:57 -04005143 if (status)
5144 goto out;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005145
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005146 switch (s->sc_type) {
5147 case NFS4_DELEG_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005148 status = nfs4_check_delegmode(delegstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005149 break;
5150 case NFS4_OPEN_STID:
5151 case NFS4_LOCK_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005152 status = nfs4_check_olstateid(fhp, openlockstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005153 break;
5154 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04005155 status = nfserr_bad_stateid;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005156 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 }
Jeff Layton8fcd4612015-07-30 06:57:46 -04005158 if (status)
5159 goto out;
5160 status = nfs4_check_fh(fhp, s);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005161
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005162done:
5163 if (!status && filpp)
5164 status = nfs4_check_file(rqstp, fhp, s, filpp, tmp_file, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165out:
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005166 if (s)
5167 nfs4_put_stid(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 return status;
5169}
5170
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005171/*
Bryan Schumaker17456802011-07-13 10:50:48 -04005172 * Test if the stateid is valid
5173 */
5174__be32
5175nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5176 struct nfsd4_test_stateid *test_stateid)
5177{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005178 struct nfsd4_test_stateid_id *stateid;
5179 struct nfs4_client *cl = cstate->session->se_client;
5180
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005181 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04005182 stateid->ts_id_status =
5183 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005184
Bryan Schumaker17456802011-07-13 10:50:48 -04005185 return nfs_ok;
5186}
5187
Chuck Lever42691392016-08-11 10:37:30 -04005188static __be32
5189nfsd4_free_lock_stateid(stateid_t *stateid, struct nfs4_stid *s)
5190{
5191 struct nfs4_ol_stateid *stp = openlockstateid(s);
5192 __be32 ret;
5193
5194 mutex_lock(&stp->st_mutex);
5195
5196 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5197 if (ret)
5198 goto out;
5199
5200 ret = nfserr_locks_held;
5201 if (check_for_locks(stp->st_stid.sc_file,
5202 lockowner(stp->st_stateowner)))
5203 goto out;
5204
5205 release_lock_stateid(stp);
5206 ret = nfs_ok;
5207
5208out:
5209 mutex_unlock(&stp->st_mutex);
5210 nfs4_put_stid(s);
5211 return ret;
5212}
5213
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005214__be32
5215nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5216 struct nfsd4_free_stateid *free_stateid)
5217{
5218 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005219 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005220 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005221 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005222 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005223
Jeff Layton1af71cc2014-07-29 21:34:14 -04005224 spin_lock(&cl->cl_lock);
5225 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005226 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005227 goto out_unlock;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005228 switch (s->sc_type) {
5229 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005230 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005231 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005232 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005233 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5234 if (ret)
5235 break;
5236 ret = nfserr_locks_held;
5237 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005238 case NFS4_LOCK_STID:
Chuck Lever42691392016-08-11 10:37:30 -04005239 atomic_inc(&s->sc_count);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005240 spin_unlock(&cl->cl_lock);
Chuck Lever42691392016-08-11 10:37:30 -04005241 ret = nfsd4_free_lock_stateid(stateid, s);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005242 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005243 case NFS4_REVOKED_DELEG_STID:
5244 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005245 list_del_init(&dp->dl_recall_lru);
5246 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04005247 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005248 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005249 goto out;
5250 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005251 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005252out_unlock:
5253 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005254out:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005255 return ret;
5256}
5257
NeilBrown4c4cd222005-07-07 17:59:27 -07005258static inline int
5259setlkflg (int type)
5260{
5261 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
5262 RD_STATE : WR_STATE;
5263}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005265static __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 -04005266{
5267 struct svc_fh *current_fh = &cstate->current_fh;
5268 struct nfs4_stateowner *sop = stp->st_stateowner;
5269 __be32 status;
5270
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005271 status = nfsd4_check_seqid(cstate, sop, seqid);
5272 if (status)
5273 return status;
Trond Myklebust2a7d4a72017-11-03 08:00:15 -04005274 status = nfsd4_lock_ol_stateid(stp);
5275 if (status != nfs_ok)
5276 return status;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005277 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
Jeff Layton35a92fe2015-09-17 07:47:08 -04005278 if (status == nfs_ok)
5279 status = nfs4_check_fh(current_fh, &stp->st_stid);
5280 if (status != nfs_ok)
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005281 mutex_unlock(&stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005282 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005283}
5284
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285/*
5286 * Checks for sequence id mutating operations.
5287 */
Al Virob37ad282006-10-19 23:28:59 -07005288static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03005289nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04005290 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005291 struct nfs4_ol_stateid **stpp,
5292 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293{
J. Bruce Fields0836f582008-01-26 19:08:12 -05005294 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005295 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005296 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005298 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
5299 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07005300
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005302 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005303 if (status)
5304 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005305 stp = openlockstateid(s);
Jeff Layton58fb12e2014-07-29 21:34:27 -04005306 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005308 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005309 if (!status)
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005310 *stpp = stp;
Trond Myklebustfd911012014-07-29 21:34:24 -04005311 else
5312 nfs4_put_stid(&stp->st_stid);
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005313 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005314}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05005315
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005316static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
5317 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005318{
5319 __be32 status;
5320 struct nfs4_openowner *oo;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005321 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005323 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005324 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04005325 if (status)
5326 return status;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005327 oo = openowner(stp->st_stateowner);
5328 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005329 mutex_unlock(&stp->st_mutex);
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005330 nfs4_put_stid(&stp->st_stid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07005331 return nfserr_bad_stateid;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005332 }
5333 *stpp = stp;
NeilBrown3a4f98b2005-07-07 17:59:26 -07005334 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335}
5336
Al Virob37ad282006-10-19 23:28:59 -07005337__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005338nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005339 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340{
Al Virob37ad282006-10-19 23:28:59 -07005341 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005342 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005343 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005344 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345
Al Viroa6a9f182013-09-16 10:57:01 -04005346 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
5347 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005349 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07005350 if (status)
5351 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005353 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005354 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005355 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005356 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005357 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005358 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005359 status = nfserr_bad_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005360 if (oo->oo_flags & NFS4_OO_CONFIRMED) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005361 mutex_unlock(&stp->st_mutex);
Trond Myklebust2585fc72014-07-29 21:34:21 -04005362 goto put_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005363 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04005364 oo->oo_flags |= NFS4_OO_CONFIRMED;
Jeff Layton9767feb2015-10-01 09:05:50 -04005365 nfs4_inc_and_copy_stateid(&oc->oc_resp_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005366 mutex_unlock(&stp->st_mutex);
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005367 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005368 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07005369
Jeff Layton2a4317c2012-03-21 16:42:43 -04005370 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005371 status = nfs_ok;
Trond Myklebust2585fc72014-07-29 21:34:21 -04005372put_stateid:
5373 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005375 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 return status;
5377}
5378
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005379static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005381 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005382 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04005383 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04005384 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005385}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04005386
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005387static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
5388{
5389 switch (to_access) {
5390 case NFS4_SHARE_ACCESS_READ:
5391 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
5392 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5393 break;
5394 case NFS4_SHARE_ACCESS_WRITE:
5395 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
5396 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5397 break;
5398 case NFS4_SHARE_ACCESS_BOTH:
5399 break;
5400 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005401 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 }
5403}
5404
Al Virob37ad282006-10-19 23:28:59 -07005405__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005406nfsd4_open_downgrade(struct svc_rqst *rqstp,
5407 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005408 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409{
Al Virob37ad282006-10-19 23:28:59 -07005410 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005411 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005412 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
Al Viroa6a9f182013-09-16 10:57:01 -04005414 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
5415 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04005417 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02005418 if (od->od_deleg_want)
5419 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
5420 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005422 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005423 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005424 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005427 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005428 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 stp->st_access_bmap, od->od_share_access);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005430 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04005432 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005433 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 stp->st_deny_bmap, od->od_share_deny);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005435 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005437 nfs4_stateid_downgrade(stp, od->od_share_access);
Jeff Laytonce0fc432012-05-11 09:45:14 -04005438 reset_union_bmap_deny(od->od_share_deny, stp);
Jeff Layton9767feb2015-10-01 09:05:50 -04005439 nfs4_inc_and_copy_stateid(&od->od_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 status = nfs_ok;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005441put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005442 mutex_unlock(&stp->st_mutex);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005443 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005445 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 return status;
5447}
5448
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005449static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
5450{
Trond Myklebustacf92952014-06-30 11:48:37 -04005451 struct nfs4_client *clp = s->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04005452 bool unhashed;
Jeff Laytond83017f2014-07-29 21:34:42 -04005453 LIST_HEAD(reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005454
Jeff Layton2c41beb2014-07-29 21:34:41 -04005455 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04005456 unhashed = unhash_open_stateid(s, &reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005457
Jeff Laytond83017f2014-07-29 21:34:42 -04005458 if (clp->cl_minorversion) {
Jeff Laytone8568732015-08-24 12:41:47 -04005459 if (unhashed)
5460 put_ol_stateid_locked(s, &reaplist);
Jeff Laytond83017f2014-07-29 21:34:42 -04005461 spin_unlock(&clp->cl_lock);
5462 free_ol_stateid_reaplist(&reaplist);
5463 } else {
5464 spin_unlock(&clp->cl_lock);
5465 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04005466 if (unhashed)
5467 move_to_close_lru(s, clp->net);
Jeff Laytond83017f2014-07-29 21:34:42 -04005468 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04005469}
5470
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471/*
5472 * nfs4_unlock_state() called after encode
5473 */
Al Virob37ad282006-10-19 23:28:59 -07005474__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005475nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005476 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477{
Al Virob37ad282006-10-19 23:28:59 -07005478 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005479 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005480 struct net *net = SVC_NET(rqstp);
5481 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482
Al Viroa6a9f182013-09-16 10:57:01 -04005483 dprintk("NFSD: nfsd4_close on file %pd\n",
5484 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005486 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
5487 &close->cl_stateid,
5488 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005489 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005490 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005491 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 goto out;
Trond Myklebust1c8ea412017-11-03 08:00:10 -04005493
5494 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton9767feb2015-10-01 09:05:50 -04005495 nfs4_inc_and_copy_stateid(&close->cl_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005497 nfsd4_close_open_stateid(stp);
Trond Myklebust1c8ea412017-11-03 08:00:10 -04005498 mutex_unlock(&stp->st_mutex);
Trond Myklebust8a0b5892014-07-29 21:34:20 -04005499
Trond Myklebust5cd35862017-11-03 08:00:12 -04005500 /* See RFC5661 sectionm 18.2.4 */
5501 if (stp->st_stid.sc_client->cl_minorversion)
5502 memcpy(&close->cl_stateid, &close_stateid,
5503 sizeof(close->cl_stateid));
5504
Trond Myklebust8a0b5892014-07-29 21:34:20 -04005505 /* put reference from nfs4_preprocess_seqid_op */
5506 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 return status;
5509}
5510
Al Virob37ad282006-10-19 23:28:59 -07005511__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005512nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5513 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005515 struct nfs4_delegation *dp;
5516 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005517 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07005518 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005519 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005521 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005522 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005524 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005525 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005526 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005527 dp = delegstateid(s);
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04005528 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005529 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04005530 goto put_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005531
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005532 destroy_delegation(dp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005533put_stateid:
5534 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535out:
5536 return status;
5537}
5538
Benny Halevy87df4de2008-12-15 19:42:03 +02005539static inline u64
5540end_offset(u64 start, u64 len)
5541{
5542 u64 end;
5543
5544 end = start + len;
5545 return end >= start ? end: NFS4_MAX_UINT64;
5546}
5547
5548/* last octet in a range */
5549static inline u64
5550last_byte_offset(u64 start, u64 len)
5551{
5552 u64 end;
5553
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005554 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02005555 end = start + len;
5556 return end > start ? end - 1: NFS4_MAX_UINT64;
5557}
5558
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559/*
5560 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
5561 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
5562 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
5563 * locking, this prevents us from being completely protocol-compliant. The
5564 * real solution to this problem is to start using unsigned file offsets in
5565 * the VFS, but this is a very deep change!
5566 */
5567static inline void
5568nfs4_transform_lock_offset(struct file_lock *lock)
5569{
5570 if (lock->fl_start < 0)
5571 lock->fl_start = OFFSET_MAX;
5572 if (lock->fl_end < 0)
5573 lock->fl_end = OFFSET_MAX;
5574}
5575
Jeff Laytoncae80b32015-04-03 09:04:04 -04005576static fl_owner_t
5577nfsd4_fl_get_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04005578{
Jeff Laytoncae80b32015-04-03 09:04:04 -04005579 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
5580
5581 nfs4_get_stateowner(&lo->lo_owner);
5582 return owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04005583}
5584
Jeff Laytoncae80b32015-04-03 09:04:04 -04005585static void
5586nfsd4_fl_put_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04005587{
Jeff Laytoncae80b32015-04-03 09:04:04 -04005588 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04005589
Jeff Laytoncae80b32015-04-03 09:04:04 -04005590 if (lo)
Kinglong Meeaef95832014-08-22 10:18:44 -04005591 nfs4_put_stateowner(&lo->lo_owner);
Kinglong Meeaef95832014-08-22 10:18:44 -04005592}
5593
Jeff Layton76d348f2016-09-16 16:28:24 -04005594static void
5595nfsd4_lm_notify(struct file_lock *fl)
5596{
5597 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
5598 struct net *net = lo->lo_owner.so_client->net;
5599 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5600 struct nfsd4_blocked_lock *nbl = container_of(fl,
5601 struct nfsd4_blocked_lock, nbl_lock);
5602 bool queue = false;
5603
Jeff Layton7919d0a2016-09-16 16:28:25 -04005604 /* An empty list means that something else is going to be using it */
Jeff Layton0cc11a62016-10-20 09:34:31 -04005605 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005606 if (!list_empty(&nbl->nbl_list)) {
5607 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005608 list_del_init(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -04005609 queue = true;
5610 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04005611 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005612
5613 if (queue)
5614 nfsd4_run_cb(&nbl->nbl_cb);
5615}
5616
Alexey Dobriyan7b021962009-09-21 17:01:12 -07005617static const struct lock_manager_operations nfsd_posix_mng_ops = {
Jeff Layton76d348f2016-09-16 16:28:24 -04005618 .lm_notify = nfsd4_lm_notify,
Kinglong Meeaef95832014-08-22 10:18:44 -04005619 .lm_get_owner = nfsd4_fl_get_owner,
5620 .lm_put_owner = nfsd4_fl_put_owner,
NeilBrownd5b90262006-04-10 22:55:22 -07005621};
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622
5623static inline void
5624nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
5625{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005626 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627
NeilBrownd5b90262006-04-10 22:55:22 -07005628 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005629 lo = (struct nfs4_lockowner *) fl->fl_owner;
5630 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
5631 lo->lo_owner.so_owner.len, GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04005632 if (!deny->ld_owner.data)
5633 /* We just don't care that much */
5634 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005635 deny->ld_owner.len = lo->lo_owner.so_owner.len;
5636 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07005637 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04005638nevermind:
5639 deny->ld_owner.len = 0;
5640 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07005641 deny->ld_clientid.cl_boot = 0;
5642 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 }
5644 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02005645 deny->ld_length = NFS4_MAX_UINT64;
5646 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 deny->ld_length = fl->fl_end - fl->fl_start + 1;
5648 deny->ld_type = NFS4_READ_LT;
5649 if (fl->fl_type != F_RDLCK)
5650 deny->ld_type = NFS4_WRITE_LT;
5651}
5652
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005653static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08005654find_lockowner_str_locked(struct nfs4_client *clp, struct xdr_netobj *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655{
Trond Myklebustd4f04892014-07-29 21:34:36 -04005656 unsigned int strhashval = ownerstr_hashval(owner);
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005657 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658
Trond Myklebust0a880a22014-07-30 08:27:10 -04005659 lockdep_assert_held(&clp->cl_lock);
5660
Trond Myklebustd4f04892014-07-29 21:34:36 -04005661 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
5662 so_strhash) {
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005663 if (so->so_is_open_owner)
5664 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -04005665 if (same_owner_str(so, owner))
5666 return lockowner(nfs4_get_stateowner(so));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 }
5668 return NULL;
5669}
5670
Trond Myklebustc58c6612014-07-29 21:34:35 -04005671static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08005672find_lockowner_str(struct nfs4_client *clp, struct xdr_netobj *owner)
Trond Myklebustc58c6612014-07-29 21:34:35 -04005673{
5674 struct nfs4_lockowner *lo;
5675
Trond Myklebustd4f04892014-07-29 21:34:36 -04005676 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08005677 lo = find_lockowner_str_locked(clp, owner);
Trond Myklebustd4f04892014-07-29 21:34:36 -04005678 spin_unlock(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005679 return lo;
5680}
5681
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005682static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
5683{
Trond Myklebustc58c6612014-07-29 21:34:35 -04005684 unhash_lockowner_locked(lockowner(sop));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005685}
5686
Jeff Layton6b180f02014-07-29 21:34:26 -04005687static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
5688{
5689 struct nfs4_lockowner *lo = lockowner(sop);
5690
5691 kmem_cache_free(lockowner_slab, lo);
5692}
5693
5694static const struct nfs4_stateowner_operations lockowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005695 .so_unhash = nfs4_unhash_lockowner,
5696 .so_free = nfs4_free_lockowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04005697};
5698
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699/*
5700 * Alloc a lock owner structure.
5701 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005702 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005704 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005706static struct nfs4_lockowner *
Trond Myklebustc58c6612014-07-29 21:34:35 -04005707alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
5708 struct nfs4_ol_stateid *open_stp,
5709 struct nfsd4_lock *lock)
5710{
Trond Myklebustc58c6612014-07-29 21:34:35 -04005711 struct nfs4_lockowner *lo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005713 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
5714 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 return NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04005716 INIT_LIST_HEAD(&lo->lo_blocked);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005717 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
5718 lo->lo_owner.so_is_open_owner = 0;
Jeff Layton5db1c032014-07-29 21:34:28 -04005719 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
Jeff Layton6b180f02014-07-29 21:34:26 -04005720 lo->lo_owner.so_ops = &lockowner_ops;
Trond Myklebustd4f04892014-07-29 21:34:36 -04005721 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08005722 ret = find_lockowner_str_locked(clp, &lock->lk_new_owner);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005723 if (ret == NULL) {
5724 list_add(&lo->lo_owner.so_strhash,
Trond Myklebustd4f04892014-07-29 21:34:36 -04005725 &clp->cl_ownerstr_hashtbl[strhashval]);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005726 ret = lo;
5727 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08005728 nfs4_free_stateowner(&lo->lo_owner);
5729
Trond Myklebustd4f04892014-07-29 21:34:36 -04005730 spin_unlock(&clp->cl_lock);
J. Bruce Fields340f0ba2015-03-23 11:02:30 -04005731 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732}
5733
Jeff Layton356a95e2014-07-29 21:34:13 -04005734static void
5735init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
5736 struct nfs4_file *fp, struct inode *inode,
5737 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04005739 struct nfs4_client *clp = lo->lo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740
Jeff Layton356a95e2014-07-29 21:34:13 -04005741 lockdep_assert_held(&clp->cl_lock);
5742
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005743 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05005744 stp->st_stid.sc_type = NFS4_LOCK_STID;
Kinglong Meeb5971af2014-08-22 10:18:43 -04005745 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07005746 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04005747 stp->st_stid.sc_file = fp;
J. Bruce Fields0997b172011-03-02 18:01:35 -05005748 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07005750 stp->st_openstp = open_stp;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005751 mutex_init(&stp->st_mutex);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005752 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04005753 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04005754 spin_lock(&fp->fi_lock);
5755 list_add(&stp->st_perfile, &fp->fi_stateids);
5756 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757}
5758
Jeff Laytonc53530d2014-06-30 11:48:39 -04005759static struct nfs4_ol_stateid *
5760find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
5761{
5762 struct nfs4_ol_stateid *lst;
Jeff Layton356a95e2014-07-29 21:34:13 -04005763 struct nfs4_client *clp = lo->lo_owner.so_client;
5764
5765 lockdep_assert_held(&clp->cl_lock);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005766
5767 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005768 if (lst->st_stid.sc_file == fp) {
5769 atomic_inc(&lst->st_stid.sc_count);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005770 return lst;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005771 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04005772 }
5773 return NULL;
5774}
5775
Jeff Layton356a95e2014-07-29 21:34:13 -04005776static struct nfs4_ol_stateid *
5777find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
5778 struct inode *inode, struct nfs4_ol_stateid *ost,
5779 bool *new)
5780{
5781 struct nfs4_stid *ns = NULL;
5782 struct nfs4_ol_stateid *lst;
5783 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5784 struct nfs4_client *clp = oo->oo_owner.so_client;
5785
5786 spin_lock(&clp->cl_lock);
5787 lst = find_lock_stateid(lo, fi);
5788 if (lst == NULL) {
5789 spin_unlock(&clp->cl_lock);
Kinglong Mee743146d32017-01-18 19:04:42 +08005790 ns = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_lock_stateid);
Jeff Layton356a95e2014-07-29 21:34:13 -04005791 if (ns == NULL)
5792 return NULL;
5793
5794 spin_lock(&clp->cl_lock);
5795 lst = find_lock_stateid(lo, fi);
5796 if (likely(!lst)) {
5797 lst = openlockstateid(ns);
5798 init_lock_stateid(lst, lo, fi, inode, ost);
5799 ns = NULL;
5800 *new = true;
5801 }
5802 }
5803 spin_unlock(&clp->cl_lock);
5804 if (ns)
5805 nfs4_put_stid(ns);
5806 return lst;
5807}
Jeff Laytonc53530d2014-06-30 11:48:39 -04005808
NeilBrownfd39ca92005-06-23 22:04:03 -07005809static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810check_lock_length(u64 offset, u64 length)
5811{
Kinglong Meee7969312015-07-13 17:34:19 +08005812 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
5813 (length > ~offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814}
5815
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005816static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05005817{
Trond Myklebust11b91642014-07-29 21:34:08 -04005818 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05005819
Jeff Layton7214e862014-07-10 14:07:33 -04005820 lockdep_assert_held(&fp->fi_lock);
5821
Jeff Layton82c5ff12012-05-11 09:45:13 -04005822 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05005823 return;
Jeff Layton12659652014-07-10 14:07:28 -04005824 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04005825 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005826}
5827
Jeff Layton356a95e2014-07-29 21:34:13 -04005828static __be32
5829lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
5830 struct nfs4_ol_stateid *ost,
5831 struct nfsd4_lock *lock,
Jeff Laytondd257932016-08-11 10:37:39 -04005832 struct nfs4_ol_stateid **plst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005833{
Jeff Layton5db1c032014-07-29 21:34:28 -04005834 __be32 status;
Trond Myklebust11b91642014-07-29 21:34:08 -04005835 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005836 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5837 struct nfs4_client *cl = oo->oo_owner.so_client;
David Howells2b0143b2015-03-17 22:25:59 +00005838 struct inode *inode = d_inode(cstate->current_fh.fh_dentry);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005839 struct nfs4_lockowner *lo;
Jeff Laytondd257932016-08-11 10:37:39 -04005840 struct nfs4_ol_stateid *lst;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005841 unsigned int strhashval;
Jeff Laytondd257932016-08-11 10:37:39 -04005842 bool hashed;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005843
Kinglong Meec8623992015-07-13 17:35:37 +08005844 lo = find_lockowner_str(cl, &lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005845 if (!lo) {
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005846 strhashval = ownerstr_hashval(&lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005847 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
5848 if (lo == NULL)
5849 return nfserr_jukebox;
5850 } else {
5851 /* with an existing lockowner, seqids must be the same */
Jeff Layton5db1c032014-07-29 21:34:28 -04005852 status = nfserr_bad_seqid;
Jeff Laytonc53530d2014-06-30 11:48:39 -04005853 if (!cstate->minorversion &&
5854 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
Jeff Layton5db1c032014-07-29 21:34:28 -04005855 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005856 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04005857
Jeff Laytondd257932016-08-11 10:37:39 -04005858retry:
5859 lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
5860 if (lst == NULL) {
Jeff Layton5db1c032014-07-29 21:34:28 -04005861 status = nfserr_jukebox;
5862 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005863 }
Jeff Laytondd257932016-08-11 10:37:39 -04005864
5865 mutex_lock(&lst->st_mutex);
5866
5867 /* See if it's still hashed to avoid race with FREE_STATEID */
5868 spin_lock(&cl->cl_lock);
5869 hashed = !list_empty(&lst->st_perfile);
5870 spin_unlock(&cl->cl_lock);
5871
5872 if (!hashed) {
5873 mutex_unlock(&lst->st_mutex);
5874 nfs4_put_stid(&lst->st_stid);
5875 goto retry;
5876 }
Jeff Layton5db1c032014-07-29 21:34:28 -04005877 status = nfs_ok;
Jeff Laytondd257932016-08-11 10:37:39 -04005878 *plst = lst;
Jeff Layton5db1c032014-07-29 21:34:28 -04005879out:
5880 nfs4_put_stateowner(&lo->lo_owner);
5881 return status;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005882}
5883
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884/*
5885 * LOCK operation
5886 */
Al Virob37ad282006-10-19 23:28:59 -07005887__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005888nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005889 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005891 struct nfs4_openowner *open_sop = NULL;
5892 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005893 struct nfs4_ol_stateid *lock_stp = NULL;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005894 struct nfs4_ol_stateid *open_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04005895 struct nfs4_file *fp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04005896 struct file *filp = NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04005897 struct nfsd4_blocked_lock *nbl = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04005898 struct file_lock *file_lock = NULL;
5899 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005900 __be32 status = 0;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005901 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07005902 int err;
Jeff Layton5db1c032014-07-29 21:34:28 -04005903 bool new = false;
Jeff Layton76d348f2016-09-16 16:28:24 -04005904 unsigned char fl_type;
5905 unsigned int fl_flags = FL_POSIX;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005906 struct net *net = SVC_NET(rqstp);
5907 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908
5909 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
5910 (long long) lock->lk_offset,
5911 (long long) lock->lk_length);
5912
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913 if (check_lock_length(lock->lk_offset, lock->lk_length))
5914 return nfserr_inval;
5915
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005916 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02005917 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08005918 dprintk("NFSD: nfsd4_lock: permission denied!\n");
5919 return status;
5920 }
5921
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922 if (lock->lk_is_new) {
J. Bruce Fields684e5632011-11-04 17:08:10 -04005923 if (nfsd4_has_session(cstate))
5924 /* See rfc 5661 18.10.3: given clientid is ignored: */
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005925 memcpy(&lock->lk_new_clientid,
J. Bruce Fields684e5632011-11-04 17:08:10 -04005926 &cstate->session->se_client->cl_clientid,
5927 sizeof(clientid_t));
5928
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04005930 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005934 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935 lock->lk_new_open_seqid,
5936 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005937 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07005938 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939 goto out;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005940 mutex_unlock(&open_stp->st_mutex);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005941 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005942 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04005943 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005944 &lock->lk_new_clientid))
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005945 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005946 status = lookup_or_create_lock_state(cstate, open_stp, lock,
Jeff Layton5db1c032014-07-29 21:34:28 -04005947 &lock_stp, &new);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005948 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03005949 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005950 lock->lk_old_lock_seqid,
5951 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005952 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005953 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04005954 if (status)
5955 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005956 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005958 lkflg = setlkflg(lock->lk_type);
5959 status = nfs4_check_openmode(lock_stp, lkflg);
5960 if (status)
5961 goto out;
5962
NeilBrown0dd395d2005-07-07 17:59:15 -07005963 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005964 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005965 goto out;
5966 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005967 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005968 goto out;
5969
Trond Myklebust11b91642014-07-29 21:34:08 -04005970 fp = lock_stp->st_stid.sc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 switch (lock->lk_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972 case NFS4_READW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04005973 if (nfsd4_has_session(cstate))
5974 fl_flags |= FL_SLEEP;
5975 /* Fallthrough */
5976 case NFS4_READ_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005977 spin_lock(&fp->fi_lock);
5978 filp = find_readable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005979 if (filp)
5980 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04005981 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005982 fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05005983 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984 case NFS4_WRITEW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04005985 if (nfsd4_has_session(cstate))
5986 fl_flags |= FL_SLEEP;
5987 /* Fallthrough */
5988 case NFS4_WRITE_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005989 spin_lock(&fp->fi_lock);
5990 filp = find_writeable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005991 if (filp)
5992 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04005993 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005994 fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05005995 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 default:
5997 status = nfserr_inval;
5998 goto out;
5999 }
Jeff Layton76d348f2016-09-16 16:28:24 -04006000
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006001 if (!filp) {
6002 status = nfserr_openmode;
6003 goto out;
6004 }
Kinglong Meeaef95832014-08-22 10:18:44 -04006005
Jeff Layton76d348f2016-09-16 16:28:24 -04006006 nbl = find_or_allocate_block(lock_sop, &fp->fi_fhandle, nn);
6007 if (!nbl) {
6008 dprintk("NFSD: %s: unable to allocate block!\n", __func__);
6009 status = nfserr_jukebox;
6010 goto out;
6011 }
6012
6013 file_lock = &nbl->nbl_lock;
6014 file_lock->fl_type = fl_type;
Kinglong Meeaef95832014-08-22 10:18:44 -04006015 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
Jeff Layton21179d82012-08-21 08:03:32 -04006016 file_lock->fl_pid = current->tgid;
6017 file_lock->fl_file = filp;
Jeff Layton76d348f2016-09-16 16:28:24 -04006018 file_lock->fl_flags = fl_flags;
Jeff Layton21179d82012-08-21 08:03:32 -04006019 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6020 file_lock->fl_start = lock->lk_offset;
6021 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
6022 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023
Jeff Layton21179d82012-08-21 08:03:32 -04006024 conflock = locks_alloc_lock();
6025 if (!conflock) {
6026 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6027 status = nfserr_jukebox;
6028 goto out;
6029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030
Jeff Layton76d348f2016-09-16 16:28:24 -04006031 if (fl_flags & FL_SLEEP) {
Jeff Layton7919d0a2016-09-16 16:28:25 -04006032 nbl->nbl_time = jiffies;
Jeff Layton0cc11a62016-10-20 09:34:31 -04006033 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006034 list_add_tail(&nbl->nbl_list, &lock_sop->lo_blocked);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006035 list_add_tail(&nbl->nbl_lru, &nn->blocked_locks_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006036 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006037 }
6038
Jeff Layton21179d82012-08-21 08:03:32 -04006039 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006040 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 case 0: /* success! */
Jeff Layton9767feb2015-10-01 09:05:50 -04006042 nfs4_inc_and_copy_stateid(&lock->lk_resp_stateid, &lock_stp->st_stid);
Al Virob8dd7b92006-10-19 23:29:01 -07006043 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006044 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006045 case FILE_LOCK_DEFERRED:
6046 nbl = NULL;
6047 /* Fallthrough */
6048 case -EAGAIN: /* conflock holds conflicting lock */
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006049 status = nfserr_denied;
6050 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04006051 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006052 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006053 case -EDEADLK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006055 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04006056 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05006057 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04006058 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006059 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061out:
Jeff Layton76d348f2016-09-16 16:28:24 -04006062 if (nbl) {
6063 /* dequeue it if we queued it before */
6064 if (fl_flags & FL_SLEEP) {
Jeff Layton0cc11a62016-10-20 09:34:31 -04006065 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006066 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006067 list_del_init(&nbl->nbl_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006068 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006069 }
6070 free_blocked_lock(nbl);
6071 }
Trond Myklebustde186432014-07-10 14:07:26 -04006072 if (filp)
6073 fput(filp);
Jeff Layton5db1c032014-07-29 21:34:28 -04006074 if (lock_stp) {
6075 /* Bump seqid manually if the 4.0 replay owner is openowner */
6076 if (cstate->replay_owner &&
6077 cstate->replay_owner != &lock_sop->lo_owner &&
6078 seqid_mutating_err(ntohl(status)))
6079 lock_sop->lo_owner.so_seqid++;
6080
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006081 mutex_unlock(&lock_stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04006082
Jeff Layton5db1c032014-07-29 21:34:28 -04006083 /*
6084 * If this is a new, never-before-used stateid, and we are
6085 * returning an error, then just go ahead and release it.
6086 */
6087 if (status && new)
6088 release_lock_stateid(lock_stp);
6089
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006090 nfs4_put_stid(&lock_stp->st_stid);
Jeff Layton5db1c032014-07-29 21:34:28 -04006091 }
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006092 if (open_stp)
6093 nfs4_put_stid(&open_stp->st_stid);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006094 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006095 if (conflock)
6096 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097 return status;
6098}
6099
6100/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006101 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
6102 * so we do a temporary open here just to get an open file to pass to
6103 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
6104 * inode operation.)
6105 */
Al Viro04da6e92012-04-13 00:00:04 -04006106static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006107{
6108 struct file *file;
Al Viro04da6e92012-04-13 00:00:04 -04006109 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
6110 if (!err) {
6111 err = nfserrno(vfs_test_lock(file, lock));
Christoph Hellwigfd891452015-04-28 15:41:16 +02006112 fput(file);
Al Viro04da6e92012-04-13 00:00:04 -04006113 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006114 return err;
6115}
6116
6117/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118 * LOCKT operation
6119 */
Al Virob37ad282006-10-19 23:28:59 -07006120__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006121nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
6122 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123{
Jeff Layton21179d82012-08-21 08:03:32 -04006124 struct file_lock *file_lock = NULL;
Jeff Layton5db1c032014-07-29 21:34:28 -04006125 struct nfs4_lockowner *lo = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006126 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006127 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04006129 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 return nfserr_grace;
6131
6132 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
6133 return nfserr_inval;
6134
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006135 if (!nfsd4_has_session(cstate)) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04006136 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006137 if (status)
6138 goto out;
6139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
J. Bruce Fields75c096f2011-08-15 18:39:32 -04006141 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143
Jeff Layton21179d82012-08-21 08:03:32 -04006144 file_lock = locks_alloc_lock();
6145 if (!file_lock) {
6146 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6147 status = nfserr_jukebox;
6148 goto out;
6149 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006150
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151 switch (lockt->lt_type) {
6152 case NFS4_READ_LT:
6153 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006154 file_lock->fl_type = F_RDLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155 break;
6156 case NFS4_WRITE_LT:
6157 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006158 file_lock->fl_type = F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159 break;
6160 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04006161 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162 status = nfserr_inval;
6163 goto out;
6164 }
6165
Kinglong Meec8623992015-07-13 17:35:37 +08006166 lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006167 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04006168 file_lock->fl_owner = (fl_owner_t)lo;
6169 file_lock->fl_pid = current->tgid;
6170 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171
Jeff Layton21179d82012-08-21 08:03:32 -04006172 file_lock->fl_start = lockt->lt_offset;
6173 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174
Jeff Layton21179d82012-08-21 08:03:32 -04006175 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176
Jeff Layton21179d82012-08-21 08:03:32 -04006177 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04006178 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05006179 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04006180
Jeff Layton21179d82012-08-21 08:03:32 -04006181 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04006183 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184 }
6185out:
Jeff Layton5db1c032014-07-29 21:34:28 -04006186 if (lo)
6187 nfs4_put_stateowner(&lo->lo_owner);
Jeff Layton21179d82012-08-21 08:03:32 -04006188 if (file_lock)
6189 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190 return status;
6191}
6192
Al Virob37ad282006-10-19 23:28:59 -07006193__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006194nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08006195 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006197 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006199 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006200 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07006201 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006202 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6203
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
6205 (long long) locku->lu_offset,
6206 (long long) locku->lu_length);
6207
6208 if (check_lock_length(locku->lu_offset, locku->lu_length))
6209 return nfserr_inval;
6210
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006211 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006212 &locku->lu_stateid, NFS4_LOCK_STID,
6213 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006214 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215 goto out;
Trond Myklebust11b91642014-07-29 21:34:08 -04006216 filp = find_any_file(stp->st_stid.sc_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006217 if (!filp) {
6218 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04006219 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006220 }
Jeff Layton21179d82012-08-21 08:03:32 -04006221 file_lock = locks_alloc_lock();
6222 if (!file_lock) {
6223 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6224 status = nfserr_jukebox;
Trond Myklebustde186432014-07-10 14:07:26 -04006225 goto fput;
Jeff Layton21179d82012-08-21 08:03:32 -04006226 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006227
Jeff Layton21179d82012-08-21 08:03:32 -04006228 file_lock->fl_type = F_UNLCK;
Kinglong Meeaef95832014-08-22 10:18:44 -04006229 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
Jeff Layton21179d82012-08-21 08:03:32 -04006230 file_lock->fl_pid = current->tgid;
6231 file_lock->fl_file = filp;
6232 file_lock->fl_flags = FL_POSIX;
6233 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6234 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235
Jeff Layton21179d82012-08-21 08:03:32 -04006236 file_lock->fl_end = last_byte_offset(locku->lu_offset,
6237 locku->lu_length);
6238 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239
Jeff Layton21179d82012-08-21 08:03:32 -04006240 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07006241 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05006242 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 goto out_nfserr;
6244 }
Jeff Layton9767feb2015-10-01 09:05:50 -04006245 nfs4_inc_and_copy_stateid(&locku->lu_stateid, &stp->st_stid);
Trond Myklebustde186432014-07-10 14:07:26 -04006246fput:
6247 fput(filp);
Trond Myklebust858cc572014-07-29 21:34:16 -04006248put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006249 mutex_unlock(&stp->st_mutex);
Trond Myklebust858cc572014-07-29 21:34:16 -04006250 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006252 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006253 if (file_lock)
6254 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255 return status;
6256
6257out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07006258 status = nfserrno(err);
Trond Myklebustde186432014-07-10 14:07:26 -04006259 goto fput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260}
6261
6262/*
6263 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006264 * true: locks held by lockowner
6265 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006267static bool
6268check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006270 struct file_lock *fl;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006271 int status = false;
6272 struct file *filp = find_any_file(fp);
6273 struct inode *inode;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006274 struct file_lock_context *flctx;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006275
6276 if (!filp) {
6277 /* Any valid lock stateid should have some sort of access */
6278 WARN_ON_ONCE(1);
6279 return status;
6280 }
6281
6282 inode = file_inode(filp);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006283 flctx = inode->i_flctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006285 if (flctx && !list_empty_careful(&flctx->flc_posix)) {
Jeff Layton6109c852015-01-16 15:05:57 -05006286 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006287 list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
6288 if (fl->fl_owner == (fl_owner_t)lowner) {
6289 status = true;
6290 break;
6291 }
J. Bruce Fields796dadf2006-01-18 17:43:22 -08006292 }
Jeff Layton6109c852015-01-16 15:05:57 -05006293 spin_unlock(&flctx->flc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 }
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006295 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296 return status;
6297}
6298
Al Virob37ad282006-10-19 23:28:59 -07006299__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08006300nfsd4_release_lockowner(struct svc_rqst *rqstp,
6301 struct nfsd4_compound_state *cstate,
6302 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303{
6304 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Layton882e9d22014-07-29 21:34:37 -04006305 struct nfs4_stateowner *sop;
6306 struct nfs4_lockowner *lo = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006307 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308 struct xdr_netobj *owner = &rlockowner->rl_owner;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006309 unsigned int hashval = ownerstr_hashval(owner);
Al Virob37ad282006-10-19 23:28:59 -07006310 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006311 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006312 struct nfs4_client *clp;
Chuck Lever88584812016-07-13 16:40:14 -04006313 LIST_HEAD (reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
6315 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
6316 clid->cl_boot, clid->cl_id);
6317
Jeff Layton4b24ca72014-06-30 11:48:44 -04006318 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006319 if (status)
Trond Myklebust51f5e782014-07-30 08:27:27 -04006320 return status;
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006321
Trond Myklebustd4f04892014-07-29 21:34:36 -04006322 clp = cstate->clp;
Jeff Laytonfd449072014-06-30 11:48:41 -04006323 /* Find the matching lock stateowner */
Trond Myklebustd4f04892014-07-29 21:34:36 -04006324 spin_lock(&clp->cl_lock);
Jeff Layton882e9d22014-07-29 21:34:37 -04006325 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
Trond Myklebustd4f04892014-07-29 21:34:36 -04006326 so_strhash) {
Jeff Layton882e9d22014-07-29 21:34:37 -04006327
6328 if (sop->so_is_open_owner || !same_owner_str(sop, owner))
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05006329 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04006330
Jeff Layton882e9d22014-07-29 21:34:37 -04006331 /* see if there are still any locks associated with it */
6332 lo = lockowner(sop);
6333 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
6334 if (check_for_locks(stp->st_stid.sc_file, lo)) {
6335 status = nfserr_locks_held;
6336 spin_unlock(&clp->cl_lock);
Trond Myklebust51f5e782014-07-30 08:27:27 -04006337 return status;
Jeff Layton882e9d22014-07-29 21:34:37 -04006338 }
Jeff Layton5adfd882014-07-29 21:34:31 -04006339 }
Jeff Layton882e9d22014-07-29 21:34:37 -04006340
Kinglong Meeb5971af2014-08-22 10:18:43 -04006341 nfs4_get_stateowner(sop);
Jeff Layton882e9d22014-07-29 21:34:37 -04006342 break;
Jeff Laytonfd449072014-06-30 11:48:41 -04006343 }
Chuck Lever88584812016-07-13 16:40:14 -04006344 if (!lo) {
6345 spin_unlock(&clp->cl_lock);
6346 return status;
6347 }
6348
6349 unhash_lockowner_locked(lo);
6350 while (!list_empty(&lo->lo_owner.so_stateids)) {
6351 stp = list_first_entry(&lo->lo_owner.so_stateids,
6352 struct nfs4_ol_stateid,
6353 st_perstateowner);
6354 WARN_ON(!unhash_lock_stateid(stp));
6355 put_ol_stateid_locked(stp, &reaplist);
6356 }
Trond Myklebustc58c6612014-07-29 21:34:35 -04006357 spin_unlock(&clp->cl_lock);
Chuck Lever88584812016-07-13 16:40:14 -04006358 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone294c4c2018-03-16 11:32:02 -04006359 remove_blocked_locks(lo);
Chuck Lever88584812016-07-13 16:40:14 -04006360 nfs4_put_stateowner(&lo->lo_owner);
6361
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362 return status;
6363}
6364
6365static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07006366alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367{
NeilBrowna55370a2005-06-23 22:03:52 -07006368 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369}
6370
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006371bool
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006372nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07006373{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006374 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07006375
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006376 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006377 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07006378}
6379
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380/*
6381 * failure => all reset bets are off, nfserr_no_grace...
6382 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05006383struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006384nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385{
6386 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006387 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388
NeilBrowna55370a2005-06-23 22:03:52 -07006389 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
6390 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05006391 if (crp) {
6392 strhashval = clientstr_hashval(name);
6393 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006394 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Jeff Layton772a9bb2012-11-12 15:00:54 -05006395 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006396 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006397 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006398 }
6399 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400}
6401
Jeff Layton2a4317c2012-03-21 16:42:43 -04006402void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006403nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05006404{
6405 list_del(&crp->cr_strhash);
6406 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006407 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05006408}
6409
6410void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006411nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412{
6413 struct nfs4_client_reclaim *crp = NULL;
6414 int i;
6415
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006417 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
6418 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006420 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 }
6422 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006423 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424}
6425
6426/*
6427 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04006428struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006429nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430{
6431 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432 struct nfs4_client_reclaim *crp = NULL;
6433
Jeff Layton278c9312012-11-12 15:00:52 -05006434 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
Jeff Layton278c9312012-11-12 15:00:52 -05006436 strhashval = clientstr_hashval(recdir);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006437 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Jeff Layton278c9312012-11-12 15:00:52 -05006438 if (same_name(crp->cr_recdir, recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 return crp;
6440 }
6441 }
6442 return NULL;
6443}
6444
6445/*
6446* Called from OPEN. Look for clientid in reclaim list.
6447*/
Al Virob37ad282006-10-19 23:28:59 -07006448__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006449nfs4_check_open_reclaim(clientid_t *clid,
6450 struct nfsd4_compound_state *cstate,
6451 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006453 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04006454
6455 /* find clientid in conf_id_hashtbl */
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006456 status = lookup_clientid(clid, cstate, nn);
6457 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04006458 return nfserr_reclaim_bad;
6459
Jeff Layton3b3e7b72014-09-12 16:40:22 -04006460 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags))
6461 return nfserr_no_grace;
6462
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006463 if (nfsd4_client_record_check(cstate->clp))
6464 return nfserr_reclaim_bad;
6465
6466 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467}
6468
Bryan Schumaker65178db2011-11-01 13:35:21 -04006469#ifdef CONFIG_NFSD_FAULT_INJECTION
Jeff Layton016200c2014-07-30 08:27:21 -04006470static inline void
6471put_client(struct nfs4_client *clp)
6472{
6473 atomic_dec(&clp->cl_refcount);
6474}
6475
Jeff Layton285abde2014-07-30 08:27:24 -04006476static struct nfs4_client *
6477nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
6478{
6479 struct nfs4_client *clp;
6480 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6481 nfsd_net_id);
6482
6483 if (!nfsd_netns_ready(nn))
6484 return NULL;
6485
6486 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6487 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
6488 return clp;
6489 }
6490 return NULL;
6491}
6492
Jeff Layton7ec0e362014-07-30 08:27:17 -04006493u64
Jeff Layton285abde2014-07-30 08:27:24 -04006494nfsd_inject_print_clients(void)
Jeff Layton7ec0e362014-07-30 08:27:17 -04006495{
6496 struct nfs4_client *clp;
6497 u64 count = 0;
6498 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6499 nfsd_net_id);
6500 char buf[INET6_ADDRSTRLEN];
6501
6502 if (!nfsd_netns_ready(nn))
6503 return 0;
6504
6505 spin_lock(&nn->client_lock);
6506 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6507 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
6508 pr_info("NFS Client: %s\n", buf);
6509 ++count;
6510 }
6511 spin_unlock(&nn->client_lock);
6512
6513 return count;
6514}
Bryan Schumaker65178db2011-11-01 13:35:21 -04006515
Jeff Laytona0926d12014-07-30 08:27:18 -04006516u64
Jeff Layton285abde2014-07-30 08:27:24 -04006517nfsd_inject_forget_client(struct sockaddr_storage *addr, size_t addr_size)
Jeff Laytona0926d12014-07-30 08:27:18 -04006518{
6519 u64 count = 0;
6520 struct nfs4_client *clp;
6521 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6522 nfsd_net_id);
6523
6524 if (!nfsd_netns_ready(nn))
6525 return count;
6526
6527 spin_lock(&nn->client_lock);
6528 clp = nfsd_find_client(addr, addr_size);
6529 if (clp) {
6530 if (mark_client_expired_locked(clp) == nfs_ok)
6531 ++count;
6532 else
6533 clp = NULL;
6534 }
6535 spin_unlock(&nn->client_lock);
6536
6537 if (clp)
6538 expire_client(clp);
6539
6540 return count;
6541}
6542
Jeff Layton69fc9ed2014-07-30 08:27:19 -04006543u64
Jeff Layton285abde2014-07-30 08:27:24 -04006544nfsd_inject_forget_clients(u64 max)
Jeff Layton69fc9ed2014-07-30 08:27:19 -04006545{
6546 u64 count = 0;
6547 struct nfs4_client *clp, *next;
6548 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6549 nfsd_net_id);
6550 LIST_HEAD(reaplist);
6551
6552 if (!nfsd_netns_ready(nn))
6553 return count;
6554
6555 spin_lock(&nn->client_lock);
6556 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
6557 if (mark_client_expired_locked(clp) == nfs_ok) {
6558 list_add(&clp->cl_lru, &reaplist);
6559 if (max != 0 && ++count >= max)
6560 break;
6561 }
6562 }
6563 spin_unlock(&nn->client_lock);
6564
6565 list_for_each_entry_safe(clp, next, &reaplist, cl_lru)
6566 expire_client(clp);
6567
6568 return count;
6569}
6570
Bryan Schumaker184c1842012-11-29 11:40:44 -05006571static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
6572 const char *type)
6573{
6574 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05006575 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05006576 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
6577}
6578
Jeff Layton016200c2014-07-30 08:27:21 -04006579static void
6580nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid *lst,
6581 struct list_head *collect)
6582{
6583 struct nfs4_client *clp = lst->st_stid.sc_client;
6584 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6585 nfsd_net_id);
6586
6587 if (!collect)
6588 return;
6589
6590 lockdep_assert_held(&nn->client_lock);
6591 atomic_inc(&clp->cl_refcount);
6592 list_add(&lst->st_locks, collect);
6593}
6594
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006595static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
Jeff Layton3738d502014-07-30 08:27:20 -04006596 struct list_head *collect,
Jeff Laytone8568732015-08-24 12:41:47 -04006597 bool (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05006598{
6599 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006600 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006601 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006602 u64 count = 0;
6603
Jeff Layton016200c2014-07-30 08:27:21 -04006604 spin_lock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006605 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006606 list_for_each_entry_safe(stp, st_next,
6607 &oop->oo_owner.so_stateids, st_perstateowner) {
6608 list_for_each_entry_safe(lst, lst_next,
6609 &stp->st_locks, st_locks) {
Jeff Layton3738d502014-07-30 08:27:20 -04006610 if (func) {
Jeff Laytone8568732015-08-24 12:41:47 -04006611 if (func(lst))
6612 nfsd_inject_add_lock_to_list(lst,
6613 collect);
Jeff Layton3738d502014-07-30 08:27:20 -04006614 }
Jeff Layton016200c2014-07-30 08:27:21 -04006615 ++count;
6616 /*
6617 * Despite the fact that these functions deal
6618 * with 64-bit integers for "count", we must
6619 * ensure that it doesn't blow up the
6620 * clp->cl_refcount. Throw a warning if we
6621 * start to approach INT_MAX here.
6622 */
6623 WARN_ON_ONCE(count == (INT_MAX / 2));
6624 if (count == max)
6625 goto out;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006626 }
6627 }
6628 }
Jeff Layton016200c2014-07-30 08:27:21 -04006629out:
6630 spin_unlock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006631
6632 return count;
6633}
6634
Jeff Layton016200c2014-07-30 08:27:21 -04006635static u64
6636nfsd_collect_client_locks(struct nfs4_client *clp, struct list_head *collect,
6637 u64 max)
Bryan Schumakerfc291712012-11-29 11:40:40 -05006638{
Jeff Layton016200c2014-07-30 08:27:21 -04006639 return nfsd_foreach_client_lock(clp, max, collect, unhash_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006640}
6641
Jeff Layton016200c2014-07-30 08:27:21 -04006642static u64
6643nfsd_print_client_locks(struct nfs4_client *clp)
Bryan Schumaker184c1842012-11-29 11:40:44 -05006644{
Jeff Layton016200c2014-07-30 08:27:21 -04006645 u64 count = nfsd_foreach_client_lock(clp, 0, NULL, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006646 nfsd_print_count(clp, count, "locked files");
6647 return count;
6648}
6649
Jeff Layton016200c2014-07-30 08:27:21 -04006650u64
Jeff Layton285abde2014-07-30 08:27:24 -04006651nfsd_inject_print_locks(void)
Jeff Layton016200c2014-07-30 08:27:21 -04006652{
6653 struct nfs4_client *clp;
6654 u64 count = 0;
6655 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6656 nfsd_net_id);
6657
6658 if (!nfsd_netns_ready(nn))
6659 return 0;
6660
6661 spin_lock(&nn->client_lock);
6662 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6663 count += nfsd_print_client_locks(clp);
6664 spin_unlock(&nn->client_lock);
6665
6666 return count;
6667}
6668
6669static void
6670nfsd_reap_locks(struct list_head *reaplist)
6671{
6672 struct nfs4_client *clp;
6673 struct nfs4_ol_stateid *stp, *next;
6674
6675 list_for_each_entry_safe(stp, next, reaplist, st_locks) {
6676 list_del_init(&stp->st_locks);
6677 clp = stp->st_stid.sc_client;
6678 nfs4_put_stid(&stp->st_stid);
6679 put_client(clp);
6680 }
6681}
6682
6683u64
Jeff Layton285abde2014-07-30 08:27:24 -04006684nfsd_inject_forget_client_locks(struct sockaddr_storage *addr, size_t addr_size)
Jeff Layton016200c2014-07-30 08:27:21 -04006685{
6686 unsigned int count = 0;
6687 struct nfs4_client *clp;
6688 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6689 nfsd_net_id);
6690 LIST_HEAD(reaplist);
6691
6692 if (!nfsd_netns_ready(nn))
6693 return count;
6694
6695 spin_lock(&nn->client_lock);
6696 clp = nfsd_find_client(addr, addr_size);
6697 if (clp)
6698 count = nfsd_collect_client_locks(clp, &reaplist, 0);
6699 spin_unlock(&nn->client_lock);
6700 nfsd_reap_locks(&reaplist);
6701 return count;
6702}
6703
6704u64
Jeff Layton285abde2014-07-30 08:27:24 -04006705nfsd_inject_forget_locks(u64 max)
Jeff Layton016200c2014-07-30 08:27:21 -04006706{
6707 u64 count = 0;
6708 struct nfs4_client *clp;
6709 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6710 nfsd_net_id);
6711 LIST_HEAD(reaplist);
6712
6713 if (!nfsd_netns_ready(nn))
6714 return count;
6715
6716 spin_lock(&nn->client_lock);
6717 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6718 count += nfsd_collect_client_locks(clp, &reaplist, max - count);
6719 if (max != 0 && count >= max)
6720 break;
6721 }
6722 spin_unlock(&nn->client_lock);
6723 nfsd_reap_locks(&reaplist);
6724 return count;
6725}
6726
Jeff Layton82e05ef2014-07-30 08:27:22 -04006727static u64
6728nfsd_foreach_client_openowner(struct nfs4_client *clp, u64 max,
6729 struct list_head *collect,
6730 void (*func)(struct nfs4_openowner *))
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006731{
6732 struct nfs4_openowner *oop, *next;
Jeff Layton82e05ef2014-07-30 08:27:22 -04006733 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6734 nfsd_net_id);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006735 u64 count = 0;
6736
Jeff Layton82e05ef2014-07-30 08:27:22 -04006737 lockdep_assert_held(&nn->client_lock);
6738
6739 spin_lock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006740 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
Jeff Layton82e05ef2014-07-30 08:27:22 -04006741 if (func) {
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006742 func(oop);
Jeff Layton82e05ef2014-07-30 08:27:22 -04006743 if (collect) {
6744 atomic_inc(&clp->cl_refcount);
6745 list_add(&oop->oo_perclient, collect);
6746 }
6747 }
6748 ++count;
6749 /*
6750 * Despite the fact that these functions deal with
6751 * 64-bit integers for "count", we must ensure that
6752 * it doesn't blow up the clp->cl_refcount. Throw a
6753 * warning if we start to approach INT_MAX here.
6754 */
6755 WARN_ON_ONCE(count == (INT_MAX / 2));
6756 if (count == max)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006757 break;
6758 }
Jeff Layton82e05ef2014-07-30 08:27:22 -04006759 spin_unlock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006760
6761 return count;
6762}
6763
Jeff Layton82e05ef2014-07-30 08:27:22 -04006764static u64
6765nfsd_print_client_openowners(struct nfs4_client *clp)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006766{
Jeff Layton82e05ef2014-07-30 08:27:22 -04006767 u64 count = nfsd_foreach_client_openowner(clp, 0, NULL, NULL);
6768
6769 nfsd_print_count(clp, count, "openowners");
6770 return count;
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006771}
6772
Jeff Layton82e05ef2014-07-30 08:27:22 -04006773static u64
6774nfsd_collect_client_openowners(struct nfs4_client *clp,
6775 struct list_head *collect, u64 max)
Bryan Schumaker184c1842012-11-29 11:40:44 -05006776{
Jeff Layton82e05ef2014-07-30 08:27:22 -04006777 return nfsd_foreach_client_openowner(clp, max, collect,
6778 unhash_openowner_locked);
6779}
6780
6781u64
Jeff Layton285abde2014-07-30 08:27:24 -04006782nfsd_inject_print_openowners(void)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006783{
6784 struct nfs4_client *clp;
6785 u64 count = 0;
6786 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6787 nfsd_net_id);
6788
6789 if (!nfsd_netns_ready(nn))
6790 return 0;
6791
6792 spin_lock(&nn->client_lock);
6793 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6794 count += nfsd_print_client_openowners(clp);
6795 spin_unlock(&nn->client_lock);
6796
6797 return count;
6798}
6799
6800static void
6801nfsd_reap_openowners(struct list_head *reaplist)
6802{
6803 struct nfs4_client *clp;
6804 struct nfs4_openowner *oop, *next;
6805
6806 list_for_each_entry_safe(oop, next, reaplist, oo_perclient) {
6807 list_del_init(&oop->oo_perclient);
6808 clp = oop->oo_owner.so_client;
6809 release_openowner(oop);
6810 put_client(clp);
6811 }
6812}
6813
6814u64
Jeff Layton285abde2014-07-30 08:27:24 -04006815nfsd_inject_forget_client_openowners(struct sockaddr_storage *addr,
6816 size_t addr_size)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006817{
6818 unsigned int count = 0;
6819 struct nfs4_client *clp;
6820 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6821 nfsd_net_id);
6822 LIST_HEAD(reaplist);
6823
6824 if (!nfsd_netns_ready(nn))
6825 return count;
6826
6827 spin_lock(&nn->client_lock);
6828 clp = nfsd_find_client(addr, addr_size);
6829 if (clp)
6830 count = nfsd_collect_client_openowners(clp, &reaplist, 0);
6831 spin_unlock(&nn->client_lock);
6832 nfsd_reap_openowners(&reaplist);
6833 return count;
6834}
6835
6836u64
Jeff Layton285abde2014-07-30 08:27:24 -04006837nfsd_inject_forget_openowners(u64 max)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006838{
6839 u64 count = 0;
6840 struct nfs4_client *clp;
6841 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6842 nfsd_net_id);
6843 LIST_HEAD(reaplist);
6844
6845 if (!nfsd_netns_ready(nn))
6846 return count;
6847
6848 spin_lock(&nn->client_lock);
6849 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6850 count += nfsd_collect_client_openowners(clp, &reaplist,
6851 max - count);
6852 if (max != 0 && count >= max)
6853 break;
6854 }
6855 spin_unlock(&nn->client_lock);
6856 nfsd_reap_openowners(&reaplist);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006857 return count;
6858}
6859
Bryan Schumaker269de302012-11-29 11:40:42 -05006860static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
6861 struct list_head *victims)
6862{
6863 struct nfs4_delegation *dp, *next;
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006864 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6865 nfsd_net_id);
Bryan Schumaker269de302012-11-29 11:40:42 -05006866 u64 count = 0;
6867
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006868 lockdep_assert_held(&nn->client_lock);
6869
6870 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05006871 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04006872 if (victims) {
6873 /*
6874 * It's not safe to mess with delegations that have a
6875 * non-zero dl_time. They might have already been broken
6876 * and could be processed by the laundromat outside of
6877 * the state_lock. Just leave them be.
6878 */
6879 if (dp->dl_time != 0)
6880 continue;
6881
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006882 atomic_inc(&clp->cl_refcount);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04006883 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04006884 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04006885 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006886 ++count;
6887 /*
6888 * Despite the fact that these functions deal with
6889 * 64-bit integers for "count", we must ensure that
6890 * it doesn't blow up the clp->cl_refcount. Throw a
6891 * warning if we start to approach INT_MAX here.
6892 */
6893 WARN_ON_ONCE(count == (INT_MAX / 2));
6894 if (count == max)
Bryan Schumaker269de302012-11-29 11:40:42 -05006895 break;
6896 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006897 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05006898 return count;
6899}
6900
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006901static u64
6902nfsd_print_client_delegations(struct nfs4_client *clp)
Bryan Schumaker269de302012-11-29 11:40:42 -05006903{
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006904 u64 count = nfsd_find_all_delegations(clp, 0, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006905
6906 nfsd_print_count(clp, count, "delegations");
6907 return count;
6908}
6909
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006910u64
Jeff Layton285abde2014-07-30 08:27:24 -04006911nfsd_inject_print_delegations(void)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006912{
6913 struct nfs4_client *clp;
6914 u64 count = 0;
6915 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6916 nfsd_net_id);
6917
6918 if (!nfsd_netns_ready(nn))
6919 return 0;
6920
6921 spin_lock(&nn->client_lock);
6922 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6923 count += nfsd_print_client_delegations(clp);
6924 spin_unlock(&nn->client_lock);
6925
6926 return count;
6927}
6928
6929static void
6930nfsd_forget_delegations(struct list_head *reaplist)
6931{
6932 struct nfs4_client *clp;
6933 struct nfs4_delegation *dp, *next;
6934
6935 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
6936 list_del_init(&dp->dl_recall_lru);
6937 clp = dp->dl_stid.sc_client;
6938 revoke_delegation(dp);
6939 put_client(clp);
6940 }
6941}
6942
6943u64
Jeff Layton285abde2014-07-30 08:27:24 -04006944nfsd_inject_forget_client_delegations(struct sockaddr_storage *addr,
6945 size_t addr_size)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006946{
6947 u64 count = 0;
6948 struct nfs4_client *clp;
6949 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6950 nfsd_net_id);
6951 LIST_HEAD(reaplist);
6952
6953 if (!nfsd_netns_ready(nn))
6954 return count;
6955
6956 spin_lock(&nn->client_lock);
6957 clp = nfsd_find_client(addr, addr_size);
6958 if (clp)
6959 count = nfsd_find_all_delegations(clp, 0, &reaplist);
6960 spin_unlock(&nn->client_lock);
6961
6962 nfsd_forget_delegations(&reaplist);
6963 return count;
6964}
6965
6966u64
Jeff Layton285abde2014-07-30 08:27:24 -04006967nfsd_inject_forget_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006968{
6969 u64 count = 0;
6970 struct nfs4_client *clp;
6971 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6972 nfsd_net_id);
6973 LIST_HEAD(reaplist);
6974
6975 if (!nfsd_netns_ready(nn))
6976 return count;
6977
6978 spin_lock(&nn->client_lock);
6979 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6980 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
6981 if (max != 0 && count >= max)
6982 break;
6983 }
6984 spin_unlock(&nn->client_lock);
6985 nfsd_forget_delegations(&reaplist);
6986 return count;
6987}
6988
6989static void
6990nfsd_recall_delegations(struct list_head *reaplist)
6991{
6992 struct nfs4_client *clp;
6993 struct nfs4_delegation *dp, *next;
6994
6995 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
6996 list_del_init(&dp->dl_recall_lru);
6997 clp = dp->dl_stid.sc_client;
6998 /*
6999 * We skipped all entries that had a zero dl_time before,
7000 * so we can now reset the dl_time back to 0. If a delegation
7001 * break comes in now, then it won't make any difference since
7002 * we're recalling it either way.
7003 */
7004 spin_lock(&state_lock);
7005 dp->dl_time = 0;
7006 spin_unlock(&state_lock);
7007 nfsd_break_one_deleg(dp);
7008 put_client(clp);
7009 }
7010}
7011
7012u64
Jeff Layton285abde2014-07-30 08:27:24 -04007013nfsd_inject_recall_client_delegations(struct sockaddr_storage *addr,
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007014 size_t addr_size)
7015{
7016 u64 count = 0;
7017 struct nfs4_client *clp;
7018 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7019 nfsd_net_id);
7020 LIST_HEAD(reaplist);
7021
7022 if (!nfsd_netns_ready(nn))
7023 return count;
7024
7025 spin_lock(&nn->client_lock);
7026 clp = nfsd_find_client(addr, addr_size);
7027 if (clp)
7028 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7029 spin_unlock(&nn->client_lock);
7030
7031 nfsd_recall_delegations(&reaplist);
7032 return count;
7033}
7034
7035u64
Jeff Layton285abde2014-07-30 08:27:24 -04007036nfsd_inject_recall_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007037{
7038 u64 count = 0;
7039 struct nfs4_client *clp, *next;
7040 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7041 nfsd_net_id);
7042 LIST_HEAD(reaplist);
7043
7044 if (!nfsd_netns_ready(nn))
7045 return count;
7046
7047 spin_lock(&nn->client_lock);
7048 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7049 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7050 if (max != 0 && ++count >= max)
7051 break;
7052 }
7053 spin_unlock(&nn->client_lock);
7054 nfsd_recall_delegations(&reaplist);
7055 return count;
7056}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007057#endif /* CONFIG_NFSD_FAULT_INJECTION */
7058
Meelap Shahc2f1a552007-07-17 04:04:39 -07007059/*
7060 * Since the lifetime of a delegation isn't limited to that of an open, a
7061 * client may quite reasonably hang on to a delegation as long as it has
7062 * the inode cached. This becomes an obvious problem the first time a
7063 * client's inode cache approaches the size of the server's total memory.
7064 *
7065 * For now we avoid this problem by imposing a hard limit on the number
7066 * of delegations, which varies according to the server's memory size.
7067 */
7068static void
7069set_max_delegations(void)
7070{
7071 /*
7072 * Allow at most 4 delegations per megabyte of RAM. Quick
7073 * estimates suggest that in the worst case (where every delegation
7074 * is for a different inode), a delegation could take about 1.5K,
7075 * giving a worst case usage of about 6% of memory.
7076 */
7077 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
7078}
7079
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007080static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007081{
7082 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7083 int i;
7084
7085 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
7086 CLIENT_HASH_SIZE, GFP_KERNEL);
7087 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007088 goto err;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007089 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
7090 CLIENT_HASH_SIZE, GFP_KERNEL);
7091 if (!nn->unconf_id_hashtbl)
7092 goto err_unconf_id;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007093 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
7094 SESSION_HASH_SIZE, GFP_KERNEL);
7095 if (!nn->sessionid_hashtbl)
7096 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007097
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007098 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007099 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007100 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007101 }
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007102 for (i = 0; i < SESSION_HASH_SIZE; i++)
7103 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007104 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007105 nn->unconf_name_tree = RB_ROOT;
Vasily Averin3b774232017-11-13 07:25:40 +03007106 nn->boot_time = get_seconds();
7107 nn->grace_ended = false;
7108 nn->nfsd4_manager.block_opens = true;
7109 INIT_LIST_HEAD(&nn->nfsd4_manager.list);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03007110 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03007111 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007112 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03007113 spin_lock_init(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007114
Jeff Layton0cc11a62016-10-20 09:34:31 -04007115 spin_lock_init(&nn->blocked_locks_lock);
7116 INIT_LIST_HEAD(&nn->blocked_locks_lru);
7117
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007118 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007119 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007120
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007121 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007122
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007123err_sessionid:
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03007124 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007125err_unconf_id:
7126 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007127err:
7128 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007129}
7130
7131static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007132nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007133{
7134 int i;
7135 struct nfs4_client *clp = NULL;
7136 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7137
7138 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7139 while (!list_empty(&nn->conf_id_hashtbl[i])) {
7140 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7141 destroy_client(clp);
7142 }
7143 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007144
Jeff Laytone294c4c2018-03-16 11:32:02 -04007145 WARN_ON(!list_empty(&nn->blocked_locks_lru));
7146
Kinglong Mee2b905632014-03-26 22:09:30 +08007147 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7148 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
7149 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7150 destroy_client(clp);
7151 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007152 }
7153
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007154 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007155 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007156 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007157 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007158}
7159
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007160int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007161nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07007162{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04007163 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007164 int ret;
7165
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007166 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007167 if (ret)
7168 return ret;
Jeff Laytond4318ac2014-09-12 16:40:21 -04007169 locks_start_grace(net, &nn->nfsd4_manager);
7170 nfsd4_client_tracking_init(net);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007171 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %p)\n",
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03007172 nn->nfsd4_grace, net);
7173 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007174 return 0;
7175}
7176
7177/* initialization to perform when the nfsd service is started: */
7178
7179int
7180nfs4_state_start(void)
7181{
7182 int ret;
7183
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007184 ret = set_callback_cred();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007185 if (ret)
Kinglong Meed4bda742017-02-05 09:57:07 +08007186 return ret;
7187
Jeff Layton51a54562015-08-20 07:17:01 -04007188 laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05007189 if (laundry_wq == NULL) {
7190 ret = -ENOMEM;
Kinglong Meed4bda742017-02-05 09:57:07 +08007191 goto out_cleanup_cred;
Jeff Laytona6d6b782012-03-05 11:42:36 -05007192 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007193 ret = nfsd4_create_callback_queue();
7194 if (ret)
7195 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007196
Meelap Shahc2f1a552007-07-17 04:04:39 -07007197 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007198 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007199
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007200out_free_laundry:
7201 destroy_workqueue(laundry_wq);
Kinglong Meed4bda742017-02-05 09:57:07 +08007202out_cleanup_cred:
7203 cleanup_callback_cred();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007204 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205}
7206
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007207void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007208nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007212 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007214 cancel_delayed_work_sync(&nn->laundromat_work);
7215 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05007216
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04007218 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007219 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007221 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007222 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007223 }
Benny Halevycdc97502014-05-30 09:09:30 -04007224 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225 list_for_each_safe(pos, next, &reaplist) {
7226 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04007227 list_del_init(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +02007228 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -04007229 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
Trond Myklebust60116952014-07-29 21:34:06 -04007230 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007231 }
7232
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03007233 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007234 nfs4_state_destroy_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007235}
7236
7237void
7238nfs4_state_shutdown(void)
7239{
NeilBrown5e8d5c22006-04-10 22:55:37 -07007240 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04007241 nfsd4_destroy_callback_queue();
Kinglong Meed4bda742017-02-05 09:57:07 +08007242 cleanup_callback_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007244
7245static void
7246get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7247{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007248 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
7249 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007250}
7251
7252static void
7253put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7254{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007255 if (cstate->minorversion) {
7256 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
7257 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
7258 }
7259}
7260
7261void
7262clear_current_stateid(struct nfsd4_compound_state *cstate)
7263{
7264 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007265}
7266
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007267/*
7268 * functions to set current state id
7269 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007270void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007271nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
7272{
7273 put_stateid(cstate, &odp->od_stateid);
7274}
7275
7276void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007277nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
7278{
7279 put_stateid(cstate, &open->op_stateid);
7280}
7281
7282void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007283nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
7284{
7285 put_stateid(cstate, &close->cl_stateid);
7286}
7287
7288void
7289nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
7290{
7291 put_stateid(cstate, &lock->lk_resp_stateid);
7292}
7293
7294/*
7295 * functions to consume current state id
7296 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007297
7298void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007299nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
7300{
7301 get_stateid(cstate, &odp->od_stateid);
7302}
7303
7304void
7305nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
7306{
7307 get_stateid(cstate, &drp->dr_stateid);
7308}
7309
7310void
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007311nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
7312{
7313 get_stateid(cstate, &fsp->fr_stateid);
7314}
7315
7316void
7317nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
7318{
7319 get_stateid(cstate, &setattr->sa_stateid);
7320}
7321
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007322void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007323nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
7324{
7325 get_stateid(cstate, &close->cl_stateid);
7326}
7327
7328void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007329nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007330{
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007331 get_stateid(cstate, &locku->lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007332}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007333
7334void
7335nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
7336{
7337 get_stateid(cstate, &read->rd_stateid);
7338}
7339
7340void
7341nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
7342{
7343 get_stateid(cstate, &write->wr_stateid);
7344}