1 /*
2 * 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
35 #include <linux/file.h>
36 #include <linux/fs.h>
37 #include <linux/slab.h>
38 #include <linux/namei.h>
39 #include <linux/swap.h>
40 #include <linux/pagemap.h>
41 #include <linux/ratelimit.h>
42 #include <linux/sunrpc/svcauth_gss.h>
43 #include <linux/sunrpc/addr.h>
44 #include <linux/jhash.h>
45 #include <linux/string_helpers.h>
46 #include <linux/fsnotify.h>
47 #include <linux/rhashtable.h>
48 #include <linux/nfs_ssc.h>
49
50 #include "xdr4.h"
51 #include "xdr4cb.h"
52 #include "vfs.h"
53 #include "current_stateid.h"
54
55 #include "netns.h"
56 #include "pnfs.h"
57 #include "filecache.h"
58 #include "trace.h"
59
60 #define NFSDDBG_FACILITY NFSDDBG_PROC
61
62 #define all_ones {{~0,~0},~0}
63 static const stateid_t one_stateid = {
64 .si_generation = ~0,
65 .si_opaque = all_ones,
66 };
67 static const stateid_t zero_stateid = {
68 /* all fields zero */
69 };
70 static const stateid_t currentstateid = {
71 .si_generation = 1,
72 };
73 static const stateid_t close_stateid = {
74 .si_generation = 0xffffffffU,
75 };
76
77 static u64 current_sessionid = 1;
78
79 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
80 #define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
81 #define CURRENT_STATEID(stateid) (!memcmp((stateid), ¤tstateid, sizeof(stateid_t)))
82 #define CLOSE_STATEID(stateid) (!memcmp((stateid), &close_stateid, sizeof(stateid_t)))
83
84 /* forward declarations */
85 static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
86 static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
87 void nfsd4_end_grace(struct nfsd_net *nn);
88 static void _free_cpntf_state_locked(struct nfsd_net *nn, struct nfs4_cpntf_state *cps);
89 static void nfsd4_file_hash_remove(struct nfs4_file *fi);
90
91 /* Locking: */
92
93 /*
94 * Currently used for the del_recall_lru and file hash table. In an
95 * effort to decrease the scope of the client_mutex, this spinlock may
96 * eventually cover more:
97 */
98 static DEFINE_SPINLOCK(state_lock);
99
100 enum nfsd4_st_mutex_lock_subclass {
101 OPEN_STATEID_MUTEX = 0,
102 LOCK_STATEID_MUTEX = 1,
103 };
104
105 /*
106 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
107 * the refcount on the open stateid to drop.
108 */
109 static DECLARE_WAIT_QUEUE_HEAD(close_wq);
110
111 /*
112 * A waitqueue where a writer to clients/#/ctl destroying a client can
113 * wait for cl_rpc_users to drop to 0 and then for the client to be
114 * unhashed.
115 */
116 static DECLARE_WAIT_QUEUE_HEAD(expiry_wq);
117
118 static struct kmem_cache *client_slab;
119 static struct kmem_cache *openowner_slab;
120 static struct kmem_cache *lockowner_slab;
121 static struct kmem_cache *file_slab;
122 static struct kmem_cache *stateid_slab;
123 static struct kmem_cache *deleg_slab;
124 static struct kmem_cache *odstate_slab;
125
126 static void free_session(struct nfsd4_session *);
127
128 static const struct nfsd4_callback_ops nfsd4_cb_recall_ops;
129 static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops;
130
131 static struct workqueue_struct *laundry_wq;
132
nfsd4_create_laundry_wq(void)133 int nfsd4_create_laundry_wq(void)
134 {
135 int rc = 0;
136
137 laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4");
138 if (laundry_wq == NULL)
139 rc = -ENOMEM;
140 return rc;
141 }
142
nfsd4_destroy_laundry_wq(void)143 void nfsd4_destroy_laundry_wq(void)
144 {
145 destroy_workqueue(laundry_wq);
146 }
147
is_session_dead(struct nfsd4_session * ses)148 static bool is_session_dead(struct nfsd4_session *ses)
149 {
150 return ses->se_flags & NFS4_SESSION_DEAD;
151 }
152
mark_session_dead_locked(struct nfsd4_session * ses,int ref_held_by_me)153 static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
154 {
155 if (atomic_read(&ses->se_ref) > ref_held_by_me)
156 return nfserr_jukebox;
157 ses->se_flags |= NFS4_SESSION_DEAD;
158 return nfs_ok;
159 }
160
is_client_expired(struct nfs4_client * clp)161 static bool is_client_expired(struct nfs4_client *clp)
162 {
163 return clp->cl_time == 0;
164 }
165
nfsd4_dec_courtesy_client_count(struct nfsd_net * nn,struct nfs4_client * clp)166 static void nfsd4_dec_courtesy_client_count(struct nfsd_net *nn,
167 struct nfs4_client *clp)
168 {
169 if (clp->cl_state != NFSD4_ACTIVE)
170 atomic_add_unless(&nn->nfsd_courtesy_clients, -1, 0);
171 }
172
get_client_locked(struct nfs4_client * clp)173 static __be32 get_client_locked(struct nfs4_client *clp)
174 {
175 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
176
177 lockdep_assert_held(&nn->client_lock);
178
179 if (is_client_expired(clp))
180 return nfserr_expired;
181 atomic_inc(&clp->cl_rpc_users);
182 nfsd4_dec_courtesy_client_count(nn, clp);
183 clp->cl_state = NFSD4_ACTIVE;
184 return nfs_ok;
185 }
186
187 /* must be called under the client_lock */
188 static inline void
renew_client_locked(struct nfs4_client * clp)189 renew_client_locked(struct nfs4_client *clp)
190 {
191 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
192
193 if (is_client_expired(clp)) {
194 WARN_ON(1);
195 printk("%s: client (clientid %08x/%08x) already expired\n",
196 __func__,
197 clp->cl_clientid.cl_boot,
198 clp->cl_clientid.cl_id);
199 return;
200 }
201
202 list_move_tail(&clp->cl_lru, &nn->client_lru);
203 clp->cl_time = ktime_get_boottime_seconds();
204 nfsd4_dec_courtesy_client_count(nn, clp);
205 clp->cl_state = NFSD4_ACTIVE;
206 }
207
put_client_renew_locked(struct nfs4_client * clp)208 static void put_client_renew_locked(struct nfs4_client *clp)
209 {
210 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
211
212 lockdep_assert_held(&nn->client_lock);
213
214 if (!atomic_dec_and_test(&clp->cl_rpc_users))
215 return;
216 if (!is_client_expired(clp))
217 renew_client_locked(clp);
218 else
219 wake_up_all(&expiry_wq);
220 }
221
put_client_renew(struct nfs4_client * clp)222 static void put_client_renew(struct nfs4_client *clp)
223 {
224 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
225
226 if (!atomic_dec_and_lock(&clp->cl_rpc_users, &nn->client_lock))
227 return;
228 if (!is_client_expired(clp))
229 renew_client_locked(clp);
230 else
231 wake_up_all(&expiry_wq);
232 spin_unlock(&nn->client_lock);
233 }
234
nfsd4_get_session_locked(struct nfsd4_session * ses)235 static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
236 {
237 __be32 status;
238
239 if (is_session_dead(ses))
240 return nfserr_badsession;
241 status = get_client_locked(ses->se_client);
242 if (status)
243 return status;
244 atomic_inc(&ses->se_ref);
245 return nfs_ok;
246 }
247
nfsd4_put_session_locked(struct nfsd4_session * ses)248 static void nfsd4_put_session_locked(struct nfsd4_session *ses)
249 {
250 struct nfs4_client *clp = ses->se_client;
251 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
252
253 lockdep_assert_held(&nn->client_lock);
254
255 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
256 free_session(ses);
257 put_client_renew_locked(clp);
258 }
259
nfsd4_put_session(struct nfsd4_session * ses)260 static void nfsd4_put_session(struct nfsd4_session *ses)
261 {
262 struct nfs4_client *clp = ses->se_client;
263 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
264
265 spin_lock(&nn->client_lock);
266 nfsd4_put_session_locked(ses);
267 spin_unlock(&nn->client_lock);
268 }
269
270 static struct nfsd4_blocked_lock *
find_blocked_lock(struct nfs4_lockowner * lo,struct knfsd_fh * fh,struct nfsd_net * nn)271 find_blocked_lock(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
272 struct nfsd_net *nn)
273 {
274 struct nfsd4_blocked_lock *cur, *found = NULL;
275
276 spin_lock(&nn->blocked_locks_lock);
277 list_for_each_entry(cur, &lo->lo_blocked, nbl_list) {
278 if (fh_match(fh, &cur->nbl_fh)) {
279 list_del_init(&cur->nbl_list);
280 WARN_ON(list_empty(&cur->nbl_lru));
281 list_del_init(&cur->nbl_lru);
282 found = cur;
283 break;
284 }
285 }
286 spin_unlock(&nn->blocked_locks_lock);
287 if (found)
288 locks_delete_block(&found->nbl_lock);
289 return found;
290 }
291
292 static struct nfsd4_blocked_lock *
find_or_allocate_block(struct nfs4_lockowner * lo,struct knfsd_fh * fh,struct nfsd_net * nn)293 find_or_allocate_block(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
294 struct nfsd_net *nn)
295 {
296 struct nfsd4_blocked_lock *nbl;
297
298 nbl = find_blocked_lock(lo, fh, nn);
299 if (!nbl) {
300 nbl= kmalloc(sizeof(*nbl), GFP_KERNEL);
301 if (nbl) {
302 INIT_LIST_HEAD(&nbl->nbl_list);
303 INIT_LIST_HEAD(&nbl->nbl_lru);
304 fh_copy_shallow(&nbl->nbl_fh, fh);
305 locks_init_lock(&nbl->nbl_lock);
306 kref_init(&nbl->nbl_kref);
307 nfsd4_init_cb(&nbl->nbl_cb, lo->lo_owner.so_client,
308 &nfsd4_cb_notify_lock_ops,
309 NFSPROC4_CLNT_CB_NOTIFY_LOCK);
310 }
311 }
312 return nbl;
313 }
314
315 static void
free_nbl(struct kref * kref)316 free_nbl(struct kref *kref)
317 {
318 struct nfsd4_blocked_lock *nbl;
319
320 nbl = container_of(kref, struct nfsd4_blocked_lock, nbl_kref);
321 kfree(nbl);
322 }
323
324 static void
free_blocked_lock(struct nfsd4_blocked_lock * nbl)325 free_blocked_lock(struct nfsd4_blocked_lock *nbl)
326 {
327 locks_delete_block(&nbl->nbl_lock);
328 locks_release_private(&nbl->nbl_lock);
329 kref_put(&nbl->nbl_kref, free_nbl);
330 }
331
332 static void
remove_blocked_locks(struct nfs4_lockowner * lo)333 remove_blocked_locks(struct nfs4_lockowner *lo)
334 {
335 struct nfs4_client *clp = lo->lo_owner.so_client;
336 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
337 struct nfsd4_blocked_lock *nbl;
338 LIST_HEAD(reaplist);
339
340 /* Dequeue all blocked locks */
341 spin_lock(&nn->blocked_locks_lock);
342 while (!list_empty(&lo->lo_blocked)) {
343 nbl = list_first_entry(&lo->lo_blocked,
344 struct nfsd4_blocked_lock,
345 nbl_list);
346 list_del_init(&nbl->nbl_list);
347 WARN_ON(list_empty(&nbl->nbl_lru));
348 list_move(&nbl->nbl_lru, &reaplist);
349 }
350 spin_unlock(&nn->blocked_locks_lock);
351
352 /* Now free them */
353 while (!list_empty(&reaplist)) {
354 nbl = list_first_entry(&reaplist, struct nfsd4_blocked_lock,
355 nbl_lru);
356 list_del_init(&nbl->nbl_lru);
357 free_blocked_lock(nbl);
358 }
359 }
360
361 static void
nfsd4_cb_notify_lock_prepare(struct nfsd4_callback * cb)362 nfsd4_cb_notify_lock_prepare(struct nfsd4_callback *cb)
363 {
364 struct nfsd4_blocked_lock *nbl = container_of(cb,
365 struct nfsd4_blocked_lock, nbl_cb);
366 locks_delete_block(&nbl->nbl_lock);
367 }
368
369 static int
nfsd4_cb_notify_lock_done(struct nfsd4_callback * cb,struct rpc_task * task)370 nfsd4_cb_notify_lock_done(struct nfsd4_callback *cb, struct rpc_task *task)
371 {
372 trace_nfsd_cb_notify_lock_done(&zero_stateid, task);
373
374 /*
375 * Since this is just an optimization, we don't try very hard if it
376 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
377 * just quit trying on anything else.
378 */
379 switch (task->tk_status) {
380 case -NFS4ERR_DELAY:
381 rpc_delay(task, 1 * HZ);
382 return 0;
383 default:
384 return 1;
385 }
386 }
387
388 static void
nfsd4_cb_notify_lock_release(struct nfsd4_callback * cb)389 nfsd4_cb_notify_lock_release(struct nfsd4_callback *cb)
390 {
391 struct nfsd4_blocked_lock *nbl = container_of(cb,
392 struct nfsd4_blocked_lock, nbl_cb);
393
394 free_blocked_lock(nbl);
395 }
396
397 static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops = {
398 .prepare = nfsd4_cb_notify_lock_prepare,
399 .done = nfsd4_cb_notify_lock_done,
400 .release = nfsd4_cb_notify_lock_release,
401 };
402
403 /*
404 * We store the NONE, READ, WRITE, and BOTH bits separately in the
405 * st_{access,deny}_bmap field of the stateid, in order to track not
406 * only what share bits are currently in force, but also what
407 * combinations of share bits previous opens have used. This allows us
408 * to enforce the recommendation in
409 * https://datatracker.ietf.org/doc/html/rfc7530#section-16.19.4 that
410 * the server return an error if the client attempt to downgrade to a
411 * combination of share bits not explicable by closing some of its
412 * previous opens.
413 *
414 * This enforcement is arguably incomplete, since we don't keep
415 * track of access/deny bit combinations; so, e.g., we allow:
416 *
417 * OPEN allow read, deny write
418 * OPEN allow both, deny none
419 * DOWNGRADE allow read, deny none
420 *
421 * which we should reject.
422 *
423 * But you could also argue that our current code is already overkill,
424 * since it only exists to return NFS4ERR_INVAL on incorrect client
425 * behavior.
426 */
427 static unsigned int
bmap_to_share_mode(unsigned long bmap)428 bmap_to_share_mode(unsigned long bmap)
429 {
430 int i;
431 unsigned int access = 0;
432
433 for (i = 1; i < 4; i++) {
434 if (test_bit(i, &bmap))
435 access |= i;
436 }
437 return access;
438 }
439
440 /* set share access for a given stateid */
441 static inline void
set_access(u32 access,struct nfs4_ol_stateid * stp)442 set_access(u32 access, struct nfs4_ol_stateid *stp)
443 {
444 unsigned char mask = 1 << access;
445
446 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
447 stp->st_access_bmap |= mask;
448 }
449
450 /* clear share access for a given stateid */
451 static inline void
clear_access(u32 access,struct nfs4_ol_stateid * stp)452 clear_access(u32 access, struct nfs4_ol_stateid *stp)
453 {
454 unsigned char mask = 1 << access;
455
456 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
457 stp->st_access_bmap &= ~mask;
458 }
459
460 /* test whether a given stateid has access */
461 static inline bool
test_access(u32 access,struct nfs4_ol_stateid * stp)462 test_access(u32 access, struct nfs4_ol_stateid *stp)
463 {
464 unsigned char mask = 1 << access;
465
466 return (bool)(stp->st_access_bmap & mask);
467 }
468
469 /* set share deny for a given stateid */
470 static inline void
set_deny(u32 deny,struct nfs4_ol_stateid * stp)471 set_deny(u32 deny, struct nfs4_ol_stateid *stp)
472 {
473 unsigned char mask = 1 << deny;
474
475 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
476 stp->st_deny_bmap |= mask;
477 }
478
479 /* clear share deny for a given stateid */
480 static inline void
clear_deny(u32 deny,struct nfs4_ol_stateid * stp)481 clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
482 {
483 unsigned char mask = 1 << deny;
484
485 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
486 stp->st_deny_bmap &= ~mask;
487 }
488
489 /* test whether a given stateid is denying specific access */
490 static inline bool
test_deny(u32 deny,struct nfs4_ol_stateid * stp)491 test_deny(u32 deny, struct nfs4_ol_stateid *stp)
492 {
493 unsigned char mask = 1 << deny;
494
495 return (bool)(stp->st_deny_bmap & mask);
496 }
497
nfs4_access_to_omode(u32 access)498 static int nfs4_access_to_omode(u32 access)
499 {
500 switch (access & NFS4_SHARE_ACCESS_BOTH) {
501 case NFS4_SHARE_ACCESS_READ:
502 return O_RDONLY;
503 case NFS4_SHARE_ACCESS_WRITE:
504 return O_WRONLY;
505 case NFS4_SHARE_ACCESS_BOTH:
506 return O_RDWR;
507 }
508 WARN_ON_ONCE(1);
509 return O_RDONLY;
510 }
511
512 static inline int
access_permit_read(struct nfs4_ol_stateid * stp)513 access_permit_read(struct nfs4_ol_stateid *stp)
514 {
515 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
516 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
517 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
518 }
519
520 static inline int
access_permit_write(struct nfs4_ol_stateid * stp)521 access_permit_write(struct nfs4_ol_stateid *stp)
522 {
523 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
524 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
525 }
526
527 static inline struct nfs4_stateowner *
nfs4_get_stateowner(struct nfs4_stateowner * sop)528 nfs4_get_stateowner(struct nfs4_stateowner *sop)
529 {
530 atomic_inc(&sop->so_count);
531 return sop;
532 }
533
534 static int
same_owner_str(struct nfs4_stateowner * sop,struct xdr_netobj * owner)535 same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
536 {
537 return (sop->so_owner.len == owner->len) &&
538 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
539 }
540
541 static struct nfs4_openowner *
find_openstateowner_str_locked(unsigned int hashval,struct nfsd4_open * open,struct nfs4_client * clp)542 find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
543 struct nfs4_client *clp)
544 {
545 struct nfs4_stateowner *so;
546
547 lockdep_assert_held(&clp->cl_lock);
548
549 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
550 so_strhash) {
551 if (!so->so_is_open_owner)
552 continue;
553 if (same_owner_str(so, &open->op_owner))
554 return openowner(nfs4_get_stateowner(so));
555 }
556 return NULL;
557 }
558
559 static struct nfs4_openowner *
find_openstateowner_str(unsigned int hashval,struct nfsd4_open * open,struct nfs4_client * clp)560 find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
561 struct nfs4_client *clp)
562 {
563 struct nfs4_openowner *oo;
564
565 spin_lock(&clp->cl_lock);
566 oo = find_openstateowner_str_locked(hashval, open, clp);
567 spin_unlock(&clp->cl_lock);
568 return oo;
569 }
570
571 static inline u32
opaque_hashval(const void * ptr,int nbytes)572 opaque_hashval(const void *ptr, int nbytes)
573 {
574 unsigned char *cptr = (unsigned char *) ptr;
575
576 u32 x = 0;
577 while (nbytes--) {
578 x *= 37;
579 x += *cptr++;
580 }
581 return x;
582 }
583
nfsd4_free_file_rcu(struct rcu_head * rcu)584 static void nfsd4_free_file_rcu(struct rcu_head *rcu)
585 {
586 struct nfs4_file *fp = container_of(rcu, struct nfs4_file, fi_rcu);
587
588 kmem_cache_free(file_slab, fp);
589 }
590
591 void
put_nfs4_file(struct nfs4_file * fi)592 put_nfs4_file(struct nfs4_file *fi)
593 {
594 if (refcount_dec_and_test(&fi->fi_ref)) {
595 nfsd4_file_hash_remove(fi);
596 WARN_ON_ONCE(!list_empty(&fi->fi_clnt_odstate));
597 WARN_ON_ONCE(!list_empty(&fi->fi_delegations));
598 call_rcu(&fi->fi_rcu, nfsd4_free_file_rcu);
599 }
600 }
601
602 static struct nfsd_file *
find_writeable_file_locked(struct nfs4_file * f)603 find_writeable_file_locked(struct nfs4_file *f)
604 {
605 struct nfsd_file *ret;
606
607 lockdep_assert_held(&f->fi_lock);
608
609 ret = nfsd_file_get(f->fi_fds[O_WRONLY]);
610 if (!ret)
611 ret = nfsd_file_get(f->fi_fds[O_RDWR]);
612 return ret;
613 }
614
615 static struct nfsd_file *
find_writeable_file(struct nfs4_file * f)616 find_writeable_file(struct nfs4_file *f)
617 {
618 struct nfsd_file *ret;
619
620 spin_lock(&f->fi_lock);
621 ret = find_writeable_file_locked(f);
622 spin_unlock(&f->fi_lock);
623
624 return ret;
625 }
626
627 static struct nfsd_file *
find_readable_file_locked(struct nfs4_file * f)628 find_readable_file_locked(struct nfs4_file *f)
629 {
630 struct nfsd_file *ret;
631
632 lockdep_assert_held(&f->fi_lock);
633
634 ret = nfsd_file_get(f->fi_fds[O_RDONLY]);
635 if (!ret)
636 ret = nfsd_file_get(f->fi_fds[O_RDWR]);
637 return ret;
638 }
639
640 static struct nfsd_file *
find_readable_file(struct nfs4_file * f)641 find_readable_file(struct nfs4_file *f)
642 {
643 struct nfsd_file *ret;
644
645 spin_lock(&f->fi_lock);
646 ret = find_readable_file_locked(f);
647 spin_unlock(&f->fi_lock);
648
649 return ret;
650 }
651
652 static struct nfsd_file *
find_rw_file(struct nfs4_file * f)653 find_rw_file(struct nfs4_file *f)
654 {
655 struct nfsd_file *ret;
656
657 spin_lock(&f->fi_lock);
658 ret = nfsd_file_get(f->fi_fds[O_RDWR]);
659 spin_unlock(&f->fi_lock);
660
661 return ret;
662 }
663
664 struct nfsd_file *
find_any_file(struct nfs4_file * f)665 find_any_file(struct nfs4_file *f)
666 {
667 struct nfsd_file *ret;
668
669 if (!f)
670 return NULL;
671 spin_lock(&f->fi_lock);
672 ret = nfsd_file_get(f->fi_fds[O_RDWR]);
673 if (!ret) {
674 ret = nfsd_file_get(f->fi_fds[O_WRONLY]);
675 if (!ret)
676 ret = nfsd_file_get(f->fi_fds[O_RDONLY]);
677 }
678 spin_unlock(&f->fi_lock);
679 return ret;
680 }
681
find_any_file_locked(struct nfs4_file * f)682 static struct nfsd_file *find_any_file_locked(struct nfs4_file *f)
683 {
684 lockdep_assert_held(&f->fi_lock);
685
686 if (f->fi_fds[O_RDWR])
687 return f->fi_fds[O_RDWR];
688 if (f->fi_fds[O_WRONLY])
689 return f->fi_fds[O_WRONLY];
690 if (f->fi_fds[O_RDONLY])
691 return f->fi_fds[O_RDONLY];
692 return NULL;
693 }
694
695 static atomic_long_t num_delegations;
696 unsigned long max_delegations;
697
698 /*
699 * Open owner state (share locks)
700 */
701
702 /* hash tables for lock and open owners */
703 #define OWNER_HASH_BITS 8
704 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
705 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
706
ownerstr_hashval(struct xdr_netobj * ownername)707 static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
708 {
709 unsigned int ret;
710
711 ret = opaque_hashval(ownername->data, ownername->len);
712 return ret & OWNER_HASH_MASK;
713 }
714
715 static struct rhltable nfs4_file_rhltable ____cacheline_aligned_in_smp;
716
717 static const struct rhashtable_params nfs4_file_rhash_params = {
718 .key_len = sizeof_field(struct nfs4_file, fi_inode),
719 .key_offset = offsetof(struct nfs4_file, fi_inode),
720 .head_offset = offsetof(struct nfs4_file, fi_rlist),
721
722 /*
723 * Start with a single page hash table to reduce resizing churn
724 * on light workloads.
725 */
726 .min_size = 256,
727 .automatic_shrinking = true,
728 };
729
730 /*
731 * Check if courtesy clients have conflicting access and resolve it if possible
732 *
733 * access: is op_share_access if share_access is true.
734 * Check if access mode, op_share_access, would conflict with
735 * the current deny mode of the file 'fp'.
736 * access: is op_share_deny if share_access is false.
737 * Check if the deny mode, op_share_deny, would conflict with
738 * current access of the file 'fp'.
739 * stp: skip checking this entry.
740 * new_stp: normal open, not open upgrade.
741 *
742 * Function returns:
743 * false - access/deny mode conflict with normal client.
744 * true - no conflict or conflict with courtesy client(s) is resolved.
745 */
746 static bool
nfs4_resolve_deny_conflicts_locked(struct nfs4_file * fp,bool new_stp,struct nfs4_ol_stateid * stp,u32 access,bool share_access)747 nfs4_resolve_deny_conflicts_locked(struct nfs4_file *fp, bool new_stp,
748 struct nfs4_ol_stateid *stp, u32 access, bool share_access)
749 {
750 struct nfs4_ol_stateid *st;
751 bool resolvable = true;
752 unsigned char bmap;
753 struct nfsd_net *nn;
754 struct nfs4_client *clp;
755
756 lockdep_assert_held(&fp->fi_lock);
757 list_for_each_entry(st, &fp->fi_stateids, st_perfile) {
758 /* ignore lock stateid */
759 if (st->st_openstp)
760 continue;
761 if (st == stp && new_stp)
762 continue;
763 /* check file access against deny mode or vice versa */
764 bmap = share_access ? st->st_deny_bmap : st->st_access_bmap;
765 if (!(access & bmap_to_share_mode(bmap)))
766 continue;
767 clp = st->st_stid.sc_client;
768 if (try_to_expire_client(clp))
769 continue;
770 resolvable = false;
771 break;
772 }
773 if (resolvable) {
774 clp = stp->st_stid.sc_client;
775 nn = net_generic(clp->net, nfsd_net_id);
776 mod_delayed_work(laundry_wq, &nn->laundromat_work, 0);
777 }
778 return resolvable;
779 }
780
781 static void
__nfs4_file_get_access(struct nfs4_file * fp,u32 access)782 __nfs4_file_get_access(struct nfs4_file *fp, u32 access)
783 {
784 lockdep_assert_held(&fp->fi_lock);
785
786 if (access & NFS4_SHARE_ACCESS_WRITE)
787 atomic_inc(&fp->fi_access[O_WRONLY]);
788 if (access & NFS4_SHARE_ACCESS_READ)
789 atomic_inc(&fp->fi_access[O_RDONLY]);
790 }
791
792 static __be32
nfs4_file_get_access(struct nfs4_file * fp,u32 access)793 nfs4_file_get_access(struct nfs4_file *fp, u32 access)
794 {
795 lockdep_assert_held(&fp->fi_lock);
796
797 /* Does this access mode make sense? */
798 if (access & ~NFS4_SHARE_ACCESS_BOTH)
799 return nfserr_inval;
800
801 /* Does it conflict with a deny mode already set? */
802 if ((access & fp->fi_share_deny) != 0)
803 return nfserr_share_denied;
804
805 __nfs4_file_get_access(fp, access);
806 return nfs_ok;
807 }
808
nfs4_file_check_deny(struct nfs4_file * fp,u32 deny)809 static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
810 {
811 /* Common case is that there is no deny mode. */
812 if (deny) {
813 /* Does this deny mode make sense? */
814 if (deny & ~NFS4_SHARE_DENY_BOTH)
815 return nfserr_inval;
816
817 if ((deny & NFS4_SHARE_DENY_READ) &&
818 atomic_read(&fp->fi_access[O_RDONLY]))
819 return nfserr_share_denied;
820
821 if ((deny & NFS4_SHARE_DENY_WRITE) &&
822 atomic_read(&fp->fi_access[O_WRONLY]))
823 return nfserr_share_denied;
824 }
825 return nfs_ok;
826 }
827
__nfs4_file_put_access(struct nfs4_file * fp,int oflag)828 static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
829 {
830 might_lock(&fp->fi_lock);
831
832 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
833 struct nfsd_file *f1 = NULL;
834 struct nfsd_file *f2 = NULL;
835
836 swap(f1, fp->fi_fds[oflag]);
837 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
838 swap(f2, fp->fi_fds[O_RDWR]);
839 spin_unlock(&fp->fi_lock);
840 if (f1)
841 nfsd_file_put(f1);
842 if (f2)
843 nfsd_file_put(f2);
844 }
845 }
846
nfs4_file_put_access(struct nfs4_file * fp,u32 access)847 static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
848 {
849 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
850
851 if (access & NFS4_SHARE_ACCESS_WRITE)
852 __nfs4_file_put_access(fp, O_WRONLY);
853 if (access & NFS4_SHARE_ACCESS_READ)
854 __nfs4_file_put_access(fp, O_RDONLY);
855 }
856
857 /*
858 * Allocate a new open/delegation state counter. This is needed for
859 * pNFS for proper return on close semantics.
860 *
861 * Note that we only allocate it for pNFS-enabled exports, otherwise
862 * all pointers to struct nfs4_clnt_odstate are always NULL.
863 */
864 static struct nfs4_clnt_odstate *
alloc_clnt_odstate(struct nfs4_client * clp)865 alloc_clnt_odstate(struct nfs4_client *clp)
866 {
867 struct nfs4_clnt_odstate *co;
868
869 co = kmem_cache_zalloc(odstate_slab, GFP_KERNEL);
870 if (co) {
871 co->co_client = clp;
872 refcount_set(&co->co_odcount, 1);
873 }
874 return co;
875 }
876
877 static void
hash_clnt_odstate_locked(struct nfs4_clnt_odstate * co)878 hash_clnt_odstate_locked(struct nfs4_clnt_odstate *co)
879 {
880 struct nfs4_file *fp = co->co_file;
881
882 lockdep_assert_held(&fp->fi_lock);
883 list_add(&co->co_perfile, &fp->fi_clnt_odstate);
884 }
885
886 static inline void
get_clnt_odstate(struct nfs4_clnt_odstate * co)887 get_clnt_odstate(struct nfs4_clnt_odstate *co)
888 {
889 if (co)
890 refcount_inc(&co->co_odcount);
891 }
892
893 static void
put_clnt_odstate(struct nfs4_clnt_odstate * co)894 put_clnt_odstate(struct nfs4_clnt_odstate *co)
895 {
896 struct nfs4_file *fp;
897
898 if (!co)
899 return;
900
901 fp = co->co_file;
902 if (refcount_dec_and_lock(&co->co_odcount, &fp->fi_lock)) {
903 list_del(&co->co_perfile);
904 spin_unlock(&fp->fi_lock);
905
906 nfsd4_return_all_file_layouts(co->co_client, fp);
907 kmem_cache_free(odstate_slab, co);
908 }
909 }
910
911 static struct nfs4_clnt_odstate *
find_or_hash_clnt_odstate(struct nfs4_file * fp,struct nfs4_clnt_odstate * new)912 find_or_hash_clnt_odstate(struct nfs4_file *fp, struct nfs4_clnt_odstate *new)
913 {
914 struct nfs4_clnt_odstate *co;
915 struct nfs4_client *cl;
916
917 if (!new)
918 return NULL;
919
920 cl = new->co_client;
921
922 spin_lock(&fp->fi_lock);
923 list_for_each_entry(co, &fp->fi_clnt_odstate, co_perfile) {
924 if (co->co_client == cl) {
925 get_clnt_odstate(co);
926 goto out;
927 }
928 }
929 co = new;
930 co->co_file = fp;
931 hash_clnt_odstate_locked(new);
932 out:
933 spin_unlock(&fp->fi_lock);
934 return co;
935 }
936
nfs4_alloc_stid(struct nfs4_client * cl,struct kmem_cache * slab,void (* sc_free)(struct nfs4_stid *))937 struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab,
938 void (*sc_free)(struct nfs4_stid *))
939 {
940 struct nfs4_stid *stid;
941 int new_id;
942
943 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
944 if (!stid)
945 return NULL;
946
947 idr_preload(GFP_KERNEL);
948 spin_lock(&cl->cl_lock);
949 /* Reserving 0 for start of file in nfsdfs "states" file: */
950 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 1, 0, GFP_NOWAIT);
951 spin_unlock(&cl->cl_lock);
952 idr_preload_end();
953 if (new_id < 0)
954 goto out_free;
955
956 stid->sc_free = sc_free;
957 stid->sc_client = cl;
958 stid->sc_stateid.si_opaque.so_id = new_id;
959 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
960 /* Will be incremented before return to client: */
961 refcount_set(&stid->sc_count, 1);
962 spin_lock_init(&stid->sc_lock);
963 INIT_LIST_HEAD(&stid->sc_cp_list);
964
965 /*
966 * It shouldn't be a problem to reuse an opaque stateid value.
967 * I don't think it is for 4.1. But with 4.0 I worry that, for
968 * example, a stray write retransmission could be accepted by
969 * the server when it should have been rejected. Therefore,
970 * adopt a trick from the sctp code to attempt to maximize the
971 * amount of time until an id is reused, by ensuring they always
972 * "increase" (mod INT_MAX):
973 */
974 return stid;
975 out_free:
976 kmem_cache_free(slab, stid);
977 return NULL;
978 }
979
980 /*
981 * Create a unique stateid_t to represent each COPY.
982 */
nfs4_init_cp_state(struct nfsd_net * nn,copy_stateid_t * stid,unsigned char cs_type)983 static int nfs4_init_cp_state(struct nfsd_net *nn, copy_stateid_t *stid,
984 unsigned char cs_type)
985 {
986 int new_id;
987
988 stid->cs_stid.si_opaque.so_clid.cl_boot = (u32)nn->boot_time;
989 stid->cs_stid.si_opaque.so_clid.cl_id = nn->s2s_cp_cl_id;
990
991 idr_preload(GFP_KERNEL);
992 spin_lock(&nn->s2s_cp_lock);
993 new_id = idr_alloc_cyclic(&nn->s2s_cp_stateids, stid, 0, 0, GFP_NOWAIT);
994 stid->cs_stid.si_opaque.so_id = new_id;
995 stid->cs_stid.si_generation = 1;
996 spin_unlock(&nn->s2s_cp_lock);
997 idr_preload_end();
998 if (new_id < 0)
999 return 0;
1000 stid->cs_type = cs_type;
1001 return 1;
1002 }
1003
nfs4_init_copy_state(struct nfsd_net * nn,struct nfsd4_copy * copy)1004 int nfs4_init_copy_state(struct nfsd_net *nn, struct nfsd4_copy *copy)
1005 {
1006 return nfs4_init_cp_state(nn, ©->cp_stateid, NFS4_COPY_STID);
1007 }
1008
nfs4_alloc_init_cpntf_state(struct nfsd_net * nn,struct nfs4_stid * p_stid)1009 struct nfs4_cpntf_state *nfs4_alloc_init_cpntf_state(struct nfsd_net *nn,
1010 struct nfs4_stid *p_stid)
1011 {
1012 struct nfs4_cpntf_state *cps;
1013
1014 cps = kzalloc(sizeof(struct nfs4_cpntf_state), GFP_KERNEL);
1015 if (!cps)
1016 return NULL;
1017 cps->cpntf_time = ktime_get_boottime_seconds();
1018 refcount_set(&cps->cp_stateid.cs_count, 1);
1019 if (!nfs4_init_cp_state(nn, &cps->cp_stateid, NFS4_COPYNOTIFY_STID))
1020 goto out_free;
1021 spin_lock(&nn->s2s_cp_lock);
1022 list_add(&cps->cp_list, &p_stid->sc_cp_list);
1023 spin_unlock(&nn->s2s_cp_lock);
1024 return cps;
1025 out_free:
1026 kfree(cps);
1027 return NULL;
1028 }
1029
nfs4_free_copy_state(struct nfsd4_copy * copy)1030 void nfs4_free_copy_state(struct nfsd4_copy *copy)
1031 {
1032 struct nfsd_net *nn;
1033
1034 if (copy->cp_stateid.cs_type != NFS4_COPY_STID)
1035 return;
1036 nn = net_generic(copy->cp_clp->net, nfsd_net_id);
1037 spin_lock(&nn->s2s_cp_lock);
1038 idr_remove(&nn->s2s_cp_stateids,
1039 copy->cp_stateid.cs_stid.si_opaque.so_id);
1040 spin_unlock(&nn->s2s_cp_lock);
1041 }
1042
nfs4_free_cpntf_statelist(struct net * net,struct nfs4_stid * stid)1043 static void nfs4_free_cpntf_statelist(struct net *net, struct nfs4_stid *stid)
1044 {
1045 struct nfs4_cpntf_state *cps;
1046 struct nfsd_net *nn;
1047
1048 nn = net_generic(net, nfsd_net_id);
1049 spin_lock(&nn->s2s_cp_lock);
1050 while (!list_empty(&stid->sc_cp_list)) {
1051 cps = list_first_entry(&stid->sc_cp_list,
1052 struct nfs4_cpntf_state, cp_list);
1053 _free_cpntf_state_locked(nn, cps);
1054 }
1055 spin_unlock(&nn->s2s_cp_lock);
1056 }
1057
nfs4_alloc_open_stateid(struct nfs4_client * clp)1058 static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
1059 {
1060 struct nfs4_stid *stid;
1061
1062 stid = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_ol_stateid);
1063 if (!stid)
1064 return NULL;
1065
1066 return openlockstateid(stid);
1067 }
1068
nfs4_free_deleg(struct nfs4_stid * stid)1069 static void nfs4_free_deleg(struct nfs4_stid *stid)
1070 {
1071 struct nfs4_delegation *dp = delegstateid(stid);
1072
1073 WARN_ON_ONCE(!list_empty(&stid->sc_cp_list));
1074 WARN_ON_ONCE(!list_empty(&dp->dl_perfile));
1075 WARN_ON_ONCE(!list_empty(&dp->dl_perclnt));
1076 WARN_ON_ONCE(!list_empty(&dp->dl_recall_lru));
1077 kmem_cache_free(deleg_slab, stid);
1078 atomic_long_dec(&num_delegations);
1079 }
1080
1081 /*
1082 * When we recall a delegation, we should be careful not to hand it
1083 * out again straight away.
1084 * To ensure this we keep a pair of bloom filters ('new' and 'old')
1085 * in which the filehandles of recalled delegations are "stored".
1086 * If a filehandle appear in either filter, a delegation is blocked.
1087 * When a delegation is recalled, the filehandle is stored in the "new"
1088 * filter.
1089 * Every 30 seconds we swap the filters and clear the "new" one,
1090 * unless both are empty of course.
1091 *
1092 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
1093 * low 3 bytes as hash-table indices.
1094 *
1095 * 'blocked_delegations_lock', which is always taken in block_delegations(),
1096 * is used to manage concurrent access. Testing does not need the lock
1097 * except when swapping the two filters.
1098 */
1099 static DEFINE_SPINLOCK(blocked_delegations_lock);
1100 static struct bloom_pair {
1101 int entries, old_entries;
1102 time64_t swap_time;
1103 int new; /* index into 'set' */
1104 DECLARE_BITMAP(set[2], 256);
1105 } blocked_delegations;
1106
delegation_blocked(struct knfsd_fh * fh)1107 static int delegation_blocked(struct knfsd_fh *fh)
1108 {
1109 u32 hash;
1110 struct bloom_pair *bd = &blocked_delegations;
1111
1112 if (bd->entries == 0)
1113 return 0;
1114 if (ktime_get_seconds() - bd->swap_time > 30) {
1115 spin_lock(&blocked_delegations_lock);
1116 if (ktime_get_seconds() - bd->swap_time > 30) {
1117 bd->entries -= bd->old_entries;
1118 bd->old_entries = bd->entries;
1119 memset(bd->set[bd->new], 0,
1120 sizeof(bd->set[0]));
1121 bd->new = 1-bd->new;
1122 bd->swap_time = ktime_get_seconds();
1123 }
1124 spin_unlock(&blocked_delegations_lock);
1125 }
1126 hash = jhash(&fh->fh_raw, fh->fh_size, 0);
1127 if (test_bit(hash&255, bd->set[0]) &&
1128 test_bit((hash>>8)&255, bd->set[0]) &&
1129 test_bit((hash>>16)&255, bd->set[0]))
1130 return 1;
1131
1132 if (test_bit(hash&255, bd->set[1]) &&
1133 test_bit((hash>>8)&255, bd->set[1]) &&
1134 test_bit((hash>>16)&255, bd->set[1]))
1135 return 1;
1136
1137 return 0;
1138 }
1139
block_delegations(struct knfsd_fh * fh)1140 static void block_delegations(struct knfsd_fh *fh)
1141 {
1142 u32 hash;
1143 struct bloom_pair *bd = &blocked_delegations;
1144
1145 hash = jhash(&fh->fh_raw, fh->fh_size, 0);
1146
1147 spin_lock(&blocked_delegations_lock);
1148 __set_bit(hash&255, bd->set[bd->new]);
1149 __set_bit((hash>>8)&255, bd->set[bd->new]);
1150 __set_bit((hash>>16)&255, bd->set[bd->new]);
1151 if (bd->entries == 0)
1152 bd->swap_time = ktime_get_seconds();
1153 bd->entries += 1;
1154 spin_unlock(&blocked_delegations_lock);
1155 }
1156
1157 static struct nfs4_delegation *
alloc_init_deleg(struct nfs4_client * clp,struct nfs4_file * fp,struct nfs4_clnt_odstate * odstate,u32 dl_type)1158 alloc_init_deleg(struct nfs4_client *clp, struct nfs4_file *fp,
1159 struct nfs4_clnt_odstate *odstate, u32 dl_type)
1160 {
1161 struct nfs4_delegation *dp;
1162 long n;
1163
1164 dprintk("NFSD alloc_init_deleg\n");
1165 n = atomic_long_inc_return(&num_delegations);
1166 if (n < 0 || n > max_delegations)
1167 goto out_dec;
1168 if (delegation_blocked(&fp->fi_fhandle))
1169 goto out_dec;
1170 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab, nfs4_free_deleg));
1171 if (dp == NULL)
1172 goto out_dec;
1173
1174 /*
1175 * delegation seqid's are never incremented. The 4.1 special
1176 * meaning of seqid 0 isn't meaningful, really, but let's avoid
1177 * 0 anyway just for consistency and use 1:
1178 */
1179 dp->dl_stid.sc_stateid.si_generation = 1;
1180 INIT_LIST_HEAD(&dp->dl_perfile);
1181 INIT_LIST_HEAD(&dp->dl_perclnt);
1182 INIT_LIST_HEAD(&dp->dl_recall_lru);
1183 dp->dl_clnt_odstate = odstate;
1184 get_clnt_odstate(odstate);
1185 dp->dl_type = dl_type;
1186 dp->dl_retries = 1;
1187 dp->dl_recalled = false;
1188 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
1189 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
1190 get_nfs4_file(fp);
1191 dp->dl_stid.sc_file = fp;
1192 return dp;
1193 out_dec:
1194 atomic_long_dec(&num_delegations);
1195 return NULL;
1196 }
1197
1198 void
nfs4_put_stid(struct nfs4_stid * s)1199 nfs4_put_stid(struct nfs4_stid *s)
1200 {
1201 struct nfs4_file *fp = s->sc_file;
1202 struct nfs4_client *clp = s->sc_client;
1203
1204 might_lock(&clp->cl_lock);
1205
1206 if (!refcount_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
1207 wake_up_all(&close_wq);
1208 return;
1209 }
1210 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1211 nfs4_free_cpntf_statelist(clp->net, s);
1212 spin_unlock(&clp->cl_lock);
1213 s->sc_free(s);
1214 if (fp)
1215 put_nfs4_file(fp);
1216 }
1217
1218 void
nfs4_inc_and_copy_stateid(stateid_t * dst,struct nfs4_stid * stid)1219 nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid)
1220 {
1221 stateid_t *src = &stid->sc_stateid;
1222
1223 spin_lock(&stid->sc_lock);
1224 if (unlikely(++src->si_generation == 0))
1225 src->si_generation = 1;
1226 memcpy(dst, src, sizeof(*dst));
1227 spin_unlock(&stid->sc_lock);
1228 }
1229
put_deleg_file(struct nfs4_file * fp)1230 static void put_deleg_file(struct nfs4_file *fp)
1231 {
1232 struct nfsd_file *nf = NULL;
1233
1234 spin_lock(&fp->fi_lock);
1235 if (--fp->fi_delegees == 0)
1236 swap(nf, fp->fi_deleg_file);
1237 spin_unlock(&fp->fi_lock);
1238
1239 if (nf)
1240 nfsd_file_put(nf);
1241 }
1242
nfs4_unlock_deleg_lease(struct nfs4_delegation * dp)1243 static void nfs4_unlock_deleg_lease(struct nfs4_delegation *dp)
1244 {
1245 struct nfs4_file *fp = dp->dl_stid.sc_file;
1246 struct nfsd_file *nf = fp->fi_deleg_file;
1247
1248 WARN_ON_ONCE(!fp->fi_delegees);
1249
1250 vfs_setlease(nf->nf_file, F_UNLCK, NULL, (void **)&dp);
1251 put_deleg_file(fp);
1252 }
1253
destroy_unhashed_deleg(struct nfs4_delegation * dp)1254 static void destroy_unhashed_deleg(struct nfs4_delegation *dp)
1255 {
1256 put_clnt_odstate(dp->dl_clnt_odstate);
1257 nfs4_unlock_deleg_lease(dp);
1258 nfs4_put_stid(&dp->dl_stid);
1259 }
1260
nfs4_unhash_stid(struct nfs4_stid * s)1261 void nfs4_unhash_stid(struct nfs4_stid *s)
1262 {
1263 s->sc_type = 0;
1264 }
1265
1266 /**
1267 * nfs4_delegation_exists - Discover if this delegation already exists
1268 * @clp: a pointer to the nfs4_client we're granting a delegation to
1269 * @fp: a pointer to the nfs4_file we're granting a delegation on
1270 *
1271 * Return:
1272 * On success: true iff an existing delegation is found
1273 */
1274
1275 static bool
nfs4_delegation_exists(struct nfs4_client * clp,struct nfs4_file * fp)1276 nfs4_delegation_exists(struct nfs4_client *clp, struct nfs4_file *fp)
1277 {
1278 struct nfs4_delegation *searchdp = NULL;
1279 struct nfs4_client *searchclp = NULL;
1280
1281 lockdep_assert_held(&state_lock);
1282 lockdep_assert_held(&fp->fi_lock);
1283
1284 list_for_each_entry(searchdp, &fp->fi_delegations, dl_perfile) {
1285 searchclp = searchdp->dl_stid.sc_client;
1286 if (clp == searchclp) {
1287 return true;
1288 }
1289 }
1290 return false;
1291 }
1292
1293 /**
1294 * hash_delegation_locked - Add a delegation to the appropriate lists
1295 * @dp: a pointer to the nfs4_delegation we are adding.
1296 * @fp: a pointer to the nfs4_file we're granting a delegation on
1297 *
1298 * Return:
1299 * On success: NULL if the delegation was successfully hashed.
1300 *
1301 * On error: -EAGAIN if one was previously granted to this
1302 * nfs4_client for this nfs4_file. Delegation is not hashed.
1303 *
1304 */
1305
1306 static int
hash_delegation_locked(struct nfs4_delegation * dp,struct nfs4_file * fp)1307 hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
1308 {
1309 struct nfs4_client *clp = dp->dl_stid.sc_client;
1310
1311 lockdep_assert_held(&state_lock);
1312 lockdep_assert_held(&fp->fi_lock);
1313
1314 if (nfs4_delegation_exists(clp, fp))
1315 return -EAGAIN;
1316 refcount_inc(&dp->dl_stid.sc_count);
1317 dp->dl_stid.sc_type = NFS4_DELEG_STID;
1318 list_add(&dp->dl_perfile, &fp->fi_delegations);
1319 list_add(&dp->dl_perclnt, &clp->cl_delegations);
1320 return 0;
1321 }
1322
delegation_hashed(struct nfs4_delegation * dp)1323 static bool delegation_hashed(struct nfs4_delegation *dp)
1324 {
1325 return !(list_empty(&dp->dl_perfile));
1326 }
1327
1328 static bool
unhash_delegation_locked(struct nfs4_delegation * dp)1329 unhash_delegation_locked(struct nfs4_delegation *dp)
1330 {
1331 struct nfs4_file *fp = dp->dl_stid.sc_file;
1332
1333 lockdep_assert_held(&state_lock);
1334
1335 if (!delegation_hashed(dp))
1336 return false;
1337
1338 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
1339 /* Ensure that deleg break won't try to requeue it */
1340 ++dp->dl_time;
1341 spin_lock(&fp->fi_lock);
1342 list_del_init(&dp->dl_perclnt);
1343 list_del_init(&dp->dl_recall_lru);
1344 list_del_init(&dp->dl_perfile);
1345 spin_unlock(&fp->fi_lock);
1346 return true;
1347 }
1348
destroy_delegation(struct nfs4_delegation * dp)1349 static void destroy_delegation(struct nfs4_delegation *dp)
1350 {
1351 bool unhashed;
1352
1353 spin_lock(&state_lock);
1354 unhashed = unhash_delegation_locked(dp);
1355 spin_unlock(&state_lock);
1356 if (unhashed)
1357 destroy_unhashed_deleg(dp);
1358 }
1359
revoke_delegation(struct nfs4_delegation * dp)1360 static void revoke_delegation(struct nfs4_delegation *dp)
1361 {
1362 struct nfs4_client *clp = dp->dl_stid.sc_client;
1363
1364 WARN_ON(!list_empty(&dp->dl_recall_lru));
1365
1366 trace_nfsd_stid_revoke(&dp->dl_stid);
1367
1368 if (clp->cl_minorversion) {
1369 spin_lock(&clp->cl_lock);
1370 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
1371 refcount_inc(&dp->dl_stid.sc_count);
1372 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
1373 spin_unlock(&clp->cl_lock);
1374 }
1375 destroy_unhashed_deleg(dp);
1376 }
1377
1378 /*
1379 * SETCLIENTID state
1380 */
1381
clientid_hashval(u32 id)1382 static unsigned int clientid_hashval(u32 id)
1383 {
1384 return id & CLIENT_HASH_MASK;
1385 }
1386
clientstr_hashval(struct xdr_netobj name)1387 static unsigned int clientstr_hashval(struct xdr_netobj name)
1388 {
1389 return opaque_hashval(name.data, 8) & CLIENT_HASH_MASK;
1390 }
1391
1392 /*
1393 * A stateid that had a deny mode associated with it is being released
1394 * or downgraded. Recalculate the deny mode on the file.
1395 */
1396 static void
recalculate_deny_mode(struct nfs4_file * fp)1397 recalculate_deny_mode(struct nfs4_file *fp)
1398 {
1399 struct nfs4_ol_stateid *stp;
1400
1401 spin_lock(&fp->fi_lock);
1402 fp->fi_share_deny = 0;
1403 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
1404 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
1405 spin_unlock(&fp->fi_lock);
1406 }
1407
1408 static void
reset_union_bmap_deny(u32 deny,struct nfs4_ol_stateid * stp)1409 reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
1410 {
1411 int i;
1412 bool change = false;
1413
1414 for (i = 1; i < 4; i++) {
1415 if ((i & deny) != i) {
1416 change = true;
1417 clear_deny(i, stp);
1418 }
1419 }
1420
1421 /* Recalculate per-file deny mode if there was a change */
1422 if (change)
1423 recalculate_deny_mode(stp->st_stid.sc_file);
1424 }
1425
1426 /* release all access and file references for a given stateid */
1427 static void
release_all_access(struct nfs4_ol_stateid * stp)1428 release_all_access(struct nfs4_ol_stateid *stp)
1429 {
1430 int i;
1431 struct nfs4_file *fp = stp->st_stid.sc_file;
1432
1433 if (fp && stp->st_deny_bmap != 0)
1434 recalculate_deny_mode(fp);
1435
1436 for (i = 1; i < 4; i++) {
1437 if (test_access(i, stp))
1438 nfs4_file_put_access(stp->st_stid.sc_file, i);
1439 clear_access(i, stp);
1440 }
1441 }
1442
nfs4_free_stateowner(struct nfs4_stateowner * sop)1443 static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop)
1444 {
1445 kfree(sop->so_owner.data);
1446 sop->so_ops->so_free(sop);
1447 }
1448
nfs4_put_stateowner(struct nfs4_stateowner * sop)1449 static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
1450 {
1451 struct nfs4_client *clp = sop->so_client;
1452
1453 might_lock(&clp->cl_lock);
1454
1455 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
1456 return;
1457 sop->so_ops->so_unhash(sop);
1458 spin_unlock(&clp->cl_lock);
1459 nfs4_free_stateowner(sop);
1460 }
1461
1462 static bool
nfs4_ol_stateid_unhashed(const struct nfs4_ol_stateid * stp)1463 nfs4_ol_stateid_unhashed(const struct nfs4_ol_stateid *stp)
1464 {
1465 return list_empty(&stp->st_perfile);
1466 }
1467
unhash_ol_stateid(struct nfs4_ol_stateid * stp)1468 static bool unhash_ol_stateid(struct nfs4_ol_stateid *stp)
1469 {
1470 struct nfs4_file *fp = stp->st_stid.sc_file;
1471
1472 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
1473
1474 if (list_empty(&stp->st_perfile))
1475 return false;
1476
1477 spin_lock(&fp->fi_lock);
1478 list_del_init(&stp->st_perfile);
1479 spin_unlock(&fp->fi_lock);
1480 list_del(&stp->st_perstateowner);
1481 return true;
1482 }
1483
nfs4_free_ol_stateid(struct nfs4_stid * stid)1484 static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
1485 {
1486 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1487
1488 put_clnt_odstate(stp->st_clnt_odstate);
1489 release_all_access(stp);
1490 if (stp->st_stateowner)
1491 nfs4_put_stateowner(stp->st_stateowner);
1492 WARN_ON(!list_empty(&stid->sc_cp_list));
1493 kmem_cache_free(stateid_slab, stid);
1494 }
1495
nfs4_free_lock_stateid(struct nfs4_stid * stid)1496 static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
1497 {
1498 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1499 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
1500 struct nfsd_file *nf;
1501
1502 nf = find_any_file(stp->st_stid.sc_file);
1503 if (nf) {
1504 get_file(nf->nf_file);
1505 filp_close(nf->nf_file, (fl_owner_t)lo);
1506 nfsd_file_put(nf);
1507 }
1508 nfs4_free_ol_stateid(stid);
1509 }
1510
1511 /*
1512 * Put the persistent reference to an already unhashed generic stateid, while
1513 * holding the cl_lock. If it's the last reference, then put it onto the
1514 * reaplist for later destruction.
1515 */
put_ol_stateid_locked(struct nfs4_ol_stateid * stp,struct list_head * reaplist)1516 static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
1517 struct list_head *reaplist)
1518 {
1519 struct nfs4_stid *s = &stp->st_stid;
1520 struct nfs4_client *clp = s->sc_client;
1521
1522 lockdep_assert_held(&clp->cl_lock);
1523
1524 WARN_ON_ONCE(!list_empty(&stp->st_locks));
1525
1526 if (!refcount_dec_and_test(&s->sc_count)) {
1527 wake_up_all(&close_wq);
1528 return;
1529 }
1530
1531 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1532 list_add(&stp->st_locks, reaplist);
1533 }
1534
unhash_lock_stateid(struct nfs4_ol_stateid * stp)1535 static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp)
1536 {
1537 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1538
1539 if (!unhash_ol_stateid(stp))
1540 return false;
1541 list_del_init(&stp->st_locks);
1542 nfs4_unhash_stid(&stp->st_stid);
1543 return true;
1544 }
1545
release_lock_stateid(struct nfs4_ol_stateid * stp)1546 static void release_lock_stateid(struct nfs4_ol_stateid *stp)
1547 {
1548 struct nfs4_client *clp = stp->st_stid.sc_client;
1549 bool unhashed;
1550
1551 spin_lock(&clp->cl_lock);
1552 unhashed = unhash_lock_stateid(stp);
1553 spin_unlock(&clp->cl_lock);
1554 if (unhashed)
1555 nfs4_put_stid(&stp->st_stid);
1556 }
1557
unhash_lockowner_locked(struct nfs4_lockowner * lo)1558 static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
1559 {
1560 struct nfs4_client *clp = lo->lo_owner.so_client;
1561
1562 lockdep_assert_held(&clp->cl_lock);
1563
1564 list_del_init(&lo->lo_owner.so_strhash);
1565 }
1566
1567 /*
1568 * Free a list of generic stateids that were collected earlier after being
1569 * fully unhashed.
1570 */
1571 static void
free_ol_stateid_reaplist(struct list_head * reaplist)1572 free_ol_stateid_reaplist(struct list_head *reaplist)
1573 {
1574 struct nfs4_ol_stateid *stp;
1575 struct nfs4_file *fp;
1576
1577 might_sleep();
1578
1579 while (!list_empty(reaplist)) {
1580 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1581 st_locks);
1582 list_del(&stp->st_locks);
1583 fp = stp->st_stid.sc_file;
1584 stp->st_stid.sc_free(&stp->st_stid);
1585 if (fp)
1586 put_nfs4_file(fp);
1587 }
1588 }
1589
release_open_stateid_locks(struct nfs4_ol_stateid * open_stp,struct list_head * reaplist)1590 static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1591 struct list_head *reaplist)
1592 {
1593 struct nfs4_ol_stateid *stp;
1594
1595 lockdep_assert_held(&open_stp->st_stid.sc_client->cl_lock);
1596
1597 while (!list_empty(&open_stp->st_locks)) {
1598 stp = list_entry(open_stp->st_locks.next,
1599 struct nfs4_ol_stateid, st_locks);
1600 WARN_ON(!unhash_lock_stateid(stp));
1601 put_ol_stateid_locked(stp, reaplist);
1602 }
1603 }
1604
unhash_open_stateid(struct nfs4_ol_stateid * stp,struct list_head * reaplist)1605 static bool unhash_open_stateid(struct nfs4_ol_stateid *stp,
1606 struct list_head *reaplist)
1607 {
1608 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1609
1610 if (!unhash_ol_stateid(stp))
1611 return false;
1612 release_open_stateid_locks(stp, reaplist);
1613 return true;
1614 }
1615
release_open_stateid(struct nfs4_ol_stateid * stp)1616 static void release_open_stateid(struct nfs4_ol_stateid *stp)
1617 {
1618 LIST_HEAD(reaplist);
1619
1620 spin_lock(&stp->st_stid.sc_client->cl_lock);
1621 if (unhash_open_stateid(stp, &reaplist))
1622 put_ol_stateid_locked(stp, &reaplist);
1623 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1624 free_ol_stateid_reaplist(&reaplist);
1625 }
1626
unhash_openowner_locked(struct nfs4_openowner * oo)1627 static void unhash_openowner_locked(struct nfs4_openowner *oo)
1628 {
1629 struct nfs4_client *clp = oo->oo_owner.so_client;
1630
1631 lockdep_assert_held(&clp->cl_lock);
1632
1633 list_del_init(&oo->oo_owner.so_strhash);
1634 list_del_init(&oo->oo_perclient);
1635 }
1636
release_last_closed_stateid(struct nfs4_openowner * oo)1637 static void release_last_closed_stateid(struct nfs4_openowner *oo)
1638 {
1639 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1640 nfsd_net_id);
1641 struct nfs4_ol_stateid *s;
1642
1643 spin_lock(&nn->client_lock);
1644 s = oo->oo_last_closed_stid;
1645 if (s) {
1646 list_del_init(&oo->oo_close_lru);
1647 oo->oo_last_closed_stid = NULL;
1648 }
1649 spin_unlock(&nn->client_lock);
1650 if (s)
1651 nfs4_put_stid(&s->st_stid);
1652 }
1653
release_openowner(struct nfs4_openowner * oo)1654 static void release_openowner(struct nfs4_openowner *oo)
1655 {
1656 struct nfs4_ol_stateid *stp;
1657 struct nfs4_client *clp = oo->oo_owner.so_client;
1658 struct list_head reaplist;
1659
1660 INIT_LIST_HEAD(&reaplist);
1661
1662 spin_lock(&clp->cl_lock);
1663 unhash_openowner_locked(oo);
1664 while (!list_empty(&oo->oo_owner.so_stateids)) {
1665 stp = list_first_entry(&oo->oo_owner.so_stateids,
1666 struct nfs4_ol_stateid, st_perstateowner);
1667 if (unhash_open_stateid(stp, &reaplist))
1668 put_ol_stateid_locked(stp, &reaplist);
1669 }
1670 spin_unlock(&clp->cl_lock);
1671 free_ol_stateid_reaplist(&reaplist);
1672 release_last_closed_stateid(oo);
1673 nfs4_put_stateowner(&oo->oo_owner);
1674 }
1675
1676 static inline int
hash_sessionid(struct nfs4_sessionid * sessionid)1677 hash_sessionid(struct nfs4_sessionid *sessionid)
1678 {
1679 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1680
1681 return sid->sequence % SESSION_HASH_SIZE;
1682 }
1683
1684 #ifdef CONFIG_SUNRPC_DEBUG
1685 static inline void
dump_sessionid(const char * fn,struct nfs4_sessionid * sessionid)1686 dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1687 {
1688 u32 *ptr = (u32 *)(&sessionid->data[0]);
1689 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1690 }
1691 #else
1692 static inline void
dump_sessionid(const char * fn,struct nfs4_sessionid * sessionid)1693 dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1694 {
1695 }
1696 #endif
1697
1698 /*
1699 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1700 * won't be used for replay.
1701 */
nfsd4_bump_seqid(struct nfsd4_compound_state * cstate,__be32 nfserr)1702 void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1703 {
1704 struct nfs4_stateowner *so = cstate->replay_owner;
1705
1706 if (nfserr == nfserr_replay_me)
1707 return;
1708
1709 if (!seqid_mutating_err(ntohl(nfserr))) {
1710 nfsd4_cstate_clear_replay(cstate);
1711 return;
1712 }
1713 if (!so)
1714 return;
1715 if (so->so_is_open_owner)
1716 release_last_closed_stateid(openowner(so));
1717 so->so_seqid++;
1718 return;
1719 }
1720
1721 static void
gen_sessionid(struct nfsd4_session * ses)1722 gen_sessionid(struct nfsd4_session *ses)
1723 {
1724 struct nfs4_client *clp = ses->se_client;
1725 struct nfsd4_sessionid *sid;
1726
1727 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1728 sid->clientid = clp->cl_clientid;
1729 sid->sequence = current_sessionid++;
1730 sid->reserved = 0;
1731 }
1732
1733 /*
1734 * The protocol defines ca_maxresponssize_cached to include the size of
1735 * the rpc header, but all we need to cache is the data starting after
1736 * the end of the initial SEQUENCE operation--the rest we regenerate
1737 * each time. Therefore we can advertise a ca_maxresponssize_cached
1738 * value that is the number of bytes in our cache plus a few additional
1739 * bytes. In order to stay on the safe side, and not promise more than
1740 * we can cache, those additional bytes must be the minimum possible: 24
1741 * bytes of rpc header (xid through accept state, with AUTH_NULL
1742 * verifier), 12 for the compound header (with zero-length tag), and 44
1743 * for the SEQUENCE op response:
1744 */
1745 #define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1746
1747 static void
free_session_slots(struct nfsd4_session * ses)1748 free_session_slots(struct nfsd4_session *ses)
1749 {
1750 int i;
1751
1752 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
1753 free_svc_cred(&ses->se_slots[i]->sl_cred);
1754 kfree(ses->se_slots[i]);
1755 }
1756 }
1757
1758 /*
1759 * We don't actually need to cache the rpc and session headers, so we
1760 * can allocate a little less for each slot:
1761 */
slot_bytes(struct nfsd4_channel_attrs * ca)1762 static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
1763 {
1764 u32 size;
1765
1766 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1767 size = 0;
1768 else
1769 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1770 return size + sizeof(struct nfsd4_slot);
1771 }
1772
1773 /*
1774 * XXX: If we run out of reserved DRC memory we could (up to a point)
1775 * re-negotiate active sessions and reduce their slot usage to make
1776 * room for new connections. For now we just fail the create session.
1777 */
nfsd4_get_drc_mem(struct nfsd4_channel_attrs * ca,struct nfsd_net * nn)1778 static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
1779 {
1780 u32 slotsize = slot_bytes(ca);
1781 u32 num = ca->maxreqs;
1782 unsigned long avail, total_avail;
1783 unsigned int scale_factor;
1784
1785 spin_lock(&nfsd_drc_lock);
1786 if (nfsd_drc_max_mem > nfsd_drc_mem_used)
1787 total_avail = nfsd_drc_max_mem - nfsd_drc_mem_used;
1788 else
1789 /* We have handed out more space than we chose in
1790 * set_max_drc() to allow. That isn't really a
1791 * problem as long as that doesn't make us think we
1792 * have lots more due to integer overflow.
1793 */
1794 total_avail = 0;
1795 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION, total_avail);
1796 /*
1797 * Never use more than a fraction of the remaining memory,
1798 * unless it's the only way to give this client a slot.
1799 * The chosen fraction is either 1/8 or 1/number of threads,
1800 * whichever is smaller. This ensures there are adequate
1801 * slots to support multiple clients per thread.
1802 * Give the client one slot even if that would require
1803 * over-allocation--it is better than failure.
1804 */
1805 scale_factor = max_t(unsigned int, 8, nn->nfsd_serv->sv_nrthreads);
1806
1807 avail = clamp_t(unsigned long, avail, slotsize,
1808 total_avail/scale_factor);
1809 num = min_t(int, num, avail / slotsize);
1810 num = max_t(int, num, 1);
1811 nfsd_drc_mem_used += num * slotsize;
1812 spin_unlock(&nfsd_drc_lock);
1813
1814 return num;
1815 }
1816
nfsd4_put_drc_mem(struct nfsd4_channel_attrs * ca)1817 static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
1818 {
1819 int slotsize = slot_bytes(ca);
1820
1821 spin_lock(&nfsd_drc_lock);
1822 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
1823 spin_unlock(&nfsd_drc_lock);
1824 }
1825
alloc_session(struct nfsd4_channel_attrs * fattrs,struct nfsd4_channel_attrs * battrs)1826 static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1827 struct nfsd4_channel_attrs *battrs)
1828 {
1829 int numslots = fattrs->maxreqs;
1830 int slotsize = slot_bytes(fattrs);
1831 struct nfsd4_session *new;
1832 int i;
1833
1834 BUILD_BUG_ON(struct_size(new, se_slots, NFSD_MAX_SLOTS_PER_SESSION)
1835 > PAGE_SIZE);
1836
1837 new = kzalloc(struct_size(new, se_slots, numslots), GFP_KERNEL);
1838 if (!new)
1839 return NULL;
1840 /* allocate each struct nfsd4_slot and data cache in one piece */
1841 for (i = 0; i < numslots; i++) {
1842 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
1843 if (!new->se_slots[i])
1844 goto out_free;
1845 }
1846
1847 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1848 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1849
1850 return new;
1851 out_free:
1852 while (i--)
1853 kfree(new->se_slots[i]);
1854 kfree(new);
1855 return NULL;
1856 }
1857
free_conn(struct nfsd4_conn * c)1858 static void free_conn(struct nfsd4_conn *c)
1859 {
1860 svc_xprt_put(c->cn_xprt);
1861 kfree(c);
1862 }
1863
nfsd4_conn_lost(struct svc_xpt_user * u)1864 static void nfsd4_conn_lost(struct svc_xpt_user *u)
1865 {
1866 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1867 struct nfs4_client *clp = c->cn_session->se_client;
1868
1869 trace_nfsd_cb_lost(clp);
1870
1871 spin_lock(&clp->cl_lock);
1872 if (!list_empty(&c->cn_persession)) {
1873 list_del(&c->cn_persession);
1874 free_conn(c);
1875 }
1876 nfsd4_probe_callback(clp);
1877 spin_unlock(&clp->cl_lock);
1878 }
1879
alloc_conn(struct svc_rqst * rqstp,u32 flags)1880 static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
1881 {
1882 struct nfsd4_conn *conn;
1883
1884 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1885 if (!conn)
1886 return NULL;
1887 svc_xprt_get(rqstp->rq_xprt);
1888 conn->cn_xprt = rqstp->rq_xprt;
1889 conn->cn_flags = flags;
1890 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1891 return conn;
1892 }
1893
__nfsd4_hash_conn(struct nfsd4_conn * conn,struct nfsd4_session * ses)1894 static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1895 {
1896 conn->cn_session = ses;
1897 list_add(&conn->cn_persession, &ses->se_conns);
1898 }
1899
nfsd4_hash_conn(struct nfsd4_conn * conn,struct nfsd4_session * ses)1900 static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1901 {
1902 struct nfs4_client *clp = ses->se_client;
1903
1904 spin_lock(&clp->cl_lock);
1905 __nfsd4_hash_conn(conn, ses);
1906 spin_unlock(&clp->cl_lock);
1907 }
1908
nfsd4_register_conn(struct nfsd4_conn * conn)1909 static int nfsd4_register_conn(struct nfsd4_conn *conn)
1910 {
1911 conn->cn_xpt_user.callback = nfsd4_conn_lost;
1912 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
1913 }
1914
nfsd4_init_conn(struct svc_rqst * rqstp,struct nfsd4_conn * conn,struct nfsd4_session * ses)1915 static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
1916 {
1917 int ret;
1918
1919 nfsd4_hash_conn(conn, ses);
1920 ret = nfsd4_register_conn(conn);
1921 if (ret)
1922 /* oops; xprt is already down: */
1923 nfsd4_conn_lost(&conn->cn_xpt_user);
1924 /* We may have gained or lost a callback channel: */
1925 nfsd4_probe_callback_sync(ses->se_client);
1926 }
1927
alloc_conn_from_crses(struct svc_rqst * rqstp,struct nfsd4_create_session * cses)1928 static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
1929 {
1930 u32 dir = NFS4_CDFC4_FORE;
1931
1932 if (cses->flags & SESSION4_BACK_CHAN)
1933 dir |= NFS4_CDFC4_BACK;
1934 return alloc_conn(rqstp, dir);
1935 }
1936
1937 /* must be called under client_lock */
nfsd4_del_conns(struct nfsd4_session * s)1938 static void nfsd4_del_conns(struct nfsd4_session *s)
1939 {
1940 struct nfs4_client *clp = s->se_client;
1941 struct nfsd4_conn *c;
1942
1943 spin_lock(&clp->cl_lock);
1944 while (!list_empty(&s->se_conns)) {
1945 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1946 list_del_init(&c->cn_persession);
1947 spin_unlock(&clp->cl_lock);
1948
1949 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1950 free_conn(c);
1951
1952 spin_lock(&clp->cl_lock);
1953 }
1954 spin_unlock(&clp->cl_lock);
1955 }
1956
__free_session(struct nfsd4_session * ses)1957 static void __free_session(struct nfsd4_session *ses)
1958 {
1959 free_session_slots(ses);
1960 kfree(ses);
1961 }
1962
free_session(struct nfsd4_session * ses)1963 static void free_session(struct nfsd4_session *ses)
1964 {
1965 nfsd4_del_conns(ses);
1966 nfsd4_put_drc_mem(&ses->se_fchannel);
1967 __free_session(ses);
1968 }
1969
init_session(struct svc_rqst * rqstp,struct nfsd4_session * new,struct nfs4_client * clp,struct nfsd4_create_session * cses)1970 static void init_session(struct svc_rqst *rqstp, struct nfsd4_session *new, struct nfs4_client *clp, struct nfsd4_create_session *cses)
1971 {
1972 int idx;
1973 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1974
1975 new->se_client = clp;
1976 gen_sessionid(new);
1977
1978 INIT_LIST_HEAD(&new->se_conns);
1979
1980 new->se_cb_seq_nr = 1;
1981 new->se_flags = cses->flags;
1982 new->se_cb_prog = cses->callback_prog;
1983 new->se_cb_sec = cses->cb_sec;
1984 atomic_set(&new->se_ref, 0);
1985 idx = hash_sessionid(&new->se_sessionid);
1986 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
1987 spin_lock(&clp->cl_lock);
1988 list_add(&new->se_perclnt, &clp->cl_sessions);
1989 spin_unlock(&clp->cl_lock);
1990
1991 {
1992 struct sockaddr *sa = svc_addr(rqstp);
1993 /*
1994 * This is a little silly; with sessions there's no real
1995 * use for the callback address. Use the peer address
1996 * as a reasonable default for now, but consider fixing
1997 * the rpc client not to require an address in the
1998 * future:
1999 */
2000 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
2001 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
2002 }
2003 }
2004
2005 /* caller must hold client_lock */
2006 static struct nfsd4_session *
__find_in_sessionid_hashtbl(struct nfs4_sessionid * sessionid,struct net * net)2007 __find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
2008 {
2009 struct nfsd4_session *elem;
2010 int idx;
2011 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
2012
2013 lockdep_assert_held(&nn->client_lock);
2014
2015 dump_sessionid(__func__, sessionid);
2016 idx = hash_sessionid(sessionid);
2017 /* Search in the appropriate list */
2018 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
2019 if (!memcmp(elem->se_sessionid.data, sessionid->data,
2020 NFS4_MAX_SESSIONID_LEN)) {
2021 return elem;
2022 }
2023 }
2024
2025 dprintk("%s: session not found\n", __func__);
2026 return NULL;
2027 }
2028
2029 static struct nfsd4_session *
find_in_sessionid_hashtbl(struct nfs4_sessionid * sessionid,struct net * net,__be32 * ret)2030 find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
2031 __be32 *ret)
2032 {
2033 struct nfsd4_session *session;
2034 __be32 status = nfserr_badsession;
2035
2036 session = __find_in_sessionid_hashtbl(sessionid, net);
2037 if (!session)
2038 goto out;
2039 status = nfsd4_get_session_locked(session);
2040 if (status)
2041 session = NULL;
2042 out:
2043 *ret = status;
2044 return session;
2045 }
2046
2047 /* caller must hold client_lock */
2048 static void
unhash_session(struct nfsd4_session * ses)2049 unhash_session(struct nfsd4_session *ses)
2050 {
2051 struct nfs4_client *clp = ses->se_client;
2052 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2053
2054 lockdep_assert_held(&nn->client_lock);
2055
2056 list_del(&ses->se_hash);
2057 spin_lock(&ses->se_client->cl_lock);
2058 list_del(&ses->se_perclnt);
2059 spin_unlock(&ses->se_client->cl_lock);
2060 }
2061
2062 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
2063 static int
STALE_CLIENTID(clientid_t * clid,struct nfsd_net * nn)2064 STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
2065 {
2066 /*
2067 * We're assuming the clid was not given out from a boot
2068 * precisely 2^32 (about 136 years) before this one. That seems
2069 * a safe assumption:
2070 */
2071 if (clid->cl_boot == (u32)nn->boot_time)
2072 return 0;
2073 trace_nfsd_clid_stale(clid);
2074 return 1;
2075 }
2076
2077 /*
2078 * XXX Should we use a slab cache ?
2079 * This type of memory management is somewhat inefficient, but we use it
2080 * anyway since SETCLIENTID is not a common operation.
2081 */
alloc_client(struct xdr_netobj name,struct nfsd_net * nn)2082 static struct nfs4_client *alloc_client(struct xdr_netobj name,
2083 struct nfsd_net *nn)
2084 {
2085 struct nfs4_client *clp;
2086 int i;
2087
2088 if (atomic_read(&nn->nfs4_client_count) >= nn->nfs4_max_clients) {
2089 mod_delayed_work(laundry_wq, &nn->laundromat_work, 0);
2090 return NULL;
2091 }
2092 clp = kmem_cache_zalloc(client_slab, GFP_KERNEL);
2093 if (clp == NULL)
2094 return NULL;
2095 xdr_netobj_dup(&clp->cl_name, &name, GFP_KERNEL);
2096 if (clp->cl_name.data == NULL)
2097 goto err_no_name;
2098 clp->cl_ownerstr_hashtbl = kmalloc_array(OWNER_HASH_SIZE,
2099 sizeof(struct list_head),
2100 GFP_KERNEL);
2101 if (!clp->cl_ownerstr_hashtbl)
2102 goto err_no_hashtbl;
2103 for (i = 0; i < OWNER_HASH_SIZE; i++)
2104 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
2105 INIT_LIST_HEAD(&clp->cl_sessions);
2106 idr_init(&clp->cl_stateids);
2107 atomic_set(&clp->cl_rpc_users, 0);
2108 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
2109 clp->cl_state = NFSD4_ACTIVE;
2110 atomic_inc(&nn->nfs4_client_count);
2111 atomic_set(&clp->cl_delegs_in_recall, 0);
2112 INIT_LIST_HEAD(&clp->cl_idhash);
2113 INIT_LIST_HEAD(&clp->cl_openowners);
2114 INIT_LIST_HEAD(&clp->cl_delegations);
2115 INIT_LIST_HEAD(&clp->cl_lru);
2116 INIT_LIST_HEAD(&clp->cl_revoked);
2117 #ifdef CONFIG_NFSD_PNFS
2118 INIT_LIST_HEAD(&clp->cl_lo_states);
2119 #endif
2120 INIT_LIST_HEAD(&clp->async_copies);
2121 spin_lock_init(&clp->async_lock);
2122 spin_lock_init(&clp->cl_lock);
2123 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
2124 return clp;
2125 err_no_hashtbl:
2126 kfree(clp->cl_name.data);
2127 err_no_name:
2128 kmem_cache_free(client_slab, clp);
2129 return NULL;
2130 }
2131
__free_client(struct kref * k)2132 static void __free_client(struct kref *k)
2133 {
2134 struct nfsdfs_client *c = container_of(k, struct nfsdfs_client, cl_ref);
2135 struct nfs4_client *clp = container_of(c, struct nfs4_client, cl_nfsdfs);
2136
2137 free_svc_cred(&clp->cl_cred);
2138 kfree(clp->cl_ownerstr_hashtbl);
2139 kfree(clp->cl_name.data);
2140 kfree(clp->cl_nii_domain.data);
2141 kfree(clp->cl_nii_name.data);
2142 idr_destroy(&clp->cl_stateids);
2143 kfree(clp->cl_ra);
2144 kmem_cache_free(client_slab, clp);
2145 }
2146
drop_client(struct nfs4_client * clp)2147 static void drop_client(struct nfs4_client *clp)
2148 {
2149 kref_put(&clp->cl_nfsdfs.cl_ref, __free_client);
2150 }
2151
2152 static void
free_client(struct nfs4_client * clp)2153 free_client(struct nfs4_client *clp)
2154 {
2155 while (!list_empty(&clp->cl_sessions)) {
2156 struct nfsd4_session *ses;
2157 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
2158 se_perclnt);
2159 list_del(&ses->se_perclnt);
2160 WARN_ON_ONCE(atomic_read(&ses->se_ref));
2161 free_session(ses);
2162 }
2163 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
2164 if (clp->cl_nfsd_dentry) {
2165 nfsd_client_rmdir(clp->cl_nfsd_dentry);
2166 clp->cl_nfsd_dentry = NULL;
2167 wake_up_all(&expiry_wq);
2168 }
2169 drop_client(clp);
2170 }
2171
2172 /* must be called under the client_lock */
2173 static void
unhash_client_locked(struct nfs4_client * clp)2174 unhash_client_locked(struct nfs4_client *clp)
2175 {
2176 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2177 struct nfsd4_session *ses;
2178
2179 lockdep_assert_held(&nn->client_lock);
2180
2181 /* Mark the client as expired! */
2182 clp->cl_time = 0;
2183 /* Make it invisible */
2184 if (!list_empty(&clp->cl_idhash)) {
2185 list_del_init(&clp->cl_idhash);
2186 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
2187 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
2188 else
2189 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
2190 }
2191 list_del_init(&clp->cl_lru);
2192 spin_lock(&clp->cl_lock);
2193 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
2194 list_del_init(&ses->se_hash);
2195 spin_unlock(&clp->cl_lock);
2196 }
2197
2198 static void
unhash_client(struct nfs4_client * clp)2199 unhash_client(struct nfs4_client *clp)
2200 {
2201 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2202
2203 spin_lock(&nn->client_lock);
2204 unhash_client_locked(clp);
2205 spin_unlock(&nn->client_lock);
2206 }
2207
mark_client_expired_locked(struct nfs4_client * clp)2208 static __be32 mark_client_expired_locked(struct nfs4_client *clp)
2209 {
2210 if (atomic_read(&clp->cl_rpc_users))
2211 return nfserr_jukebox;
2212 unhash_client_locked(clp);
2213 return nfs_ok;
2214 }
2215
2216 static void
__destroy_client(struct nfs4_client * clp)2217 __destroy_client(struct nfs4_client *clp)
2218 {
2219 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2220 int i;
2221 struct nfs4_openowner *oo;
2222 struct nfs4_delegation *dp;
2223 struct list_head reaplist;
2224
2225 INIT_LIST_HEAD(&reaplist);
2226 spin_lock(&state_lock);
2227 while (!list_empty(&clp->cl_delegations)) {
2228 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
2229 WARN_ON(!unhash_delegation_locked(dp));
2230 list_add(&dp->dl_recall_lru, &reaplist);
2231 }
2232 spin_unlock(&state_lock);
2233 while (!list_empty(&reaplist)) {
2234 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
2235 list_del_init(&dp->dl_recall_lru);
2236 destroy_unhashed_deleg(dp);
2237 }
2238 while (!list_empty(&clp->cl_revoked)) {
2239 dp = list_entry(clp->cl_revoked.next, struct nfs4_delegation, dl_recall_lru);
2240 list_del_init(&dp->dl_recall_lru);
2241 nfs4_put_stid(&dp->dl_stid);
2242 }
2243 while (!list_empty(&clp->cl_openowners)) {
2244 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
2245 nfs4_get_stateowner(&oo->oo_owner);
2246 release_openowner(oo);
2247 }
2248 for (i = 0; i < OWNER_HASH_SIZE; i++) {
2249 struct nfs4_stateowner *so, *tmp;
2250
2251 list_for_each_entry_safe(so, tmp, &clp->cl_ownerstr_hashtbl[i],
2252 so_strhash) {
2253 /* Should be no openowners at this point */
2254 WARN_ON_ONCE(so->so_is_open_owner);
2255 remove_blocked_locks(lockowner(so));
2256 }
2257 }
2258 nfsd4_return_all_client_layouts(clp);
2259 nfsd4_shutdown_copy(clp);
2260 nfsd4_shutdown_callback(clp);
2261 if (clp->cl_cb_conn.cb_xprt)
2262 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
2263 atomic_add_unless(&nn->nfs4_client_count, -1, 0);
2264 nfsd4_dec_courtesy_client_count(nn, clp);
2265 free_client(clp);
2266 wake_up_all(&expiry_wq);
2267 }
2268
2269 static void
destroy_client(struct nfs4_client * clp)2270 destroy_client(struct nfs4_client *clp)
2271 {
2272 unhash_client(clp);
2273 __destroy_client(clp);
2274 }
2275
inc_reclaim_complete(struct nfs4_client * clp)2276 static void inc_reclaim_complete(struct nfs4_client *clp)
2277 {
2278 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2279
2280 if (!nn->track_reclaim_completes)
2281 return;
2282 if (!nfsd4_find_reclaim_client(clp->cl_name, nn))
2283 return;
2284 if (atomic_inc_return(&nn->nr_reclaim_complete) ==
2285 nn->reclaim_str_hashtbl_size) {
2286 printk(KERN_INFO "NFSD: all clients done reclaiming, ending NFSv4 grace period (net %x)\n",
2287 clp->net->ns.inum);
2288 nfsd4_end_grace(nn);
2289 }
2290 }
2291
expire_client(struct nfs4_client * clp)2292 static void expire_client(struct nfs4_client *clp)
2293 {
2294 unhash_client(clp);
2295 nfsd4_client_record_remove(clp);
2296 __destroy_client(clp);
2297 }
2298
copy_verf(struct nfs4_client * target,nfs4_verifier * source)2299 static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
2300 {
2301 memcpy(target->cl_verifier.data, source->data,
2302 sizeof(target->cl_verifier.data));
2303 }
2304
copy_clid(struct nfs4_client * target,struct nfs4_client * source)2305 static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
2306 {
2307 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
2308 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
2309 }
2310
copy_cred(struct svc_cred * target,struct svc_cred * source)2311 static int copy_cred(struct svc_cred *target, struct svc_cred *source)
2312 {
2313 target->cr_principal = kstrdup(source->cr_principal, GFP_KERNEL);
2314 target->cr_raw_principal = kstrdup(source->cr_raw_principal,
2315 GFP_KERNEL);
2316 target->cr_targ_princ = kstrdup(source->cr_targ_princ, GFP_KERNEL);
2317 if ((source->cr_principal && !target->cr_principal) ||
2318 (source->cr_raw_principal && !target->cr_raw_principal) ||
2319 (source->cr_targ_princ && !target->cr_targ_princ))
2320 return -ENOMEM;
2321
2322 target->cr_flavor = source->cr_flavor;
2323 target->cr_uid = source->cr_uid;
2324 target->cr_gid = source->cr_gid;
2325 target->cr_group_info = source->cr_group_info;
2326 get_group_info(target->cr_group_info);
2327 target->cr_gss_mech = source->cr_gss_mech;
2328 if (source->cr_gss_mech)
2329 gss_mech_get(source->cr_gss_mech);
2330 return 0;
2331 }
2332
2333 static int
compare_blob(const struct xdr_netobj * o1,const struct xdr_netobj * o2)2334 compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
2335 {
2336 if (o1->len < o2->len)
2337 return -1;
2338 if (o1->len > o2->len)
2339 return 1;
2340 return memcmp(o1->data, o2->data, o1->len);
2341 }
2342
2343 static int
same_verf(nfs4_verifier * v1,nfs4_verifier * v2)2344 same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
2345 {
2346 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
2347 }
2348
2349 static int
same_clid(clientid_t * cl1,clientid_t * cl2)2350 same_clid(clientid_t *cl1, clientid_t *cl2)
2351 {
2352 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
2353 }
2354
groups_equal(struct group_info * g1,struct group_info * g2)2355 static bool groups_equal(struct group_info *g1, struct group_info *g2)
2356 {
2357 int i;
2358
2359 if (g1->ngroups != g2->ngroups)
2360 return false;
2361 for (i=0; i<g1->ngroups; i++)
2362 if (!gid_eq(g1->gid[i], g2->gid[i]))
2363 return false;
2364 return true;
2365 }
2366
2367 /*
2368 * RFC 3530 language requires clid_inuse be returned when the
2369 * "principal" associated with a requests differs from that previously
2370 * used. We use uid, gid's, and gss principal string as our best
2371 * approximation. We also don't want to allow non-gss use of a client
2372 * established using gss: in theory cr_principal should catch that
2373 * change, but in practice cr_principal can be null even in the gss case
2374 * since gssd doesn't always pass down a principal string.
2375 */
is_gss_cred(struct svc_cred * cr)2376 static bool is_gss_cred(struct svc_cred *cr)
2377 {
2378 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2379 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
2380 }
2381
2382
2383 static bool
same_creds(struct svc_cred * cr1,struct svc_cred * cr2)2384 same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
2385 {
2386 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
2387 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
2388 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
2389 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
2390 return false;
2391 /* XXX: check that cr_targ_princ fields match ? */
2392 if (cr1->cr_principal == cr2->cr_principal)
2393 return true;
2394 if (!cr1->cr_principal || !cr2->cr_principal)
2395 return false;
2396 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
2397 }
2398
svc_rqst_integrity_protected(struct svc_rqst * rqstp)2399 static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
2400 {
2401 struct svc_cred *cr = &rqstp->rq_cred;
2402 u32 service;
2403
2404 if (!cr->cr_gss_mech)
2405 return false;
2406 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
2407 return service == RPC_GSS_SVC_INTEGRITY ||
2408 service == RPC_GSS_SVC_PRIVACY;
2409 }
2410
nfsd4_mach_creds_match(struct nfs4_client * cl,struct svc_rqst * rqstp)2411 bool nfsd4_mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
2412 {
2413 struct svc_cred *cr = &rqstp->rq_cred;
2414
2415 if (!cl->cl_mach_cred)
2416 return true;
2417 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
2418 return false;
2419 if (!svc_rqst_integrity_protected(rqstp))
2420 return false;
2421 if (cl->cl_cred.cr_raw_principal)
2422 return 0 == strcmp(cl->cl_cred.cr_raw_principal,
2423 cr->cr_raw_principal);
2424 if (!cr->cr_principal)
2425 return false;
2426 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
2427 }
2428
gen_confirm(struct nfs4_client * clp,struct nfsd_net * nn)2429 static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
2430 {
2431 __be32 verf[2];
2432
2433 /*
2434 * This is opaque to client, so no need to byte-swap. Use
2435 * __force to keep sparse happy
2436 */
2437 verf[0] = (__force __be32)(u32)ktime_get_real_seconds();
2438 verf[1] = (__force __be32)nn->clverifier_counter++;
2439 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
2440 }
2441
gen_clid(struct nfs4_client * clp,struct nfsd_net * nn)2442 static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
2443 {
2444 clp->cl_clientid.cl_boot = (u32)nn->boot_time;
2445 clp->cl_clientid.cl_id = nn->clientid_counter++;
2446 gen_confirm(clp, nn);
2447 }
2448
2449 static struct nfs4_stid *
find_stateid_locked(struct nfs4_client * cl,stateid_t * t)2450 find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
2451 {
2452 struct nfs4_stid *ret;
2453
2454 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
2455 if (!ret || !ret->sc_type)
2456 return NULL;
2457 return ret;
2458 }
2459
2460 static struct nfs4_stid *
find_stateid_by_type(struct nfs4_client * cl,stateid_t * t,char typemask)2461 find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
2462 {
2463 struct nfs4_stid *s;
2464
2465 spin_lock(&cl->cl_lock);
2466 s = find_stateid_locked(cl, t);
2467 if (s != NULL) {
2468 if (typemask & s->sc_type)
2469 refcount_inc(&s->sc_count);
2470 else
2471 s = NULL;
2472 }
2473 spin_unlock(&cl->cl_lock);
2474 return s;
2475 }
2476
get_nfsdfs_clp(struct inode * inode)2477 static struct nfs4_client *get_nfsdfs_clp(struct inode *inode)
2478 {
2479 struct nfsdfs_client *nc;
2480 nc = get_nfsdfs_client(inode);
2481 if (!nc)
2482 return NULL;
2483 return container_of(nc, struct nfs4_client, cl_nfsdfs);
2484 }
2485
seq_quote_mem(struct seq_file * m,char * data,int len)2486 static void seq_quote_mem(struct seq_file *m, char *data, int len)
2487 {
2488 seq_printf(m, "\"");
2489 seq_escape_mem(m, data, len, ESCAPE_HEX | ESCAPE_NAP | ESCAPE_APPEND, "\"\\");
2490 seq_printf(m, "\"");
2491 }
2492
cb_state2str(int state)2493 static const char *cb_state2str(int state)
2494 {
2495 switch (state) {
2496 case NFSD4_CB_UP:
2497 return "UP";
2498 case NFSD4_CB_UNKNOWN:
2499 return "UNKNOWN";
2500 case NFSD4_CB_DOWN:
2501 return "DOWN";
2502 case NFSD4_CB_FAULT:
2503 return "FAULT";
2504 }
2505 return "UNDEFINED";
2506 }
2507
client_info_show(struct seq_file * m,void * v)2508 static int client_info_show(struct seq_file *m, void *v)
2509 {
2510 struct inode *inode = file_inode(m->file);
2511 struct nfs4_client *clp;
2512 u64 clid;
2513
2514 clp = get_nfsdfs_clp(inode);
2515 if (!clp)
2516 return -ENXIO;
2517 memcpy(&clid, &clp->cl_clientid, sizeof(clid));
2518 seq_printf(m, "clientid: 0x%llx\n", clid);
2519 seq_printf(m, "address: \"%pISpc\"\n", (struct sockaddr *)&clp->cl_addr);
2520
2521 if (clp->cl_state == NFSD4_COURTESY)
2522 seq_puts(m, "status: courtesy\n");
2523 else if (clp->cl_state == NFSD4_EXPIRABLE)
2524 seq_puts(m, "status: expirable\n");
2525 else if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
2526 seq_puts(m, "status: confirmed\n");
2527 else
2528 seq_puts(m, "status: unconfirmed\n");
2529 seq_printf(m, "seconds from last renew: %lld\n",
2530 ktime_get_boottime_seconds() - clp->cl_time);
2531 seq_printf(m, "name: ");
2532 seq_quote_mem(m, clp->cl_name.data, clp->cl_name.len);
2533 seq_printf(m, "\nminor version: %d\n", clp->cl_minorversion);
2534 if (clp->cl_nii_domain.data) {
2535 seq_printf(m, "Implementation domain: ");
2536 seq_quote_mem(m, clp->cl_nii_domain.data,
2537 clp->cl_nii_domain.len);
2538 seq_printf(m, "\nImplementation name: ");
2539 seq_quote_mem(m, clp->cl_nii_name.data, clp->cl_nii_name.len);
2540 seq_printf(m, "\nImplementation time: [%lld, %ld]\n",
2541 clp->cl_nii_time.tv_sec, clp->cl_nii_time.tv_nsec);
2542 }
2543 seq_printf(m, "callback state: %s\n", cb_state2str(clp->cl_cb_state));
2544 seq_printf(m, "callback address: %pISpc\n", &clp->cl_cb_conn.cb_addr);
2545 drop_client(clp);
2546
2547 return 0;
2548 }
2549
2550 DEFINE_SHOW_ATTRIBUTE(client_info);
2551
states_start(struct seq_file * s,loff_t * pos)2552 static void *states_start(struct seq_file *s, loff_t *pos)
2553 __acquires(&clp->cl_lock)
2554 {
2555 struct nfs4_client *clp = s->private;
2556 unsigned long id = *pos;
2557 void *ret;
2558
2559 spin_lock(&clp->cl_lock);
2560 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2561 *pos = id;
2562 return ret;
2563 }
2564
states_next(struct seq_file * s,void * v,loff_t * pos)2565 static void *states_next(struct seq_file *s, void *v, loff_t *pos)
2566 {
2567 struct nfs4_client *clp = s->private;
2568 unsigned long id = *pos;
2569 void *ret;
2570
2571 id = *pos;
2572 id++;
2573 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2574 *pos = id;
2575 return ret;
2576 }
2577
states_stop(struct seq_file * s,void * v)2578 static void states_stop(struct seq_file *s, void *v)
2579 __releases(&clp->cl_lock)
2580 {
2581 struct nfs4_client *clp = s->private;
2582
2583 spin_unlock(&clp->cl_lock);
2584 }
2585
nfs4_show_fname(struct seq_file * s,struct nfsd_file * f)2586 static void nfs4_show_fname(struct seq_file *s, struct nfsd_file *f)
2587 {
2588 seq_printf(s, "filename: \"%pD2\"", f->nf_file);
2589 }
2590
nfs4_show_superblock(struct seq_file * s,struct nfsd_file * f)2591 static void nfs4_show_superblock(struct seq_file *s, struct nfsd_file *f)
2592 {
2593 struct inode *inode = file_inode(f->nf_file);
2594
2595 seq_printf(s, "superblock: \"%02x:%02x:%ld\"",
2596 MAJOR(inode->i_sb->s_dev),
2597 MINOR(inode->i_sb->s_dev),
2598 inode->i_ino);
2599 }
2600
nfs4_show_owner(struct seq_file * s,struct nfs4_stateowner * oo)2601 static void nfs4_show_owner(struct seq_file *s, struct nfs4_stateowner *oo)
2602 {
2603 seq_printf(s, "owner: ");
2604 seq_quote_mem(s, oo->so_owner.data, oo->so_owner.len);
2605 }
2606
nfs4_show_stateid(struct seq_file * s,stateid_t * stid)2607 static void nfs4_show_stateid(struct seq_file *s, stateid_t *stid)
2608 {
2609 seq_printf(s, "0x%.8x", stid->si_generation);
2610 seq_printf(s, "%12phN", &stid->si_opaque);
2611 }
2612
nfs4_show_open(struct seq_file * s,struct nfs4_stid * st)2613 static int nfs4_show_open(struct seq_file *s, struct nfs4_stid *st)
2614 {
2615 struct nfs4_ol_stateid *ols;
2616 struct nfs4_file *nf;
2617 struct nfsd_file *file;
2618 struct nfs4_stateowner *oo;
2619 unsigned int access, deny;
2620
2621 if (st->sc_type != NFS4_OPEN_STID && st->sc_type != NFS4_LOCK_STID)
2622 return 0; /* XXX: or SEQ_SKIP? */
2623 ols = openlockstateid(st);
2624 oo = ols->st_stateowner;
2625 nf = st->sc_file;
2626
2627 spin_lock(&nf->fi_lock);
2628 file = find_any_file_locked(nf);
2629 if (!file)
2630 goto out;
2631
2632 seq_printf(s, "- ");
2633 nfs4_show_stateid(s, &st->sc_stateid);
2634 seq_printf(s, ": { type: open, ");
2635
2636 access = bmap_to_share_mode(ols->st_access_bmap);
2637 deny = bmap_to_share_mode(ols->st_deny_bmap);
2638
2639 seq_printf(s, "access: %s%s, ",
2640 access & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2641 access & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
2642 seq_printf(s, "deny: %s%s, ",
2643 deny & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2644 deny & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
2645
2646 nfs4_show_superblock(s, file);
2647 seq_printf(s, ", ");
2648 nfs4_show_fname(s, file);
2649 seq_printf(s, ", ");
2650 nfs4_show_owner(s, oo);
2651 seq_printf(s, " }\n");
2652 out:
2653 spin_unlock(&nf->fi_lock);
2654 return 0;
2655 }
2656
nfs4_show_lock(struct seq_file * s,struct nfs4_stid * st)2657 static int nfs4_show_lock(struct seq_file *s, struct nfs4_stid *st)
2658 {
2659 struct nfs4_ol_stateid *ols;
2660 struct nfs4_file *nf;
2661 struct nfsd_file *file;
2662 struct nfs4_stateowner *oo;
2663
2664 ols = openlockstateid(st);
2665 oo = ols->st_stateowner;
2666 nf = st->sc_file;
2667 spin_lock(&nf->fi_lock);
2668 file = find_any_file_locked(nf);
2669 if (!file)
2670 goto out;
2671
2672 seq_printf(s, "- ");
2673 nfs4_show_stateid(s, &st->sc_stateid);
2674 seq_printf(s, ": { type: lock, ");
2675
2676 /*
2677 * Note: a lock stateid isn't really the same thing as a lock,
2678 * it's the locking state held by one owner on a file, and there
2679 * may be multiple (or no) lock ranges associated with it.
2680 * (Same for the matter is true of open stateids.)
2681 */
2682
2683 nfs4_show_superblock(s, file);
2684 /* XXX: open stateid? */
2685 seq_printf(s, ", ");
2686 nfs4_show_fname(s, file);
2687 seq_printf(s, ", ");
2688 nfs4_show_owner(s, oo);
2689 seq_printf(s, " }\n");
2690 out:
2691 spin_unlock(&nf->fi_lock);
2692 return 0;
2693 }
2694
nfs4_show_deleg(struct seq_file * s,struct nfs4_stid * st)2695 static int nfs4_show_deleg(struct seq_file *s, struct nfs4_stid *st)
2696 {
2697 struct nfs4_delegation *ds;
2698 struct nfs4_file *nf;
2699 struct nfsd_file *file;
2700
2701 ds = delegstateid(st);
2702 nf = st->sc_file;
2703 spin_lock(&nf->fi_lock);
2704 file = nf->fi_deleg_file;
2705 if (!file)
2706 goto out;
2707
2708 seq_printf(s, "- ");
2709 nfs4_show_stateid(s, &st->sc_stateid);
2710 seq_printf(s, ": { type: deleg, ");
2711
2712 /* Kinda dead code as long as we only support read delegs: */
2713 seq_printf(s, "access: %s, ",
2714 ds->dl_type == NFS4_OPEN_DELEGATE_READ ? "r" : "w");
2715
2716 /* XXX: lease time, whether it's being recalled. */
2717
2718 nfs4_show_superblock(s, file);
2719 seq_printf(s, ", ");
2720 nfs4_show_fname(s, file);
2721 seq_printf(s, " }\n");
2722 out:
2723 spin_unlock(&nf->fi_lock);
2724 return 0;
2725 }
2726
nfs4_show_layout(struct seq_file * s,struct nfs4_stid * st)2727 static int nfs4_show_layout(struct seq_file *s, struct nfs4_stid *st)
2728 {
2729 struct nfs4_layout_stateid *ls;
2730 struct nfsd_file *file;
2731
2732 ls = container_of(st, struct nfs4_layout_stateid, ls_stid);
2733 file = ls->ls_file;
2734
2735 seq_printf(s, "- ");
2736 nfs4_show_stateid(s, &st->sc_stateid);
2737 seq_printf(s, ": { type: layout, ");
2738
2739 /* XXX: What else would be useful? */
2740
2741 nfs4_show_superblock(s, file);
2742 seq_printf(s, ", ");
2743 nfs4_show_fname(s, file);
2744 seq_printf(s, " }\n");
2745
2746 return 0;
2747 }
2748
states_show(struct seq_file * s,void * v)2749 static int states_show(struct seq_file *s, void *v)
2750 {
2751 struct nfs4_stid *st = v;
2752
2753 switch (st->sc_type) {
2754 case NFS4_OPEN_STID:
2755 return nfs4_show_open(s, st);
2756 case NFS4_LOCK_STID:
2757 return nfs4_show_lock(s, st);
2758 case NFS4_DELEG_STID:
2759 return nfs4_show_deleg(s, st);
2760 case NFS4_LAYOUT_STID:
2761 return nfs4_show_layout(s, st);
2762 default:
2763 return 0; /* XXX: or SEQ_SKIP? */
2764 }
2765 /* XXX: copy stateids? */
2766 }
2767
2768 static struct seq_operations states_seq_ops = {
2769 .start = states_start,
2770 .next = states_next,
2771 .stop = states_stop,
2772 .show = states_show
2773 };
2774
client_states_open(struct inode * inode,struct file * file)2775 static int client_states_open(struct inode *inode, struct file *file)
2776 {
2777 struct seq_file *s;
2778 struct nfs4_client *clp;
2779 int ret;
2780
2781 clp = get_nfsdfs_clp(inode);
2782 if (!clp)
2783 return -ENXIO;
2784
2785 ret = seq_open(file, &states_seq_ops);
2786 if (ret)
2787 return ret;
2788 s = file->private_data;
2789 s->private = clp;
2790 return 0;
2791 }
2792
client_opens_release(struct inode * inode,struct file * file)2793 static int client_opens_release(struct inode *inode, struct file *file)
2794 {
2795 struct seq_file *m = file->private_data;
2796 struct nfs4_client *clp = m->private;
2797
2798 /* XXX: alternatively, we could get/drop in seq start/stop */
2799 drop_client(clp);
2800 return seq_release(inode, file);
2801 }
2802
2803 static const struct file_operations client_states_fops = {
2804 .open = client_states_open,
2805 .read = seq_read,
2806 .llseek = seq_lseek,
2807 .release = client_opens_release,
2808 };
2809
2810 /*
2811 * Normally we refuse to destroy clients that are in use, but here the
2812 * administrator is telling us to just do it. We also want to wait
2813 * so the caller has a guarantee that the client's locks are gone by
2814 * the time the write returns:
2815 */
force_expire_client(struct nfs4_client * clp)2816 static void force_expire_client(struct nfs4_client *clp)
2817 {
2818 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2819 bool already_expired;
2820
2821 trace_nfsd_clid_admin_expired(&clp->cl_clientid);
2822
2823 spin_lock(&nn->client_lock);
2824 clp->cl_time = 0;
2825 spin_unlock(&nn->client_lock);
2826
2827 wait_event(expiry_wq, atomic_read(&clp->cl_rpc_users) == 0);
2828 spin_lock(&nn->client_lock);
2829 already_expired = list_empty(&clp->cl_lru);
2830 if (!already_expired)
2831 unhash_client_locked(clp);
2832 spin_unlock(&nn->client_lock);
2833
2834 if (!already_expired)
2835 expire_client(clp);
2836 else
2837 wait_event(expiry_wq, clp->cl_nfsd_dentry == NULL);
2838 }
2839
client_ctl_write(struct file * file,const char __user * buf,size_t size,loff_t * pos)2840 static ssize_t client_ctl_write(struct file *file, const char __user *buf,
2841 size_t size, loff_t *pos)
2842 {
2843 char *data;
2844 struct nfs4_client *clp;
2845
2846 data = simple_transaction_get(file, buf, size);
2847 if (IS_ERR(data))
2848 return PTR_ERR(data);
2849 if (size != 7 || 0 != memcmp(data, "expire\n", 7))
2850 return -EINVAL;
2851 clp = get_nfsdfs_clp(file_inode(file));
2852 if (!clp)
2853 return -ENXIO;
2854 force_expire_client(clp);
2855 drop_client(clp);
2856 return 7;
2857 }
2858
2859 static const struct file_operations client_ctl_fops = {
2860 .write = client_ctl_write,
2861 .release = simple_transaction_release,
2862 };
2863
2864 static const struct tree_descr client_files[] = {
2865 [0] = {"info", &client_info_fops, S_IRUSR},
2866 [1] = {"states", &client_states_fops, S_IRUSR},
2867 [2] = {"ctl", &client_ctl_fops, S_IWUSR},
2868 [3] = {""},
2869 };
2870
2871 static int
nfsd4_cb_recall_any_done(struct nfsd4_callback * cb,struct rpc_task * task)2872 nfsd4_cb_recall_any_done(struct nfsd4_callback *cb,
2873 struct rpc_task *task)
2874 {
2875 trace_nfsd_cb_recall_any_done(cb, task);
2876 switch (task->tk_status) {
2877 case -NFS4ERR_DELAY:
2878 rpc_delay(task, 2 * HZ);
2879 return 0;
2880 default:
2881 return 1;
2882 }
2883 }
2884
2885 static void
nfsd4_cb_recall_any_release(struct nfsd4_callback * cb)2886 nfsd4_cb_recall_any_release(struct nfsd4_callback *cb)
2887 {
2888 struct nfs4_client *clp = cb->cb_clp;
2889 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2890
2891 spin_lock(&nn->client_lock);
2892 clear_bit(NFSD4_CLIENT_CB_RECALL_ANY, &clp->cl_flags);
2893 put_client_renew_locked(clp);
2894 spin_unlock(&nn->client_lock);
2895 }
2896
2897 static const struct nfsd4_callback_ops nfsd4_cb_recall_any_ops = {
2898 .done = nfsd4_cb_recall_any_done,
2899 .release = nfsd4_cb_recall_any_release,
2900 };
2901
create_client(struct xdr_netobj name,struct svc_rqst * rqstp,nfs4_verifier * verf)2902 static struct nfs4_client *create_client(struct xdr_netobj name,
2903 struct svc_rqst *rqstp, nfs4_verifier *verf)
2904 {
2905 struct nfs4_client *clp;
2906 struct sockaddr *sa = svc_addr(rqstp);
2907 int ret;
2908 struct net *net = SVC_NET(rqstp);
2909 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
2910 struct dentry *dentries[ARRAY_SIZE(client_files)];
2911
2912 clp = alloc_client(name, nn);
2913 if (clp == NULL)
2914 return NULL;
2915
2916 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
2917 if (ret) {
2918 free_client(clp);
2919 return NULL;
2920 }
2921 gen_clid(clp, nn);
2922 kref_init(&clp->cl_nfsdfs.cl_ref);
2923 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
2924 clp->cl_time = ktime_get_boottime_seconds();
2925 clear_bit(0, &clp->cl_cb_slot_busy);
2926 copy_verf(clp, verf);
2927 memcpy(&clp->cl_addr, sa, sizeof(struct sockaddr_storage));
2928 clp->cl_cb_session = NULL;
2929 clp->net = net;
2930 clp->cl_nfsd_dentry = nfsd_client_mkdir(
2931 nn, &clp->cl_nfsdfs,
2932 clp->cl_clientid.cl_id - nn->clientid_base,
2933 client_files, dentries);
2934 clp->cl_nfsd_info_dentry = dentries[0];
2935 if (!clp->cl_nfsd_dentry) {
2936 free_client(clp);
2937 return NULL;
2938 }
2939 clp->cl_ra = kzalloc(sizeof(*clp->cl_ra), GFP_KERNEL);
2940 if (!clp->cl_ra) {
2941 free_client(clp);
2942 return NULL;
2943 }
2944 clp->cl_ra_time = 0;
2945 nfsd4_init_cb(&clp->cl_ra->ra_cb, clp, &nfsd4_cb_recall_any_ops,
2946 NFSPROC4_CLNT_CB_RECALL_ANY);
2947 return clp;
2948 }
2949
2950 static void
add_clp_to_name_tree(struct nfs4_client * new_clp,struct rb_root * root)2951 add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
2952 {
2953 struct rb_node **new = &(root->rb_node), *parent = NULL;
2954 struct nfs4_client *clp;
2955
2956 while (*new) {
2957 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
2958 parent = *new;
2959
2960 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
2961 new = &((*new)->rb_left);
2962 else
2963 new = &((*new)->rb_right);
2964 }
2965
2966 rb_link_node(&new_clp->cl_namenode, parent, new);
2967 rb_insert_color(&new_clp->cl_namenode, root);
2968 }
2969
2970 static struct nfs4_client *
find_clp_in_name_tree(struct xdr_netobj * name,struct rb_root * root)2971 find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
2972 {
2973 int cmp;
2974 struct rb_node *node = root->rb_node;
2975 struct nfs4_client *clp;
2976
2977 while (node) {
2978 clp = rb_entry(node, struct nfs4_client, cl_namenode);
2979 cmp = compare_blob(&clp->cl_name, name);
2980 if (cmp > 0)
2981 node = node->rb_left;
2982 else if (cmp < 0)
2983 node = node->rb_right;
2984 else
2985 return clp;
2986 }
2987 return NULL;
2988 }
2989
2990 static void
add_to_unconfirmed(struct nfs4_client * clp)2991 add_to_unconfirmed(struct nfs4_client *clp)
2992 {
2993 unsigned int idhashval;
2994 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2995
2996 lockdep_assert_held(&nn->client_lock);
2997
2998 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
2999 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
3000 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
3001 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
3002 renew_client_locked(clp);
3003 }
3004
3005 static void
move_to_confirmed(struct nfs4_client * clp)3006 move_to_confirmed(struct nfs4_client *clp)
3007 {
3008 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
3009 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
3010
3011 lockdep_assert_held(&nn->client_lock);
3012
3013 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
3014 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
3015 add_clp_to_name_tree(clp, &nn->conf_name_tree);
3016 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
3017 trace_nfsd_clid_confirmed(&clp->cl_clientid);
3018 renew_client_locked(clp);
3019 }
3020
3021 static struct nfs4_client *
find_client_in_id_table(struct list_head * tbl,clientid_t * clid,bool sessions)3022 find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
3023 {
3024 struct nfs4_client *clp;
3025 unsigned int idhashval = clientid_hashval(clid->cl_id);
3026
3027 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
3028 if (same_clid(&clp->cl_clientid, clid)) {
3029 if ((bool)clp->cl_minorversion != sessions)
3030 return NULL;
3031 renew_client_locked(clp);
3032 return clp;
3033 }
3034 }
3035 return NULL;
3036 }
3037
3038 static struct nfs4_client *
find_confirmed_client(clientid_t * clid,bool sessions,struct nfsd_net * nn)3039 find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
3040 {
3041 struct list_head *tbl = nn->conf_id_hashtbl;
3042
3043 lockdep_assert_held(&nn->client_lock);
3044 return find_client_in_id_table(tbl, clid, sessions);
3045 }
3046
3047 static struct nfs4_client *
find_unconfirmed_client(clientid_t * clid,bool sessions,struct nfsd_net * nn)3048 find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
3049 {
3050 struct list_head *tbl = nn->unconf_id_hashtbl;
3051
3052 lockdep_assert_held(&nn->client_lock);
3053 return find_client_in_id_table(tbl, clid, sessions);
3054 }
3055
clp_used_exchangeid(struct nfs4_client * clp)3056 static bool clp_used_exchangeid(struct nfs4_client *clp)
3057 {
3058 return clp->cl_exchange_flags != 0;
3059 }
3060
3061 static struct nfs4_client *
find_confirmed_client_by_name(struct xdr_netobj * name,struct nfsd_net * nn)3062 find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
3063 {
3064 lockdep_assert_held(&nn->client_lock);
3065 return find_clp_in_name_tree(name, &nn->conf_name_tree);
3066 }
3067
3068 static struct nfs4_client *
find_unconfirmed_client_by_name(struct xdr_netobj * name,struct nfsd_net * nn)3069 find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
3070 {
3071 lockdep_assert_held(&nn->client_lock);
3072 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
3073 }
3074
3075 static void
gen_callback(struct nfs4_client * clp,struct nfsd4_setclientid * se,struct svc_rqst * rqstp)3076 gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
3077 {
3078 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
3079 struct sockaddr *sa = svc_addr(rqstp);
3080 u32 scopeid = rpc_get_scope_id(sa);
3081 unsigned short expected_family;
3082
3083 /* Currently, we only support tcp and tcp6 for the callback channel */
3084 if (se->se_callback_netid_len == 3 &&
3085 !memcmp(se->se_callback_netid_val, "tcp", 3))
3086 expected_family = AF_INET;
3087 else if (se->se_callback_netid_len == 4 &&
3088 !memcmp(se->se_callback_netid_val, "tcp6", 4))
3089 expected_family = AF_INET6;
3090 else
3091 goto out_err;
3092
3093 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
3094 se->se_callback_addr_len,
3095 (struct sockaddr *)&conn->cb_addr,
3096 sizeof(conn->cb_addr));
3097
3098 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
3099 goto out_err;
3100
3101 if (conn->cb_addr.ss_family == AF_INET6)
3102 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
3103
3104 conn->cb_prog = se->se_callback_prog;
3105 conn->cb_ident = se->se_callback_ident;
3106 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
3107 trace_nfsd_cb_args(clp, conn);
3108 return;
3109 out_err:
3110 conn->cb_addr.ss_family = AF_UNSPEC;
3111 conn->cb_addrlen = 0;
3112 trace_nfsd_cb_nodelegs(clp);
3113 return;
3114 }
3115
3116 /*
3117 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
3118 */
3119 static void
nfsd4_store_cache_entry(struct nfsd4_compoundres * resp)3120 nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
3121 {
3122 struct xdr_buf *buf = resp->xdr->buf;
3123 struct nfsd4_slot *slot = resp->cstate.slot;
3124 unsigned int base;
3125
3126 dprintk("--> %s slot %p\n", __func__, slot);
3127
3128 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
3129 slot->sl_opcnt = resp->opcnt;
3130 slot->sl_status = resp->cstate.status;
3131 free_svc_cred(&slot->sl_cred);
3132 copy_cred(&slot->sl_cred, &resp->rqstp->rq_cred);
3133
3134 if (!nfsd4_cache_this(resp)) {
3135 slot->sl_flags &= ~NFSD4_SLOT_CACHED;
3136 return;
3137 }
3138 slot->sl_flags |= NFSD4_SLOT_CACHED;
3139
3140 base = resp->cstate.data_offset;
3141 slot->sl_datalen = buf->len - base;
3142 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
3143 WARN(1, "%s: sessions DRC could not cache compound\n",
3144 __func__);
3145 return;
3146 }
3147
3148 /*
3149 * Encode the replay sequence operation from the slot values.
3150 * If cachethis is FALSE encode the uncached rep error on the next
3151 * operation which sets resp->p and increments resp->opcnt for
3152 * nfs4svc_encode_compoundres.
3153 *
3154 */
3155 static __be32
nfsd4_enc_sequence_replay(struct nfsd4_compoundargs * args,struct nfsd4_compoundres * resp)3156 nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
3157 struct nfsd4_compoundres *resp)
3158 {
3159 struct nfsd4_op *op;
3160 struct nfsd4_slot *slot = resp->cstate.slot;
3161
3162 /* Encode the replayed sequence operation */
3163 op = &args->ops[resp->opcnt - 1];
3164 nfsd4_encode_operation(resp, op);
3165
3166 if (slot->sl_flags & NFSD4_SLOT_CACHED)
3167 return op->status;
3168 if (args->opcnt == 1) {
3169 /*
3170 * The original operation wasn't a solo sequence--we
3171 * always cache those--so this retry must not match the
3172 * original:
3173 */
3174 op->status = nfserr_seq_false_retry;
3175 } else {
3176 op = &args->ops[resp->opcnt++];
3177 op->status = nfserr_retry_uncached_rep;
3178 nfsd4_encode_operation(resp, op);
3179 }
3180 return op->status;
3181 }
3182
3183 /*
3184 * The sequence operation is not cached because we can use the slot and
3185 * session values.
3186 */
3187 static __be32
nfsd4_replay_cache_entry(struct nfsd4_compoundres * resp,struct nfsd4_sequence * seq)3188 nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
3189 struct nfsd4_sequence *seq)
3190 {
3191 struct nfsd4_slot *slot = resp->cstate.slot;
3192 struct xdr_stream *xdr = resp->xdr;
3193 __be32 *p;
3194 __be32 status;
3195
3196 dprintk("--> %s slot %p\n", __func__, slot);
3197
3198 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
3199 if (status)
3200 return status;
3201
3202 p = xdr_reserve_space(xdr, slot->sl_datalen);
3203 if (!p) {
3204 WARN_ON_ONCE(1);
3205 return nfserr_serverfault;
3206 }
3207 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
3208 xdr_commit_encode(xdr);
3209
3210 resp->opcnt = slot->sl_opcnt;
3211 return slot->sl_status;
3212 }
3213
3214 /*
3215 * Set the exchange_id flags returned by the server.
3216 */
3217 static void
nfsd4_set_ex_flags(struct nfs4_client * new,struct nfsd4_exchange_id * clid)3218 nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
3219 {
3220 #ifdef CONFIG_NFSD_PNFS
3221 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_PNFS_MDS;
3222 #else
3223 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
3224 #endif
3225
3226 /* Referrals are supported, Migration is not. */
3227 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
3228
3229 /* set the wire flags to return to client. */
3230 clid->flags = new->cl_exchange_flags;
3231 }
3232
client_has_openowners(struct nfs4_client * clp)3233 static bool client_has_openowners(struct nfs4_client *clp)
3234 {
3235 struct nfs4_openowner *oo;
3236
3237 list_for_each_entry(oo, &clp->cl_openowners, oo_perclient) {
3238 if (!list_empty(&oo->oo_owner.so_stateids))
3239 return true;
3240 }
3241 return false;
3242 }
3243
client_has_state(struct nfs4_client * clp)3244 static bool client_has_state(struct nfs4_client *clp)
3245 {
3246 return client_has_openowners(clp)
3247 #ifdef CONFIG_NFSD_PNFS
3248 || !list_empty(&clp->cl_lo_states)
3249 #endif
3250 || !list_empty(&clp->cl_delegations)
3251 || !list_empty(&clp->cl_sessions)
3252 || !list_empty(&clp->async_copies);
3253 }
3254
copy_impl_id(struct nfs4_client * clp,struct nfsd4_exchange_id * exid)3255 static __be32 copy_impl_id(struct nfs4_client *clp,
3256 struct nfsd4_exchange_id *exid)
3257 {
3258 if (!exid->nii_domain.data)
3259 return 0;
3260 xdr_netobj_dup(&clp->cl_nii_domain, &exid->nii_domain, GFP_KERNEL);
3261 if (!clp->cl_nii_domain.data)
3262 return nfserr_jukebox;
3263 xdr_netobj_dup(&clp->cl_nii_name, &exid->nii_name, GFP_KERNEL);
3264 if (!clp->cl_nii_name.data)
3265 return nfserr_jukebox;
3266 clp->cl_nii_time = exid->nii_time;
3267 return 0;
3268 }
3269
3270 __be32
nfsd4_exchange_id(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)3271 nfsd4_exchange_id(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3272 union nfsd4_op_u *u)
3273 {
3274 struct nfsd4_exchange_id *exid = &u->exchange_id;
3275 struct nfs4_client *conf, *new;
3276 struct nfs4_client *unconf = NULL;
3277 __be32 status;
3278 char addr_str[INET6_ADDRSTRLEN];
3279 nfs4_verifier verf = exid->verifier;
3280 struct sockaddr *sa = svc_addr(rqstp);
3281 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
3282 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3283
3284 rpc_ntop(sa, addr_str, sizeof(addr_str));
3285 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
3286 "ip_addr=%s flags %x, spa_how %u\n",
3287 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
3288 addr_str, exid->flags, exid->spa_how);
3289
3290 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
3291 return nfserr_inval;
3292
3293 new = create_client(exid->clname, rqstp, &verf);
3294 if (new == NULL)
3295 return nfserr_jukebox;
3296 status = copy_impl_id(new, exid);
3297 if (status)
3298 goto out_nolock;
3299
3300 switch (exid->spa_how) {
3301 case SP4_MACH_CRED:
3302 exid->spo_must_enforce[0] = 0;
3303 exid->spo_must_enforce[1] = (
3304 1 << (OP_BIND_CONN_TO_SESSION - 32) |
3305 1 << (OP_EXCHANGE_ID - 32) |
3306 1 << (OP_CREATE_SESSION - 32) |
3307 1 << (OP_DESTROY_SESSION - 32) |
3308 1 << (OP_DESTROY_CLIENTID - 32));
3309
3310 exid->spo_must_allow[0] &= (1 << (OP_CLOSE) |
3311 1 << (OP_OPEN_DOWNGRADE) |
3312 1 << (OP_LOCKU) |
3313 1 << (OP_DELEGRETURN));
3314
3315 exid->spo_must_allow[1] &= (
3316 1 << (OP_TEST_STATEID - 32) |
3317 1 << (OP_FREE_STATEID - 32));
3318 if (!svc_rqst_integrity_protected(rqstp)) {
3319 status = nfserr_inval;
3320 goto out_nolock;
3321 }
3322 /*
3323 * Sometimes userspace doesn't give us a principal.
3324 * Which is a bug, really. Anyway, we can't enforce
3325 * MACH_CRED in that case, better to give up now:
3326 */
3327 if (!new->cl_cred.cr_principal &&
3328 !new->cl_cred.cr_raw_principal) {
3329 status = nfserr_serverfault;
3330 goto out_nolock;
3331 }
3332 new->cl_mach_cred = true;
3333 break;
3334 case SP4_NONE:
3335 break;
3336 default: /* checked by xdr code */
3337 WARN_ON_ONCE(1);
3338 fallthrough;
3339 case SP4_SSV:
3340 status = nfserr_encr_alg_unsupp;
3341 goto out_nolock;
3342 }
3343
3344 /* Cases below refer to rfc 5661 section 18.35.4: */
3345 spin_lock(&nn->client_lock);
3346 conf = find_confirmed_client_by_name(&exid->clname, nn);
3347 if (conf) {
3348 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
3349 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
3350
3351 if (update) {
3352 if (!clp_used_exchangeid(conf)) { /* buggy client */
3353 status = nfserr_inval;
3354 goto out;
3355 }
3356 if (!nfsd4_mach_creds_match(conf, rqstp)) {
3357 status = nfserr_wrong_cred;
3358 goto out;
3359 }
3360 if (!creds_match) { /* case 9 */
3361 status = nfserr_perm;
3362 goto out;
3363 }
3364 if (!verfs_match) { /* case 8 */
3365 status = nfserr_not_same;
3366 goto out;
3367 }
3368 /* case 6 */
3369 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
3370 trace_nfsd_clid_confirmed_r(conf);
3371 goto out_copy;
3372 }
3373 if (!creds_match) { /* case 3 */
3374 if (client_has_state(conf)) {
3375 status = nfserr_clid_inuse;
3376 trace_nfsd_clid_cred_mismatch(conf, rqstp);
3377 goto out;
3378 }
3379 goto out_new;
3380 }
3381 if (verfs_match) { /* case 2 */
3382 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
3383 trace_nfsd_clid_confirmed_r(conf);
3384 goto out_copy;
3385 }
3386 /* case 5, client reboot */
3387 trace_nfsd_clid_verf_mismatch(conf, rqstp, &verf);
3388 conf = NULL;
3389 goto out_new;
3390 }
3391
3392 if (update) { /* case 7 */
3393 status = nfserr_noent;
3394 goto out;
3395 }
3396
3397 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
3398 if (unconf) /* case 4, possible retry or client restart */
3399 unhash_client_locked(unconf);
3400
3401 /* case 1, new owner ID */
3402 trace_nfsd_clid_fresh(new);
3403
3404 out_new:
3405 if (conf) {
3406 status = mark_client_expired_locked(conf);
3407 if (status)
3408 goto out;
3409 trace_nfsd_clid_replaced(&conf->cl_clientid);
3410 }
3411 new->cl_minorversion = cstate->minorversion;
3412 new->cl_spo_must_allow.u.words[0] = exid->spo_must_allow[0];
3413 new->cl_spo_must_allow.u.words[1] = exid->spo_must_allow[1];
3414
3415 add_to_unconfirmed(new);
3416 swap(new, conf);
3417 out_copy:
3418 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
3419 exid->clientid.cl_id = conf->cl_clientid.cl_id;
3420
3421 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
3422 nfsd4_set_ex_flags(conf, exid);
3423
3424 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
3425 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
3426 status = nfs_ok;
3427
3428 out:
3429 spin_unlock(&nn->client_lock);
3430 out_nolock:
3431 if (new)
3432 expire_client(new);
3433 if (unconf) {
3434 trace_nfsd_clid_expire_unconf(&unconf->cl_clientid);
3435 expire_client(unconf);
3436 }
3437 return status;
3438 }
3439
3440 static __be32
check_slot_seqid(u32 seqid,u32 slot_seqid,int slot_inuse)3441 check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
3442 {
3443 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
3444 slot_seqid);
3445
3446 /* The slot is in use, and no response has been sent. */
3447 if (slot_inuse) {
3448 if (seqid == slot_seqid)
3449 return nfserr_jukebox;
3450 else
3451 return nfserr_seq_misordered;
3452 }
3453 /* Note unsigned 32-bit arithmetic handles wraparound: */
3454 if (likely(seqid == slot_seqid + 1))
3455 return nfs_ok;
3456 if (seqid == slot_seqid)
3457 return nfserr_replay_cache;
3458 return nfserr_seq_misordered;
3459 }
3460
3461 /*
3462 * Cache the create session result into the create session single DRC
3463 * slot cache by saving the xdr structure. sl_seqid has been set.
3464 * Do this for solo or embedded create session operations.
3465 */
3466 static void
nfsd4_cache_create_session(struct nfsd4_create_session * cr_ses,struct nfsd4_clid_slot * slot,__be32 nfserr)3467 nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
3468 struct nfsd4_clid_slot *slot, __be32 nfserr)
3469 {
3470 slot->sl_status = nfserr;
3471 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
3472 }
3473
3474 static __be32
nfsd4_replay_create_session(struct nfsd4_create_session * cr_ses,struct nfsd4_clid_slot * slot)3475 nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
3476 struct nfsd4_clid_slot *slot)
3477 {
3478 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
3479 return slot->sl_status;
3480 }
3481
3482 #define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
3483 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
3484 1 + /* MIN tag is length with zero, only length */ \
3485 3 + /* version, opcount, opcode */ \
3486 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3487 /* seqid, slotID, slotID, cache */ \
3488 4 ) * sizeof(__be32))
3489
3490 #define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
3491 2 + /* verifier: AUTH_NULL, length 0 */\
3492 1 + /* status */ \
3493 1 + /* MIN tag is length with zero, only length */ \
3494 3 + /* opcount, opcode, opstatus*/ \
3495 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3496 /* seqid, slotID, slotID, slotID, status */ \
3497 5 ) * sizeof(__be32))
3498
check_forechannel_attrs(struct nfsd4_channel_attrs * ca,struct nfsd_net * nn)3499 static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
3500 {
3501 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
3502
3503 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
3504 return nfserr_toosmall;
3505 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
3506 return nfserr_toosmall;
3507 ca->headerpadsz = 0;
3508 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
3509 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
3510 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
3511 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
3512 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
3513 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
3514 /*
3515 * Note decreasing slot size below client's request may make it
3516 * difficult for client to function correctly, whereas
3517 * decreasing the number of slots will (just?) affect
3518 * performance. When short on memory we therefore prefer to
3519 * decrease number of slots instead of their size. Clients that
3520 * request larger slots than they need will get poor results:
3521 * Note that we always allow at least one slot, because our
3522 * accounting is soft and provides no guarantees either way.
3523 */
3524 ca->maxreqs = nfsd4_get_drc_mem(ca, nn);
3525
3526 return nfs_ok;
3527 }
3528
3529 /*
3530 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
3531 * These are based on similar macros in linux/sunrpc/msg_prot.h .
3532 */
3533 #define RPC_MAX_HEADER_WITH_AUTH_SYS \
3534 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
3535
3536 #define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
3537 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
3538
3539 #define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
3540 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
3541 #define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
3542 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
3543 sizeof(__be32))
3544
check_backchannel_attrs(struct nfsd4_channel_attrs * ca)3545 static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
3546 {
3547 ca->headerpadsz = 0;
3548
3549 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
3550 return nfserr_toosmall;
3551 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
3552 return nfserr_toosmall;
3553 ca->maxresp_cached = 0;
3554 if (ca->maxops < 2)
3555 return nfserr_toosmall;
3556
3557 return nfs_ok;
3558 }
3559
nfsd4_check_cb_sec(struct nfsd4_cb_sec * cbs)3560 static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
3561 {
3562 switch (cbs->flavor) {
3563 case RPC_AUTH_NULL:
3564 case RPC_AUTH_UNIX:
3565 return nfs_ok;
3566 default:
3567 /*
3568 * GSS case: the spec doesn't allow us to return this
3569 * error. But it also doesn't allow us not to support
3570 * GSS.
3571 * I'd rather this fail hard than return some error the
3572 * client might think it can already handle:
3573 */
3574 return nfserr_encr_alg_unsupp;
3575 }
3576 }
3577
3578 __be32
nfsd4_create_session(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)3579 nfsd4_create_session(struct svc_rqst *rqstp,
3580 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
3581 {
3582 struct nfsd4_create_session *cr_ses = &u->create_session;
3583 struct sockaddr *sa = svc_addr(rqstp);
3584 struct nfs4_client *conf, *unconf;
3585 struct nfs4_client *old = NULL;
3586 struct nfsd4_session *new;
3587 struct nfsd4_conn *conn;
3588 struct nfsd4_clid_slot *cs_slot = NULL;
3589 __be32 status = 0;
3590 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3591
3592 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
3593 return nfserr_inval;
3594 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
3595 if (status)
3596 return status;
3597 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
3598 if (status)
3599 return status;
3600 status = check_backchannel_attrs(&cr_ses->back_channel);
3601 if (status)
3602 goto out_release_drc_mem;
3603 status = nfserr_jukebox;
3604 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
3605 if (!new)
3606 goto out_release_drc_mem;
3607 conn = alloc_conn_from_crses(rqstp, cr_ses);
3608 if (!conn)
3609 goto out_free_session;
3610
3611 spin_lock(&nn->client_lock);
3612 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
3613 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
3614 WARN_ON_ONCE(conf && unconf);
3615
3616 if (conf) {
3617 status = nfserr_wrong_cred;
3618 if (!nfsd4_mach_creds_match(conf, rqstp))
3619 goto out_free_conn;
3620 cs_slot = &conf->cl_cs_slot;
3621 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
3622 if (status) {
3623 if (status == nfserr_replay_cache)
3624 status = nfsd4_replay_create_session(cr_ses, cs_slot);
3625 goto out_free_conn;
3626 }
3627 } else if (unconf) {
3628 status = nfserr_clid_inuse;
3629 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
3630 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
3631 trace_nfsd_clid_cred_mismatch(unconf, rqstp);
3632 goto out_free_conn;
3633 }
3634 status = nfserr_wrong_cred;
3635 if (!nfsd4_mach_creds_match(unconf, rqstp))
3636 goto out_free_conn;
3637 cs_slot = &unconf->cl_cs_slot;
3638 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
3639 if (status) {
3640 /* an unconfirmed replay returns misordered */
3641 status = nfserr_seq_misordered;
3642 goto out_free_conn;
3643 }
3644 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
3645 if (old) {
3646 status = mark_client_expired_locked(old);
3647 if (status) {
3648 old = NULL;
3649 goto out_free_conn;
3650 }
3651 trace_nfsd_clid_replaced(&old->cl_clientid);
3652 }
3653 move_to_confirmed(unconf);
3654 conf = unconf;
3655 } else {
3656 status = nfserr_stale_clientid;
3657 goto out_free_conn;
3658 }
3659 status = nfs_ok;
3660 /* Persistent sessions are not supported */
3661 cr_ses->flags &= ~SESSION4_PERSIST;
3662 /* Upshifting from TCP to RDMA is not supported */
3663 cr_ses->flags &= ~SESSION4_RDMA;
3664
3665 init_session(rqstp, new, conf, cr_ses);
3666 nfsd4_get_session_locked(new);
3667
3668 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
3669 NFS4_MAX_SESSIONID_LEN);
3670 cs_slot->sl_seqid++;
3671 cr_ses->seqid = cs_slot->sl_seqid;
3672
3673 /* cache solo and embedded create sessions under the client_lock */
3674 nfsd4_cache_create_session(cr_ses, cs_slot, status);
3675 spin_unlock(&nn->client_lock);
3676 if (conf == unconf)
3677 fsnotify_dentry(conf->cl_nfsd_info_dentry, FS_MODIFY);
3678 /* init connection and backchannel */
3679 nfsd4_init_conn(rqstp, conn, new);
3680 nfsd4_put_session(new);
3681 if (old)
3682 expire_client(old);
3683 return status;
3684 out_free_conn:
3685 spin_unlock(&nn->client_lock);
3686 free_conn(conn);
3687 if (old)
3688 expire_client(old);
3689 out_free_session:
3690 __free_session(new);
3691 out_release_drc_mem:
3692 nfsd4_put_drc_mem(&cr_ses->fore_channel);
3693 return status;
3694 }
3695
nfsd4_map_bcts_dir(u32 * dir)3696 static __be32 nfsd4_map_bcts_dir(u32 *dir)
3697 {
3698 switch (*dir) {
3699 case NFS4_CDFC4_FORE:
3700 case NFS4_CDFC4_BACK:
3701 return nfs_ok;
3702 case NFS4_CDFC4_FORE_OR_BOTH:
3703 case NFS4_CDFC4_BACK_OR_BOTH:
3704 *dir = NFS4_CDFC4_BOTH;
3705 return nfs_ok;
3706 }
3707 return nfserr_inval;
3708 }
3709
nfsd4_backchannel_ctl(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)3710 __be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp,
3711 struct nfsd4_compound_state *cstate,
3712 union nfsd4_op_u *u)
3713 {
3714 struct nfsd4_backchannel_ctl *bc = &u->backchannel_ctl;
3715 struct nfsd4_session *session = cstate->session;
3716 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3717 __be32 status;
3718
3719 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
3720 if (status)
3721 return status;
3722 spin_lock(&nn->client_lock);
3723 session->se_cb_prog = bc->bc_cb_program;
3724 session->se_cb_sec = bc->bc_cb_sec;
3725 spin_unlock(&nn->client_lock);
3726
3727 nfsd4_probe_callback(session->se_client);
3728
3729 return nfs_ok;
3730 }
3731
__nfsd4_find_conn(struct svc_xprt * xpt,struct nfsd4_session * s)3732 static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
3733 {
3734 struct nfsd4_conn *c;
3735
3736 list_for_each_entry(c, &s->se_conns, cn_persession) {
3737 if (c->cn_xprt == xpt) {
3738 return c;
3739 }
3740 }
3741 return NULL;
3742 }
3743
nfsd4_match_existing_connection(struct svc_rqst * rqst,struct nfsd4_session * session,u32 req,struct nfsd4_conn ** conn)3744 static __be32 nfsd4_match_existing_connection(struct svc_rqst *rqst,
3745 struct nfsd4_session *session, u32 req, struct nfsd4_conn **conn)
3746 {
3747 struct nfs4_client *clp = session->se_client;
3748 struct svc_xprt *xpt = rqst->rq_xprt;
3749 struct nfsd4_conn *c;
3750 __be32 status;
3751
3752 /* Following the last paragraph of RFC 5661 Section 18.34.3: */
3753 spin_lock(&clp->cl_lock);
3754 c = __nfsd4_find_conn(xpt, session);
3755 if (!c)
3756 status = nfserr_noent;
3757 else if (req == c->cn_flags)
3758 status = nfs_ok;
3759 else if (req == NFS4_CDFC4_FORE_OR_BOTH &&
3760 c->cn_flags != NFS4_CDFC4_BACK)
3761 status = nfs_ok;
3762 else if (req == NFS4_CDFC4_BACK_OR_BOTH &&
3763 c->cn_flags != NFS4_CDFC4_FORE)
3764 status = nfs_ok;
3765 else
3766 status = nfserr_inval;
3767 spin_unlock(&clp->cl_lock);
3768 if (status == nfs_ok && conn)
3769 *conn = c;
3770 return status;
3771 }
3772
nfsd4_bind_conn_to_session(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)3773 __be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
3774 struct nfsd4_compound_state *cstate,
3775 union nfsd4_op_u *u)
3776 {
3777 struct nfsd4_bind_conn_to_session *bcts = &u->bind_conn_to_session;
3778 __be32 status;
3779 struct nfsd4_conn *conn;
3780 struct nfsd4_session *session;
3781 struct net *net = SVC_NET(rqstp);
3782 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
3783
3784 if (!nfsd4_last_compound_op(rqstp))
3785 return nfserr_not_only_op;
3786 spin_lock(&nn->client_lock);
3787 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
3788 spin_unlock(&nn->client_lock);
3789 if (!session)
3790 goto out_no_session;
3791 status = nfserr_wrong_cred;
3792 if (!nfsd4_mach_creds_match(session->se_client, rqstp))
3793 goto out;
3794 status = nfsd4_match_existing_connection(rqstp, session,
3795 bcts->dir, &conn);
3796 if (status == nfs_ok) {
3797 if (bcts->dir == NFS4_CDFC4_FORE_OR_BOTH ||
3798 bcts->dir == NFS4_CDFC4_BACK)
3799 conn->cn_flags |= NFS4_CDFC4_BACK;
3800 nfsd4_probe_callback(session->se_client);
3801 goto out;
3802 }
3803 if (status == nfserr_inval)
3804 goto out;
3805 status = nfsd4_map_bcts_dir(&bcts->dir);
3806 if (status)
3807 goto out;
3808 conn = alloc_conn(rqstp, bcts->dir);
3809 status = nfserr_jukebox;
3810 if (!conn)
3811 goto out;
3812 nfsd4_init_conn(rqstp, conn, session);
3813 status = nfs_ok;
3814 out:
3815 nfsd4_put_session(session);
3816 out_no_session:
3817 return status;
3818 }
3819
nfsd4_compound_in_session(struct nfsd4_compound_state * cstate,struct nfs4_sessionid * sid)3820 static bool nfsd4_compound_in_session(struct nfsd4_compound_state *cstate, struct nfs4_sessionid *sid)
3821 {
3822 if (!cstate->session)
3823 return false;
3824 return !memcmp(sid, &cstate->session->se_sessionid, sizeof(*sid));
3825 }
3826
3827 __be32
nfsd4_destroy_session(struct svc_rqst * r,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)3828 nfsd4_destroy_session(struct svc_rqst *r, struct nfsd4_compound_state *cstate,
3829 union nfsd4_op_u *u)
3830 {
3831 struct nfs4_sessionid *sessionid = &u->destroy_session.sessionid;
3832 struct nfsd4_session *ses;
3833 __be32 status;
3834 int ref_held_by_me = 0;
3835 struct net *net = SVC_NET(r);
3836 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
3837
3838 status = nfserr_not_only_op;
3839 if (nfsd4_compound_in_session(cstate, sessionid)) {
3840 if (!nfsd4_last_compound_op(r))
3841 goto out;
3842 ref_held_by_me++;
3843 }
3844 dump_sessionid(__func__, sessionid);
3845 spin_lock(&nn->client_lock);
3846 ses = find_in_sessionid_hashtbl(sessionid, net, &status);
3847 if (!ses)
3848 goto out_client_lock;
3849 status = nfserr_wrong_cred;
3850 if (!nfsd4_mach_creds_match(ses->se_client, r))
3851 goto out_put_session;
3852 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
3853 if (status)
3854 goto out_put_session;
3855 unhash_session(ses);
3856 spin_unlock(&nn->client_lock);
3857
3858 nfsd4_probe_callback_sync(ses->se_client);
3859
3860 spin_lock(&nn->client_lock);
3861 status = nfs_ok;
3862 out_put_session:
3863 nfsd4_put_session_locked(ses);
3864 out_client_lock:
3865 spin_unlock(&nn->client_lock);
3866 out:
3867 return status;
3868 }
3869
nfsd4_sequence_check_conn(struct nfsd4_conn * new,struct nfsd4_session * ses)3870 static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
3871 {
3872 struct nfs4_client *clp = ses->se_client;
3873 struct nfsd4_conn *c;
3874 __be32 status = nfs_ok;
3875 int ret;
3876
3877 spin_lock(&clp->cl_lock);
3878 c = __nfsd4_find_conn(new->cn_xprt, ses);
3879 if (c)
3880 goto out_free;
3881 status = nfserr_conn_not_bound_to_session;
3882 if (clp->cl_mach_cred)
3883 goto out_free;
3884 __nfsd4_hash_conn(new, ses);
3885 spin_unlock(&clp->cl_lock);
3886 ret = nfsd4_register_conn(new);
3887 if (ret)
3888 /* oops; xprt is already down: */
3889 nfsd4_conn_lost(&new->cn_xpt_user);
3890 return nfs_ok;
3891 out_free:
3892 spin_unlock(&clp->cl_lock);
3893 free_conn(new);
3894 return status;
3895 }
3896
nfsd4_session_too_many_ops(struct svc_rqst * rqstp,struct nfsd4_session * session)3897 static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
3898 {
3899 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3900
3901 return args->opcnt > session->se_fchannel.maxops;
3902 }
3903
nfsd4_request_too_big(struct svc_rqst * rqstp,struct nfsd4_session * session)3904 static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
3905 struct nfsd4_session *session)
3906 {
3907 struct xdr_buf *xb = &rqstp->rq_arg;
3908
3909 return xb->len > session->se_fchannel.maxreq_sz;
3910 }
3911
replay_matches_cache(struct svc_rqst * rqstp,struct nfsd4_sequence * seq,struct nfsd4_slot * slot)3912 static bool replay_matches_cache(struct svc_rqst *rqstp,
3913 struct nfsd4_sequence *seq, struct nfsd4_slot *slot)
3914 {
3915 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3916
3917 if ((bool)(slot->sl_flags & NFSD4_SLOT_CACHETHIS) !=
3918 (bool)seq->cachethis)
3919 return false;
3920 /*
3921 * If there's an error then the reply can have fewer ops than
3922 * the call.
3923 */
3924 if (slot->sl_opcnt < argp->opcnt && !slot->sl_status)
3925 return false;
3926 /*
3927 * But if we cached a reply with *more* ops than the call you're
3928 * sending us now, then this new call is clearly not really a
3929 * replay of the old one:
3930 */
3931 if (slot->sl_opcnt > argp->opcnt)
3932 return false;
3933 /* This is the only check explicitly called by spec: */
3934 if (!same_creds(&rqstp->rq_cred, &slot->sl_cred))
3935 return false;
3936 /*
3937 * There may be more comparisons we could actually do, but the
3938 * spec doesn't require us to catch every case where the calls
3939 * don't match (that would require caching the call as well as
3940 * the reply), so we don't bother.
3941 */
3942 return true;
3943 }
3944
3945 __be32
nfsd4_sequence(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)3946 nfsd4_sequence(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3947 union nfsd4_op_u *u)
3948 {
3949 struct nfsd4_sequence *seq = &u->sequence;
3950 struct nfsd4_compoundres *resp = rqstp->rq_resp;
3951 struct xdr_stream *xdr = resp->xdr;
3952 struct nfsd4_session *session;
3953 struct nfs4_client *clp;
3954 struct nfsd4_slot *slot;
3955 struct nfsd4_conn *conn;
3956 __be32 status;
3957 int buflen;
3958 struct net *net = SVC_NET(rqstp);
3959 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
3960
3961 if (resp->opcnt != 1)
3962 return nfserr_sequence_pos;
3963
3964 /*
3965 * Will be either used or freed by nfsd4_sequence_check_conn
3966 * below.
3967 */
3968 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
3969 if (!conn)
3970 return nfserr_jukebox;
3971
3972 spin_lock(&nn->client_lock);
3973 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
3974 if (!session)
3975 goto out_no_session;
3976 clp = session->se_client;
3977
3978 status = nfserr_too_many_ops;
3979 if (nfsd4_session_too_many_ops(rqstp, session))
3980 goto out_put_session;
3981
3982 status = nfserr_req_too_big;
3983 if (nfsd4_request_too_big(rqstp, session))
3984 goto out_put_session;
3985
3986 status = nfserr_badslot;
3987 if (seq->slotid >= session->se_fchannel.maxreqs)
3988 goto out_put_session;
3989
3990 slot = session->se_slots[seq->slotid];
3991 dprintk("%s: slotid %d\n", __func__, seq->slotid);
3992
3993 /* We do not negotiate the number of slots yet, so set the
3994 * maxslots to the session maxreqs which is used to encode
3995 * sr_highest_slotid and the sr_target_slot id to maxslots */
3996 seq->maxslots = session->se_fchannel.maxreqs;
3997
3998 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
3999 slot->sl_flags & NFSD4_SLOT_INUSE);
4000 if (status == nfserr_replay_cache) {
4001 status = nfserr_seq_misordered;
4002 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
4003 goto out_put_session;
4004 status = nfserr_seq_false_retry;
4005 if (!replay_matches_cache(rqstp, seq, slot))
4006 goto out_put_session;
4007 cstate->slot = slot;
4008 cstate->session = session;
4009 cstate->clp = clp;
4010 /* Return the cached reply status and set cstate->status
4011 * for nfsd4_proc_compound processing */
4012 status = nfsd4_replay_cache_entry(resp, seq);
4013 cstate->status = nfserr_replay_cache;
4014 goto out;
4015 }
4016 if (status)
4017 goto out_put_session;
4018
4019 status = nfsd4_sequence_check_conn(conn, session);
4020 conn = NULL;
4021 if (status)
4022 goto out_put_session;
4023
4024 buflen = (seq->cachethis) ?
4025 session->se_fchannel.maxresp_cached :
4026 session->se_fchannel.maxresp_sz;
4027 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
4028 nfserr_rep_too_big;
4029 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
4030 goto out_put_session;
4031 svc_reserve(rqstp, buflen);
4032
4033 status = nfs_ok;
4034 /* Success! bump slot seqid */
4035 slot->sl_seqid = seq->seqid;
4036 slot->sl_flags |= NFSD4_SLOT_INUSE;
4037 if (seq->cachethis)
4038 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
4039 else
4040 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
4041
4042 cstate->slot = slot;
4043 cstate->session = session;
4044 cstate->clp = clp;
4045
4046 out:
4047 switch (clp->cl_cb_state) {
4048 case NFSD4_CB_DOWN:
4049 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
4050 break;
4051 case NFSD4_CB_FAULT:
4052 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
4053 break;
4054 default:
4055 seq->status_flags = 0;
4056 }
4057 if (!list_empty(&clp->cl_revoked))
4058 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
4059 out_no_session:
4060 if (conn)
4061 free_conn(conn);
4062 spin_unlock(&nn->client_lock);
4063 return status;
4064 out_put_session:
4065 nfsd4_put_session_locked(session);
4066 goto out_no_session;
4067 }
4068
4069 void
nfsd4_sequence_done(struct nfsd4_compoundres * resp)4070 nfsd4_sequence_done(struct nfsd4_compoundres *resp)
4071 {
4072 struct nfsd4_compound_state *cs = &resp->cstate;
4073
4074 if (nfsd4_has_session(cs)) {
4075 if (cs->status != nfserr_replay_cache) {
4076 nfsd4_store_cache_entry(resp);
4077 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
4078 }
4079 /* Drop session reference that was taken in nfsd4_sequence() */
4080 nfsd4_put_session(cs->session);
4081 } else if (cs->clp)
4082 put_client_renew(cs->clp);
4083 }
4084
4085 __be32
nfsd4_destroy_clientid(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)4086 nfsd4_destroy_clientid(struct svc_rqst *rqstp,
4087 struct nfsd4_compound_state *cstate,
4088 union nfsd4_op_u *u)
4089 {
4090 struct nfsd4_destroy_clientid *dc = &u->destroy_clientid;
4091 struct nfs4_client *conf, *unconf;
4092 struct nfs4_client *clp = NULL;
4093 __be32 status = 0;
4094 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4095
4096 spin_lock(&nn->client_lock);
4097 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
4098 conf = find_confirmed_client(&dc->clientid, true, nn);
4099 WARN_ON_ONCE(conf && unconf);
4100
4101 if (conf) {
4102 if (client_has_state(conf)) {
4103 status = nfserr_clientid_busy;
4104 goto out;
4105 }
4106 status = mark_client_expired_locked(conf);
4107 if (status)
4108 goto out;
4109 clp = conf;
4110 } else if (unconf)
4111 clp = unconf;
4112 else {
4113 status = nfserr_stale_clientid;
4114 goto out;
4115 }
4116 if (!nfsd4_mach_creds_match(clp, rqstp)) {
4117 clp = NULL;
4118 status = nfserr_wrong_cred;
4119 goto out;
4120 }
4121 trace_nfsd_clid_destroyed(&clp->cl_clientid);
4122 unhash_client_locked(clp);
4123 out:
4124 spin_unlock(&nn->client_lock);
4125 if (clp)
4126 expire_client(clp);
4127 return status;
4128 }
4129
4130 __be32
nfsd4_reclaim_complete(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)4131 nfsd4_reclaim_complete(struct svc_rqst *rqstp,
4132 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
4133 {
4134 struct nfsd4_reclaim_complete *rc = &u->reclaim_complete;
4135 struct nfs4_client *clp = cstate->clp;
4136 __be32 status = 0;
4137
4138 if (rc->rca_one_fs) {
4139 if (!cstate->current_fh.fh_dentry)
4140 return nfserr_nofilehandle;
4141 /*
4142 * We don't take advantage of the rca_one_fs case.
4143 * That's OK, it's optional, we can safely ignore it.
4144 */
4145 return nfs_ok;
4146 }
4147
4148 status = nfserr_complete_already;
4149 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &clp->cl_flags))
4150 goto out;
4151
4152 status = nfserr_stale_clientid;
4153 if (is_client_expired(clp))
4154 /*
4155 * The following error isn't really legal.
4156 * But we only get here if the client just explicitly
4157 * destroyed the client. Surely it no longer cares what
4158 * error it gets back on an operation for the dead
4159 * client.
4160 */
4161 goto out;
4162
4163 status = nfs_ok;
4164 trace_nfsd_clid_reclaim_complete(&clp->cl_clientid);
4165 nfsd4_client_record_create(clp);
4166 inc_reclaim_complete(clp);
4167 out:
4168 return status;
4169 }
4170
4171 __be32
nfsd4_setclientid(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)4172 nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4173 union nfsd4_op_u *u)
4174 {
4175 struct nfsd4_setclientid *setclid = &u->setclientid;
4176 struct xdr_netobj clname = setclid->se_name;
4177 nfs4_verifier clverifier = setclid->se_verf;
4178 struct nfs4_client *conf, *new;
4179 struct nfs4_client *unconf = NULL;
4180 __be32 status;
4181 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4182
4183 new = create_client(clname, rqstp, &clverifier);
4184 if (new == NULL)
4185 return nfserr_jukebox;
4186 spin_lock(&nn->client_lock);
4187 conf = find_confirmed_client_by_name(&clname, nn);
4188 if (conf && client_has_state(conf)) {
4189 status = nfserr_clid_inuse;
4190 if (clp_used_exchangeid(conf))
4191 goto out;
4192 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
4193 trace_nfsd_clid_cred_mismatch(conf, rqstp);
4194 goto out;
4195 }
4196 }
4197 unconf = find_unconfirmed_client_by_name(&clname, nn);
4198 if (unconf)
4199 unhash_client_locked(unconf);
4200 if (conf) {
4201 if (same_verf(&conf->cl_verifier, &clverifier)) {
4202 copy_clid(new, conf);
4203 gen_confirm(new, nn);
4204 } else
4205 trace_nfsd_clid_verf_mismatch(conf, rqstp,
4206 &clverifier);
4207 } else
4208 trace_nfsd_clid_fresh(new);
4209 new->cl_minorversion = 0;
4210 gen_callback(new, setclid, rqstp);
4211 add_to_unconfirmed(new);
4212 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
4213 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
4214 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
4215 new = NULL;
4216 status = nfs_ok;
4217 out:
4218 spin_unlock(&nn->client_lock);
4219 if (new)
4220 free_client(new);
4221 if (unconf) {
4222 trace_nfsd_clid_expire_unconf(&unconf->cl_clientid);
4223 expire_client(unconf);
4224 }
4225 return status;
4226 }
4227
4228 __be32
nfsd4_setclientid_confirm(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)4229 nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
4230 struct nfsd4_compound_state *cstate,
4231 union nfsd4_op_u *u)
4232 {
4233 struct nfsd4_setclientid_confirm *setclientid_confirm =
4234 &u->setclientid_confirm;
4235 struct nfs4_client *conf, *unconf;
4236 struct nfs4_client *old = NULL;
4237 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
4238 clientid_t * clid = &setclientid_confirm->sc_clientid;
4239 __be32 status;
4240 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4241
4242 if (STALE_CLIENTID(clid, nn))
4243 return nfserr_stale_clientid;
4244
4245 spin_lock(&nn->client_lock);
4246 conf = find_confirmed_client(clid, false, nn);
4247 unconf = find_unconfirmed_client(clid, false, nn);
4248 /*
4249 * We try hard to give out unique clientid's, so if we get an
4250 * attempt to confirm the same clientid with a different cred,
4251 * the client may be buggy; this should never happen.
4252 *
4253 * Nevertheless, RFC 7530 recommends INUSE for this case:
4254 */
4255 status = nfserr_clid_inuse;
4256 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
4257 trace_nfsd_clid_cred_mismatch(unconf, rqstp);
4258 goto out;
4259 }
4260 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
4261 trace_nfsd_clid_cred_mismatch(conf, rqstp);
4262 goto out;
4263 }
4264 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
4265 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
4266 status = nfs_ok;
4267 } else
4268 status = nfserr_stale_clientid;
4269 goto out;
4270 }
4271 status = nfs_ok;
4272 if (conf) {
4273 old = unconf;
4274 unhash_client_locked(old);
4275 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
4276 } else {
4277 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
4278 if (old) {
4279 status = nfserr_clid_inuse;
4280 if (client_has_state(old)
4281 && !same_creds(&unconf->cl_cred,
4282 &old->cl_cred)) {
4283 old = NULL;
4284 goto out;
4285 }
4286 status = mark_client_expired_locked(old);
4287 if (status) {
4288 old = NULL;
4289 goto out;
4290 }
4291 trace_nfsd_clid_replaced(&old->cl_clientid);
4292 }
4293 move_to_confirmed(unconf);
4294 conf = unconf;
4295 }
4296 get_client_locked(conf);
4297 spin_unlock(&nn->client_lock);
4298 if (conf == unconf)
4299 fsnotify_dentry(conf->cl_nfsd_info_dentry, FS_MODIFY);
4300 nfsd4_probe_callback(conf);
4301 spin_lock(&nn->client_lock);
4302 put_client_renew_locked(conf);
4303 out:
4304 spin_unlock(&nn->client_lock);
4305 if (old)
4306 expire_client(old);
4307 return status;
4308 }
4309
nfsd4_alloc_file(void)4310 static struct nfs4_file *nfsd4_alloc_file(void)
4311 {
4312 return kmem_cache_alloc(file_slab, GFP_KERNEL);
4313 }
4314
4315 /* OPEN Share state helper functions */
4316
nfsd4_file_init(const struct svc_fh * fh,struct nfs4_file * fp)4317 static void nfsd4_file_init(const struct svc_fh *fh, struct nfs4_file *fp)
4318 {
4319 refcount_set(&fp->fi_ref, 1);
4320 spin_lock_init(&fp->fi_lock);
4321 INIT_LIST_HEAD(&fp->fi_stateids);
4322 INIT_LIST_HEAD(&fp->fi_delegations);
4323 INIT_LIST_HEAD(&fp->fi_clnt_odstate);
4324 fh_copy_shallow(&fp->fi_fhandle, &fh->fh_handle);
4325 fp->fi_deleg_file = NULL;
4326 fp->fi_had_conflict = false;
4327 fp->fi_share_deny = 0;
4328 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
4329 memset(fp->fi_access, 0, sizeof(fp->fi_access));
4330 fp->fi_aliased = false;
4331 fp->fi_inode = d_inode(fh->fh_dentry);
4332 #ifdef CONFIG_NFSD_PNFS
4333 INIT_LIST_HEAD(&fp->fi_lo_states);
4334 atomic_set(&fp->fi_lo_recalls, 0);
4335 #endif
4336 }
4337
4338 void
nfsd4_free_slabs(void)4339 nfsd4_free_slabs(void)
4340 {
4341 kmem_cache_destroy(client_slab);
4342 kmem_cache_destroy(openowner_slab);
4343 kmem_cache_destroy(lockowner_slab);
4344 kmem_cache_destroy(file_slab);
4345 kmem_cache_destroy(stateid_slab);
4346 kmem_cache_destroy(deleg_slab);
4347 kmem_cache_destroy(odstate_slab);
4348 }
4349
4350 int
nfsd4_init_slabs(void)4351 nfsd4_init_slabs(void)
4352 {
4353 client_slab = kmem_cache_create("nfsd4_clients",
4354 sizeof(struct nfs4_client), 0, 0, NULL);
4355 if (client_slab == NULL)
4356 goto out;
4357 openowner_slab = kmem_cache_create("nfsd4_openowners",
4358 sizeof(struct nfs4_openowner), 0, 0, NULL);
4359 if (openowner_slab == NULL)
4360 goto out_free_client_slab;
4361 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
4362 sizeof(struct nfs4_lockowner), 0, 0, NULL);
4363 if (lockowner_slab == NULL)
4364 goto out_free_openowner_slab;
4365 file_slab = kmem_cache_create("nfsd4_files",
4366 sizeof(struct nfs4_file), 0, 0, NULL);
4367 if (file_slab == NULL)
4368 goto out_free_lockowner_slab;
4369 stateid_slab = kmem_cache_create("nfsd4_stateids",
4370 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
4371 if (stateid_slab == NULL)
4372 goto out_free_file_slab;
4373 deleg_slab = kmem_cache_create("nfsd4_delegations",
4374 sizeof(struct nfs4_delegation), 0, 0, NULL);
4375 if (deleg_slab == NULL)
4376 goto out_free_stateid_slab;
4377 odstate_slab = kmem_cache_create("nfsd4_odstate",
4378 sizeof(struct nfs4_clnt_odstate), 0, 0, NULL);
4379 if (odstate_slab == NULL)
4380 goto out_free_deleg_slab;
4381 return 0;
4382
4383 out_free_deleg_slab:
4384 kmem_cache_destroy(deleg_slab);
4385 out_free_stateid_slab:
4386 kmem_cache_destroy(stateid_slab);
4387 out_free_file_slab:
4388 kmem_cache_destroy(file_slab);
4389 out_free_lockowner_slab:
4390 kmem_cache_destroy(lockowner_slab);
4391 out_free_openowner_slab:
4392 kmem_cache_destroy(openowner_slab);
4393 out_free_client_slab:
4394 kmem_cache_destroy(client_slab);
4395 out:
4396 return -ENOMEM;
4397 }
4398
4399 static unsigned long
nfsd4_state_shrinker_count(struct shrinker * shrink,struct shrink_control * sc)4400 nfsd4_state_shrinker_count(struct shrinker *shrink, struct shrink_control *sc)
4401 {
4402 int count;
4403 struct nfsd_net *nn = container_of(shrink,
4404 struct nfsd_net, nfsd_client_shrinker);
4405
4406 count = atomic_read(&nn->nfsd_courtesy_clients);
4407 if (!count)
4408 count = atomic_long_read(&num_delegations);
4409 if (count)
4410 queue_work(laundry_wq, &nn->nfsd_shrinker_work);
4411 return (unsigned long)count;
4412 }
4413
4414 static unsigned long
nfsd4_state_shrinker_scan(struct shrinker * shrink,struct shrink_control * sc)4415 nfsd4_state_shrinker_scan(struct shrinker *shrink, struct shrink_control *sc)
4416 {
4417 return SHRINK_STOP;
4418 }
4419
4420 void
nfsd4_init_leases_net(struct nfsd_net * nn)4421 nfsd4_init_leases_net(struct nfsd_net *nn)
4422 {
4423 struct sysinfo si;
4424 u64 max_clients;
4425
4426 nn->nfsd4_lease = 90; /* default lease time */
4427 nn->nfsd4_grace = 90;
4428 nn->somebody_reclaimed = false;
4429 nn->track_reclaim_completes = false;
4430 nn->clverifier_counter = get_random_u32();
4431 nn->clientid_base = get_random_u32();
4432 nn->clientid_counter = nn->clientid_base + 1;
4433 nn->s2s_cp_cl_id = nn->clientid_counter++;
4434
4435 atomic_set(&nn->nfs4_client_count, 0);
4436 si_meminfo(&si);
4437 max_clients = (u64)si.totalram * si.mem_unit / (1024 * 1024 * 1024);
4438 max_clients *= NFS4_CLIENTS_PER_GB;
4439 nn->nfs4_max_clients = max_t(int, max_clients, NFS4_CLIENTS_PER_GB);
4440
4441 atomic_set(&nn->nfsd_courtesy_clients, 0);
4442 }
4443
init_nfs4_replay(struct nfs4_replay * rp)4444 static void init_nfs4_replay(struct nfs4_replay *rp)
4445 {
4446 rp->rp_status = nfserr_serverfault;
4447 rp->rp_buflen = 0;
4448 rp->rp_buf = rp->rp_ibuf;
4449 mutex_init(&rp->rp_mutex);
4450 }
4451
nfsd4_cstate_assign_replay(struct nfsd4_compound_state * cstate,struct nfs4_stateowner * so)4452 static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
4453 struct nfs4_stateowner *so)
4454 {
4455 if (!nfsd4_has_session(cstate)) {
4456 mutex_lock(&so->so_replay.rp_mutex);
4457 cstate->replay_owner = nfs4_get_stateowner(so);
4458 }
4459 }
4460
nfsd4_cstate_clear_replay(struct nfsd4_compound_state * cstate)4461 void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
4462 {
4463 struct nfs4_stateowner *so = cstate->replay_owner;
4464
4465 if (so != NULL) {
4466 cstate->replay_owner = NULL;
4467 mutex_unlock(&so->so_replay.rp_mutex);
4468 nfs4_put_stateowner(so);
4469 }
4470 }
4471
alloc_stateowner(struct kmem_cache * slab,struct xdr_netobj * owner,struct nfs4_client * clp)4472 static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
4473 {
4474 struct nfs4_stateowner *sop;
4475
4476 sop = kmem_cache_alloc(slab, GFP_KERNEL);
4477 if (!sop)
4478 return NULL;
4479
4480 xdr_netobj_dup(&sop->so_owner, owner, GFP_KERNEL);
4481 if (!sop->so_owner.data) {
4482 kmem_cache_free(slab, sop);
4483 return NULL;
4484 }
4485
4486 INIT_LIST_HEAD(&sop->so_stateids);
4487 sop->so_client = clp;
4488 init_nfs4_replay(&sop->so_replay);
4489 atomic_set(&sop->so_count, 1);
4490 return sop;
4491 }
4492
hash_openowner(struct nfs4_openowner * oo,struct nfs4_client * clp,unsigned int strhashval)4493 static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
4494 {
4495 lockdep_assert_held(&clp->cl_lock);
4496
4497 list_add(&oo->oo_owner.so_strhash,
4498 &clp->cl_ownerstr_hashtbl[strhashval]);
4499 list_add(&oo->oo_perclient, &clp->cl_openowners);
4500 }
4501
nfs4_unhash_openowner(struct nfs4_stateowner * so)4502 static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
4503 {
4504 unhash_openowner_locked(openowner(so));
4505 }
4506
nfs4_free_openowner(struct nfs4_stateowner * so)4507 static void nfs4_free_openowner(struct nfs4_stateowner *so)
4508 {
4509 struct nfs4_openowner *oo = openowner(so);
4510
4511 kmem_cache_free(openowner_slab, oo);
4512 }
4513
4514 static const struct nfs4_stateowner_operations openowner_ops = {
4515 .so_unhash = nfs4_unhash_openowner,
4516 .so_free = nfs4_free_openowner,
4517 };
4518
4519 static struct nfs4_ol_stateid *
nfsd4_find_existing_open(struct nfs4_file * fp,struct nfsd4_open * open)4520 nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4521 {
4522 struct nfs4_ol_stateid *local, *ret = NULL;
4523 struct nfs4_openowner *oo = open->op_openowner;
4524
4525 lockdep_assert_held(&fp->fi_lock);
4526
4527 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
4528 /* ignore lock owners */
4529 if (local->st_stateowner->so_is_open_owner == 0)
4530 continue;
4531 if (local->st_stateowner != &oo->oo_owner)
4532 continue;
4533 if (local->st_stid.sc_type == NFS4_OPEN_STID) {
4534 ret = local;
4535 refcount_inc(&ret->st_stid.sc_count);
4536 break;
4537 }
4538 }
4539 return ret;
4540 }
4541
4542 static __be32
nfsd4_verify_open_stid(struct nfs4_stid * s)4543 nfsd4_verify_open_stid(struct nfs4_stid *s)
4544 {
4545 __be32 ret = nfs_ok;
4546
4547 switch (s->sc_type) {
4548 default:
4549 break;
4550 case 0:
4551 case NFS4_CLOSED_STID:
4552 case NFS4_CLOSED_DELEG_STID:
4553 ret = nfserr_bad_stateid;
4554 break;
4555 case NFS4_REVOKED_DELEG_STID:
4556 ret = nfserr_deleg_revoked;
4557 }
4558 return ret;
4559 }
4560
4561 /* Lock the stateid st_mutex, and deal with races with CLOSE */
4562 static __be32
nfsd4_lock_ol_stateid(struct nfs4_ol_stateid * stp)4563 nfsd4_lock_ol_stateid(struct nfs4_ol_stateid *stp)
4564 {
4565 __be32 ret;
4566
4567 mutex_lock_nested(&stp->st_mutex, LOCK_STATEID_MUTEX);
4568 ret = nfsd4_verify_open_stid(&stp->st_stid);
4569 if (ret != nfs_ok)
4570 mutex_unlock(&stp->st_mutex);
4571 return ret;
4572 }
4573
4574 static struct nfs4_ol_stateid *
nfsd4_find_and_lock_existing_open(struct nfs4_file * fp,struct nfsd4_open * open)4575 nfsd4_find_and_lock_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4576 {
4577 struct nfs4_ol_stateid *stp;
4578 for (;;) {
4579 spin_lock(&fp->fi_lock);
4580 stp = nfsd4_find_existing_open(fp, open);
4581 spin_unlock(&fp->fi_lock);
4582 if (!stp || nfsd4_lock_ol_stateid(stp) == nfs_ok)
4583 break;
4584 nfs4_put_stid(&stp->st_stid);
4585 }
4586 return stp;
4587 }
4588
4589 static struct nfs4_openowner *
alloc_init_open_stateowner(unsigned int strhashval,struct nfsd4_open * open,struct nfsd4_compound_state * cstate)4590 alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
4591 struct nfsd4_compound_state *cstate)
4592 {
4593 struct nfs4_client *clp = cstate->clp;
4594 struct nfs4_openowner *oo, *ret;
4595
4596 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
4597 if (!oo)
4598 return NULL;
4599 oo->oo_owner.so_ops = &openowner_ops;
4600 oo->oo_owner.so_is_open_owner = 1;
4601 oo->oo_owner.so_seqid = open->op_seqid;
4602 oo->oo_flags = 0;
4603 if (nfsd4_has_session(cstate))
4604 oo->oo_flags |= NFS4_OO_CONFIRMED;
4605 oo->oo_time = 0;
4606 oo->oo_last_closed_stid = NULL;
4607 INIT_LIST_HEAD(&oo->oo_close_lru);
4608 spin_lock(&clp->cl_lock);
4609 ret = find_openstateowner_str_locked(strhashval, open, clp);
4610 if (ret == NULL) {
4611 hash_openowner(oo, clp, strhashval);
4612 ret = oo;
4613 } else
4614 nfs4_free_stateowner(&oo->oo_owner);
4615
4616 spin_unlock(&clp->cl_lock);
4617 return ret;
4618 }
4619
4620 static struct nfs4_ol_stateid *
init_open_stateid(struct nfs4_file * fp,struct nfsd4_open * open)4621 init_open_stateid(struct nfs4_file *fp, struct nfsd4_open *open)
4622 {
4623
4624 struct nfs4_openowner *oo = open->op_openowner;
4625 struct nfs4_ol_stateid *retstp = NULL;
4626 struct nfs4_ol_stateid *stp;
4627
4628 stp = open->op_stp;
4629 /* We are moving these outside of the spinlocks to avoid the warnings */
4630 mutex_init(&stp->st_mutex);
4631 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
4632
4633 retry:
4634 spin_lock(&oo->oo_owner.so_client->cl_lock);
4635 spin_lock(&fp->fi_lock);
4636
4637 retstp = nfsd4_find_existing_open(fp, open);
4638 if (retstp)
4639 goto out_unlock;
4640
4641 open->op_stp = NULL;
4642 refcount_inc(&stp->st_stid.sc_count);
4643 stp->st_stid.sc_type = NFS4_OPEN_STID;
4644 INIT_LIST_HEAD(&stp->st_locks);
4645 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
4646 get_nfs4_file(fp);
4647 stp->st_stid.sc_file = fp;
4648 stp->st_access_bmap = 0;
4649 stp->st_deny_bmap = 0;
4650 stp->st_openstp = NULL;
4651 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
4652 list_add(&stp->st_perfile, &fp->fi_stateids);
4653
4654 out_unlock:
4655 spin_unlock(&fp->fi_lock);
4656 spin_unlock(&oo->oo_owner.so_client->cl_lock);
4657 if (retstp) {
4658 /* Handle races with CLOSE */
4659 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
4660 nfs4_put_stid(&retstp->st_stid);
4661 goto retry;
4662 }
4663 /* To keep mutex tracking happy */
4664 mutex_unlock(&stp->st_mutex);
4665 stp = retstp;
4666 }
4667 return stp;
4668 }
4669
4670 /*
4671 * In the 4.0 case we need to keep the owners around a little while to handle
4672 * CLOSE replay. We still do need to release any file access that is held by
4673 * them before returning however.
4674 */
4675 static void
move_to_close_lru(struct nfs4_ol_stateid * s,struct net * net)4676 move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
4677 {
4678 struct nfs4_ol_stateid *last;
4679 struct nfs4_openowner *oo = openowner(s->st_stateowner);
4680 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
4681 nfsd_net_id);
4682
4683 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
4684
4685 /*
4686 * We know that we hold one reference via nfsd4_close, and another
4687 * "persistent" reference for the client. If the refcount is higher
4688 * than 2, then there are still calls in progress that are using this
4689 * stateid. We can't put the sc_file reference until they are finished.
4690 * Wait for the refcount to drop to 2. Since it has been unhashed,
4691 * there should be no danger of the refcount going back up again at
4692 * this point.
4693 */
4694 wait_event(close_wq, refcount_read(&s->st_stid.sc_count) == 2);
4695
4696 release_all_access(s);
4697 if (s->st_stid.sc_file) {
4698 put_nfs4_file(s->st_stid.sc_file);
4699 s->st_stid.sc_file = NULL;
4700 }
4701
4702 spin_lock(&nn->client_lock);
4703 last = oo->oo_last_closed_stid;
4704 oo->oo_last_closed_stid = s;
4705 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
4706 oo->oo_time = ktime_get_boottime_seconds();
4707 spin_unlock(&nn->client_lock);
4708 if (last)
4709 nfs4_put_stid(&last->st_stid);
4710 }
4711
4712 static noinline_for_stack struct nfs4_file *
nfsd4_file_hash_lookup(const struct svc_fh * fhp)4713 nfsd4_file_hash_lookup(const struct svc_fh *fhp)
4714 {
4715 struct inode *inode = d_inode(fhp->fh_dentry);
4716 struct rhlist_head *tmp, *list;
4717 struct nfs4_file *fi;
4718
4719 rcu_read_lock();
4720 list = rhltable_lookup(&nfs4_file_rhltable, &inode,
4721 nfs4_file_rhash_params);
4722 rhl_for_each_entry_rcu(fi, tmp, list, fi_rlist) {
4723 if (fh_match(&fi->fi_fhandle, &fhp->fh_handle)) {
4724 if (refcount_inc_not_zero(&fi->fi_ref)) {
4725 rcu_read_unlock();
4726 return fi;
4727 }
4728 }
4729 }
4730 rcu_read_unlock();
4731 return NULL;
4732 }
4733
4734 /*
4735 * On hash insertion, identify entries with the same inode but
4736 * distinct filehandles. They will all be on the list returned
4737 * by rhltable_lookup().
4738 *
4739 * inode->i_lock prevents racing insertions from adding an entry
4740 * for the same inode/fhp pair twice.
4741 */
4742 static noinline_for_stack struct nfs4_file *
nfsd4_file_hash_insert(struct nfs4_file * new,const struct svc_fh * fhp)4743 nfsd4_file_hash_insert(struct nfs4_file *new, const struct svc_fh *fhp)
4744 {
4745 struct inode *inode = d_inode(fhp->fh_dentry);
4746 struct rhlist_head *tmp, *list;
4747 struct nfs4_file *ret = NULL;
4748 bool alias_found = false;
4749 struct nfs4_file *fi;
4750 int err;
4751
4752 rcu_read_lock();
4753 spin_lock(&inode->i_lock);
4754
4755 list = rhltable_lookup(&nfs4_file_rhltable, &inode,
4756 nfs4_file_rhash_params);
4757 rhl_for_each_entry_rcu(fi, tmp, list, fi_rlist) {
4758 if (fh_match(&fi->fi_fhandle, &fhp->fh_handle)) {
4759 if (refcount_inc_not_zero(&fi->fi_ref))
4760 ret = fi;
4761 } else
4762 fi->fi_aliased = alias_found = true;
4763 }
4764 if (ret)
4765 goto out_unlock;
4766
4767 nfsd4_file_init(fhp, new);
4768 err = rhltable_insert(&nfs4_file_rhltable, &new->fi_rlist,
4769 nfs4_file_rhash_params);
4770 if (err)
4771 goto out_unlock;
4772
4773 new->fi_aliased = alias_found;
4774 ret = new;
4775
4776 out_unlock:
4777 spin_unlock(&inode->i_lock);
4778 rcu_read_unlock();
4779 return ret;
4780 }
4781
nfsd4_file_hash_remove(struct nfs4_file * fi)4782 static noinline_for_stack void nfsd4_file_hash_remove(struct nfs4_file *fi)
4783 {
4784 rhltable_remove(&nfs4_file_rhltable, &fi->fi_rlist,
4785 nfs4_file_rhash_params);
4786 }
4787
4788 /*
4789 * Called to check deny when READ with all zero stateid or
4790 * WRITE with all zero or all one stateid
4791 */
4792 static __be32
nfs4_share_conflict(struct svc_fh * current_fh,unsigned int deny_type)4793 nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
4794 {
4795 struct nfs4_file *fp;
4796 __be32 ret = nfs_ok;
4797
4798 fp = nfsd4_file_hash_lookup(current_fh);
4799 if (!fp)
4800 return ret;
4801
4802 /* Check for conflicting share reservations */
4803 spin_lock(&fp->fi_lock);
4804 if (fp->fi_share_deny & deny_type)
4805 ret = nfserr_locked;
4806 spin_unlock(&fp->fi_lock);
4807 put_nfs4_file(fp);
4808 return ret;
4809 }
4810
nfsd4_deleg_present(const struct inode * inode)4811 static bool nfsd4_deleg_present(const struct inode *inode)
4812 {
4813 struct file_lock_context *ctx = locks_inode_context(inode);
4814
4815 return ctx && !list_empty_careful(&ctx->flc_lease);
4816 }
4817
4818 /**
4819 * nfsd_wait_for_delegreturn - wait for delegations to be returned
4820 * @rqstp: the RPC transaction being executed
4821 * @inode: in-core inode of the file being waited for
4822 *
4823 * The timeout prevents deadlock if all nfsd threads happen to be
4824 * tied up waiting for returning delegations.
4825 *
4826 * Return values:
4827 * %true: delegation was returned
4828 * %false: timed out waiting for delegreturn
4829 */
nfsd_wait_for_delegreturn(struct svc_rqst * rqstp,struct inode * inode)4830 bool nfsd_wait_for_delegreturn(struct svc_rqst *rqstp, struct inode *inode)
4831 {
4832 long __maybe_unused timeo;
4833
4834 timeo = wait_var_event_timeout(inode, !nfsd4_deleg_present(inode),
4835 NFSD_DELEGRETURN_TIMEOUT);
4836 trace_nfsd_delegret_wakeup(rqstp, inode, timeo);
4837 return timeo > 0;
4838 }
4839
nfsd4_cb_recall_prepare(struct nfsd4_callback * cb)4840 static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
4841 {
4842 struct nfs4_delegation *dp = cb_to_delegation(cb);
4843 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
4844 nfsd_net_id);
4845
4846 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
4847
4848 /*
4849 * We can't do this in nfsd_break_deleg_cb because it is
4850 * already holding inode->i_lock.
4851 *
4852 * If the dl_time != 0, then we know that it has already been
4853 * queued for a lease break. Don't queue it again.
4854 */
4855 spin_lock(&state_lock);
4856 if (delegation_hashed(dp) && dp->dl_time == 0) {
4857 dp->dl_time = ktime_get_boottime_seconds();
4858 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
4859 }
4860 spin_unlock(&state_lock);
4861 }
4862
nfsd4_cb_recall_done(struct nfsd4_callback * cb,struct rpc_task * task)4863 static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
4864 struct rpc_task *task)
4865 {
4866 struct nfs4_delegation *dp = cb_to_delegation(cb);
4867
4868 trace_nfsd_cb_recall_done(&dp->dl_stid.sc_stateid, task);
4869
4870 if (dp->dl_stid.sc_type == NFS4_CLOSED_DELEG_STID ||
4871 dp->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID)
4872 return 1;
4873
4874 switch (task->tk_status) {
4875 case 0:
4876 return 1;
4877 case -NFS4ERR_DELAY:
4878 rpc_delay(task, 2 * HZ);
4879 return 0;
4880 case -EBADHANDLE:
4881 case -NFS4ERR_BAD_STATEID:
4882 /*
4883 * Race: client probably got cb_recall before open reply
4884 * granting delegation.
4885 */
4886 if (dp->dl_retries--) {
4887 rpc_delay(task, 2 * HZ);
4888 return 0;
4889 }
4890 fallthrough;
4891 default:
4892 return 1;
4893 }
4894 }
4895
nfsd4_cb_recall_release(struct nfsd4_callback * cb)4896 static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
4897 {
4898 struct nfs4_delegation *dp = cb_to_delegation(cb);
4899
4900 nfs4_put_stid(&dp->dl_stid);
4901 }
4902
4903 static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
4904 .prepare = nfsd4_cb_recall_prepare,
4905 .done = nfsd4_cb_recall_done,
4906 .release = nfsd4_cb_recall_release,
4907 };
4908
nfsd_break_one_deleg(struct nfs4_delegation * dp)4909 static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
4910 {
4911 /*
4912 * We're assuming the state code never drops its reference
4913 * without first removing the lease. Since we're in this lease
4914 * callback (and since the lease code is serialized by the
4915 * flc_lock) we know the server hasn't removed the lease yet, and
4916 * we know it's safe to take a reference.
4917 */
4918 refcount_inc(&dp->dl_stid.sc_count);
4919 WARN_ON_ONCE(!nfsd4_run_cb(&dp->dl_recall));
4920 }
4921
4922 /* Called from break_lease() with flc_lock held. */
4923 static bool
nfsd_break_deleg_cb(struct file_lock * fl)4924 nfsd_break_deleg_cb(struct file_lock *fl)
4925 {
4926 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
4927 struct nfs4_file *fp = dp->dl_stid.sc_file;
4928 struct nfs4_client *clp = dp->dl_stid.sc_client;
4929 struct nfsd_net *nn;
4930
4931 trace_nfsd_cb_recall(&dp->dl_stid);
4932
4933 dp->dl_recalled = true;
4934 atomic_inc(&clp->cl_delegs_in_recall);
4935 if (try_to_expire_client(clp)) {
4936 nn = net_generic(clp->net, nfsd_net_id);
4937 mod_delayed_work(laundry_wq, &nn->laundromat_work, 0);
4938 }
4939
4940 /*
4941 * We don't want the locks code to timeout the lease for us;
4942 * we'll remove it ourself if a delegation isn't returned
4943 * in time:
4944 */
4945 fl->fl_break_time = 0;
4946
4947 fp->fi_had_conflict = true;
4948 nfsd_break_one_deleg(dp);
4949 return false;
4950 }
4951
4952 /**
4953 * nfsd_breaker_owns_lease - Check if lease conflict was resolved
4954 * @fl: Lock state to check
4955 *
4956 * Return values:
4957 * %true: Lease conflict was resolved
4958 * %false: Lease conflict was not resolved.
4959 */
nfsd_breaker_owns_lease(struct file_lock * fl)4960 static bool nfsd_breaker_owns_lease(struct file_lock *fl)
4961 {
4962 struct nfs4_delegation *dl = fl->fl_owner;
4963 struct svc_rqst *rqst;
4964 struct nfs4_client *clp;
4965
4966 if (!i_am_nfsd())
4967 return false;
4968 rqst = kthread_data(current);
4969 /* Note rq_prog == NFS_ACL_PROGRAM is also possible: */
4970 if (rqst->rq_prog != NFS_PROGRAM || rqst->rq_vers < 4)
4971 return false;
4972 clp = *(rqst->rq_lease_breaker);
4973 return dl->dl_stid.sc_client == clp;
4974 }
4975
4976 static int
nfsd_change_deleg_cb(struct file_lock * onlist,int arg,struct list_head * dispose)4977 nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
4978 struct list_head *dispose)
4979 {
4980 struct nfs4_delegation *dp = (struct nfs4_delegation *)onlist->fl_owner;
4981 struct nfs4_client *clp = dp->dl_stid.sc_client;
4982
4983 if (arg & F_UNLCK) {
4984 if (dp->dl_recalled)
4985 atomic_dec(&clp->cl_delegs_in_recall);
4986 return lease_modify(onlist, arg, dispose);
4987 } else
4988 return -EAGAIN;
4989 }
4990
4991 static const struct lock_manager_operations nfsd_lease_mng_ops = {
4992 .lm_breaker_owns_lease = nfsd_breaker_owns_lease,
4993 .lm_break = nfsd_break_deleg_cb,
4994 .lm_change = nfsd_change_deleg_cb,
4995 };
4996
nfsd4_check_seqid(struct nfsd4_compound_state * cstate,struct nfs4_stateowner * so,u32 seqid)4997 static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
4998 {
4999 if (nfsd4_has_session(cstate))
5000 return nfs_ok;
5001 if (seqid == so->so_seqid - 1)
5002 return nfserr_replay_me;
5003 if (seqid == so->so_seqid)
5004 return nfs_ok;
5005 return nfserr_bad_seqid;
5006 }
5007
lookup_clientid(clientid_t * clid,bool sessions,struct nfsd_net * nn)5008 static struct nfs4_client *lookup_clientid(clientid_t *clid, bool sessions,
5009 struct nfsd_net *nn)
5010 {
5011 struct nfs4_client *found;
5012
5013 spin_lock(&nn->client_lock);
5014 found = find_confirmed_client(clid, sessions, nn);
5015 if (found)
5016 atomic_inc(&found->cl_rpc_users);
5017 spin_unlock(&nn->client_lock);
5018 return found;
5019 }
5020
set_client(clientid_t * clid,struct nfsd4_compound_state * cstate,struct nfsd_net * nn)5021 static __be32 set_client(clientid_t *clid,
5022 struct nfsd4_compound_state *cstate,
5023 struct nfsd_net *nn)
5024 {
5025 if (cstate->clp) {
5026 if (!same_clid(&cstate->clp->cl_clientid, clid))
5027 return nfserr_stale_clientid;
5028 return nfs_ok;
5029 }
5030 if (STALE_CLIENTID(clid, nn))
5031 return nfserr_stale_clientid;
5032 /*
5033 * We're in the 4.0 case (otherwise the SEQUENCE op would have
5034 * set cstate->clp), so session = false:
5035 */
5036 cstate->clp = lookup_clientid(clid, false, nn);
5037 if (!cstate->clp)
5038 return nfserr_expired;
5039 return nfs_ok;
5040 }
5041
5042 __be32
nfsd4_process_open1(struct nfsd4_compound_state * cstate,struct nfsd4_open * open,struct nfsd_net * nn)5043 nfsd4_process_open1(struct nfsd4_compound_state *cstate,
5044 struct nfsd4_open *open, struct nfsd_net *nn)
5045 {
5046 clientid_t *clientid = &open->op_clientid;
5047 struct nfs4_client *clp = NULL;
5048 unsigned int strhashval;
5049 struct nfs4_openowner *oo = NULL;
5050 __be32 status;
5051
5052 /*
5053 * In case we need it later, after we've already created the
5054 * file and don't want to risk a further failure:
5055 */
5056 open->op_file = nfsd4_alloc_file();
5057 if (open->op_file == NULL)
5058 return nfserr_jukebox;
5059
5060 status = set_client(clientid, cstate, nn);
5061 if (status)
5062 return status;
5063 clp = cstate->clp;
5064
5065 strhashval = ownerstr_hashval(&open->op_owner);
5066 oo = find_openstateowner_str(strhashval, open, clp);
5067 open->op_openowner = oo;
5068 if (!oo) {
5069 goto new_owner;
5070 }
5071 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
5072 /* Replace unconfirmed owners without checking for replay. */
5073 release_openowner(oo);
5074 open->op_openowner = NULL;
5075 goto new_owner;
5076 }
5077 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
5078 if (status)
5079 return status;
5080 goto alloc_stateid;
5081 new_owner:
5082 oo = alloc_init_open_stateowner(strhashval, open, cstate);
5083 if (oo == NULL)
5084 return nfserr_jukebox;
5085 open->op_openowner = oo;
5086 alloc_stateid:
5087 open->op_stp = nfs4_alloc_open_stateid(clp);
5088 if (!open->op_stp)
5089 return nfserr_jukebox;
5090
5091 if (nfsd4_has_session(cstate) &&
5092 (cstate->current_fh.fh_export->ex_flags & NFSEXP_PNFS)) {
5093 open->op_odstate = alloc_clnt_odstate(clp);
5094 if (!open->op_odstate)
5095 return nfserr_jukebox;
5096 }
5097
5098 return nfs_ok;
5099 }
5100
5101 static inline __be32
nfs4_check_delegmode(struct nfs4_delegation * dp,int flags)5102 nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
5103 {
5104 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
5105 return nfserr_openmode;
5106 else
5107 return nfs_ok;
5108 }
5109
share_access_to_flags(u32 share_access)5110 static int share_access_to_flags(u32 share_access)
5111 {
5112 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
5113 }
5114
find_deleg_stateid(struct nfs4_client * cl,stateid_t * s)5115 static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
5116 {
5117 struct nfs4_stid *ret;
5118
5119 ret = find_stateid_by_type(cl, s,
5120 NFS4_DELEG_STID|NFS4_REVOKED_DELEG_STID);
5121 if (!ret)
5122 return NULL;
5123 return delegstateid(ret);
5124 }
5125
nfsd4_is_deleg_cur(struct nfsd4_open * open)5126 static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
5127 {
5128 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
5129 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
5130 }
5131
5132 static __be32
nfs4_check_deleg(struct nfs4_client * cl,struct nfsd4_open * open,struct nfs4_delegation ** dp)5133 nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
5134 struct nfs4_delegation **dp)
5135 {
5136 int flags;
5137 __be32 status = nfserr_bad_stateid;
5138 struct nfs4_delegation *deleg;
5139
5140 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
5141 if (deleg == NULL)
5142 goto out;
5143 if (deleg->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID) {
5144 nfs4_put_stid(&deleg->dl_stid);
5145 if (cl->cl_minorversion)
5146 status = nfserr_deleg_revoked;
5147 goto out;
5148 }
5149 flags = share_access_to_flags(open->op_share_access);
5150 status = nfs4_check_delegmode(deleg, flags);
5151 if (status) {
5152 nfs4_put_stid(&deleg->dl_stid);
5153 goto out;
5154 }
5155 *dp = deleg;
5156 out:
5157 if (!nfsd4_is_deleg_cur(open))
5158 return nfs_ok;
5159 if (status)
5160 return status;
5161 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
5162 return nfs_ok;
5163 }
5164
nfs4_access_to_access(u32 nfs4_access)5165 static inline int nfs4_access_to_access(u32 nfs4_access)
5166 {
5167 int flags = 0;
5168
5169 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
5170 flags |= NFSD_MAY_READ;
5171 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
5172 flags |= NFSD_MAY_WRITE;
5173 return flags;
5174 }
5175
5176 static inline __be32
nfsd4_truncate(struct svc_rqst * rqstp,struct svc_fh * fh,struct nfsd4_open * open)5177 nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
5178 struct nfsd4_open *open)
5179 {
5180 struct iattr iattr = {
5181 .ia_valid = ATTR_SIZE,
5182 .ia_size = 0,
5183 };
5184 struct nfsd_attrs attrs = {
5185 .na_iattr = &iattr,
5186 };
5187 if (!open->op_truncate)
5188 return 0;
5189 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
5190 return nfserr_inval;
5191 return nfsd_setattr(rqstp, fh, &attrs, 0, (time64_t)0);
5192 }
5193
nfs4_get_vfs_file(struct svc_rqst * rqstp,struct nfs4_file * fp,struct svc_fh * cur_fh,struct nfs4_ol_stateid * stp,struct nfsd4_open * open,bool new_stp)5194 static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
5195 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
5196 struct nfsd4_open *open, bool new_stp)
5197 {
5198 struct nfsd_file *nf = NULL;
5199 __be32 status;
5200 int oflag = nfs4_access_to_omode(open->op_share_access);
5201 int access = nfs4_access_to_access(open->op_share_access);
5202 unsigned char old_access_bmap, old_deny_bmap;
5203
5204 spin_lock(&fp->fi_lock);
5205
5206 /*
5207 * Are we trying to set a deny mode that would conflict with
5208 * current access?
5209 */
5210 status = nfs4_file_check_deny(fp, open->op_share_deny);
5211 if (status != nfs_ok) {
5212 if (status != nfserr_share_denied) {
5213 spin_unlock(&fp->fi_lock);
5214 goto out;
5215 }
5216 if (nfs4_resolve_deny_conflicts_locked(fp, new_stp,
5217 stp, open->op_share_deny, false))
5218 status = nfserr_jukebox;
5219 spin_unlock(&fp->fi_lock);
5220 goto out;
5221 }
5222
5223 /* set access to the file */
5224 status = nfs4_file_get_access(fp, open->op_share_access);
5225 if (status != nfs_ok) {
5226 if (status != nfserr_share_denied) {
5227 spin_unlock(&fp->fi_lock);
5228 goto out;
5229 }
5230 if (nfs4_resolve_deny_conflicts_locked(fp, new_stp,
5231 stp, open->op_share_access, true))
5232 status = nfserr_jukebox;
5233 spin_unlock(&fp->fi_lock);
5234 goto out;
5235 }
5236
5237 /* Set access bits in stateid */
5238 old_access_bmap = stp->st_access_bmap;
5239 set_access(open->op_share_access, stp);
5240
5241 /* Set new deny mask */
5242 old_deny_bmap = stp->st_deny_bmap;
5243 set_deny(open->op_share_deny, stp);
5244 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
5245
5246 if (!fp->fi_fds[oflag]) {
5247 spin_unlock(&fp->fi_lock);
5248
5249 status = nfsd_file_acquire_opened(rqstp, cur_fh, access,
5250 open->op_filp, &nf);
5251 if (status != nfs_ok)
5252 goto out_put_access;
5253
5254 spin_lock(&fp->fi_lock);
5255 if (!fp->fi_fds[oflag]) {
5256 fp->fi_fds[oflag] = nf;
5257 nf = NULL;
5258 }
5259 }
5260 spin_unlock(&fp->fi_lock);
5261 if (nf)
5262 nfsd_file_put(nf);
5263
5264 status = nfserrno(nfsd_open_break_lease(cur_fh->fh_dentry->d_inode,
5265 access));
5266 if (status)
5267 goto out_put_access;
5268
5269 status = nfsd4_truncate(rqstp, cur_fh, open);
5270 if (status)
5271 goto out_put_access;
5272 out:
5273 return status;
5274 out_put_access:
5275 stp->st_access_bmap = old_access_bmap;
5276 nfs4_file_put_access(fp, open->op_share_access);
5277 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
5278 goto out;
5279 }
5280
5281 static __be32
nfs4_upgrade_open(struct svc_rqst * rqstp,struct nfs4_file * fp,struct svc_fh * cur_fh,struct nfs4_ol_stateid * stp,struct nfsd4_open * open)5282 nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp,
5283 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
5284 struct nfsd4_open *open)
5285 {
5286 __be32 status;
5287 unsigned char old_deny_bmap = stp->st_deny_bmap;
5288
5289 if (!test_access(open->op_share_access, stp))
5290 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open, false);
5291
5292 /* test and set deny mode */
5293 spin_lock(&fp->fi_lock);
5294 status = nfs4_file_check_deny(fp, open->op_share_deny);
5295 switch (status) {
5296 case nfs_ok:
5297 set_deny(open->op_share_deny, stp);
5298 fp->fi_share_deny |=
5299 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
5300 break;
5301 case nfserr_share_denied:
5302 if (nfs4_resolve_deny_conflicts_locked(fp, false,
5303 stp, open->op_share_deny, false))
5304 status = nfserr_jukebox;
5305 break;
5306 }
5307 spin_unlock(&fp->fi_lock);
5308
5309 if (status != nfs_ok)
5310 return status;
5311
5312 status = nfsd4_truncate(rqstp, cur_fh, open);
5313 if (status != nfs_ok)
5314 reset_union_bmap_deny(old_deny_bmap, stp);
5315 return status;
5316 }
5317
5318 /* Should we give out recallable state?: */
nfsd4_cb_channel_good(struct nfs4_client * clp)5319 static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
5320 {
5321 if (clp->cl_cb_state == NFSD4_CB_UP)
5322 return true;
5323 /*
5324 * In the sessions case, since we don't have to establish a
5325 * separate connection for callbacks, we assume it's OK
5326 * until we hear otherwise:
5327 */
5328 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
5329 }
5330
nfs4_alloc_init_lease(struct nfs4_delegation * dp,int flag)5331 static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp,
5332 int flag)
5333 {
5334 struct file_lock *fl;
5335
5336 fl = locks_alloc_lock();
5337 if (!fl)
5338 return NULL;
5339 fl->fl_lmops = &nfsd_lease_mng_ops;
5340 fl->fl_flags = FL_DELEG;
5341 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
5342 fl->fl_end = OFFSET_MAX;
5343 fl->fl_owner = (fl_owner_t)dp;
5344 fl->fl_pid = current->tgid;
5345 fl->fl_file = dp->dl_stid.sc_file->fi_deleg_file->nf_file;
5346 return fl;
5347 }
5348
nfsd4_check_conflicting_opens(struct nfs4_client * clp,struct nfs4_file * fp)5349 static int nfsd4_check_conflicting_opens(struct nfs4_client *clp,
5350 struct nfs4_file *fp)
5351 {
5352 struct nfs4_ol_stateid *st;
5353 struct file *f = fp->fi_deleg_file->nf_file;
5354 struct inode *ino = file_inode(f);
5355 int writes;
5356
5357 writes = atomic_read(&ino->i_writecount);
5358 if (!writes)
5359 return 0;
5360 /*
5361 * There could be multiple filehandles (hence multiple
5362 * nfs4_files) referencing this file, but that's not too
5363 * common; let's just give up in that case rather than
5364 * trying to go look up all the clients using that other
5365 * nfs4_file as well:
5366 */
5367 if (fp->fi_aliased)
5368 return -EAGAIN;
5369 /*
5370 * If there's a close in progress, make sure that we see it
5371 * clear any fi_fds[] entries before we see it decrement
5372 * i_writecount:
5373 */
5374 smp_mb__after_atomic();
5375
5376 if (fp->fi_fds[O_WRONLY])
5377 writes--;
5378 if (fp->fi_fds[O_RDWR])
5379 writes--;
5380 if (writes > 0)
5381 return -EAGAIN; /* There may be non-NFSv4 writers */
5382 /*
5383 * It's possible there are non-NFSv4 write opens in progress,
5384 * but if they haven't incremented i_writecount yet then they
5385 * also haven't called break lease yet; so, they'll break this
5386 * lease soon enough. So, all that's left to check for is NFSv4
5387 * opens:
5388 */
5389 spin_lock(&fp->fi_lock);
5390 list_for_each_entry(st, &fp->fi_stateids, st_perfile) {
5391 if (st->st_openstp == NULL /* it's an open */ &&
5392 access_permit_write(st) &&
5393 st->st_stid.sc_client != clp) {
5394 spin_unlock(&fp->fi_lock);
5395 return -EAGAIN;
5396 }
5397 }
5398 spin_unlock(&fp->fi_lock);
5399 /*
5400 * There's a small chance that we could be racing with another
5401 * NFSv4 open. However, any open that hasn't added itself to
5402 * the fi_stateids list also hasn't called break_lease yet; so,
5403 * they'll break this lease soon enough.
5404 */
5405 return 0;
5406 }
5407
5408 /*
5409 * It's possible that between opening the dentry and setting the delegation,
5410 * that it has been renamed or unlinked. Redo the lookup to verify that this
5411 * hasn't happened.
5412 */
5413 static int
nfsd4_verify_deleg_dentry(struct nfsd4_open * open,struct nfs4_file * fp,struct svc_fh * parent)5414 nfsd4_verify_deleg_dentry(struct nfsd4_open *open, struct nfs4_file *fp,
5415 struct svc_fh *parent)
5416 {
5417 struct svc_export *exp;
5418 struct dentry *child;
5419 __be32 err;
5420
5421 err = nfsd_lookup_dentry(open->op_rqstp, parent,
5422 open->op_fname, open->op_fnamelen,
5423 &exp, &child);
5424
5425 if (err)
5426 return -EAGAIN;
5427
5428 exp_put(exp);
5429 dput(child);
5430 if (child != file_dentry(fp->fi_deleg_file->nf_file))
5431 return -EAGAIN;
5432
5433 return 0;
5434 }
5435
5436 /*
5437 * We avoid breaking delegations held by a client due to its own activity, but
5438 * clearing setuid/setgid bits on a write is an implicit activity and the client
5439 * may not notice and continue using the old mode. Avoid giving out a delegation
5440 * on setuid/setgid files when the client is requesting an open for write.
5441 */
5442 static int
nfsd4_verify_setuid_write(struct nfsd4_open * open,struct nfsd_file * nf)5443 nfsd4_verify_setuid_write(struct nfsd4_open *open, struct nfsd_file *nf)
5444 {
5445 struct inode *inode = file_inode(nf->nf_file);
5446
5447 if ((open->op_share_access & NFS4_SHARE_ACCESS_WRITE) &&
5448 (inode->i_mode & (S_ISUID|S_ISGID)))
5449 return -EAGAIN;
5450 return 0;
5451 }
5452
5453 static struct nfs4_delegation *
nfs4_set_delegation(struct nfsd4_open * open,struct nfs4_ol_stateid * stp,struct svc_fh * parent)5454 nfs4_set_delegation(struct nfsd4_open *open, struct nfs4_ol_stateid *stp,
5455 struct svc_fh *parent)
5456 {
5457 int status = 0;
5458 struct nfs4_client *clp = stp->st_stid.sc_client;
5459 struct nfs4_file *fp = stp->st_stid.sc_file;
5460 struct nfs4_clnt_odstate *odstate = stp->st_clnt_odstate;
5461 struct nfs4_delegation *dp;
5462 struct nfsd_file *nf = NULL;
5463 struct file_lock *fl;
5464 u32 dl_type;
5465
5466 /*
5467 * The fi_had_conflict and nfs_get_existing_delegation checks
5468 * here are just optimizations; we'll need to recheck them at
5469 * the end:
5470 */
5471 if (fp->fi_had_conflict)
5472 return ERR_PTR(-EAGAIN);
5473
5474 /*
5475 * Try for a write delegation first. RFC8881 section 10.4 says:
5476 *
5477 * "An OPEN_DELEGATE_WRITE delegation allows the client to handle,
5478 * on its own, all opens."
5479 *
5480 * Furthermore the client can use a write delegation for most READ
5481 * operations as well, so we require a O_RDWR file here.
5482 *
5483 * Offer a write delegation in the case of a BOTH open, and ensure
5484 * we get the O_RDWR descriptor.
5485 */
5486 if ((open->op_share_access & NFS4_SHARE_ACCESS_BOTH) == NFS4_SHARE_ACCESS_BOTH) {
5487 nf = find_rw_file(fp);
5488 dl_type = NFS4_OPEN_DELEGATE_WRITE;
5489 }
5490
5491 /*
5492 * If the file is being opened O_RDONLY or we couldn't get a O_RDWR
5493 * file for some reason, then try for a read delegation instead.
5494 */
5495 if (!nf && (open->op_share_access & NFS4_SHARE_ACCESS_READ)) {
5496 nf = find_readable_file(fp);
5497 dl_type = NFS4_OPEN_DELEGATE_READ;
5498 }
5499
5500 if (!nf)
5501 return ERR_PTR(-EAGAIN);
5502
5503 spin_lock(&state_lock);
5504 spin_lock(&fp->fi_lock);
5505 if (nfs4_delegation_exists(clp, fp))
5506 status = -EAGAIN;
5507 else if (nfsd4_verify_setuid_write(open, nf))
5508 status = -EAGAIN;
5509 else if (!fp->fi_deleg_file) {
5510 fp->fi_deleg_file = nf;
5511 /* increment early to prevent fi_deleg_file from being
5512 * cleared */
5513 fp->fi_delegees = 1;
5514 nf = NULL;
5515 } else
5516 fp->fi_delegees++;
5517 spin_unlock(&fp->fi_lock);
5518 spin_unlock(&state_lock);
5519 if (nf)
5520 nfsd_file_put(nf);
5521 if (status)
5522 return ERR_PTR(status);
5523
5524 status = -ENOMEM;
5525 dp = alloc_init_deleg(clp, fp, odstate, dl_type);
5526 if (!dp)
5527 goto out_delegees;
5528
5529 fl = nfs4_alloc_init_lease(dp, dl_type);
5530 if (!fl)
5531 goto out_clnt_odstate;
5532
5533 status = vfs_setlease(fp->fi_deleg_file->nf_file, fl->fl_type, &fl, NULL);
5534 if (fl)
5535 locks_free_lock(fl);
5536 if (status)
5537 goto out_clnt_odstate;
5538
5539 if (parent) {
5540 status = nfsd4_verify_deleg_dentry(open, fp, parent);
5541 if (status)
5542 goto out_unlock;
5543 }
5544
5545 status = nfsd4_check_conflicting_opens(clp, fp);
5546 if (status)
5547 goto out_unlock;
5548
5549 /*
5550 * Now that the deleg is set, check again to ensure that nothing
5551 * raced in and changed the mode while we weren't lookng.
5552 */
5553 status = nfsd4_verify_setuid_write(open, fp->fi_deleg_file);
5554 if (status)
5555 goto out_unlock;
5556
5557 status = -EAGAIN;
5558 if (fp->fi_had_conflict)
5559 goto out_unlock;
5560
5561 spin_lock(&state_lock);
5562 spin_lock(&fp->fi_lock);
5563 status = hash_delegation_locked(dp, fp);
5564 spin_unlock(&fp->fi_lock);
5565 spin_unlock(&state_lock);
5566
5567 if (status)
5568 goto out_unlock;
5569
5570 return dp;
5571 out_unlock:
5572 vfs_setlease(fp->fi_deleg_file->nf_file, F_UNLCK, NULL, (void **)&dp);
5573 out_clnt_odstate:
5574 put_clnt_odstate(dp->dl_clnt_odstate);
5575 nfs4_put_stid(&dp->dl_stid);
5576 out_delegees:
5577 put_deleg_file(fp);
5578 return ERR_PTR(status);
5579 }
5580
nfsd4_open_deleg_none_ext(struct nfsd4_open * open,int status)5581 static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
5582 {
5583 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5584 if (status == -EAGAIN)
5585 open->op_why_no_deleg = WND4_CONTENTION;
5586 else {
5587 open->op_why_no_deleg = WND4_RESOURCE;
5588 switch (open->op_deleg_want) {
5589 case NFS4_SHARE_WANT_READ_DELEG:
5590 case NFS4_SHARE_WANT_WRITE_DELEG:
5591 case NFS4_SHARE_WANT_ANY_DELEG:
5592 break;
5593 case NFS4_SHARE_WANT_CANCEL:
5594 open->op_why_no_deleg = WND4_CANCELLED;
5595 break;
5596 case NFS4_SHARE_WANT_NO_DELEG:
5597 WARN_ON_ONCE(1);
5598 }
5599 }
5600 }
5601
5602 /*
5603 * The Linux NFS server does not offer write delegations to NFSv4.0
5604 * clients in order to avoid conflicts between write delegations and
5605 * GETATTRs requesting CHANGE or SIZE attributes.
5606 *
5607 * With NFSv4.1 and later minorversions, the SEQUENCE operation that
5608 * begins each COMPOUND contains a client ID. Delegation recall can
5609 * be avoided when the server recognizes the client sending a
5610 * GETATTR also holds write delegation it conflicts with.
5611 *
5612 * However, the NFSv4.0 protocol does not enable a server to
5613 * determine that a GETATTR originated from the client holding the
5614 * conflicting delegation versus coming from some other client. Per
5615 * RFC 7530 Section 16.7.5, the server must recall or send a
5616 * CB_GETATTR even when the GETATTR originates from the client that
5617 * holds the conflicting delegation.
5618 *
5619 * An NFSv4.0 client can trigger a pathological situation if it
5620 * always sends a DELEGRETURN preceded by a conflicting GETATTR in
5621 * the same COMPOUND. COMPOUND execution will always stop at the
5622 * GETATTR and the DELEGRETURN will never get executed. The server
5623 * eventually revokes the delegation, which can result in loss of
5624 * open or lock state.
5625 */
5626 static void
nfs4_open_delegation(struct nfsd4_open * open,struct nfs4_ol_stateid * stp,struct svc_fh * currentfh)5627 nfs4_open_delegation(struct nfsd4_open *open, struct nfs4_ol_stateid *stp,
5628 struct svc_fh *currentfh)
5629 {
5630 struct nfs4_delegation *dp;
5631 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
5632 struct nfs4_client *clp = stp->st_stid.sc_client;
5633 struct svc_fh *parent = NULL;
5634 int cb_up;
5635 int status = 0;
5636
5637 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
5638 open->op_recall = 0;
5639 switch (open->op_claim_type) {
5640 case NFS4_OPEN_CLAIM_PREVIOUS:
5641 if (!cb_up)
5642 open->op_recall = 1;
5643 break;
5644 case NFS4_OPEN_CLAIM_NULL:
5645 parent = currentfh;
5646 fallthrough;
5647 case NFS4_OPEN_CLAIM_FH:
5648 /*
5649 * Let's not give out any delegations till everyone's
5650 * had the chance to reclaim theirs, *and* until
5651 * NLM locks have all been reclaimed:
5652 */
5653 if (locks_in_grace(clp->net))
5654 goto out_no_deleg;
5655 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
5656 goto out_no_deleg;
5657 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE &&
5658 !clp->cl_minorversion)
5659 goto out_no_deleg;
5660 break;
5661 default:
5662 goto out_no_deleg;
5663 }
5664 dp = nfs4_set_delegation(open, stp, parent);
5665 if (IS_ERR(dp))
5666 goto out_no_deleg;
5667
5668 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
5669
5670 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE) {
5671 open->op_delegate_type = NFS4_OPEN_DELEGATE_WRITE;
5672 trace_nfsd_deleg_write(&dp->dl_stid.sc_stateid);
5673 } else {
5674 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
5675 trace_nfsd_deleg_read(&dp->dl_stid.sc_stateid);
5676 }
5677 nfs4_put_stid(&dp->dl_stid);
5678 return;
5679 out_no_deleg:
5680 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
5681 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
5682 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
5683 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
5684 open->op_recall = 1;
5685 }
5686
5687 /* 4.1 client asking for a delegation? */
5688 if (open->op_deleg_want)
5689 nfsd4_open_deleg_none_ext(open, status);
5690 return;
5691 }
5692
nfsd4_deleg_xgrade_none_ext(struct nfsd4_open * open,struct nfs4_delegation * dp)5693 static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
5694 struct nfs4_delegation *dp)
5695 {
5696 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
5697 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
5698 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5699 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
5700 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
5701 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
5702 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5703 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
5704 }
5705 /* Otherwise the client must be confused wanting a delegation
5706 * it already has, therefore we don't return
5707 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
5708 */
5709 }
5710
5711 /**
5712 * nfsd4_process_open2 - finish open processing
5713 * @rqstp: the RPC transaction being executed
5714 * @current_fh: NFSv4 COMPOUND's current filehandle
5715 * @open: OPEN arguments
5716 *
5717 * If successful, (1) truncate the file if open->op_truncate was
5718 * set, (2) set open->op_stateid, (3) set open->op_delegation.
5719 *
5720 * Returns %nfs_ok on success; otherwise an nfs4stat value in
5721 * network byte order is returned.
5722 */
5723 __be32
nfsd4_process_open2(struct svc_rqst * rqstp,struct svc_fh * current_fh,struct nfsd4_open * open)5724 nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
5725 {
5726 struct nfsd4_compoundres *resp = rqstp->rq_resp;
5727 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
5728 struct nfs4_file *fp = NULL;
5729 struct nfs4_ol_stateid *stp = NULL;
5730 struct nfs4_delegation *dp = NULL;
5731 __be32 status;
5732 bool new_stp = false;
5733
5734 /*
5735 * Lookup file; if found, lookup stateid and check open request,
5736 * and check for delegations in the process of being recalled.
5737 * If not found, create the nfs4_file struct
5738 */
5739 fp = nfsd4_file_hash_insert(open->op_file, current_fh);
5740 if (unlikely(!fp))
5741 return nfserr_jukebox;
5742 if (fp != open->op_file) {
5743 status = nfs4_check_deleg(cl, open, &dp);
5744 if (status)
5745 goto out;
5746 stp = nfsd4_find_and_lock_existing_open(fp, open);
5747 } else {
5748 open->op_file = NULL;
5749 status = nfserr_bad_stateid;
5750 if (nfsd4_is_deleg_cur(open))
5751 goto out;
5752 }
5753
5754 if (!stp) {
5755 stp = init_open_stateid(fp, open);
5756 if (!open->op_stp)
5757 new_stp = true;
5758 }
5759
5760 /*
5761 * OPEN the file, or upgrade an existing OPEN.
5762 * If truncate fails, the OPEN fails.
5763 *
5764 * stp is already locked.
5765 */
5766 if (!new_stp) {
5767 /* Stateid was found, this is an OPEN upgrade */
5768 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
5769 if (status) {
5770 mutex_unlock(&stp->st_mutex);
5771 goto out;
5772 }
5773 } else {
5774 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open, true);
5775 if (status) {
5776 stp->st_stid.sc_type = NFS4_CLOSED_STID;
5777 release_open_stateid(stp);
5778 mutex_unlock(&stp->st_mutex);
5779 goto out;
5780 }
5781
5782 stp->st_clnt_odstate = find_or_hash_clnt_odstate(fp,
5783 open->op_odstate);
5784 if (stp->st_clnt_odstate == open->op_odstate)
5785 open->op_odstate = NULL;
5786 }
5787
5788 nfs4_inc_and_copy_stateid(&open->op_stateid, &stp->st_stid);
5789 mutex_unlock(&stp->st_mutex);
5790
5791 if (nfsd4_has_session(&resp->cstate)) {
5792 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
5793 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5794 open->op_why_no_deleg = WND4_NOT_WANTED;
5795 goto nodeleg;
5796 }
5797 }
5798
5799 /*
5800 * Attempt to hand out a delegation. No error return, because the
5801 * OPEN succeeds even if we fail.
5802 */
5803 nfs4_open_delegation(open, stp, &resp->cstate.current_fh);
5804 nodeleg:
5805 status = nfs_ok;
5806 trace_nfsd_open(&stp->st_stid.sc_stateid);
5807 out:
5808 /* 4.1 client trying to upgrade/downgrade delegation? */
5809 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
5810 open->op_deleg_want)
5811 nfsd4_deleg_xgrade_none_ext(open, dp);
5812
5813 if (fp)
5814 put_nfs4_file(fp);
5815 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
5816 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
5817 /*
5818 * To finish the open response, we just need to set the rflags.
5819 */
5820 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
5821 if (nfsd4_has_session(&resp->cstate))
5822 open->op_rflags |= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK;
5823 else if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED))
5824 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
5825
5826 if (dp)
5827 nfs4_put_stid(&dp->dl_stid);
5828 if (stp)
5829 nfs4_put_stid(&stp->st_stid);
5830
5831 return status;
5832 }
5833
nfsd4_cleanup_open_state(struct nfsd4_compound_state * cstate,struct nfsd4_open * open)5834 void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
5835 struct nfsd4_open *open)
5836 {
5837 if (open->op_openowner) {
5838 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
5839
5840 nfsd4_cstate_assign_replay(cstate, so);
5841 nfs4_put_stateowner(so);
5842 }
5843 if (open->op_file)
5844 kmem_cache_free(file_slab, open->op_file);
5845 if (open->op_stp)
5846 nfs4_put_stid(&open->op_stp->st_stid);
5847 if (open->op_odstate)
5848 kmem_cache_free(odstate_slab, open->op_odstate);
5849 }
5850
5851 __be32
nfsd4_renew(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)5852 nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5853 union nfsd4_op_u *u)
5854 {
5855 clientid_t *clid = &u->renew;
5856 struct nfs4_client *clp;
5857 __be32 status;
5858 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
5859
5860 trace_nfsd_clid_renew(clid);
5861 status = set_client(clid, cstate, nn);
5862 if (status)
5863 return status;
5864 clp = cstate->clp;
5865 if (!list_empty(&clp->cl_delegations)
5866 && clp->cl_cb_state != NFSD4_CB_UP)
5867 return nfserr_cb_path_down;
5868 return nfs_ok;
5869 }
5870
5871 void
nfsd4_end_grace(struct nfsd_net * nn)5872 nfsd4_end_grace(struct nfsd_net *nn)
5873 {
5874 /* do nothing if grace period already ended */
5875 if (nn->grace_ended)
5876 return;
5877
5878 trace_nfsd_grace_complete(nn);
5879 nn->grace_ended = true;
5880 /*
5881 * If the server goes down again right now, an NFSv4
5882 * client will still be allowed to reclaim after it comes back up,
5883 * even if it hasn't yet had a chance to reclaim state this time.
5884 *
5885 */
5886 nfsd4_record_grace_done(nn);
5887 /*
5888 * At this point, NFSv4 clients can still reclaim. But if the
5889 * server crashes, any that have not yet reclaimed will be out
5890 * of luck on the next boot.
5891 *
5892 * (NFSv4.1+ clients are considered to have reclaimed once they
5893 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
5894 * have reclaimed after their first OPEN.)
5895 */
5896 locks_end_grace(&nn->nfsd4_manager);
5897 /*
5898 * At this point, and once lockd and/or any other containers
5899 * exit their grace period, further reclaims will fail and
5900 * regular locking can resume.
5901 */
5902 }
5903
5904 /*
5905 * If we've waited a lease period but there are still clients trying to
5906 * reclaim, wait a little longer to give them a chance to finish.
5907 */
clients_still_reclaiming(struct nfsd_net * nn)5908 static bool clients_still_reclaiming(struct nfsd_net *nn)
5909 {
5910 time64_t double_grace_period_end = nn->boot_time +
5911 2 * nn->nfsd4_lease;
5912
5913 if (nn->track_reclaim_completes &&
5914 atomic_read(&nn->nr_reclaim_complete) ==
5915 nn->reclaim_str_hashtbl_size)
5916 return false;
5917 if (!nn->somebody_reclaimed)
5918 return false;
5919 nn->somebody_reclaimed = false;
5920 /*
5921 * If we've given them *two* lease times to reclaim, and they're
5922 * still not done, give up:
5923 */
5924 if (ktime_get_boottime_seconds() > double_grace_period_end)
5925 return false;
5926 return true;
5927 }
5928
5929 struct laundry_time {
5930 time64_t cutoff;
5931 time64_t new_timeo;
5932 };
5933
state_expired(struct laundry_time * lt,time64_t last_refresh)5934 static bool state_expired(struct laundry_time *lt, time64_t last_refresh)
5935 {
5936 time64_t time_remaining;
5937
5938 if (last_refresh < lt->cutoff)
5939 return true;
5940 time_remaining = last_refresh - lt->cutoff;
5941 lt->new_timeo = min(lt->new_timeo, time_remaining);
5942 return false;
5943 }
5944
5945 #ifdef CONFIG_NFSD_V4_2_INTER_SSC
nfsd4_ssc_init_umount_work(struct nfsd_net * nn)5946 void nfsd4_ssc_init_umount_work(struct nfsd_net *nn)
5947 {
5948 spin_lock_init(&nn->nfsd_ssc_lock);
5949 INIT_LIST_HEAD(&nn->nfsd_ssc_mount_list);
5950 init_waitqueue_head(&nn->nfsd_ssc_waitq);
5951 }
5952 EXPORT_SYMBOL_GPL(nfsd4_ssc_init_umount_work);
5953
5954 /*
5955 * This is called when nfsd is being shutdown, after all inter_ssc
5956 * cleanup were done, to destroy the ssc delayed unmount list.
5957 */
nfsd4_ssc_shutdown_umount(struct nfsd_net * nn)5958 static void nfsd4_ssc_shutdown_umount(struct nfsd_net *nn)
5959 {
5960 struct nfsd4_ssc_umount_item *ni = NULL;
5961 struct nfsd4_ssc_umount_item *tmp;
5962
5963 spin_lock(&nn->nfsd_ssc_lock);
5964 list_for_each_entry_safe(ni, tmp, &nn->nfsd_ssc_mount_list, nsui_list) {
5965 list_del(&ni->nsui_list);
5966 spin_unlock(&nn->nfsd_ssc_lock);
5967 mntput(ni->nsui_vfsmount);
5968 kfree(ni);
5969 spin_lock(&nn->nfsd_ssc_lock);
5970 }
5971 spin_unlock(&nn->nfsd_ssc_lock);
5972 }
5973
nfsd4_ssc_expire_umount(struct nfsd_net * nn)5974 static void nfsd4_ssc_expire_umount(struct nfsd_net *nn)
5975 {
5976 bool do_wakeup = false;
5977 struct nfsd4_ssc_umount_item *ni = NULL;
5978 struct nfsd4_ssc_umount_item *tmp;
5979
5980 spin_lock(&nn->nfsd_ssc_lock);
5981 list_for_each_entry_safe(ni, tmp, &nn->nfsd_ssc_mount_list, nsui_list) {
5982 if (time_after(jiffies, ni->nsui_expire)) {
5983 if (refcount_read(&ni->nsui_refcnt) > 1)
5984 continue;
5985
5986 /* mark being unmount */
5987 ni->nsui_busy = true;
5988 spin_unlock(&nn->nfsd_ssc_lock);
5989 mntput(ni->nsui_vfsmount);
5990 spin_lock(&nn->nfsd_ssc_lock);
5991
5992 /* waiters need to start from begin of list */
5993 list_del(&ni->nsui_list);
5994 kfree(ni);
5995
5996 /* wakeup ssc_connect waiters */
5997 do_wakeup = true;
5998 continue;
5999 }
6000 break;
6001 }
6002 if (do_wakeup)
6003 wake_up_all(&nn->nfsd_ssc_waitq);
6004 spin_unlock(&nn->nfsd_ssc_lock);
6005 }
6006 #endif
6007
6008 /* Check if any lock belonging to this lockowner has any blockers */
6009 static bool
nfs4_lockowner_has_blockers(struct nfs4_lockowner * lo)6010 nfs4_lockowner_has_blockers(struct nfs4_lockowner *lo)
6011 {
6012 struct file_lock_context *ctx;
6013 struct nfs4_ol_stateid *stp;
6014 struct nfs4_file *nf;
6015
6016 list_for_each_entry(stp, &lo->lo_owner.so_stateids, st_perstateowner) {
6017 nf = stp->st_stid.sc_file;
6018 ctx = locks_inode_context(nf->fi_inode);
6019 if (!ctx)
6020 continue;
6021 if (locks_owner_has_blockers(ctx, lo))
6022 return true;
6023 }
6024 return false;
6025 }
6026
6027 static bool
nfs4_anylock_blockers(struct nfs4_client * clp)6028 nfs4_anylock_blockers(struct nfs4_client *clp)
6029 {
6030 int i;
6031 struct nfs4_stateowner *so;
6032 struct nfs4_lockowner *lo;
6033
6034 if (atomic_read(&clp->cl_delegs_in_recall))
6035 return true;
6036 spin_lock(&clp->cl_lock);
6037 for (i = 0; i < OWNER_HASH_SIZE; i++) {
6038 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[i],
6039 so_strhash) {
6040 if (so->so_is_open_owner)
6041 continue;
6042 lo = lockowner(so);
6043 if (nfs4_lockowner_has_blockers(lo)) {
6044 spin_unlock(&clp->cl_lock);
6045 return true;
6046 }
6047 }
6048 }
6049 spin_unlock(&clp->cl_lock);
6050 return false;
6051 }
6052
6053 static void
nfs4_get_client_reaplist(struct nfsd_net * nn,struct list_head * reaplist,struct laundry_time * lt)6054 nfs4_get_client_reaplist(struct nfsd_net *nn, struct list_head *reaplist,
6055 struct laundry_time *lt)
6056 {
6057 unsigned int maxreap, reapcnt = 0;
6058 struct list_head *pos, *next;
6059 struct nfs4_client *clp;
6060
6061 maxreap = (atomic_read(&nn->nfs4_client_count) >= nn->nfs4_max_clients) ?
6062 NFSD_CLIENT_MAX_TRIM_PER_RUN : 0;
6063 INIT_LIST_HEAD(reaplist);
6064 spin_lock(&nn->client_lock);
6065 list_for_each_safe(pos, next, &nn->client_lru) {
6066 clp = list_entry(pos, struct nfs4_client, cl_lru);
6067 if (clp->cl_state == NFSD4_EXPIRABLE)
6068 goto exp_client;
6069 if (!state_expired(lt, clp->cl_time))
6070 break;
6071 if (!atomic_read(&clp->cl_rpc_users)) {
6072 if (clp->cl_state == NFSD4_ACTIVE)
6073 atomic_inc(&nn->nfsd_courtesy_clients);
6074 clp->cl_state = NFSD4_COURTESY;
6075 }
6076 if (!client_has_state(clp))
6077 goto exp_client;
6078 if (!nfs4_anylock_blockers(clp))
6079 if (reapcnt >= maxreap)
6080 continue;
6081 exp_client:
6082 if (!mark_client_expired_locked(clp)) {
6083 list_add(&clp->cl_lru, reaplist);
6084 reapcnt++;
6085 }
6086 }
6087 spin_unlock(&nn->client_lock);
6088 }
6089
6090 static void
nfs4_get_courtesy_client_reaplist(struct nfsd_net * nn,struct list_head * reaplist)6091 nfs4_get_courtesy_client_reaplist(struct nfsd_net *nn,
6092 struct list_head *reaplist)
6093 {
6094 unsigned int maxreap = 0, reapcnt = 0;
6095 struct list_head *pos, *next;
6096 struct nfs4_client *clp;
6097
6098 maxreap = NFSD_CLIENT_MAX_TRIM_PER_RUN;
6099 INIT_LIST_HEAD(reaplist);
6100
6101 spin_lock(&nn->client_lock);
6102 list_for_each_safe(pos, next, &nn->client_lru) {
6103 clp = list_entry(pos, struct nfs4_client, cl_lru);
6104 if (clp->cl_state == NFSD4_ACTIVE)
6105 break;
6106 if (reapcnt >= maxreap)
6107 break;
6108 if (!mark_client_expired_locked(clp)) {
6109 list_add(&clp->cl_lru, reaplist);
6110 reapcnt++;
6111 }
6112 }
6113 spin_unlock(&nn->client_lock);
6114 }
6115
6116 static void
nfs4_process_client_reaplist(struct list_head * reaplist)6117 nfs4_process_client_reaplist(struct list_head *reaplist)
6118 {
6119 struct list_head *pos, *next;
6120 struct nfs4_client *clp;
6121
6122 list_for_each_safe(pos, next, reaplist) {
6123 clp = list_entry(pos, struct nfs4_client, cl_lru);
6124 trace_nfsd_clid_purged(&clp->cl_clientid);
6125 list_del_init(&clp->cl_lru);
6126 expire_client(clp);
6127 }
6128 }
6129
6130 static time64_t
nfs4_laundromat(struct nfsd_net * nn)6131 nfs4_laundromat(struct nfsd_net *nn)
6132 {
6133 struct nfs4_openowner *oo;
6134 struct nfs4_delegation *dp;
6135 struct nfs4_ol_stateid *stp;
6136 struct nfsd4_blocked_lock *nbl;
6137 struct list_head *pos, *next, reaplist;
6138 struct laundry_time lt = {
6139 .cutoff = ktime_get_boottime_seconds() - nn->nfsd4_lease,
6140 .new_timeo = nn->nfsd4_lease
6141 };
6142 struct nfs4_cpntf_state *cps;
6143 copy_stateid_t *cps_t;
6144 int i;
6145
6146 if (clients_still_reclaiming(nn)) {
6147 lt.new_timeo = 0;
6148 goto out;
6149 }
6150 nfsd4_end_grace(nn);
6151
6152 spin_lock(&nn->s2s_cp_lock);
6153 idr_for_each_entry(&nn->s2s_cp_stateids, cps_t, i) {
6154 cps = container_of(cps_t, struct nfs4_cpntf_state, cp_stateid);
6155 if (cps->cp_stateid.cs_type == NFS4_COPYNOTIFY_STID &&
6156 state_expired(<, cps->cpntf_time))
6157 _free_cpntf_state_locked(nn, cps);
6158 }
6159 spin_unlock(&nn->s2s_cp_lock);
6160 nfs4_get_client_reaplist(nn, &reaplist, <);
6161 nfs4_process_client_reaplist(&reaplist);
6162
6163 spin_lock(&state_lock);
6164 list_for_each_safe(pos, next, &nn->del_recall_lru) {
6165 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
6166 if (!state_expired(<, dp->dl_time))
6167 break;
6168 WARN_ON(!unhash_delegation_locked(dp));
6169 list_add(&dp->dl_recall_lru, &reaplist);
6170 }
6171 spin_unlock(&state_lock);
6172 while (!list_empty(&reaplist)) {
6173 dp = list_first_entry(&reaplist, struct nfs4_delegation,
6174 dl_recall_lru);
6175 list_del_init(&dp->dl_recall_lru);
6176 revoke_delegation(dp);
6177 }
6178
6179 spin_lock(&nn->client_lock);
6180 while (!list_empty(&nn->close_lru)) {
6181 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
6182 oo_close_lru);
6183 if (!state_expired(<, oo->oo_time))
6184 break;
6185 list_del_init(&oo->oo_close_lru);
6186 stp = oo->oo_last_closed_stid;
6187 oo->oo_last_closed_stid = NULL;
6188 spin_unlock(&nn->client_lock);
6189 nfs4_put_stid(&stp->st_stid);
6190 spin_lock(&nn->client_lock);
6191 }
6192 spin_unlock(&nn->client_lock);
6193
6194 /*
6195 * It's possible for a client to try and acquire an already held lock
6196 * that is being held for a long time, and then lose interest in it.
6197 * So, we clean out any un-revisited request after a lease period
6198 * under the assumption that the client is no longer interested.
6199 *
6200 * RFC5661, sec. 9.6 states that the client must not rely on getting
6201 * notifications and must continue to poll for locks, even when the
6202 * server supports them. Thus this shouldn't lead to clients blocking
6203 * indefinitely once the lock does become free.
6204 */
6205 BUG_ON(!list_empty(&reaplist));
6206 spin_lock(&nn->blocked_locks_lock);
6207 while (!list_empty(&nn->blocked_locks_lru)) {
6208 nbl = list_first_entry(&nn->blocked_locks_lru,
6209 struct nfsd4_blocked_lock, nbl_lru);
6210 if (!state_expired(<, nbl->nbl_time))
6211 break;
6212 list_move(&nbl->nbl_lru, &reaplist);
6213 list_del_init(&nbl->nbl_list);
6214 }
6215 spin_unlock(&nn->blocked_locks_lock);
6216
6217 while (!list_empty(&reaplist)) {
6218 nbl = list_first_entry(&reaplist,
6219 struct nfsd4_blocked_lock, nbl_lru);
6220 list_del_init(&nbl->nbl_lru);
6221 free_blocked_lock(nbl);
6222 }
6223 #ifdef CONFIG_NFSD_V4_2_INTER_SSC
6224 /* service the server-to-server copy delayed unmount list */
6225 nfsd4_ssc_expire_umount(nn);
6226 #endif
6227 out:
6228 return max_t(time64_t, lt.new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
6229 }
6230
6231 static void laundromat_main(struct work_struct *);
6232
6233 static void
laundromat_main(struct work_struct * laundry)6234 laundromat_main(struct work_struct *laundry)
6235 {
6236 time64_t t;
6237 struct delayed_work *dwork = to_delayed_work(laundry);
6238 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
6239 laundromat_work);
6240
6241 t = nfs4_laundromat(nn);
6242 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
6243 }
6244
6245 static void
courtesy_client_reaper(struct nfsd_net * nn)6246 courtesy_client_reaper(struct nfsd_net *nn)
6247 {
6248 struct list_head reaplist;
6249
6250 nfs4_get_courtesy_client_reaplist(nn, &reaplist);
6251 nfs4_process_client_reaplist(&reaplist);
6252 }
6253
6254 static void
deleg_reaper(struct nfsd_net * nn)6255 deleg_reaper(struct nfsd_net *nn)
6256 {
6257 struct list_head *pos, *next;
6258 struct nfs4_client *clp;
6259 struct list_head cblist;
6260
6261 INIT_LIST_HEAD(&cblist);
6262 spin_lock(&nn->client_lock);
6263 list_for_each_safe(pos, next, &nn->client_lru) {
6264 clp = list_entry(pos, struct nfs4_client, cl_lru);
6265 if (clp->cl_state != NFSD4_ACTIVE ||
6266 list_empty(&clp->cl_delegations) ||
6267 atomic_read(&clp->cl_delegs_in_recall) ||
6268 test_bit(NFSD4_CLIENT_CB_RECALL_ANY, &clp->cl_flags) ||
6269 (ktime_get_boottime_seconds() -
6270 clp->cl_ra_time < 5)) {
6271 continue;
6272 }
6273 list_add(&clp->cl_ra_cblist, &cblist);
6274
6275 /* release in nfsd4_cb_recall_any_release */
6276 atomic_inc(&clp->cl_rpc_users);
6277 set_bit(NFSD4_CLIENT_CB_RECALL_ANY, &clp->cl_flags);
6278 clp->cl_ra_time = ktime_get_boottime_seconds();
6279 }
6280 spin_unlock(&nn->client_lock);
6281
6282 while (!list_empty(&cblist)) {
6283 clp = list_first_entry(&cblist, struct nfs4_client,
6284 cl_ra_cblist);
6285 list_del_init(&clp->cl_ra_cblist);
6286 clp->cl_ra->ra_keep = 0;
6287 clp->cl_ra->ra_bmval[0] = BIT(RCA4_TYPE_MASK_RDATA_DLG);
6288 trace_nfsd_cb_recall_any(clp->cl_ra);
6289 nfsd4_run_cb(&clp->cl_ra->ra_cb);
6290 }
6291 }
6292
6293 static void
nfsd4_state_shrinker_worker(struct work_struct * work)6294 nfsd4_state_shrinker_worker(struct work_struct *work)
6295 {
6296 struct nfsd_net *nn = container_of(work, struct nfsd_net,
6297 nfsd_shrinker_work);
6298
6299 courtesy_client_reaper(nn);
6300 deleg_reaper(nn);
6301 }
6302
nfs4_check_fh(struct svc_fh * fhp,struct nfs4_stid * stp)6303 static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stid *stp)
6304 {
6305 if (!fh_match(&fhp->fh_handle, &stp->sc_file->fi_fhandle))
6306 return nfserr_bad_stateid;
6307 return nfs_ok;
6308 }
6309
6310 static
nfs4_check_openmode(struct nfs4_ol_stateid * stp,int flags)6311 __be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
6312 {
6313 __be32 status = nfserr_openmode;
6314
6315 /* For lock stateid's, we test the parent open, not the lock: */
6316 if (stp->st_openstp)
6317 stp = stp->st_openstp;
6318 if ((flags & WR_STATE) && !access_permit_write(stp))
6319 goto out;
6320 if ((flags & RD_STATE) && !access_permit_read(stp))
6321 goto out;
6322 status = nfs_ok;
6323 out:
6324 return status;
6325 }
6326
6327 static inline __be32
check_special_stateids(struct net * net,svc_fh * current_fh,stateid_t * stateid,int flags)6328 check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
6329 {
6330 if (ONE_STATEID(stateid) && (flags & RD_STATE))
6331 return nfs_ok;
6332 else if (opens_in_grace(net)) {
6333 /* Answer in remaining cases depends on existence of
6334 * conflicting state; so we must wait out the grace period. */
6335 return nfserr_grace;
6336 } else if (flags & WR_STATE)
6337 return nfs4_share_conflict(current_fh,
6338 NFS4_SHARE_DENY_WRITE);
6339 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
6340 return nfs4_share_conflict(current_fh,
6341 NFS4_SHARE_DENY_READ);
6342 }
6343
check_stateid_generation(stateid_t * in,stateid_t * ref,bool has_session)6344 static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
6345 {
6346 /*
6347 * When sessions are used the stateid generation number is ignored
6348 * when it is zero.
6349 */
6350 if (has_session && in->si_generation == 0)
6351 return nfs_ok;
6352
6353 if (in->si_generation == ref->si_generation)
6354 return nfs_ok;
6355
6356 /* If the client sends us a stateid from the future, it's buggy: */
6357 if (nfsd4_stateid_generation_after(in, ref))
6358 return nfserr_bad_stateid;
6359 /*
6360 * However, we could see a stateid from the past, even from a
6361 * non-buggy client. For example, if the client sends a lock
6362 * while some IO is outstanding, the lock may bump si_generation
6363 * while the IO is still in flight. The client could avoid that
6364 * situation by waiting for responses on all the IO requests,
6365 * but better performance may result in retrying IO that
6366 * receives an old_stateid error if requests are rarely
6367 * reordered in flight:
6368 */
6369 return nfserr_old_stateid;
6370 }
6371
nfsd4_stid_check_stateid_generation(stateid_t * in,struct nfs4_stid * s,bool has_session)6372 static __be32 nfsd4_stid_check_stateid_generation(stateid_t *in, struct nfs4_stid *s, bool has_session)
6373 {
6374 __be32 ret;
6375
6376 spin_lock(&s->sc_lock);
6377 ret = nfsd4_verify_open_stid(s);
6378 if (ret == nfs_ok)
6379 ret = check_stateid_generation(in, &s->sc_stateid, has_session);
6380 spin_unlock(&s->sc_lock);
6381 return ret;
6382 }
6383
nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid * ols)6384 static __be32 nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid *ols)
6385 {
6386 if (ols->st_stateowner->so_is_open_owner &&
6387 !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
6388 return nfserr_bad_stateid;
6389 return nfs_ok;
6390 }
6391
nfsd4_validate_stateid(struct nfs4_client * cl,stateid_t * stateid)6392 static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
6393 {
6394 struct nfs4_stid *s;
6395 __be32 status = nfserr_bad_stateid;
6396
6397 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
6398 CLOSE_STATEID(stateid))
6399 return status;
6400 spin_lock(&cl->cl_lock);
6401 s = find_stateid_locked(cl, stateid);
6402 if (!s)
6403 goto out_unlock;
6404 status = nfsd4_stid_check_stateid_generation(stateid, s, 1);
6405 if (status)
6406 goto out_unlock;
6407 switch (s->sc_type) {
6408 case NFS4_DELEG_STID:
6409 status = nfs_ok;
6410 break;
6411 case NFS4_REVOKED_DELEG_STID:
6412 status = nfserr_deleg_revoked;
6413 break;
6414 case NFS4_OPEN_STID:
6415 case NFS4_LOCK_STID:
6416 status = nfsd4_check_openowner_confirmed(openlockstateid(s));
6417 break;
6418 default:
6419 printk("unknown stateid type %x\n", s->sc_type);
6420 fallthrough;
6421 case NFS4_CLOSED_STID:
6422 case NFS4_CLOSED_DELEG_STID:
6423 status = nfserr_bad_stateid;
6424 }
6425 out_unlock:
6426 spin_unlock(&cl->cl_lock);
6427 return status;
6428 }
6429
6430 __be32
nfsd4_lookup_stateid(struct nfsd4_compound_state * cstate,stateid_t * stateid,unsigned char typemask,struct nfs4_stid ** s,struct nfsd_net * nn)6431 nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
6432 stateid_t *stateid, unsigned char typemask,
6433 struct nfs4_stid **s, struct nfsd_net *nn)
6434 {
6435 __be32 status;
6436 struct nfs4_stid *stid;
6437 bool return_revoked = false;
6438
6439 /*
6440 * only return revoked delegations if explicitly asked.
6441 * otherwise we report revoked or bad_stateid status.
6442 */
6443 if (typemask & NFS4_REVOKED_DELEG_STID)
6444 return_revoked = true;
6445 else if (typemask & NFS4_DELEG_STID)
6446 typemask |= NFS4_REVOKED_DELEG_STID;
6447
6448 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
6449 CLOSE_STATEID(stateid))
6450 return nfserr_bad_stateid;
6451 status = set_client(&stateid->si_opaque.so_clid, cstate, nn);
6452 if (status == nfserr_stale_clientid) {
6453 if (cstate->session)
6454 return nfserr_bad_stateid;
6455 return nfserr_stale_stateid;
6456 }
6457 if (status)
6458 return status;
6459 stid = find_stateid_by_type(cstate->clp, stateid, typemask);
6460 if (!stid)
6461 return nfserr_bad_stateid;
6462 if ((stid->sc_type == NFS4_REVOKED_DELEG_STID) && !return_revoked) {
6463 nfs4_put_stid(stid);
6464 if (cstate->minorversion)
6465 return nfserr_deleg_revoked;
6466 return nfserr_bad_stateid;
6467 }
6468 *s = stid;
6469 return nfs_ok;
6470 }
6471
6472 static struct nfsd_file *
nfs4_find_file(struct nfs4_stid * s,int flags)6473 nfs4_find_file(struct nfs4_stid *s, int flags)
6474 {
6475 struct nfsd_file *ret = NULL;
6476
6477 if (!s)
6478 return NULL;
6479
6480 switch (s->sc_type) {
6481 case NFS4_DELEG_STID:
6482 spin_lock(&s->sc_file->fi_lock);
6483 ret = nfsd_file_get(s->sc_file->fi_deleg_file);
6484 spin_unlock(&s->sc_file->fi_lock);
6485 break;
6486 case NFS4_OPEN_STID:
6487 case NFS4_LOCK_STID:
6488 if (flags & RD_STATE)
6489 ret = find_readable_file(s->sc_file);
6490 else
6491 ret = find_writeable_file(s->sc_file);
6492 }
6493
6494 return ret;
6495 }
6496
6497 static __be32
nfs4_check_olstateid(struct nfs4_ol_stateid * ols,int flags)6498 nfs4_check_olstateid(struct nfs4_ol_stateid *ols, int flags)
6499 {
6500 __be32 status;
6501
6502 status = nfsd4_check_openowner_confirmed(ols);
6503 if (status)
6504 return status;
6505 return nfs4_check_openmode(ols, flags);
6506 }
6507
6508 static __be32
nfs4_check_file(struct svc_rqst * rqstp,struct svc_fh * fhp,struct nfs4_stid * s,struct nfsd_file ** nfp,int flags)6509 nfs4_check_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfs4_stid *s,
6510 struct nfsd_file **nfp, int flags)
6511 {
6512 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE;
6513 struct nfsd_file *nf;
6514 __be32 status;
6515
6516 nf = nfs4_find_file(s, flags);
6517 if (nf) {
6518 status = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
6519 acc | NFSD_MAY_OWNER_OVERRIDE);
6520 if (status) {
6521 nfsd_file_put(nf);
6522 goto out;
6523 }
6524 } else {
6525 status = nfsd_file_acquire(rqstp, fhp, acc, &nf);
6526 if (status)
6527 return status;
6528 }
6529 *nfp = nf;
6530 out:
6531 return status;
6532 }
6533 static void
_free_cpntf_state_locked(struct nfsd_net * nn,struct nfs4_cpntf_state * cps)6534 _free_cpntf_state_locked(struct nfsd_net *nn, struct nfs4_cpntf_state *cps)
6535 {
6536 WARN_ON_ONCE(cps->cp_stateid.cs_type != NFS4_COPYNOTIFY_STID);
6537 if (!refcount_dec_and_test(&cps->cp_stateid.cs_count))
6538 return;
6539 list_del(&cps->cp_list);
6540 idr_remove(&nn->s2s_cp_stateids,
6541 cps->cp_stateid.cs_stid.si_opaque.so_id);
6542 kfree(cps);
6543 }
6544 /*
6545 * A READ from an inter server to server COPY will have a
6546 * copy stateid. Look up the copy notify stateid from the
6547 * idr structure and take a reference on it.
6548 */
manage_cpntf_state(struct nfsd_net * nn,stateid_t * st,struct nfs4_client * clp,struct nfs4_cpntf_state ** cps)6549 __be32 manage_cpntf_state(struct nfsd_net *nn, stateid_t *st,
6550 struct nfs4_client *clp,
6551 struct nfs4_cpntf_state **cps)
6552 {
6553 copy_stateid_t *cps_t;
6554 struct nfs4_cpntf_state *state = NULL;
6555
6556 if (st->si_opaque.so_clid.cl_id != nn->s2s_cp_cl_id)
6557 return nfserr_bad_stateid;
6558 spin_lock(&nn->s2s_cp_lock);
6559 cps_t = idr_find(&nn->s2s_cp_stateids, st->si_opaque.so_id);
6560 if (cps_t) {
6561 state = container_of(cps_t, struct nfs4_cpntf_state,
6562 cp_stateid);
6563 if (state->cp_stateid.cs_type != NFS4_COPYNOTIFY_STID) {
6564 state = NULL;
6565 goto unlock;
6566 }
6567 if (!clp)
6568 refcount_inc(&state->cp_stateid.cs_count);
6569 else
6570 _free_cpntf_state_locked(nn, state);
6571 }
6572 unlock:
6573 spin_unlock(&nn->s2s_cp_lock);
6574 if (!state)
6575 return nfserr_bad_stateid;
6576 if (!clp && state)
6577 *cps = state;
6578 return 0;
6579 }
6580
find_cpntf_state(struct nfsd_net * nn,stateid_t * st,struct nfs4_stid ** stid)6581 static __be32 find_cpntf_state(struct nfsd_net *nn, stateid_t *st,
6582 struct nfs4_stid **stid)
6583 {
6584 __be32 status;
6585 struct nfs4_cpntf_state *cps = NULL;
6586 struct nfs4_client *found;
6587
6588 status = manage_cpntf_state(nn, st, NULL, &cps);
6589 if (status)
6590 return status;
6591
6592 cps->cpntf_time = ktime_get_boottime_seconds();
6593
6594 status = nfserr_expired;
6595 found = lookup_clientid(&cps->cp_p_clid, true, nn);
6596 if (!found)
6597 goto out;
6598
6599 *stid = find_stateid_by_type(found, &cps->cp_p_stateid,
6600 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID);
6601 if (*stid)
6602 status = nfs_ok;
6603 else
6604 status = nfserr_bad_stateid;
6605
6606 put_client_renew(found);
6607 out:
6608 nfs4_put_cpntf_state(nn, cps);
6609 return status;
6610 }
6611
nfs4_put_cpntf_state(struct nfsd_net * nn,struct nfs4_cpntf_state * cps)6612 void nfs4_put_cpntf_state(struct nfsd_net *nn, struct nfs4_cpntf_state *cps)
6613 {
6614 spin_lock(&nn->s2s_cp_lock);
6615 _free_cpntf_state_locked(nn, cps);
6616 spin_unlock(&nn->s2s_cp_lock);
6617 }
6618
6619 /**
6620 * nfs4_preprocess_stateid_op - find and prep stateid for an operation
6621 * @rqstp: incoming request from client
6622 * @cstate: current compound state
6623 * @fhp: filehandle associated with requested stateid
6624 * @stateid: stateid (provided by client)
6625 * @flags: flags describing type of operation to be done
6626 * @nfp: optional nfsd_file return pointer (may be NULL)
6627 * @cstid: optional returned nfs4_stid pointer (may be NULL)
6628 *
6629 * Given info from the client, look up a nfs4_stid for the operation. On
6630 * success, it returns a reference to the nfs4_stid and/or the nfsd_file
6631 * associated with it.
6632 */
6633 __be32
nfs4_preprocess_stateid_op(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,struct svc_fh * fhp,stateid_t * stateid,int flags,struct nfsd_file ** nfp,struct nfs4_stid ** cstid)6634 nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
6635 struct nfsd4_compound_state *cstate, struct svc_fh *fhp,
6636 stateid_t *stateid, int flags, struct nfsd_file **nfp,
6637 struct nfs4_stid **cstid)
6638 {
6639 struct net *net = SVC_NET(rqstp);
6640 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
6641 struct nfs4_stid *s = NULL;
6642 __be32 status;
6643
6644 if (nfp)
6645 *nfp = NULL;
6646
6647 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
6648 if (cstid)
6649 status = nfserr_bad_stateid;
6650 else
6651 status = check_special_stateids(net, fhp, stateid,
6652 flags);
6653 goto done;
6654 }
6655
6656 status = nfsd4_lookup_stateid(cstate, stateid,
6657 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
6658 &s, nn);
6659 if (status == nfserr_bad_stateid)
6660 status = find_cpntf_state(nn, stateid, &s);
6661 if (status)
6662 return status;
6663 status = nfsd4_stid_check_stateid_generation(stateid, s,
6664 nfsd4_has_session(cstate));
6665 if (status)
6666 goto out;
6667
6668 switch (s->sc_type) {
6669 case NFS4_DELEG_STID:
6670 status = nfs4_check_delegmode(delegstateid(s), flags);
6671 break;
6672 case NFS4_OPEN_STID:
6673 case NFS4_LOCK_STID:
6674 status = nfs4_check_olstateid(openlockstateid(s), flags);
6675 break;
6676 default:
6677 status = nfserr_bad_stateid;
6678 break;
6679 }
6680 if (status)
6681 goto out;
6682 status = nfs4_check_fh(fhp, s);
6683
6684 done:
6685 if (status == nfs_ok && nfp)
6686 status = nfs4_check_file(rqstp, fhp, s, nfp, flags);
6687 out:
6688 if (s) {
6689 if (!status && cstid)
6690 *cstid = s;
6691 else
6692 nfs4_put_stid(s);
6693 }
6694 return status;
6695 }
6696
6697 /*
6698 * Test if the stateid is valid
6699 */
6700 __be32
nfsd4_test_stateid(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)6701 nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
6702 union nfsd4_op_u *u)
6703 {
6704 struct nfsd4_test_stateid *test_stateid = &u->test_stateid;
6705 struct nfsd4_test_stateid_id *stateid;
6706 struct nfs4_client *cl = cstate->clp;
6707
6708 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
6709 stateid->ts_id_status =
6710 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
6711
6712 return nfs_ok;
6713 }
6714
6715 static __be32
nfsd4_free_lock_stateid(stateid_t * stateid,struct nfs4_stid * s)6716 nfsd4_free_lock_stateid(stateid_t *stateid, struct nfs4_stid *s)
6717 {
6718 struct nfs4_ol_stateid *stp = openlockstateid(s);
6719 __be32 ret;
6720
6721 ret = nfsd4_lock_ol_stateid(stp);
6722 if (ret)
6723 goto out_put_stid;
6724
6725 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
6726 if (ret)
6727 goto out;
6728
6729 ret = nfserr_locks_held;
6730 if (check_for_locks(stp->st_stid.sc_file,
6731 lockowner(stp->st_stateowner)))
6732 goto out;
6733
6734 release_lock_stateid(stp);
6735 ret = nfs_ok;
6736
6737 out:
6738 mutex_unlock(&stp->st_mutex);
6739 out_put_stid:
6740 nfs4_put_stid(s);
6741 return ret;
6742 }
6743
6744 __be32
nfsd4_free_stateid(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)6745 nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
6746 union nfsd4_op_u *u)
6747 {
6748 struct nfsd4_free_stateid *free_stateid = &u->free_stateid;
6749 stateid_t *stateid = &free_stateid->fr_stateid;
6750 struct nfs4_stid *s;
6751 struct nfs4_delegation *dp;
6752 struct nfs4_client *cl = cstate->clp;
6753 __be32 ret = nfserr_bad_stateid;
6754
6755 spin_lock(&cl->cl_lock);
6756 s = find_stateid_locked(cl, stateid);
6757 if (!s)
6758 goto out_unlock;
6759 spin_lock(&s->sc_lock);
6760 switch (s->sc_type) {
6761 case NFS4_DELEG_STID:
6762 ret = nfserr_locks_held;
6763 break;
6764 case NFS4_OPEN_STID:
6765 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
6766 if (ret)
6767 break;
6768 ret = nfserr_locks_held;
6769 break;
6770 case NFS4_LOCK_STID:
6771 spin_unlock(&s->sc_lock);
6772 refcount_inc(&s->sc_count);
6773 spin_unlock(&cl->cl_lock);
6774 ret = nfsd4_free_lock_stateid(stateid, s);
6775 goto out;
6776 case NFS4_REVOKED_DELEG_STID:
6777 spin_unlock(&s->sc_lock);
6778 dp = delegstateid(s);
6779 list_del_init(&dp->dl_recall_lru);
6780 spin_unlock(&cl->cl_lock);
6781 nfs4_put_stid(s);
6782 ret = nfs_ok;
6783 goto out;
6784 /* Default falls through and returns nfserr_bad_stateid */
6785 }
6786 spin_unlock(&s->sc_lock);
6787 out_unlock:
6788 spin_unlock(&cl->cl_lock);
6789 out:
6790 return ret;
6791 }
6792
6793 static inline int
setlkflg(int type)6794 setlkflg (int type)
6795 {
6796 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
6797 RD_STATE : WR_STATE;
6798 }
6799
nfs4_seqid_op_checks(struct nfsd4_compound_state * cstate,stateid_t * stateid,u32 seqid,struct nfs4_ol_stateid * stp)6800 static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
6801 {
6802 struct svc_fh *current_fh = &cstate->current_fh;
6803 struct nfs4_stateowner *sop = stp->st_stateowner;
6804 __be32 status;
6805
6806 status = nfsd4_check_seqid(cstate, sop, seqid);
6807 if (status)
6808 return status;
6809 status = nfsd4_lock_ol_stateid(stp);
6810 if (status != nfs_ok)
6811 return status;
6812 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
6813 if (status == nfs_ok)
6814 status = nfs4_check_fh(current_fh, &stp->st_stid);
6815 if (status != nfs_ok)
6816 mutex_unlock(&stp->st_mutex);
6817 return status;
6818 }
6819
6820 /**
6821 * nfs4_preprocess_seqid_op - find and prep an ol_stateid for a seqid-morphing op
6822 * @cstate: compund state
6823 * @seqid: seqid (provided by client)
6824 * @stateid: stateid (provided by client)
6825 * @typemask: mask of allowable types for this operation
6826 * @stpp: return pointer for the stateid found
6827 * @nn: net namespace for request
6828 *
6829 * Given a stateid+seqid from a client, look up an nfs4_ol_stateid and
6830 * return it in @stpp. On a nfs_ok return, the returned stateid will
6831 * have its st_mutex locked.
6832 */
6833 static __be32
nfs4_preprocess_seqid_op(struct nfsd4_compound_state * cstate,u32 seqid,stateid_t * stateid,char typemask,struct nfs4_ol_stateid ** stpp,struct nfsd_net * nn)6834 nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
6835 stateid_t *stateid, char typemask,
6836 struct nfs4_ol_stateid **stpp,
6837 struct nfsd_net *nn)
6838 {
6839 __be32 status;
6840 struct nfs4_stid *s;
6841 struct nfs4_ol_stateid *stp = NULL;
6842
6843 trace_nfsd_preprocess(seqid, stateid);
6844
6845 *stpp = NULL;
6846 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
6847 if (status)
6848 return status;
6849 stp = openlockstateid(s);
6850 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
6851
6852 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
6853 if (!status)
6854 *stpp = stp;
6855 else
6856 nfs4_put_stid(&stp->st_stid);
6857 return status;
6858 }
6859
nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state * cstate,u32 seqid,stateid_t * stateid,struct nfs4_ol_stateid ** stpp,struct nfsd_net * nn)6860 static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
6861 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
6862 {
6863 __be32 status;
6864 struct nfs4_openowner *oo;
6865 struct nfs4_ol_stateid *stp;
6866
6867 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
6868 NFS4_OPEN_STID, &stp, nn);
6869 if (status)
6870 return status;
6871 oo = openowner(stp->st_stateowner);
6872 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
6873 mutex_unlock(&stp->st_mutex);
6874 nfs4_put_stid(&stp->st_stid);
6875 return nfserr_bad_stateid;
6876 }
6877 *stpp = stp;
6878 return nfs_ok;
6879 }
6880
6881 __be32
nfsd4_open_confirm(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)6882 nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
6883 union nfsd4_op_u *u)
6884 {
6885 struct nfsd4_open_confirm *oc = &u->open_confirm;
6886 __be32 status;
6887 struct nfs4_openowner *oo;
6888 struct nfs4_ol_stateid *stp;
6889 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6890
6891 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
6892 cstate->current_fh.fh_dentry);
6893
6894 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
6895 if (status)
6896 return status;
6897
6898 status = nfs4_preprocess_seqid_op(cstate,
6899 oc->oc_seqid, &oc->oc_req_stateid,
6900 NFS4_OPEN_STID, &stp, nn);
6901 if (status)
6902 goto out;
6903 oo = openowner(stp->st_stateowner);
6904 status = nfserr_bad_stateid;
6905 if (oo->oo_flags & NFS4_OO_CONFIRMED) {
6906 mutex_unlock(&stp->st_mutex);
6907 goto put_stateid;
6908 }
6909 oo->oo_flags |= NFS4_OO_CONFIRMED;
6910 nfs4_inc_and_copy_stateid(&oc->oc_resp_stateid, &stp->st_stid);
6911 mutex_unlock(&stp->st_mutex);
6912 trace_nfsd_open_confirm(oc->oc_seqid, &stp->st_stid.sc_stateid);
6913 nfsd4_client_record_create(oo->oo_owner.so_client);
6914 status = nfs_ok;
6915 put_stateid:
6916 nfs4_put_stid(&stp->st_stid);
6917 out:
6918 nfsd4_bump_seqid(cstate, status);
6919 return status;
6920 }
6921
nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid * stp,u32 access)6922 static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
6923 {
6924 if (!test_access(access, stp))
6925 return;
6926 nfs4_file_put_access(stp->st_stid.sc_file, access);
6927 clear_access(access, stp);
6928 }
6929
nfs4_stateid_downgrade(struct nfs4_ol_stateid * stp,u32 to_access)6930 static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
6931 {
6932 switch (to_access) {
6933 case NFS4_SHARE_ACCESS_READ:
6934 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
6935 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
6936 break;
6937 case NFS4_SHARE_ACCESS_WRITE:
6938 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
6939 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
6940 break;
6941 case NFS4_SHARE_ACCESS_BOTH:
6942 break;
6943 default:
6944 WARN_ON_ONCE(1);
6945 }
6946 }
6947
6948 __be32
nfsd4_open_downgrade(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)6949 nfsd4_open_downgrade(struct svc_rqst *rqstp,
6950 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
6951 {
6952 struct nfsd4_open_downgrade *od = &u->open_downgrade;
6953 __be32 status;
6954 struct nfs4_ol_stateid *stp;
6955 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6956
6957 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
6958 cstate->current_fh.fh_dentry);
6959
6960 /* We don't yet support WANT bits: */
6961 if (od->od_deleg_want)
6962 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
6963 od->od_deleg_want);
6964
6965 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
6966 &od->od_stateid, &stp, nn);
6967 if (status)
6968 goto out;
6969 status = nfserr_inval;
6970 if (!test_access(od->od_share_access, stp)) {
6971 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
6972 stp->st_access_bmap, od->od_share_access);
6973 goto put_stateid;
6974 }
6975 if (!test_deny(od->od_share_deny, stp)) {
6976 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
6977 stp->st_deny_bmap, od->od_share_deny);
6978 goto put_stateid;
6979 }
6980 nfs4_stateid_downgrade(stp, od->od_share_access);
6981 reset_union_bmap_deny(od->od_share_deny, stp);
6982 nfs4_inc_and_copy_stateid(&od->od_stateid, &stp->st_stid);
6983 status = nfs_ok;
6984 put_stateid:
6985 mutex_unlock(&stp->st_mutex);
6986 nfs4_put_stid(&stp->st_stid);
6987 out:
6988 nfsd4_bump_seqid(cstate, status);
6989 return status;
6990 }
6991
nfsd4_close_open_stateid(struct nfs4_ol_stateid * s)6992 static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
6993 {
6994 struct nfs4_client *clp = s->st_stid.sc_client;
6995 bool unhashed;
6996 LIST_HEAD(reaplist);
6997 struct nfs4_ol_stateid *stp;
6998
6999 spin_lock(&clp->cl_lock);
7000 unhashed = unhash_open_stateid(s, &reaplist);
7001
7002 if (clp->cl_minorversion) {
7003 if (unhashed)
7004 put_ol_stateid_locked(s, &reaplist);
7005 spin_unlock(&clp->cl_lock);
7006 list_for_each_entry(stp, &reaplist, st_locks)
7007 nfs4_free_cpntf_statelist(clp->net, &stp->st_stid);
7008 free_ol_stateid_reaplist(&reaplist);
7009 } else {
7010 spin_unlock(&clp->cl_lock);
7011 free_ol_stateid_reaplist(&reaplist);
7012 if (unhashed)
7013 move_to_close_lru(s, clp->net);
7014 }
7015 }
7016
7017 /*
7018 * nfs4_unlock_state() called after encode
7019 */
7020 __be32
nfsd4_close(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)7021 nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
7022 union nfsd4_op_u *u)
7023 {
7024 struct nfsd4_close *close = &u->close;
7025 __be32 status;
7026 struct nfs4_ol_stateid *stp;
7027 struct net *net = SVC_NET(rqstp);
7028 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7029
7030 dprintk("NFSD: nfsd4_close on file %pd\n",
7031 cstate->current_fh.fh_dentry);
7032
7033 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
7034 &close->cl_stateid,
7035 NFS4_OPEN_STID|NFS4_CLOSED_STID,
7036 &stp, nn);
7037 nfsd4_bump_seqid(cstate, status);
7038 if (status)
7039 goto out;
7040
7041 stp->st_stid.sc_type = NFS4_CLOSED_STID;
7042
7043 /*
7044 * Technically we don't _really_ have to increment or copy it, since
7045 * it should just be gone after this operation and we clobber the
7046 * copied value below, but we continue to do so here just to ensure
7047 * that racing ops see that there was a state change.
7048 */
7049 nfs4_inc_and_copy_stateid(&close->cl_stateid, &stp->st_stid);
7050
7051 nfsd4_close_open_stateid(stp);
7052 mutex_unlock(&stp->st_mutex);
7053
7054 /* v4.1+ suggests that we send a special stateid in here, since the
7055 * clients should just ignore this anyway. Since this is not useful
7056 * for v4.0 clients either, we set it to the special close_stateid
7057 * universally.
7058 *
7059 * See RFC5661 section 18.2.4, and RFC7530 section 16.2.5
7060 */
7061 memcpy(&close->cl_stateid, &close_stateid, sizeof(close->cl_stateid));
7062
7063 /* put reference from nfs4_preprocess_seqid_op */
7064 nfs4_put_stid(&stp->st_stid);
7065 out:
7066 return status;
7067 }
7068
7069 __be32
nfsd4_delegreturn(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)7070 nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
7071 union nfsd4_op_u *u)
7072 {
7073 struct nfsd4_delegreturn *dr = &u->delegreturn;
7074 struct nfs4_delegation *dp;
7075 stateid_t *stateid = &dr->dr_stateid;
7076 struct nfs4_stid *s;
7077 __be32 status;
7078 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
7079
7080 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
7081 return status;
7082
7083 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
7084 if (status)
7085 goto out;
7086 dp = delegstateid(s);
7087 status = nfsd4_stid_check_stateid_generation(stateid, &dp->dl_stid, nfsd4_has_session(cstate));
7088 if (status)
7089 goto put_stateid;
7090
7091 trace_nfsd_deleg_return(stateid);
7092 wake_up_var(d_inode(cstate->current_fh.fh_dentry));
7093 destroy_delegation(dp);
7094 put_stateid:
7095 nfs4_put_stid(&dp->dl_stid);
7096 out:
7097 return status;
7098 }
7099
7100 /* last octet in a range */
7101 static inline u64
last_byte_offset(u64 start,u64 len)7102 last_byte_offset(u64 start, u64 len)
7103 {
7104 u64 end;
7105
7106 WARN_ON_ONCE(!len);
7107 end = start + len;
7108 return end > start ? end - 1: NFS4_MAX_UINT64;
7109 }
7110
7111 /*
7112 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
7113 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
7114 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
7115 * locking, this prevents us from being completely protocol-compliant. The
7116 * real solution to this problem is to start using unsigned file offsets in
7117 * the VFS, but this is a very deep change!
7118 */
7119 static inline void
nfs4_transform_lock_offset(struct file_lock * lock)7120 nfs4_transform_lock_offset(struct file_lock *lock)
7121 {
7122 if (lock->fl_start < 0)
7123 lock->fl_start = OFFSET_MAX;
7124 if (lock->fl_end < 0)
7125 lock->fl_end = OFFSET_MAX;
7126 }
7127
7128 static fl_owner_t
nfsd4_lm_get_owner(fl_owner_t owner)7129 nfsd4_lm_get_owner(fl_owner_t owner)
7130 {
7131 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
7132
7133 nfs4_get_stateowner(&lo->lo_owner);
7134 return owner;
7135 }
7136
7137 static void
nfsd4_lm_put_owner(fl_owner_t owner)7138 nfsd4_lm_put_owner(fl_owner_t owner)
7139 {
7140 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
7141
7142 if (lo)
7143 nfs4_put_stateowner(&lo->lo_owner);
7144 }
7145
7146 /* return pointer to struct nfs4_client if client is expirable */
7147 static bool
nfsd4_lm_lock_expirable(struct file_lock * cfl)7148 nfsd4_lm_lock_expirable(struct file_lock *cfl)
7149 {
7150 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)cfl->fl_owner;
7151 struct nfs4_client *clp = lo->lo_owner.so_client;
7152 struct nfsd_net *nn;
7153
7154 if (try_to_expire_client(clp)) {
7155 nn = net_generic(clp->net, nfsd_net_id);
7156 mod_delayed_work(laundry_wq, &nn->laundromat_work, 0);
7157 return true;
7158 }
7159 return false;
7160 }
7161
7162 /* schedule laundromat to run immediately and wait for it to complete */
7163 static void
nfsd4_lm_expire_lock(void)7164 nfsd4_lm_expire_lock(void)
7165 {
7166 flush_workqueue(laundry_wq);
7167 }
7168
7169 static void
nfsd4_lm_notify(struct file_lock * fl)7170 nfsd4_lm_notify(struct file_lock *fl)
7171 {
7172 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
7173 struct net *net = lo->lo_owner.so_client->net;
7174 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7175 struct nfsd4_blocked_lock *nbl = container_of(fl,
7176 struct nfsd4_blocked_lock, nbl_lock);
7177 bool queue = false;
7178
7179 /* An empty list means that something else is going to be using it */
7180 spin_lock(&nn->blocked_locks_lock);
7181 if (!list_empty(&nbl->nbl_list)) {
7182 list_del_init(&nbl->nbl_list);
7183 list_del_init(&nbl->nbl_lru);
7184 queue = true;
7185 }
7186 spin_unlock(&nn->blocked_locks_lock);
7187
7188 if (queue) {
7189 trace_nfsd_cb_notify_lock(lo, nbl);
7190 nfsd4_run_cb(&nbl->nbl_cb);
7191 }
7192 }
7193
7194 static const struct lock_manager_operations nfsd_posix_mng_ops = {
7195 .lm_mod_owner = THIS_MODULE,
7196 .lm_notify = nfsd4_lm_notify,
7197 .lm_get_owner = nfsd4_lm_get_owner,
7198 .lm_put_owner = nfsd4_lm_put_owner,
7199 .lm_lock_expirable = nfsd4_lm_lock_expirable,
7200 .lm_expire_lock = nfsd4_lm_expire_lock,
7201 };
7202
7203 static inline void
nfs4_set_lock_denied(struct file_lock * fl,struct nfsd4_lock_denied * deny)7204 nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
7205 {
7206 struct nfs4_lockowner *lo;
7207
7208 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
7209 lo = (struct nfs4_lockowner *) fl->fl_owner;
7210 xdr_netobj_dup(&deny->ld_owner, &lo->lo_owner.so_owner,
7211 GFP_KERNEL);
7212 if (!deny->ld_owner.data)
7213 /* We just don't care that much */
7214 goto nevermind;
7215 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
7216 } else {
7217 nevermind:
7218 deny->ld_owner.len = 0;
7219 deny->ld_owner.data = NULL;
7220 deny->ld_clientid.cl_boot = 0;
7221 deny->ld_clientid.cl_id = 0;
7222 }
7223 deny->ld_start = fl->fl_start;
7224 deny->ld_length = NFS4_MAX_UINT64;
7225 if (fl->fl_end != NFS4_MAX_UINT64)
7226 deny->ld_length = fl->fl_end - fl->fl_start + 1;
7227 deny->ld_type = NFS4_READ_LT;
7228 if (fl->fl_type != F_RDLCK)
7229 deny->ld_type = NFS4_WRITE_LT;
7230 }
7231
7232 static struct nfs4_lockowner *
find_lockowner_str_locked(struct nfs4_client * clp,struct xdr_netobj * owner)7233 find_lockowner_str_locked(struct nfs4_client *clp, struct xdr_netobj *owner)
7234 {
7235 unsigned int strhashval = ownerstr_hashval(owner);
7236 struct nfs4_stateowner *so;
7237
7238 lockdep_assert_held(&clp->cl_lock);
7239
7240 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
7241 so_strhash) {
7242 if (so->so_is_open_owner)
7243 continue;
7244 if (same_owner_str(so, owner))
7245 return lockowner(nfs4_get_stateowner(so));
7246 }
7247 return NULL;
7248 }
7249
7250 static struct nfs4_lockowner *
find_lockowner_str(struct nfs4_client * clp,struct xdr_netobj * owner)7251 find_lockowner_str(struct nfs4_client *clp, struct xdr_netobj *owner)
7252 {
7253 struct nfs4_lockowner *lo;
7254
7255 spin_lock(&clp->cl_lock);
7256 lo = find_lockowner_str_locked(clp, owner);
7257 spin_unlock(&clp->cl_lock);
7258 return lo;
7259 }
7260
nfs4_unhash_lockowner(struct nfs4_stateowner * sop)7261 static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
7262 {
7263 unhash_lockowner_locked(lockowner(sop));
7264 }
7265
nfs4_free_lockowner(struct nfs4_stateowner * sop)7266 static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
7267 {
7268 struct nfs4_lockowner *lo = lockowner(sop);
7269
7270 kmem_cache_free(lockowner_slab, lo);
7271 }
7272
7273 static const struct nfs4_stateowner_operations lockowner_ops = {
7274 .so_unhash = nfs4_unhash_lockowner,
7275 .so_free = nfs4_free_lockowner,
7276 };
7277
7278 /*
7279 * Alloc a lock owner structure.
7280 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
7281 * occurred.
7282 *
7283 * strhashval = ownerstr_hashval
7284 */
7285 static struct nfs4_lockowner *
alloc_init_lock_stateowner(unsigned int strhashval,struct nfs4_client * clp,struct nfs4_ol_stateid * open_stp,struct nfsd4_lock * lock)7286 alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
7287 struct nfs4_ol_stateid *open_stp,
7288 struct nfsd4_lock *lock)
7289 {
7290 struct nfs4_lockowner *lo, *ret;
7291
7292 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
7293 if (!lo)
7294 return NULL;
7295 INIT_LIST_HEAD(&lo->lo_blocked);
7296 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
7297 lo->lo_owner.so_is_open_owner = 0;
7298 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
7299 lo->lo_owner.so_ops = &lockowner_ops;
7300 spin_lock(&clp->cl_lock);
7301 ret = find_lockowner_str_locked(clp, &lock->lk_new_owner);
7302 if (ret == NULL) {
7303 list_add(&lo->lo_owner.so_strhash,
7304 &clp->cl_ownerstr_hashtbl[strhashval]);
7305 ret = lo;
7306 } else
7307 nfs4_free_stateowner(&lo->lo_owner);
7308
7309 spin_unlock(&clp->cl_lock);
7310 return ret;
7311 }
7312
7313 static struct nfs4_ol_stateid *
find_lock_stateid(const struct nfs4_lockowner * lo,const struct nfs4_ol_stateid * ost)7314 find_lock_stateid(const struct nfs4_lockowner *lo,
7315 const struct nfs4_ol_stateid *ost)
7316 {
7317 struct nfs4_ol_stateid *lst;
7318
7319 lockdep_assert_held(&ost->st_stid.sc_client->cl_lock);
7320
7321 /* If ost is not hashed, ost->st_locks will not be valid */
7322 if (!nfs4_ol_stateid_unhashed(ost))
7323 list_for_each_entry(lst, &ost->st_locks, st_locks) {
7324 if (lst->st_stateowner == &lo->lo_owner) {
7325 refcount_inc(&lst->st_stid.sc_count);
7326 return lst;
7327 }
7328 }
7329 return NULL;
7330 }
7331
7332 static struct nfs4_ol_stateid *
init_lock_stateid(struct nfs4_ol_stateid * stp,struct nfs4_lockowner * lo,struct nfs4_file * fp,struct inode * inode,struct nfs4_ol_stateid * open_stp)7333 init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
7334 struct nfs4_file *fp, struct inode *inode,
7335 struct nfs4_ol_stateid *open_stp)
7336 {
7337 struct nfs4_client *clp = lo->lo_owner.so_client;
7338 struct nfs4_ol_stateid *retstp;
7339
7340 mutex_init(&stp->st_mutex);
7341 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
7342 retry:
7343 spin_lock(&clp->cl_lock);
7344 if (nfs4_ol_stateid_unhashed(open_stp))
7345 goto out_close;
7346 retstp = find_lock_stateid(lo, open_stp);
7347 if (retstp)
7348 goto out_found;
7349 refcount_inc(&stp->st_stid.sc_count);
7350 stp->st_stid.sc_type = NFS4_LOCK_STID;
7351 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
7352 get_nfs4_file(fp);
7353 stp->st_stid.sc_file = fp;
7354 stp->st_access_bmap = 0;
7355 stp->st_deny_bmap = open_stp->st_deny_bmap;
7356 stp->st_openstp = open_stp;
7357 spin_lock(&fp->fi_lock);
7358 list_add(&stp->st_locks, &open_stp->st_locks);
7359 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
7360 list_add(&stp->st_perfile, &fp->fi_stateids);
7361 spin_unlock(&fp->fi_lock);
7362 spin_unlock(&clp->cl_lock);
7363 return stp;
7364 out_found:
7365 spin_unlock(&clp->cl_lock);
7366 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
7367 nfs4_put_stid(&retstp->st_stid);
7368 goto retry;
7369 }
7370 /* To keep mutex tracking happy */
7371 mutex_unlock(&stp->st_mutex);
7372 return retstp;
7373 out_close:
7374 spin_unlock(&clp->cl_lock);
7375 mutex_unlock(&stp->st_mutex);
7376 return NULL;
7377 }
7378
7379 static struct nfs4_ol_stateid *
find_or_create_lock_stateid(struct nfs4_lockowner * lo,struct nfs4_file * fi,struct inode * inode,struct nfs4_ol_stateid * ost,bool * new)7380 find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
7381 struct inode *inode, struct nfs4_ol_stateid *ost,
7382 bool *new)
7383 {
7384 struct nfs4_stid *ns = NULL;
7385 struct nfs4_ol_stateid *lst;
7386 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
7387 struct nfs4_client *clp = oo->oo_owner.so_client;
7388
7389 *new = false;
7390 spin_lock(&clp->cl_lock);
7391 lst = find_lock_stateid(lo, ost);
7392 spin_unlock(&clp->cl_lock);
7393 if (lst != NULL) {
7394 if (nfsd4_lock_ol_stateid(lst) == nfs_ok)
7395 goto out;
7396 nfs4_put_stid(&lst->st_stid);
7397 }
7398 ns = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_lock_stateid);
7399 if (ns == NULL)
7400 return NULL;
7401
7402 lst = init_lock_stateid(openlockstateid(ns), lo, fi, inode, ost);
7403 if (lst == openlockstateid(ns))
7404 *new = true;
7405 else
7406 nfs4_put_stid(ns);
7407 out:
7408 return lst;
7409 }
7410
7411 static int
check_lock_length(u64 offset,u64 length)7412 check_lock_length(u64 offset, u64 length)
7413 {
7414 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
7415 (length > ~offset)));
7416 }
7417
get_lock_access(struct nfs4_ol_stateid * lock_stp,u32 access)7418 static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
7419 {
7420 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
7421
7422 lockdep_assert_held(&fp->fi_lock);
7423
7424 if (test_access(access, lock_stp))
7425 return;
7426 __nfs4_file_get_access(fp, access);
7427 set_access(access, lock_stp);
7428 }
7429
7430 static __be32
lookup_or_create_lock_state(struct nfsd4_compound_state * cstate,struct nfs4_ol_stateid * ost,struct nfsd4_lock * lock,struct nfs4_ol_stateid ** plst,bool * new)7431 lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
7432 struct nfs4_ol_stateid *ost,
7433 struct nfsd4_lock *lock,
7434 struct nfs4_ol_stateid **plst, bool *new)
7435 {
7436 __be32 status;
7437 struct nfs4_file *fi = ost->st_stid.sc_file;
7438 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
7439 struct nfs4_client *cl = oo->oo_owner.so_client;
7440 struct inode *inode = d_inode(cstate->current_fh.fh_dentry);
7441 struct nfs4_lockowner *lo;
7442 struct nfs4_ol_stateid *lst;
7443 unsigned int strhashval;
7444
7445 lo = find_lockowner_str(cl, &lock->lk_new_owner);
7446 if (!lo) {
7447 strhashval = ownerstr_hashval(&lock->lk_new_owner);
7448 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
7449 if (lo == NULL)
7450 return nfserr_jukebox;
7451 } else {
7452 /* with an existing lockowner, seqids must be the same */
7453 status = nfserr_bad_seqid;
7454 if (!cstate->minorversion &&
7455 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
7456 goto out;
7457 }
7458
7459 lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
7460 if (lst == NULL) {
7461 status = nfserr_jukebox;
7462 goto out;
7463 }
7464
7465 status = nfs_ok;
7466 *plst = lst;
7467 out:
7468 nfs4_put_stateowner(&lo->lo_owner);
7469 return status;
7470 }
7471
7472 /*
7473 * LOCK operation
7474 */
7475 __be32
nfsd4_lock(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)7476 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
7477 union nfsd4_op_u *u)
7478 {
7479 struct nfsd4_lock *lock = &u->lock;
7480 struct nfs4_openowner *open_sop = NULL;
7481 struct nfs4_lockowner *lock_sop = NULL;
7482 struct nfs4_ol_stateid *lock_stp = NULL;
7483 struct nfs4_ol_stateid *open_stp = NULL;
7484 struct nfs4_file *fp;
7485 struct nfsd_file *nf = NULL;
7486 struct nfsd4_blocked_lock *nbl = NULL;
7487 struct file_lock *file_lock = NULL;
7488 struct file_lock *conflock = NULL;
7489 __be32 status = 0;
7490 int lkflg;
7491 int err;
7492 bool new = false;
7493 unsigned char fl_type;
7494 unsigned int fl_flags = FL_POSIX;
7495 struct net *net = SVC_NET(rqstp);
7496 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7497
7498 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
7499 (long long) lock->lk_offset,
7500 (long long) lock->lk_length);
7501
7502 if (check_lock_length(lock->lk_offset, lock->lk_length))
7503 return nfserr_inval;
7504
7505 if ((status = fh_verify(rqstp, &cstate->current_fh,
7506 S_IFREG, NFSD_MAY_LOCK))) {
7507 dprintk("NFSD: nfsd4_lock: permission denied!\n");
7508 return status;
7509 }
7510
7511 if (lock->lk_is_new) {
7512 if (nfsd4_has_session(cstate))
7513 /* See rfc 5661 18.10.3: given clientid is ignored: */
7514 memcpy(&lock->lk_new_clientid,
7515 &cstate->clp->cl_clientid,
7516 sizeof(clientid_t));
7517
7518 /* validate and update open stateid and open seqid */
7519 status = nfs4_preprocess_confirmed_seqid_op(cstate,
7520 lock->lk_new_open_seqid,
7521 &lock->lk_new_open_stateid,
7522 &open_stp, nn);
7523 if (status)
7524 goto out;
7525 mutex_unlock(&open_stp->st_mutex);
7526 open_sop = openowner(open_stp->st_stateowner);
7527 status = nfserr_bad_stateid;
7528 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
7529 &lock->lk_new_clientid))
7530 goto out;
7531 status = lookup_or_create_lock_state(cstate, open_stp, lock,
7532 &lock_stp, &new);
7533 } else {
7534 status = nfs4_preprocess_seqid_op(cstate,
7535 lock->lk_old_lock_seqid,
7536 &lock->lk_old_lock_stateid,
7537 NFS4_LOCK_STID, &lock_stp, nn);
7538 }
7539 if (status)
7540 goto out;
7541 lock_sop = lockowner(lock_stp->st_stateowner);
7542
7543 lkflg = setlkflg(lock->lk_type);
7544 status = nfs4_check_openmode(lock_stp, lkflg);
7545 if (status)
7546 goto out;
7547
7548 status = nfserr_grace;
7549 if (locks_in_grace(net) && !lock->lk_reclaim)
7550 goto out;
7551 status = nfserr_no_grace;
7552 if (!locks_in_grace(net) && lock->lk_reclaim)
7553 goto out;
7554
7555 if (lock->lk_reclaim)
7556 fl_flags |= FL_RECLAIM;
7557
7558 fp = lock_stp->st_stid.sc_file;
7559 switch (lock->lk_type) {
7560 case NFS4_READW_LT:
7561 if (nfsd4_has_session(cstate))
7562 fl_flags |= FL_SLEEP;
7563 fallthrough;
7564 case NFS4_READ_LT:
7565 spin_lock(&fp->fi_lock);
7566 nf = find_readable_file_locked(fp);
7567 if (nf)
7568 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
7569 spin_unlock(&fp->fi_lock);
7570 fl_type = F_RDLCK;
7571 break;
7572 case NFS4_WRITEW_LT:
7573 if (nfsd4_has_session(cstate))
7574 fl_flags |= FL_SLEEP;
7575 fallthrough;
7576 case NFS4_WRITE_LT:
7577 spin_lock(&fp->fi_lock);
7578 nf = find_writeable_file_locked(fp);
7579 if (nf)
7580 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
7581 spin_unlock(&fp->fi_lock);
7582 fl_type = F_WRLCK;
7583 break;
7584 default:
7585 status = nfserr_inval;
7586 goto out;
7587 }
7588
7589 if (!nf) {
7590 status = nfserr_openmode;
7591 goto out;
7592 }
7593
7594 /*
7595 * Most filesystems with their own ->lock operations will block
7596 * the nfsd thread waiting to acquire the lock. That leads to
7597 * deadlocks (we don't want every nfsd thread tied up waiting
7598 * for file locks), so don't attempt blocking lock notifications
7599 * on those filesystems:
7600 */
7601 if (nf->nf_file->f_op->lock)
7602 fl_flags &= ~FL_SLEEP;
7603
7604 nbl = find_or_allocate_block(lock_sop, &fp->fi_fhandle, nn);
7605 if (!nbl) {
7606 dprintk("NFSD: %s: unable to allocate block!\n", __func__);
7607 status = nfserr_jukebox;
7608 goto out;
7609 }
7610
7611 file_lock = &nbl->nbl_lock;
7612 file_lock->fl_type = fl_type;
7613 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
7614 file_lock->fl_pid = current->tgid;
7615 file_lock->fl_file = nf->nf_file;
7616 file_lock->fl_flags = fl_flags;
7617 file_lock->fl_lmops = &nfsd_posix_mng_ops;
7618 file_lock->fl_start = lock->lk_offset;
7619 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
7620 nfs4_transform_lock_offset(file_lock);
7621
7622 conflock = locks_alloc_lock();
7623 if (!conflock) {
7624 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
7625 status = nfserr_jukebox;
7626 goto out;
7627 }
7628
7629 if (fl_flags & FL_SLEEP) {
7630 nbl->nbl_time = ktime_get_boottime_seconds();
7631 spin_lock(&nn->blocked_locks_lock);
7632 list_add_tail(&nbl->nbl_list, &lock_sop->lo_blocked);
7633 list_add_tail(&nbl->nbl_lru, &nn->blocked_locks_lru);
7634 kref_get(&nbl->nbl_kref);
7635 spin_unlock(&nn->blocked_locks_lock);
7636 }
7637
7638 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, conflock);
7639 switch (err) {
7640 case 0: /* success! */
7641 nfs4_inc_and_copy_stateid(&lock->lk_resp_stateid, &lock_stp->st_stid);
7642 status = 0;
7643 if (lock->lk_reclaim)
7644 nn->somebody_reclaimed = true;
7645 break;
7646 case FILE_LOCK_DEFERRED:
7647 kref_put(&nbl->nbl_kref, free_nbl);
7648 nbl = NULL;
7649 fallthrough;
7650 case -EAGAIN: /* conflock holds conflicting lock */
7651 status = nfserr_denied;
7652 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
7653 nfs4_set_lock_denied(conflock, &lock->lk_denied);
7654 break;
7655 case -EDEADLK:
7656 status = nfserr_deadlock;
7657 break;
7658 default:
7659 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
7660 status = nfserrno(err);
7661 break;
7662 }
7663 out:
7664 if (nbl) {
7665 /* dequeue it if we queued it before */
7666 if (fl_flags & FL_SLEEP) {
7667 spin_lock(&nn->blocked_locks_lock);
7668 if (!list_empty(&nbl->nbl_list) &&
7669 !list_empty(&nbl->nbl_lru)) {
7670 list_del_init(&nbl->nbl_list);
7671 list_del_init(&nbl->nbl_lru);
7672 kref_put(&nbl->nbl_kref, free_nbl);
7673 }
7674 /* nbl can use one of lists to be linked to reaplist */
7675 spin_unlock(&nn->blocked_locks_lock);
7676 }
7677 free_blocked_lock(nbl);
7678 }
7679 if (nf)
7680 nfsd_file_put(nf);
7681 if (lock_stp) {
7682 /* Bump seqid manually if the 4.0 replay owner is openowner */
7683 if (cstate->replay_owner &&
7684 cstate->replay_owner != &lock_sop->lo_owner &&
7685 seqid_mutating_err(ntohl(status)))
7686 lock_sop->lo_owner.so_seqid++;
7687
7688 /*
7689 * If this is a new, never-before-used stateid, and we are
7690 * returning an error, then just go ahead and release it.
7691 */
7692 if (status && new)
7693 release_lock_stateid(lock_stp);
7694
7695 mutex_unlock(&lock_stp->st_mutex);
7696
7697 nfs4_put_stid(&lock_stp->st_stid);
7698 }
7699 if (open_stp)
7700 nfs4_put_stid(&open_stp->st_stid);
7701 nfsd4_bump_seqid(cstate, status);
7702 if (conflock)
7703 locks_free_lock(conflock);
7704 return status;
7705 }
7706
7707 /*
7708 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
7709 * so we do a temporary open here just to get an open file to pass to
7710 * vfs_test_lock.
7711 */
nfsd_test_lock(struct svc_rqst * rqstp,struct svc_fh * fhp,struct file_lock * lock)7712 static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
7713 {
7714 struct nfsd_file *nf;
7715 struct inode *inode;
7716 __be32 err;
7717
7718 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
7719 if (err)
7720 return err;
7721 inode = fhp->fh_dentry->d_inode;
7722 inode_lock(inode); /* to block new leases till after test_lock: */
7723 err = nfserrno(nfsd_open_break_lease(inode, NFSD_MAY_READ));
7724 if (err)
7725 goto out;
7726 lock->fl_file = nf->nf_file;
7727 err = nfserrno(vfs_test_lock(nf->nf_file, lock));
7728 lock->fl_file = NULL;
7729 out:
7730 inode_unlock(inode);
7731 nfsd_file_put(nf);
7732 return err;
7733 }
7734
7735 /*
7736 * LOCKT operation
7737 */
7738 __be32
nfsd4_lockt(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)7739 nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
7740 union nfsd4_op_u *u)
7741 {
7742 struct nfsd4_lockt *lockt = &u->lockt;
7743 struct file_lock *file_lock = NULL;
7744 struct nfs4_lockowner *lo = NULL;
7745 __be32 status;
7746 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
7747
7748 if (locks_in_grace(SVC_NET(rqstp)))
7749 return nfserr_grace;
7750
7751 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
7752 return nfserr_inval;
7753
7754 if (!nfsd4_has_session(cstate)) {
7755 status = set_client(&lockt->lt_clientid, cstate, nn);
7756 if (status)
7757 goto out;
7758 }
7759
7760 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
7761 goto out;
7762
7763 file_lock = locks_alloc_lock();
7764 if (!file_lock) {
7765 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
7766 status = nfserr_jukebox;
7767 goto out;
7768 }
7769
7770 switch (lockt->lt_type) {
7771 case NFS4_READ_LT:
7772 case NFS4_READW_LT:
7773 file_lock->fl_type = F_RDLCK;
7774 break;
7775 case NFS4_WRITE_LT:
7776 case NFS4_WRITEW_LT:
7777 file_lock->fl_type = F_WRLCK;
7778 break;
7779 default:
7780 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
7781 status = nfserr_inval;
7782 goto out;
7783 }
7784
7785 lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
7786 if (lo)
7787 file_lock->fl_owner = (fl_owner_t)lo;
7788 file_lock->fl_pid = current->tgid;
7789 file_lock->fl_flags = FL_POSIX;
7790
7791 file_lock->fl_start = lockt->lt_offset;
7792 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
7793
7794 nfs4_transform_lock_offset(file_lock);
7795
7796 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
7797 if (status)
7798 goto out;
7799
7800 if (file_lock->fl_type != F_UNLCK) {
7801 status = nfserr_denied;
7802 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
7803 }
7804 out:
7805 if (lo)
7806 nfs4_put_stateowner(&lo->lo_owner);
7807 if (file_lock)
7808 locks_free_lock(file_lock);
7809 return status;
7810 }
7811
7812 __be32
nfsd4_locku(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)7813 nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
7814 union nfsd4_op_u *u)
7815 {
7816 struct nfsd4_locku *locku = &u->locku;
7817 struct nfs4_ol_stateid *stp;
7818 struct nfsd_file *nf = NULL;
7819 struct file_lock *file_lock = NULL;
7820 __be32 status;
7821 int err;
7822 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
7823
7824 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
7825 (long long) locku->lu_offset,
7826 (long long) locku->lu_length);
7827
7828 if (check_lock_length(locku->lu_offset, locku->lu_length))
7829 return nfserr_inval;
7830
7831 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
7832 &locku->lu_stateid, NFS4_LOCK_STID,
7833 &stp, nn);
7834 if (status)
7835 goto out;
7836 nf = find_any_file(stp->st_stid.sc_file);
7837 if (!nf) {
7838 status = nfserr_lock_range;
7839 goto put_stateid;
7840 }
7841 file_lock = locks_alloc_lock();
7842 if (!file_lock) {
7843 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
7844 status = nfserr_jukebox;
7845 goto put_file;
7846 }
7847
7848 file_lock->fl_type = F_UNLCK;
7849 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
7850 file_lock->fl_pid = current->tgid;
7851 file_lock->fl_file = nf->nf_file;
7852 file_lock->fl_flags = FL_POSIX;
7853 file_lock->fl_lmops = &nfsd_posix_mng_ops;
7854 file_lock->fl_start = locku->lu_offset;
7855
7856 file_lock->fl_end = last_byte_offset(locku->lu_offset,
7857 locku->lu_length);
7858 nfs4_transform_lock_offset(file_lock);
7859
7860 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, NULL);
7861 if (err) {
7862 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
7863 goto out_nfserr;
7864 }
7865 nfs4_inc_and_copy_stateid(&locku->lu_stateid, &stp->st_stid);
7866 put_file:
7867 nfsd_file_put(nf);
7868 put_stateid:
7869 mutex_unlock(&stp->st_mutex);
7870 nfs4_put_stid(&stp->st_stid);
7871 out:
7872 nfsd4_bump_seqid(cstate, status);
7873 if (file_lock)
7874 locks_free_lock(file_lock);
7875 return status;
7876
7877 out_nfserr:
7878 status = nfserrno(err);
7879 goto put_file;
7880 }
7881
7882 /*
7883 * returns
7884 * true: locks held by lockowner
7885 * false: no locks held by lockowner
7886 */
7887 static bool
check_for_locks(struct nfs4_file * fp,struct nfs4_lockowner * lowner)7888 check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
7889 {
7890 struct file_lock *fl;
7891 int status = false;
7892 struct nfsd_file *nf;
7893 struct inode *inode;
7894 struct file_lock_context *flctx;
7895
7896 spin_lock(&fp->fi_lock);
7897 nf = find_any_file_locked(fp);
7898 if (!nf) {
7899 /* Any valid lock stateid should have some sort of access */
7900 WARN_ON_ONCE(1);
7901 goto out;
7902 }
7903
7904 inode = file_inode(nf->nf_file);
7905 flctx = locks_inode_context(inode);
7906
7907 if (flctx && !list_empty_careful(&flctx->flc_posix)) {
7908 spin_lock(&flctx->flc_lock);
7909 list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
7910 if (fl->fl_owner == (fl_owner_t)lowner) {
7911 status = true;
7912 break;
7913 }
7914 }
7915 spin_unlock(&flctx->flc_lock);
7916 }
7917 out:
7918 spin_unlock(&fp->fi_lock);
7919 return status;
7920 }
7921
7922 /**
7923 * nfsd4_release_lockowner - process NFSv4.0 RELEASE_LOCKOWNER operations
7924 * @rqstp: RPC transaction
7925 * @cstate: NFSv4 COMPOUND state
7926 * @u: RELEASE_LOCKOWNER arguments
7927 *
7928 * Check if theree are any locks still held and if not - free the lockowner
7929 * and any lock state that is owned.
7930 *
7931 * Return values:
7932 * %nfs_ok: lockowner released or not found
7933 * %nfserr_locks_held: lockowner still in use
7934 * %nfserr_stale_clientid: clientid no longer active
7935 * %nfserr_expired: clientid not recognized
7936 */
7937 __be32
nfsd4_release_lockowner(struct svc_rqst * rqstp,struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)7938 nfsd4_release_lockowner(struct svc_rqst *rqstp,
7939 struct nfsd4_compound_state *cstate,
7940 union nfsd4_op_u *u)
7941 {
7942 struct nfsd4_release_lockowner *rlockowner = &u->release_lockowner;
7943 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
7944 clientid_t *clid = &rlockowner->rl_clientid;
7945 struct nfs4_ol_stateid *stp;
7946 struct nfs4_lockowner *lo;
7947 struct nfs4_client *clp;
7948 LIST_HEAD(reaplist);
7949 __be32 status;
7950
7951 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
7952 clid->cl_boot, clid->cl_id);
7953
7954 status = set_client(clid, cstate, nn);
7955 if (status)
7956 return status;
7957 clp = cstate->clp;
7958
7959 spin_lock(&clp->cl_lock);
7960 lo = find_lockowner_str_locked(clp, &rlockowner->rl_owner);
7961 if (!lo) {
7962 spin_unlock(&clp->cl_lock);
7963 return nfs_ok;
7964 }
7965
7966 list_for_each_entry(stp, &lo->lo_owner.so_stateids, st_perstateowner) {
7967 if (check_for_locks(stp->st_stid.sc_file, lo)) {
7968 spin_unlock(&clp->cl_lock);
7969 nfs4_put_stateowner(&lo->lo_owner);
7970 return nfserr_locks_held;
7971 }
7972 }
7973 unhash_lockowner_locked(lo);
7974 while (!list_empty(&lo->lo_owner.so_stateids)) {
7975 stp = list_first_entry(&lo->lo_owner.so_stateids,
7976 struct nfs4_ol_stateid,
7977 st_perstateowner);
7978 WARN_ON(!unhash_lock_stateid(stp));
7979 put_ol_stateid_locked(stp, &reaplist);
7980 }
7981 spin_unlock(&clp->cl_lock);
7982
7983 free_ol_stateid_reaplist(&reaplist);
7984 remove_blocked_locks(lo);
7985 nfs4_put_stateowner(&lo->lo_owner);
7986 return nfs_ok;
7987 }
7988
7989 static inline struct nfs4_client_reclaim *
alloc_reclaim(void)7990 alloc_reclaim(void)
7991 {
7992 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
7993 }
7994
7995 bool
nfs4_has_reclaimed_state(struct xdr_netobj name,struct nfsd_net * nn)7996 nfs4_has_reclaimed_state(struct xdr_netobj name, struct nfsd_net *nn)
7997 {
7998 struct nfs4_client_reclaim *crp;
7999
8000 crp = nfsd4_find_reclaim_client(name, nn);
8001 return (crp && crp->cr_clp);
8002 }
8003
8004 /*
8005 * failure => all reset bets are off, nfserr_no_grace...
8006 *
8007 * The caller is responsible for freeing name.data if NULL is returned (it
8008 * will be freed in nfs4_remove_reclaim_record in the normal case).
8009 */
8010 struct nfs4_client_reclaim *
nfs4_client_to_reclaim(struct xdr_netobj name,struct xdr_netobj princhash,struct nfsd_net * nn)8011 nfs4_client_to_reclaim(struct xdr_netobj name, struct xdr_netobj princhash,
8012 struct nfsd_net *nn)
8013 {
8014 unsigned int strhashval;
8015 struct nfs4_client_reclaim *crp;
8016
8017 crp = alloc_reclaim();
8018 if (crp) {
8019 strhashval = clientstr_hashval(name);
8020 INIT_LIST_HEAD(&crp->cr_strhash);
8021 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
8022 crp->cr_name.data = name.data;
8023 crp->cr_name.len = name.len;
8024 crp->cr_princhash.data = princhash.data;
8025 crp->cr_princhash.len = princhash.len;
8026 crp->cr_clp = NULL;
8027 nn->reclaim_str_hashtbl_size++;
8028 }
8029 return crp;
8030 }
8031
8032 void
nfs4_remove_reclaim_record(struct nfs4_client_reclaim * crp,struct nfsd_net * nn)8033 nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
8034 {
8035 list_del(&crp->cr_strhash);
8036 kfree(crp->cr_name.data);
8037 kfree(crp->cr_princhash.data);
8038 kfree(crp);
8039 nn->reclaim_str_hashtbl_size--;
8040 }
8041
8042 void
nfs4_release_reclaim(struct nfsd_net * nn)8043 nfs4_release_reclaim(struct nfsd_net *nn)
8044 {
8045 struct nfs4_client_reclaim *crp = NULL;
8046 int i;
8047
8048 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
8049 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
8050 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
8051 struct nfs4_client_reclaim, cr_strhash);
8052 nfs4_remove_reclaim_record(crp, nn);
8053 }
8054 }
8055 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
8056 }
8057
8058 /*
8059 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
8060 struct nfs4_client_reclaim *
nfsd4_find_reclaim_client(struct xdr_netobj name,struct nfsd_net * nn)8061 nfsd4_find_reclaim_client(struct xdr_netobj name, struct nfsd_net *nn)
8062 {
8063 unsigned int strhashval;
8064 struct nfs4_client_reclaim *crp = NULL;
8065
8066 strhashval = clientstr_hashval(name);
8067 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
8068 if (compare_blob(&crp->cr_name, &name) == 0) {
8069 return crp;
8070 }
8071 }
8072 return NULL;
8073 }
8074
8075 __be32
nfs4_check_open_reclaim(struct nfs4_client * clp)8076 nfs4_check_open_reclaim(struct nfs4_client *clp)
8077 {
8078 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &clp->cl_flags))
8079 return nfserr_no_grace;
8080
8081 if (nfsd4_client_record_check(clp))
8082 return nfserr_reclaim_bad;
8083
8084 return nfs_ok;
8085 }
8086
8087 /*
8088 * Since the lifetime of a delegation isn't limited to that of an open, a
8089 * client may quite reasonably hang on to a delegation as long as it has
8090 * the inode cached. This becomes an obvious problem the first time a
8091 * client's inode cache approaches the size of the server's total memory.
8092 *
8093 * For now we avoid this problem by imposing a hard limit on the number
8094 * of delegations, which varies according to the server's memory size.
8095 */
8096 static void
set_max_delegations(void)8097 set_max_delegations(void)
8098 {
8099 /*
8100 * Allow at most 4 delegations per megabyte of RAM. Quick
8101 * estimates suggest that in the worst case (where every delegation
8102 * is for a different inode), a delegation could take about 1.5K,
8103 * giving a worst case usage of about 6% of memory.
8104 */
8105 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
8106 }
8107
nfs4_state_create_net(struct net * net)8108 static int nfs4_state_create_net(struct net *net)
8109 {
8110 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
8111 int i;
8112
8113 nn->conf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
8114 sizeof(struct list_head),
8115 GFP_KERNEL);
8116 if (!nn->conf_id_hashtbl)
8117 goto err;
8118 nn->unconf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
8119 sizeof(struct list_head),
8120 GFP_KERNEL);
8121 if (!nn->unconf_id_hashtbl)
8122 goto err_unconf_id;
8123 nn->sessionid_hashtbl = kmalloc_array(SESSION_HASH_SIZE,
8124 sizeof(struct list_head),
8125 GFP_KERNEL);
8126 if (!nn->sessionid_hashtbl)
8127 goto err_sessionid;
8128
8129 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
8130 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
8131 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
8132 }
8133 for (i = 0; i < SESSION_HASH_SIZE; i++)
8134 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
8135 nn->conf_name_tree = RB_ROOT;
8136 nn->unconf_name_tree = RB_ROOT;
8137 nn->boot_time = ktime_get_real_seconds();
8138 nn->grace_ended = false;
8139 nn->nfsd4_manager.block_opens = true;
8140 INIT_LIST_HEAD(&nn->nfsd4_manager.list);
8141 INIT_LIST_HEAD(&nn->client_lru);
8142 INIT_LIST_HEAD(&nn->close_lru);
8143 INIT_LIST_HEAD(&nn->del_recall_lru);
8144 spin_lock_init(&nn->client_lock);
8145 spin_lock_init(&nn->s2s_cp_lock);
8146 idr_init(&nn->s2s_cp_stateids);
8147
8148 spin_lock_init(&nn->blocked_locks_lock);
8149 INIT_LIST_HEAD(&nn->blocked_locks_lru);
8150
8151 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
8152 INIT_WORK(&nn->nfsd_shrinker_work, nfsd4_state_shrinker_worker);
8153 get_net(net);
8154
8155 nn->nfsd_client_shrinker.scan_objects = nfsd4_state_shrinker_scan;
8156 nn->nfsd_client_shrinker.count_objects = nfsd4_state_shrinker_count;
8157 nn->nfsd_client_shrinker.seeks = DEFAULT_SEEKS;
8158
8159 if (register_shrinker(&nn->nfsd_client_shrinker, "nfsd-client"))
8160 goto err_shrinker;
8161 return 0;
8162
8163 err_shrinker:
8164 put_net(net);
8165 kfree(nn->sessionid_hashtbl);
8166 err_sessionid:
8167 kfree(nn->unconf_id_hashtbl);
8168 err_unconf_id:
8169 kfree(nn->conf_id_hashtbl);
8170 err:
8171 return -ENOMEM;
8172 }
8173
8174 static void
nfs4_state_destroy_net(struct net * net)8175 nfs4_state_destroy_net(struct net *net)
8176 {
8177 int i;
8178 struct nfs4_client *clp = NULL;
8179 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
8180
8181 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
8182 while (!list_empty(&nn->conf_id_hashtbl[i])) {
8183 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
8184 destroy_client(clp);
8185 }
8186 }
8187
8188 WARN_ON(!list_empty(&nn->blocked_locks_lru));
8189
8190 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
8191 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
8192 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
8193 destroy_client(clp);
8194 }
8195 }
8196
8197 kfree(nn->sessionid_hashtbl);
8198 kfree(nn->unconf_id_hashtbl);
8199 kfree(nn->conf_id_hashtbl);
8200 put_net(net);
8201 }
8202
8203 int
nfs4_state_start_net(struct net * net)8204 nfs4_state_start_net(struct net *net)
8205 {
8206 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
8207 int ret;
8208
8209 ret = nfs4_state_create_net(net);
8210 if (ret)
8211 return ret;
8212 locks_start_grace(net, &nn->nfsd4_manager);
8213 nfsd4_client_tracking_init(net);
8214 if (nn->track_reclaim_completes && nn->reclaim_str_hashtbl_size == 0)
8215 goto skip_grace;
8216 printk(KERN_INFO "NFSD: starting %lld-second grace period (net %x)\n",
8217 nn->nfsd4_grace, net->ns.inum);
8218 trace_nfsd_grace_start(nn);
8219 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
8220 return 0;
8221
8222 skip_grace:
8223 printk(KERN_INFO "NFSD: no clients to reclaim, skipping NFSv4 grace period (net %x)\n",
8224 net->ns.inum);
8225 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_lease * HZ);
8226 nfsd4_end_grace(nn);
8227 return 0;
8228 }
8229
8230 /* initialization to perform when the nfsd service is started: */
8231
8232 int
nfs4_state_start(void)8233 nfs4_state_start(void)
8234 {
8235 int ret;
8236
8237 ret = rhltable_init(&nfs4_file_rhltable, &nfs4_file_rhash_params);
8238 if (ret)
8239 return ret;
8240
8241 ret = nfsd4_create_callback_queue();
8242 if (ret) {
8243 rhltable_destroy(&nfs4_file_rhltable);
8244 return ret;
8245 }
8246
8247 set_max_delegations();
8248 return 0;
8249 }
8250
8251 void
nfs4_state_shutdown_net(struct net * net)8252 nfs4_state_shutdown_net(struct net *net)
8253 {
8254 struct nfs4_delegation *dp = NULL;
8255 struct list_head *pos, *next, reaplist;
8256 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
8257
8258 unregister_shrinker(&nn->nfsd_client_shrinker);
8259 cancel_work(&nn->nfsd_shrinker_work);
8260 cancel_delayed_work_sync(&nn->laundromat_work);
8261 locks_end_grace(&nn->nfsd4_manager);
8262
8263 INIT_LIST_HEAD(&reaplist);
8264 spin_lock(&state_lock);
8265 list_for_each_safe(pos, next, &nn->del_recall_lru) {
8266 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
8267 WARN_ON(!unhash_delegation_locked(dp));
8268 list_add(&dp->dl_recall_lru, &reaplist);
8269 }
8270 spin_unlock(&state_lock);
8271 list_for_each_safe(pos, next, &reaplist) {
8272 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
8273 list_del_init(&dp->dl_recall_lru);
8274 destroy_unhashed_deleg(dp);
8275 }
8276
8277 nfsd4_client_tracking_exit(net);
8278 nfs4_state_destroy_net(net);
8279 #ifdef CONFIG_NFSD_V4_2_INTER_SSC
8280 nfsd4_ssc_shutdown_umount(nn);
8281 #endif
8282 }
8283
8284 void
nfs4_state_shutdown(void)8285 nfs4_state_shutdown(void)
8286 {
8287 nfsd4_destroy_callback_queue();
8288 rhltable_destroy(&nfs4_file_rhltable);
8289 }
8290
8291 static void
get_stateid(struct nfsd4_compound_state * cstate,stateid_t * stateid)8292 get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
8293 {
8294 if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG) &&
8295 CURRENT_STATEID(stateid))
8296 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
8297 }
8298
8299 static void
put_stateid(struct nfsd4_compound_state * cstate,stateid_t * stateid)8300 put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
8301 {
8302 if (cstate->minorversion) {
8303 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
8304 SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
8305 }
8306 }
8307
8308 void
clear_current_stateid(struct nfsd4_compound_state * cstate)8309 clear_current_stateid(struct nfsd4_compound_state *cstate)
8310 {
8311 CLEAR_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
8312 }
8313
8314 /*
8315 * functions to set current state id
8316 */
8317 void
nfsd4_set_opendowngradestateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8318 nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate,
8319 union nfsd4_op_u *u)
8320 {
8321 put_stateid(cstate, &u->open_downgrade.od_stateid);
8322 }
8323
8324 void
nfsd4_set_openstateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8325 nfsd4_set_openstateid(struct nfsd4_compound_state *cstate,
8326 union nfsd4_op_u *u)
8327 {
8328 put_stateid(cstate, &u->open.op_stateid);
8329 }
8330
8331 void
nfsd4_set_closestateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8332 nfsd4_set_closestateid(struct nfsd4_compound_state *cstate,
8333 union nfsd4_op_u *u)
8334 {
8335 put_stateid(cstate, &u->close.cl_stateid);
8336 }
8337
8338 void
nfsd4_set_lockstateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8339 nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate,
8340 union nfsd4_op_u *u)
8341 {
8342 put_stateid(cstate, &u->lock.lk_resp_stateid);
8343 }
8344
8345 /*
8346 * functions to consume current state id
8347 */
8348
8349 void
nfsd4_get_opendowngradestateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8350 nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate,
8351 union nfsd4_op_u *u)
8352 {
8353 get_stateid(cstate, &u->open_downgrade.od_stateid);
8354 }
8355
8356 void
nfsd4_get_delegreturnstateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8357 nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate,
8358 union nfsd4_op_u *u)
8359 {
8360 get_stateid(cstate, &u->delegreturn.dr_stateid);
8361 }
8362
8363 void
nfsd4_get_freestateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8364 nfsd4_get_freestateid(struct nfsd4_compound_state *cstate,
8365 union nfsd4_op_u *u)
8366 {
8367 get_stateid(cstate, &u->free_stateid.fr_stateid);
8368 }
8369
8370 void
nfsd4_get_setattrstateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8371 nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate,
8372 union nfsd4_op_u *u)
8373 {
8374 get_stateid(cstate, &u->setattr.sa_stateid);
8375 }
8376
8377 void
nfsd4_get_closestateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8378 nfsd4_get_closestateid(struct nfsd4_compound_state *cstate,
8379 union nfsd4_op_u *u)
8380 {
8381 get_stateid(cstate, &u->close.cl_stateid);
8382 }
8383
8384 void
nfsd4_get_lockustateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8385 nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate,
8386 union nfsd4_op_u *u)
8387 {
8388 get_stateid(cstate, &u->locku.lu_stateid);
8389 }
8390
8391 void
nfsd4_get_readstateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8392 nfsd4_get_readstateid(struct nfsd4_compound_state *cstate,
8393 union nfsd4_op_u *u)
8394 {
8395 get_stateid(cstate, &u->read.rd_stateid);
8396 }
8397
8398 void
nfsd4_get_writestateid(struct nfsd4_compound_state * cstate,union nfsd4_op_u * u)8399 nfsd4_get_writestateid(struct nfsd4_compound_state *cstate,
8400 union nfsd4_op_u *u)
8401 {
8402 get_stateid(cstate, &u->write.wr_stateid);
8403 }
8404
8405 /**
8406 * nfsd4_deleg_getattr_conflict - Recall if GETATTR causes conflict
8407 * @rqstp: RPC transaction context
8408 * @inode: file to be checked for a conflict
8409 *
8410 * This function is called when there is a conflict between a write
8411 * delegation and a change/size GETATTR from another client. The server
8412 * must either use the CB_GETATTR to get the current values of the
8413 * attributes from the client that holds the delegation or recall the
8414 * delegation before replying to the GETATTR. See RFC 8881 section
8415 * 18.7.4.
8416 *
8417 * The current implementation does not support CB_GETATTR yet. However
8418 * this can avoid recalling the delegation could be added in follow up
8419 * work.
8420 *
8421 * Returns 0 if there is no conflict; otherwise an nfs_stat
8422 * code is returned.
8423 */
8424 __be32
nfsd4_deleg_getattr_conflict(struct svc_rqst * rqstp,struct inode * inode)8425 nfsd4_deleg_getattr_conflict(struct svc_rqst *rqstp, struct inode *inode)
8426 {
8427 __be32 status;
8428 struct file_lock_context *ctx;
8429 struct file_lock *fl;
8430 struct nfs4_delegation *dp;
8431
8432 ctx = locks_inode_context(inode);
8433 if (!ctx)
8434 return 0;
8435 spin_lock(&ctx->flc_lock);
8436 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
8437 if (fl->fl_flags == FL_LAYOUT)
8438 continue;
8439 if (fl->fl_lmops != &nfsd_lease_mng_ops) {
8440 /*
8441 * non-nfs lease, if it's a lease with F_RDLCK then
8442 * we are done; there isn't any write delegation
8443 * on this inode
8444 */
8445 if (fl->fl_type == F_RDLCK)
8446 break;
8447 goto break_lease;
8448 }
8449 if (fl->fl_type == F_WRLCK) {
8450 dp = fl->fl_owner;
8451 if (dp->dl_recall.cb_clp == *(rqstp->rq_lease_breaker)) {
8452 spin_unlock(&ctx->flc_lock);
8453 return 0;
8454 }
8455 break_lease:
8456 spin_unlock(&ctx->flc_lock);
8457 nfsd_stats_wdeleg_getattr_inc();
8458 status = nfserrno(nfsd_open_break_lease(inode, NFSD_MAY_READ));
8459 if (status != nfserr_jukebox ||
8460 !nfsd_wait_for_delegreturn(rqstp, inode))
8461 return status;
8462 return 0;
8463 }
8464 break;
8465 }
8466 spin_unlock(&ctx->flc_lock);
8467 return 0;
8468 }
8469