nfs4.1: prevent race that allowed use of freed layout in _pnfs_return_layout
[linux-block.git] / fs / nfs / pnfs.c
CommitLineData
85e174ba
RL
1/*
2 * pNFS functions to call and manage layout drivers.
3 *
4 * Copyright (c) 2002 [year of first publication]
5 * The Regents of the University of Michigan
6 * All Rights Reserved
7 *
8 * Dean Hildebrand <dhildebz@umich.edu>
9 *
10 * Permission is granted to use, copy, create derivative works, and
11 * redistribute this software and such derivative works for any purpose,
12 * so long as the name of the University of Michigan is not used in
13 * any advertising or publicity pertaining to the use or distribution
14 * of this software without specific, written prior authorization. If
15 * the above copyright notice or any other identification of the
16 * University of Michigan is included in any copy of any portion of
17 * this software, then the disclaimer below must also be included.
18 *
19 * This software is provided as is, without representation or warranty
20 * of any kind either express or implied, including without limitation
21 * the implied warranties of merchantability, fitness for a particular
22 * purpose, or noninfringement. The Regents of the University of
23 * Michigan shall not be liable for any damages, including special,
24 * indirect, incidental, or consequential damages, with respect to any
25 * claim arising out of or in connection with the use of the software,
26 * even if it has been or is hereafter advised of the possibility of
27 * such damages.
28 */
29
30#include <linux/nfs_fs.h>
974cec8c 31#include "internal.h"
85e174ba 32#include "pnfs.h"
64419a9b 33#include "iostat.h"
85e174ba
RL
34
35#define NFSDBG_FACILITY NFSDBG_PNFS
36
02c35fca
FI
37/* Locking:
38 *
39 * pnfs_spinlock:
40 * protects pnfs_modules_tbl.
41 */
42static DEFINE_SPINLOCK(pnfs_spinlock);
43
44/*
45 * pnfs_modules_tbl holds all pnfs modules
46 */
47static LIST_HEAD(pnfs_modules_tbl);
48
49/* Return the registered pnfs layout driver module matching given id */
50static struct pnfs_layoutdriver_type *
51find_pnfs_driver_locked(u32 id)
52{
53 struct pnfs_layoutdriver_type *local;
54
55 list_for_each_entry(local, &pnfs_modules_tbl, pnfs_tblid)
56 if (local->id == id)
57 goto out;
58 local = NULL;
59out:
60 dprintk("%s: Searching for id %u, found %p\n", __func__, id, local);
61 return local;
62}
63
85e174ba
RL
64static struct pnfs_layoutdriver_type *
65find_pnfs_driver(u32 id)
66{
02c35fca
FI
67 struct pnfs_layoutdriver_type *local;
68
69 spin_lock(&pnfs_spinlock);
70 local = find_pnfs_driver_locked(id);
71 spin_unlock(&pnfs_spinlock);
72 return local;
85e174ba
RL
73}
74
75void
76unset_pnfs_layoutdriver(struct nfs_server *nfss)
77{
ea8eecdd 78 if (nfss->pnfs_curr_ld)
02c35fca 79 module_put(nfss->pnfs_curr_ld->owner);
85e174ba
RL
80 nfss->pnfs_curr_ld = NULL;
81}
82
83/*
84 * Try to set the server's pnfs module to the pnfs layout type specified by id.
85 * Currently only one pNFS layout driver per filesystem is supported.
86 *
87 * @id layout type. Zero (illegal layout type) indicates pNFS not in use.
88 */
89void
90set_pnfs_layoutdriver(struct nfs_server *server, u32 id)
91{
92 struct pnfs_layoutdriver_type *ld_type = NULL;
93
94 if (id == 0)
95 goto out_no_driver;
96 if (!(server->nfs_client->cl_exchange_flags &
97 (EXCHGID4_FLAG_USE_NON_PNFS | EXCHGID4_FLAG_USE_PNFS_MDS))) {
98 printk(KERN_ERR "%s: id %u cl_exchange_flags 0x%x\n", __func__,
99 id, server->nfs_client->cl_exchange_flags);
100 goto out_no_driver;
101 }
102 ld_type = find_pnfs_driver(id);
103 if (!ld_type) {
104 request_module("%s-%u", LAYOUT_NFSV4_1_MODULE_PREFIX, id);
105 ld_type = find_pnfs_driver(id);
106 if (!ld_type) {
107 dprintk("%s: No pNFS module found for %u.\n",
108 __func__, id);
109 goto out_no_driver;
110 }
111 }
02c35fca
FI
112 if (!try_module_get(ld_type->owner)) {
113 dprintk("%s: Could not grab reference on module\n", __func__);
114 goto out_no_driver;
115 }
85e174ba 116 server->pnfs_curr_ld = ld_type;
ea8eecdd 117
85e174ba
RL
118 dprintk("%s: pNFS module for %u set\n", __func__, id);
119 return;
120
121out_no_driver:
122 dprintk("%s: Using NFSv4 I/O\n", __func__);
123 server->pnfs_curr_ld = NULL;
124}
02c35fca
FI
125
126int
127pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
128{
129 int status = -EINVAL;
130 struct pnfs_layoutdriver_type *tmp;
131
132 if (ld_type->id == 0) {
133 printk(KERN_ERR "%s id 0 is reserved\n", __func__);
134 return status;
135 }
b1f69b75
AA
136 if (!ld_type->alloc_lseg || !ld_type->free_lseg) {
137 printk(KERN_ERR "%s Layout driver must provide "
138 "alloc_lseg and free_lseg.\n", __func__);
139 return status;
140 }
02c35fca
FI
141
142 spin_lock(&pnfs_spinlock);
143 tmp = find_pnfs_driver_locked(ld_type->id);
144 if (!tmp) {
145 list_add(&ld_type->pnfs_tblid, &pnfs_modules_tbl);
146 status = 0;
147 dprintk("%s Registering id:%u name:%s\n", __func__, ld_type->id,
148 ld_type->name);
149 } else {
150 printk(KERN_ERR "%s Module with id %d already loaded!\n",
151 __func__, ld_type->id);
152 }
153 spin_unlock(&pnfs_spinlock);
154
155 return status;
156}
157EXPORT_SYMBOL_GPL(pnfs_register_layoutdriver);
158
159void
160pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
161{
162 dprintk("%s Deregistering id:%u\n", __func__, ld_type->id);
163 spin_lock(&pnfs_spinlock);
164 list_del(&ld_type->pnfs_tblid);
165 spin_unlock(&pnfs_spinlock);
166}
167EXPORT_SYMBOL_GPL(pnfs_unregister_layoutdriver);
e5e94017 168
b1f69b75
AA
169/*
170 * pNFS client layout cache
171 */
172
cc6e5340 173/* Need to hold i_lock if caller does not already hold reference */
43f1b3da 174void
cc6e5340 175get_layout_hdr(struct pnfs_layout_hdr *lo)
e5e94017 176{
cc6e5340 177 atomic_inc(&lo->plh_refcount);
e5e94017
BH
178}
179
636fb9c8
BH
180static struct pnfs_layout_hdr *
181pnfs_alloc_layout_hdr(struct inode *ino, gfp_t gfp_flags)
182{
183 struct pnfs_layoutdriver_type *ld = NFS_SERVER(ino)->pnfs_curr_ld;
184 return ld->alloc_layout_hdr ? ld->alloc_layout_hdr(ino, gfp_flags) :
185 kzalloc(sizeof(struct pnfs_layout_hdr), gfp_flags);
186}
187
188static void
189pnfs_free_layout_hdr(struct pnfs_layout_hdr *lo)
190{
191 struct pnfs_layoutdriver_type *ld = NFS_SERVER(lo->plh_inode)->pnfs_curr_ld;
192 return ld->alloc_layout_hdr ? ld->free_layout_hdr(lo) : kfree(lo);
193}
194
e5e94017 195static void
cc6e5340 196destroy_layout_hdr(struct pnfs_layout_hdr *lo)
e5e94017 197{
cc6e5340
FI
198 dprintk("%s: freeing layout cache %p\n", __func__, lo);
199 BUG_ON(!list_empty(&lo->plh_layouts));
200 NFS_I(lo->plh_inode)->layout = NULL;
636fb9c8 201 pnfs_free_layout_hdr(lo);
cc6e5340 202}
e5e94017 203
cc6e5340
FI
204static void
205put_layout_hdr_locked(struct pnfs_layout_hdr *lo)
206{
207 if (atomic_dec_and_test(&lo->plh_refcount))
208 destroy_layout_hdr(lo);
e5e94017
BH
209}
210
b1f69b75 211void
cc6e5340 212put_layout_hdr(struct pnfs_layout_hdr *lo)
974cec8c 213{
cc6e5340
FI
214 struct inode *inode = lo->plh_inode;
215
216 if (atomic_dec_and_lock(&lo->plh_refcount, &inode->i_lock)) {
217 destroy_layout_hdr(lo);
218 spin_unlock(&inode->i_lock);
219 }
974cec8c
AA
220}
221
222static void
223init_lseg(struct pnfs_layout_hdr *lo, struct pnfs_layout_segment *lseg)
224{
566052c5 225 INIT_LIST_HEAD(&lseg->pls_list);
4541d16c
FI
226 atomic_set(&lseg->pls_refcount, 1);
227 smp_mb();
228 set_bit(NFS_LSEG_VALID, &lseg->pls_flags);
566052c5 229 lseg->pls_layout = lo;
974cec8c
AA
230}
231
4541d16c 232static void free_lseg(struct pnfs_layout_segment *lseg)
974cec8c 233{
b7edfaa1 234 struct inode *ino = lseg->pls_layout->plh_inode;
974cec8c 235
b1f69b75 236 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
52fabd73 237 /* Matched by get_layout_hdr in pnfs_insert_layout */
cc6e5340 238 put_layout_hdr(NFS_I(ino)->layout);
974cec8c
AA
239}
240
d684d2ae
FI
241static void
242put_lseg_common(struct pnfs_layout_segment *lseg)
243{
244 struct inode *inode = lseg->pls_layout->plh_inode;
245
d20581aa 246 WARN_ON(test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
d684d2ae
FI
247 list_del_init(&lseg->pls_list);
248 if (list_empty(&lseg->pls_layout->plh_segs)) {
249 set_bit(NFS_LAYOUT_DESTROYED, &lseg->pls_layout->plh_flags);
250 /* Matched by initial refcount set in alloc_init_layout_hdr */
251 put_layout_hdr_locked(lseg->pls_layout);
252 }
253 rpc_wake_up(&NFS_SERVER(inode)->roc_rpcwaitq);
254}
255
bae724ef 256void
d684d2ae 257put_lseg(struct pnfs_layout_segment *lseg)
974cec8c 258{
d684d2ae
FI
259 struct inode *inode;
260
261 if (!lseg)
262 return;
263
4541d16c
FI
264 dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
265 atomic_read(&lseg->pls_refcount),
266 test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
d684d2ae
FI
267 inode = lseg->pls_layout->plh_inode;
268 if (atomic_dec_and_lock(&lseg->pls_refcount, &inode->i_lock)) {
269 LIST_HEAD(free_me);
4541d16c 270
d684d2ae
FI
271 put_lseg_common(lseg);
272 list_add(&lseg->pls_list, &free_me);
273 spin_unlock(&inode->i_lock);
274 pnfs_free_lseg_list(&free_me);
4541d16c 275 }
4541d16c 276}
e0c2b380 277EXPORT_SYMBOL_GPL(put_lseg);
974cec8c 278
fb3296eb
BH
279static inline u64
280end_offset(u64 start, u64 len)
281{
282 u64 end;
283
284 end = start + len;
285 return end >= start ? end : NFS4_MAX_UINT64;
286}
287
288/* last octet in a range */
289static inline u64
290last_byte_offset(u64 start, u64 len)
291{
292 u64 end;
293
294 BUG_ON(!len);
295 end = start + len;
296 return end > start ? end - 1 : NFS4_MAX_UINT64;
297}
298
299/*
300 * is l2 fully contained in l1?
301 * start1 end1
302 * [----------------------------------)
303 * start2 end2
304 * [----------------)
305 */
306static inline int
307lo_seg_contained(struct pnfs_layout_range *l1,
308 struct pnfs_layout_range *l2)
309{
310 u64 start1 = l1->offset;
311 u64 end1 = end_offset(start1, l1->length);
312 u64 start2 = l2->offset;
313 u64 end2 = end_offset(start2, l2->length);
314
315 return (start1 <= start2) && (end1 >= end2);
316}
317
318/*
319 * is l1 and l2 intersecting?
320 * start1 end1
321 * [----------------------------------)
322 * start2 end2
323 * [----------------)
324 */
325static inline int
326lo_seg_intersecting(struct pnfs_layout_range *l1,
327 struct pnfs_layout_range *l2)
328{
329 u64 start1 = l1->offset;
330 u64 end1 = end_offset(start1, l1->length);
331 u64 start2 = l2->offset;
332 u64 end2 = end_offset(start2, l2->length);
333
334 return (end1 == NFS4_MAX_UINT64 || end1 > start2) &&
335 (end2 == NFS4_MAX_UINT64 || end2 > start1);
336}
337
4541d16c 338static bool
778b5502
BH
339should_free_lseg(struct pnfs_layout_range *lseg_range,
340 struct pnfs_layout_range *recall_range)
4541d16c 341{
778b5502
BH
342 return (recall_range->iomode == IOMODE_ANY ||
343 lseg_range->iomode == recall_range->iomode) &&
344 lo_seg_intersecting(lseg_range, recall_range);
974cec8c
AA
345}
346
4541d16c
FI
347/* Returns 1 if lseg is removed from list, 0 otherwise */
348static int mark_lseg_invalid(struct pnfs_layout_segment *lseg,
349 struct list_head *tmp_list)
350{
351 int rv = 0;
352
353 if (test_and_clear_bit(NFS_LSEG_VALID, &lseg->pls_flags)) {
354 /* Remove the reference keeping the lseg in the
355 * list. It will now be removed when all
356 * outstanding io is finished.
357 */
d684d2ae
FI
358 dprintk("%s: lseg %p ref %d\n", __func__, lseg,
359 atomic_read(&lseg->pls_refcount));
360 if (atomic_dec_and_test(&lseg->pls_refcount)) {
361 put_lseg_common(lseg);
362 list_add(&lseg->pls_list, tmp_list);
363 rv = 1;
364 }
4541d16c
FI
365 }
366 return rv;
367}
368
369/* Returns count of number of matching invalid lsegs remaining in list
370 * after call.
371 */
43f1b3da 372int
4541d16c
FI
373mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
374 struct list_head *tmp_list,
778b5502 375 struct pnfs_layout_range *recall_range)
974cec8c
AA
376{
377 struct pnfs_layout_segment *lseg, *next;
4541d16c 378 int invalid = 0, removed = 0;
974cec8c
AA
379
380 dprintk("%s:Begin lo %p\n", __func__, lo);
381
38511722
FI
382 if (list_empty(&lo->plh_segs)) {
383 if (!test_and_set_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags))
384 put_layout_hdr_locked(lo);
385 return 0;
386 }
4541d16c 387 list_for_each_entry_safe(lseg, next, &lo->plh_segs, pls_list)
778b5502
BH
388 if (!recall_range ||
389 should_free_lseg(&lseg->pls_range, recall_range)) {
4541d16c
FI
390 dprintk("%s: freeing lseg %p iomode %d "
391 "offset %llu length %llu\n", __func__,
392 lseg, lseg->pls_range.iomode, lseg->pls_range.offset,
393 lseg->pls_range.length);
394 invalid++;
395 removed += mark_lseg_invalid(lseg, tmp_list);
396 }
397 dprintk("%s:Return %i\n", __func__, invalid - removed);
398 return invalid - removed;
974cec8c
AA
399}
400
f49f9baa 401/* note free_me must contain lsegs from a single layout_hdr */
43f1b3da 402void
4541d16c 403pnfs_free_lseg_list(struct list_head *free_me)
974cec8c 404{
4541d16c 405 struct pnfs_layout_segment *lseg, *tmp;
f49f9baa
FI
406 struct pnfs_layout_hdr *lo;
407
408 if (list_empty(free_me))
409 return;
410
411 lo = list_first_entry(free_me, struct pnfs_layout_segment,
412 pls_list)->pls_layout;
974cec8c 413
f49f9baa
FI
414 if (test_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags)) {
415 struct nfs_client *clp;
416
417 clp = NFS_SERVER(lo->plh_inode)->nfs_client;
418 spin_lock(&clp->cl_lock);
419 list_del_init(&lo->plh_layouts);
420 spin_unlock(&clp->cl_lock);
421 }
4541d16c 422 list_for_each_entry_safe(lseg, tmp, free_me, pls_list) {
566052c5 423 list_del(&lseg->pls_list);
4541d16c 424 free_lseg(lseg);
974cec8c
AA
425 }
426}
427
e5e94017
BH
428void
429pnfs_destroy_layout(struct nfs_inode *nfsi)
430{
431 struct pnfs_layout_hdr *lo;
974cec8c 432 LIST_HEAD(tmp_list);
e5e94017
BH
433
434 spin_lock(&nfsi->vfs_inode.i_lock);
435 lo = nfsi->layout;
436 if (lo) {
38511722 437 lo->plh_block_lgets++; /* permanently block new LAYOUTGETs */
778b5502 438 mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
e5e94017
BH
439 }
440 spin_unlock(&nfsi->vfs_inode.i_lock);
974cec8c
AA
441 pnfs_free_lseg_list(&tmp_list);
442}
443
444/*
445 * Called by the state manger to remove all layouts established under an
446 * expired lease.
447 */
448void
449pnfs_destroy_all_layouts(struct nfs_client *clp)
450{
451 struct pnfs_layout_hdr *lo;
452 LIST_HEAD(tmp_list);
453
454 spin_lock(&clp->cl_lock);
455 list_splice_init(&clp->cl_layouts, &tmp_list);
456 spin_unlock(&clp->cl_lock);
457
458 while (!list_empty(&tmp_list)) {
459 lo = list_entry(tmp_list.next, struct pnfs_layout_hdr,
b7edfaa1 460 plh_layouts);
974cec8c 461 dprintk("%s freeing layout for inode %lu\n", __func__,
b7edfaa1 462 lo->plh_inode->i_ino);
2887fe45 463 list_del_init(&lo->plh_layouts);
b7edfaa1 464 pnfs_destroy_layout(NFS_I(lo->plh_inode));
974cec8c 465 }
e5e94017
BH
466}
467
fd6002e9 468/* update lo->plh_stateid with new if is more recent */
43f1b3da
FI
469void
470pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo, const nfs4_stateid *new,
471 bool update_barrier)
b1f69b75 472{
fd6002e9 473 u32 oldseq, newseq;
b1f69b75 474
fd6002e9
FI
475 oldseq = be32_to_cpu(lo->plh_stateid.stateid.seqid);
476 newseq = be32_to_cpu(new->stateid.seqid);
43f1b3da 477 if ((int)(newseq - oldseq) > 0) {
fd6002e9 478 memcpy(&lo->plh_stateid, &new->stateid, sizeof(new->stateid));
43f1b3da
FI
479 if (update_barrier) {
480 u32 new_barrier = be32_to_cpu(new->stateid.seqid);
481
482 if ((int)(new_barrier - lo->plh_barrier))
483 lo->plh_barrier = new_barrier;
484 } else {
485 /* Because of wraparound, we want to keep the barrier
486 * "close" to the current seqids. It needs to be
487 * within 2**31 to count as "behind", so if it
488 * gets too near that limit, give us a litle leeway
489 * and bring it to within 2**30.
490 * NOTE - and yes, this is all unsigned arithmetic.
491 */
492 if (unlikely((newseq - lo->plh_barrier) > (3 << 29)))
493 lo->plh_barrier = newseq - (1 << 30);
494 }
495 }
b1f69b75
AA
496}
497
cf7d63f1
FI
498/* lget is set to 1 if called from inside send_layoutget call chain */
499static bool
43f1b3da
FI
500pnfs_layoutgets_blocked(struct pnfs_layout_hdr *lo, nfs4_stateid *stateid,
501 int lget)
502{
503 if ((stateid) &&
504 (int)(lo->plh_barrier - be32_to_cpu(stateid->stateid.seqid)) >= 0)
505 return true;
f7e8917a 506 return lo->plh_block_lgets ||
38511722 507 test_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags) ||
f7e8917a 508 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags) ||
43f1b3da 509 (list_empty(&lo->plh_segs) &&
cf7d63f1
FI
510 (atomic_read(&lo->plh_outstanding) > lget));
511}
512
fd6002e9
FI
513int
514pnfs_choose_layoutget_stateid(nfs4_stateid *dst, struct pnfs_layout_hdr *lo,
515 struct nfs4_state *open_state)
b1f69b75 516{
fd6002e9 517 int status = 0;
974cec8c 518
b1f69b75 519 dprintk("--> %s\n", __func__);
fd6002e9 520 spin_lock(&lo->plh_inode->i_lock);
43f1b3da 521 if (pnfs_layoutgets_blocked(lo, NULL, 1)) {
cf7d63f1
FI
522 status = -EAGAIN;
523 } else if (list_empty(&lo->plh_segs)) {
fd6002e9
FI
524 int seq;
525
526 do {
527 seq = read_seqbegin(&open_state->seqlock);
528 memcpy(dst->data, open_state->stateid.data,
529 sizeof(open_state->stateid.data));
530 } while (read_seqretry(&open_state->seqlock, seq));
531 } else
532 memcpy(dst->data, lo->plh_stateid.data, sizeof(lo->plh_stateid.data));
533 spin_unlock(&lo->plh_inode->i_lock);
b1f69b75 534 dprintk("<-- %s\n", __func__);
fd6002e9 535 return status;
b1f69b75
AA
536}
537
538/*
539* Get layout from server.
540* for now, assume that whole file layouts are requested.
541* arg->offset: 0
542* arg->length: all ones
543*/
e5e94017
BH
544static struct pnfs_layout_segment *
545send_layoutget(struct pnfs_layout_hdr *lo,
546 struct nfs_open_context *ctx,
fb3296eb 547 struct pnfs_layout_range *range,
a75b9df9 548 gfp_t gfp_flags)
e5e94017 549{
b7edfaa1 550 struct inode *ino = lo->plh_inode;
b1f69b75
AA
551 struct nfs_server *server = NFS_SERVER(ino);
552 struct nfs4_layoutget *lgp;
553 struct pnfs_layout_segment *lseg = NULL;
35124a09
WAA
554 struct page **pages = NULL;
555 int i;
556 u32 max_resp_sz, max_pages;
b1f69b75
AA
557
558 dprintk("--> %s\n", __func__);
e5e94017 559
b1f69b75 560 BUG_ON(ctx == NULL);
a75b9df9 561 lgp = kzalloc(sizeof(*lgp), gfp_flags);
cf7d63f1 562 if (lgp == NULL)
b1f69b75 563 return NULL;
35124a09
WAA
564
565 /* allocate pages for xdr post processing */
566 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
567 max_pages = max_resp_sz >> PAGE_SHIFT;
568
a75b9df9 569 pages = kzalloc(max_pages * sizeof(struct page *), gfp_flags);
35124a09
WAA
570 if (!pages)
571 goto out_err_free;
572
573 for (i = 0; i < max_pages; i++) {
a75b9df9 574 pages[i] = alloc_page(gfp_flags);
35124a09
WAA
575 if (!pages[i])
576 goto out_err_free;
577 }
578
fb3296eb
BH
579 lgp->args.minlength = PAGE_CACHE_SIZE;
580 if (lgp->args.minlength > range->length)
581 lgp->args.minlength = range->length;
b1f69b75 582 lgp->args.maxcount = PNFS_LAYOUT_MAXSIZE;
fb3296eb 583 lgp->args.range = *range;
b1f69b75
AA
584 lgp->args.type = server->pnfs_curr_ld->id;
585 lgp->args.inode = ino;
586 lgp->args.ctx = get_nfs_open_context(ctx);
35124a09
WAA
587 lgp->args.layout.pages = pages;
588 lgp->args.layout.pglen = max_pages * PAGE_SIZE;
b1f69b75 589 lgp->lsegpp = &lseg;
a75b9df9 590 lgp->gfp_flags = gfp_flags;
b1f69b75
AA
591
592 /* Synchronously retrieve layout information from server and
593 * store in lseg.
594 */
595 nfs4_proc_layoutget(lgp);
974cec8c 596 if (!lseg) {
b1f69b75 597 /* remember that LAYOUTGET failed and suspend trying */
fb3296eb 598 set_bit(lo_fail_bit(range->iomode), &lo->plh_flags);
974cec8c 599 }
35124a09
WAA
600
601 /* free xdr pages */
602 for (i = 0; i < max_pages; i++)
603 __free_page(pages[i]);
604 kfree(pages);
605
974cec8c 606 return lseg;
35124a09
WAA
607
608out_err_free:
609 /* free any allocated xdr pages, lgp as it's not used */
610 if (pages) {
611 for (i = 0; i < max_pages; i++) {
612 if (!pages[i])
613 break;
614 __free_page(pages[i]);
615 }
616 kfree(pages);
617 }
618 kfree(lgp);
619 return NULL;
974cec8c
AA
620}
621
cbe82603
BH
622/* Initiates a LAYOUTRETURN(FILE) */
623int
624_pnfs_return_layout(struct inode *ino)
625{
626 struct pnfs_layout_hdr *lo = NULL;
627 struct nfs_inode *nfsi = NFS_I(ino);
628 LIST_HEAD(tmp_list);
629 struct nfs4_layoutreturn *lrp;
630 nfs4_stateid stateid;
631 int status = 0;
632
633 dprintk("--> %s\n", __func__);
634
635 spin_lock(&ino->i_lock);
636 lo = nfsi->layout;
a2e1d4f2 637 if (!lo) {
cbe82603 638 spin_unlock(&ino->i_lock);
a2e1d4f2
FI
639 dprintk("%s: no layout to return\n", __func__);
640 return status;
cbe82603
BH
641 }
642 stateid = nfsi->layout->plh_stateid;
643 /* Reference matched in nfs4_layoutreturn_release */
644 get_layout_hdr(lo);
ea0ded74
FI
645 mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
646 lo->plh_block_lgets++;
cbe82603
BH
647 spin_unlock(&ino->i_lock);
648 pnfs_free_lseg_list(&tmp_list);
649
650 WARN_ON(test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags));
651
652 lrp = kzalloc(sizeof(*lrp), GFP_KERNEL);
653 if (unlikely(lrp == NULL)) {
654 status = -ENOMEM;
1ed3a853 655 put_layout_hdr(lo);
cbe82603
BH
656 goto out;
657 }
658
659 lrp->args.stateid = stateid;
660 lrp->args.layout_type = NFS_SERVER(ino)->pnfs_curr_ld->id;
661 lrp->args.inode = ino;
662 lrp->clp = NFS_SERVER(ino)->nfs_client;
663
664 status = nfs4_proc_layoutreturn(lrp);
665out:
666 dprintk("<-- %s status: %d\n", __func__, status);
667 return status;
668}
669
f7e8917a
FI
670bool pnfs_roc(struct inode *ino)
671{
672 struct pnfs_layout_hdr *lo;
673 struct pnfs_layout_segment *lseg, *tmp;
674 LIST_HEAD(tmp_list);
675 bool found = false;
676
677 spin_lock(&ino->i_lock);
678 lo = NFS_I(ino)->layout;
679 if (!lo || !test_and_clear_bit(NFS_LAYOUT_ROC, &lo->plh_flags) ||
680 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags))
681 goto out_nolayout;
682 list_for_each_entry_safe(lseg, tmp, &lo->plh_segs, pls_list)
683 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
684 mark_lseg_invalid(lseg, &tmp_list);
685 found = true;
686 }
687 if (!found)
688 goto out_nolayout;
689 lo->plh_block_lgets++;
690 get_layout_hdr(lo); /* matched in pnfs_roc_release */
691 spin_unlock(&ino->i_lock);
692 pnfs_free_lseg_list(&tmp_list);
693 return true;
694
695out_nolayout:
696 spin_unlock(&ino->i_lock);
697 return false;
698}
699
700void pnfs_roc_release(struct inode *ino)
701{
702 struct pnfs_layout_hdr *lo;
703
704 spin_lock(&ino->i_lock);
705 lo = NFS_I(ino)->layout;
706 lo->plh_block_lgets--;
707 put_layout_hdr_locked(lo);
708 spin_unlock(&ino->i_lock);
709}
710
711void pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
712{
713 struct pnfs_layout_hdr *lo;
714
715 spin_lock(&ino->i_lock);
716 lo = NFS_I(ino)->layout;
717 if ((int)(barrier - lo->plh_barrier) > 0)
718 lo->plh_barrier = barrier;
719 spin_unlock(&ino->i_lock);
720}
721
722bool pnfs_roc_drain(struct inode *ino, u32 *barrier)
723{
724 struct nfs_inode *nfsi = NFS_I(ino);
725 struct pnfs_layout_segment *lseg;
726 bool found = false;
727
728 spin_lock(&ino->i_lock);
729 list_for_each_entry(lseg, &nfsi->layout->plh_segs, pls_list)
730 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
731 found = true;
732 break;
733 }
734 if (!found) {
735 struct pnfs_layout_hdr *lo = nfsi->layout;
736 u32 current_seqid = be32_to_cpu(lo->plh_stateid.stateid.seqid);
737
738 /* Since close does not return a layout stateid for use as
739 * a barrier, we choose the worst-case barrier.
740 */
741 *barrier = current_seqid + atomic_read(&lo->plh_outstanding);
742 }
743 spin_unlock(&ino->i_lock);
744 return found;
745}
746
b1f69b75
AA
747/*
748 * Compare two layout segments for sorting into layout cache.
749 * We want to preferentially return RW over RO layouts, so ensure those
750 * are seen first.
751 */
752static s64
fb3296eb
BH
753cmp_layout(struct pnfs_layout_range *l1,
754 struct pnfs_layout_range *l2)
b1f69b75 755{
fb3296eb
BH
756 s64 d;
757
758 /* high offset > low offset */
759 d = l1->offset - l2->offset;
760 if (d)
761 return d;
762
763 /* short length > long length */
764 d = l2->length - l1->length;
765 if (d)
766 return d;
767
b1f69b75 768 /* read > read/write */
fb3296eb 769 return (int)(l1->iomode == IOMODE_READ) - (int)(l2->iomode == IOMODE_READ);
b1f69b75
AA
770}
771
974cec8c
AA
772static void
773pnfs_insert_layout(struct pnfs_layout_hdr *lo,
774 struct pnfs_layout_segment *lseg)
775{
b1f69b75 776 struct pnfs_layout_segment *lp;
b1f69b75 777
974cec8c
AA
778 dprintk("%s:Begin\n", __func__);
779
b7edfaa1 780 assert_spin_locked(&lo->plh_inode->i_lock);
b7edfaa1 781 list_for_each_entry(lp, &lo->plh_segs, pls_list) {
fb3296eb 782 if (cmp_layout(&lseg->pls_range, &lp->pls_range) > 0)
b1f69b75 783 continue;
566052c5 784 list_add_tail(&lseg->pls_list, &lp->pls_list);
b1f69b75
AA
785 dprintk("%s: inserted lseg %p "
786 "iomode %d offset %llu length %llu before "
787 "lp %p iomode %d offset %llu length %llu\n",
566052c5
FI
788 __func__, lseg, lseg->pls_range.iomode,
789 lseg->pls_range.offset, lseg->pls_range.length,
790 lp, lp->pls_range.iomode, lp->pls_range.offset,
791 lp->pls_range.length);
fb3296eb 792 goto out;
974cec8c 793 }
fb3296eb
BH
794 list_add_tail(&lseg->pls_list, &lo->plh_segs);
795 dprintk("%s: inserted lseg %p "
796 "iomode %d offset %llu length %llu at tail\n",
797 __func__, lseg, lseg->pls_range.iomode,
798 lseg->pls_range.offset, lseg->pls_range.length);
799out:
cc6e5340 800 get_layout_hdr(lo);
974cec8c
AA
801
802 dprintk("%s:Return\n", __func__);
e5e94017
BH
803}
804
805static struct pnfs_layout_hdr *
a75b9df9 806alloc_init_layout_hdr(struct inode *ino, gfp_t gfp_flags)
e5e94017
BH
807{
808 struct pnfs_layout_hdr *lo;
809
636fb9c8 810 lo = pnfs_alloc_layout_hdr(ino, gfp_flags);
e5e94017
BH
811 if (!lo)
812 return NULL;
cc6e5340 813 atomic_set(&lo->plh_refcount, 1);
b7edfaa1
FI
814 INIT_LIST_HEAD(&lo->plh_layouts);
815 INIT_LIST_HEAD(&lo->plh_segs);
43f1b3da 816 INIT_LIST_HEAD(&lo->plh_bulk_recall);
b7edfaa1 817 lo->plh_inode = ino;
e5e94017
BH
818 return lo;
819}
820
821static struct pnfs_layout_hdr *
a75b9df9 822pnfs_find_alloc_layout(struct inode *ino, gfp_t gfp_flags)
e5e94017
BH
823{
824 struct nfs_inode *nfsi = NFS_I(ino);
825 struct pnfs_layout_hdr *new = NULL;
826
827 dprintk("%s Begin ino=%p layout=%p\n", __func__, ino, nfsi->layout);
828
829 assert_spin_locked(&ino->i_lock);
4541d16c
FI
830 if (nfsi->layout) {
831 if (test_bit(NFS_LAYOUT_DESTROYED, &nfsi->layout->plh_flags))
832 return NULL;
833 else
834 return nfsi->layout;
835 }
e5e94017 836 spin_unlock(&ino->i_lock);
a75b9df9 837 new = alloc_init_layout_hdr(ino, gfp_flags);
e5e94017
BH
838 spin_lock(&ino->i_lock);
839
840 if (likely(nfsi->layout == NULL)) /* Won the race? */
841 nfsi->layout = new;
842 else
636fb9c8 843 pnfs_free_layout_hdr(new);
e5e94017
BH
844 return nfsi->layout;
845}
846
b1f69b75
AA
847/*
848 * iomode matching rules:
849 * iomode lseg match
850 * ----- ----- -----
851 * ANY READ true
852 * ANY RW true
853 * RW READ false
854 * RW RW true
855 * READ READ true
856 * READ RW true
857 */
858static int
fb3296eb
BH
859is_matching_lseg(struct pnfs_layout_range *ls_range,
860 struct pnfs_layout_range *range)
b1f69b75 861{
fb3296eb
BH
862 struct pnfs_layout_range range1;
863
864 if ((range->iomode == IOMODE_RW &&
865 ls_range->iomode != IOMODE_RW) ||
866 !lo_seg_intersecting(ls_range, range))
867 return 0;
868
869 /* range1 covers only the first byte in the range */
870 range1 = *range;
871 range1.length = 1;
872 return lo_seg_contained(ls_range, &range1);
b1f69b75
AA
873}
874
875/*
876 * lookup range in layout
877 */
e5e94017 878static struct pnfs_layout_segment *
fb3296eb
BH
879pnfs_find_lseg(struct pnfs_layout_hdr *lo,
880 struct pnfs_layout_range *range)
e5e94017 881{
b1f69b75
AA
882 struct pnfs_layout_segment *lseg, *ret = NULL;
883
884 dprintk("%s:Begin\n", __func__);
885
b7edfaa1
FI
886 assert_spin_locked(&lo->plh_inode->i_lock);
887 list_for_each_entry(lseg, &lo->plh_segs, pls_list) {
4541d16c 888 if (test_bit(NFS_LSEG_VALID, &lseg->pls_flags) &&
fb3296eb 889 is_matching_lseg(&lseg->pls_range, range)) {
d684d2ae 890 ret = get_lseg(lseg);
b1f69b75
AA
891 break;
892 }
d771e3a4 893 if (lseg->pls_range.offset > range->offset)
b1f69b75
AA
894 break;
895 }
896
897 dprintk("%s:Return lseg %p ref %d\n",
4541d16c 898 __func__, ret, ret ? atomic_read(&ret->pls_refcount) : 0);
b1f69b75 899 return ret;
e5e94017
BH
900}
901
902/*
903 * Layout segment is retreived from the server if not cached.
904 * The appropriate layout segment is referenced and returned to the caller.
905 */
906struct pnfs_layout_segment *
907pnfs_update_layout(struct inode *ino,
908 struct nfs_open_context *ctx,
fb3296eb
BH
909 loff_t pos,
910 u64 count,
a75b9df9
TM
911 enum pnfs_iomode iomode,
912 gfp_t gfp_flags)
e5e94017 913{
fb3296eb
BH
914 struct pnfs_layout_range arg = {
915 .iomode = iomode,
916 .offset = pos,
917 .length = count,
918 };
707ed5fd 919 unsigned pg_offset;
e5e94017 920 struct nfs_inode *nfsi = NFS_I(ino);
2130ff66 921 struct nfs_client *clp = NFS_SERVER(ino)->nfs_client;
e5e94017
BH
922 struct pnfs_layout_hdr *lo;
923 struct pnfs_layout_segment *lseg = NULL;
f49f9baa 924 bool first = false;
e5e94017
BH
925
926 if (!pnfs_enabled_sb(NFS_SERVER(ino)))
927 return NULL;
928 spin_lock(&ino->i_lock);
a75b9df9 929 lo = pnfs_find_alloc_layout(ino, gfp_flags);
e5e94017
BH
930 if (lo == NULL) {
931 dprintk("%s ERROR: can't get pnfs_layout_hdr\n", __func__);
932 goto out_unlock;
933 }
934
43f1b3da
FI
935 /* Do we even need to bother with this? */
936 if (test_bit(NFS4CLNT_LAYOUTRECALL, &clp->cl_state) ||
937 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
938 dprintk("%s matches recall, use MDS\n", __func__);
e5e94017
BH
939 goto out_unlock;
940 }
941
942 /* if LAYOUTGET already failed once we don't try again */
566052c5 943 if (test_bit(lo_fail_bit(iomode), &nfsi->layout->plh_flags))
e5e94017
BH
944 goto out_unlock;
945
568e8c49 946 /* Check to see if the layout for the given range already exists */
fb3296eb 947 lseg = pnfs_find_lseg(lo, &arg);
568e8c49
AA
948 if (lseg)
949 goto out_unlock;
950
43f1b3da 951 if (pnfs_layoutgets_blocked(lo, NULL, 0))
cf7d63f1
FI
952 goto out_unlock;
953 atomic_inc(&lo->plh_outstanding);
954
cc6e5340 955 get_layout_hdr(lo);
f49f9baa
FI
956 if (list_empty(&lo->plh_segs))
957 first = true;
958 spin_unlock(&ino->i_lock);
959 if (first) {
2130ff66
FI
960 /* The lo must be on the clp list if there is any
961 * chance of a CB_LAYOUTRECALL(FILE) coming in.
962 */
963 spin_lock(&clp->cl_lock);
964 BUG_ON(!list_empty(&lo->plh_layouts));
965 list_add_tail(&lo->plh_layouts, &clp->cl_layouts);
966 spin_unlock(&clp->cl_lock);
967 }
e5e94017 968
707ed5fd
BH
969 pg_offset = arg.offset & ~PAGE_CACHE_MASK;
970 if (pg_offset) {
971 arg.offset -= pg_offset;
972 arg.length += pg_offset;
973 }
974 arg.length = PAGE_CACHE_ALIGN(arg.length);
975
fb3296eb 976 lseg = send_layoutget(lo, ctx, &arg, gfp_flags);
f49f9baa
FI
977 if (!lseg && first) {
978 spin_lock(&clp->cl_lock);
979 list_del_init(&lo->plh_layouts);
980 spin_unlock(&clp->cl_lock);
2130ff66 981 }
cf7d63f1 982 atomic_dec(&lo->plh_outstanding);
cc6e5340 983 put_layout_hdr(lo);
e5e94017
BH
984out:
985 dprintk("%s end, state 0x%lx lseg %p\n", __func__,
bf9c1387 986 nfsi->layout ? nfsi->layout->plh_flags : -1, lseg);
e5e94017
BH
987 return lseg;
988out_unlock:
989 spin_unlock(&ino->i_lock);
990 goto out;
991}
b1f69b75
AA
992
993int
994pnfs_layout_process(struct nfs4_layoutget *lgp)
995{
996 struct pnfs_layout_hdr *lo = NFS_I(lgp->args.inode)->layout;
997 struct nfs4_layoutget_res *res = &lgp->res;
998 struct pnfs_layout_segment *lseg;
b7edfaa1 999 struct inode *ino = lo->plh_inode;
43f1b3da 1000 struct nfs_client *clp = NFS_SERVER(ino)->nfs_client;
b1f69b75
AA
1001 int status = 0;
1002
1003 /* Inject layout blob into I/O device driver */
a75b9df9 1004 lseg = NFS_SERVER(ino)->pnfs_curr_ld->alloc_lseg(lo, res, lgp->gfp_flags);
b1f69b75
AA
1005 if (!lseg || IS_ERR(lseg)) {
1006 if (!lseg)
1007 status = -ENOMEM;
1008 else
1009 status = PTR_ERR(lseg);
1010 dprintk("%s: Could not allocate layout: error %d\n",
1011 __func__, status);
1012 goto out;
1013 }
1014
1015 spin_lock(&ino->i_lock);
43f1b3da
FI
1016 if (test_bit(NFS4CLNT_LAYOUTRECALL, &clp->cl_state) ||
1017 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
1018 dprintk("%s forget reply due to recall\n", __func__);
1019 goto out_forget_reply;
1020 }
1021
1022 if (pnfs_layoutgets_blocked(lo, &res->stateid, 1)) {
1023 dprintk("%s forget reply due to state\n", __func__);
1024 goto out_forget_reply;
1025 }
b1f69b75 1026 init_lseg(lo, lseg);
566052c5 1027 lseg->pls_range = res->range;
d684d2ae 1028 *lgp->lsegpp = get_lseg(lseg);
b1f69b75
AA
1029 pnfs_insert_layout(lo, lseg);
1030
f7e8917a
FI
1031 if (res->return_on_close) {
1032 set_bit(NFS_LSEG_ROC, &lseg->pls_flags);
1033 set_bit(NFS_LAYOUT_ROC, &lo->plh_flags);
1034 }
1035
b1f69b75 1036 /* Done processing layoutget. Set the layout stateid */
43f1b3da 1037 pnfs_set_layout_stateid(lo, &res->stateid, false);
b1f69b75
AA
1038 spin_unlock(&ino->i_lock);
1039out:
1040 return status;
43f1b3da
FI
1041
1042out_forget_reply:
1043 spin_unlock(&ino->i_lock);
1044 lseg->pls_layout = lo;
1045 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
1046 goto out;
b1f69b75
AA
1047}
1048
18ad0a9f 1049bool
dfed206b
BH
1050pnfs_generic_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
1051 struct nfs_page *req)
94ad1c80 1052{
dfed206b
BH
1053 enum pnfs_iomode access_type;
1054 gfp_t gfp_flags;
bae724ef 1055
dfed206b
BH
1056 /* We assume that pg_ioflags == 0 iff we're reading a page */
1057 if (pgio->pg_ioflags == 0) {
1058 access_type = IOMODE_READ;
1059 gfp_flags = GFP_KERNEL;
1060 } else {
1061 access_type = IOMODE_RW;
1062 gfp_flags = GFP_NOFS;
1063 }
94ad1c80 1064
bae724ef
FI
1065 if (pgio->pg_count == prev->wb_bytes) {
1066 /* This is first coelesce call for a series of nfs_pages */
1067 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
1068 prev->wb_context,
fb3296eb
BH
1069 req_offset(req),
1070 pgio->pg_count,
dfed206b
BH
1071 access_type,
1072 gfp_flags);
89a58e32 1073 return true;
bae724ef 1074 }
94ad1c80 1075
89a58e32
BH
1076 if (pgio->pg_lseg &&
1077 req_offset(req) > end_offset(pgio->pg_lseg->pls_range.offset,
1078 pgio->pg_lseg->pls_range.length))
18ad0a9f 1079 return false;
bae724ef 1080
89a58e32 1081 return true;
94ad1c80 1082}
89a58e32 1083EXPORT_SYMBOL_GPL(pnfs_generic_pg_test);
94ad1c80 1084
d20581aa
BH
1085/*
1086 * Called by non rpc-based layout drivers
1087 */
1088int
1089pnfs_ld_write_done(struct nfs_write_data *data)
44b83799 1090{
d20581aa 1091 int status;
44b83799 1092
d20581aa
BH
1093 if (!data->pnfs_error) {
1094 pnfs_set_layoutcommit(data);
1095 data->mds_ops->rpc_call_done(&data->task, data);
1096 data->mds_ops->rpc_release(data);
1097 return 0;
1098 }
44b83799 1099
d20581aa
BH
1100 dprintk("%s: pnfs_error=%d, retry via MDS\n", __func__,
1101 data->pnfs_error);
1102 status = nfs_initiate_write(data, NFS_CLIENT(data->inode),
1103 data->mds_ops, NFS_FILE_SYNC);
1104 return status ? : -EAGAIN;
44b83799 1105}
d20581aa 1106EXPORT_SYMBOL_GPL(pnfs_ld_write_done);
44b83799 1107
0382b744
AA
1108enum pnfs_try_status
1109pnfs_try_to_write_data(struct nfs_write_data *wdata,
1110 const struct rpc_call_ops *call_ops, int how)
1111{
1112 struct inode *inode = wdata->inode;
1113 enum pnfs_try_status trypnfs;
1114 struct nfs_server *nfss = NFS_SERVER(inode);
1115
1116 wdata->mds_ops = call_ops;
1117
1118 dprintk("%s: Writing ino:%lu %u@%llu (how %d)\n", __func__,
1119 inode->i_ino, wdata->args.count, wdata->args.offset, how);
1120
1121 trypnfs = nfss->pnfs_curr_ld->write_pagelist(wdata, how);
1122 if (trypnfs == PNFS_NOT_ATTEMPTED) {
1123 put_lseg(wdata->lseg);
1124 wdata->lseg = NULL;
1125 } else
1126 nfs_inc_stats(inode, NFSIOS_PNFS_WRITE);
1127
1128 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
1129 return trypnfs;
1130}
1131
d20581aa
BH
1132/*
1133 * Called by non rpc-based layout drivers
1134 */
1135int
1136pnfs_ld_read_done(struct nfs_read_data *data)
1137{
1138 int status;
1139
1140 if (!data->pnfs_error) {
1141 __nfs4_read_done_cb(data);
1142 data->mds_ops->rpc_call_done(&data->task, data);
1143 data->mds_ops->rpc_release(data);
1144 return 0;
1145 }
1146
1147 dprintk("%s: pnfs_error=%d, retry via MDS\n", __func__,
1148 data->pnfs_error);
1149 status = nfs_initiate_read(data, NFS_CLIENT(data->inode),
1150 data->mds_ops);
1151 return status ? : -EAGAIN;
1152}
1153EXPORT_SYMBOL_GPL(pnfs_ld_read_done);
1154
64419a9b
AA
1155/*
1156 * Call the appropriate parallel I/O subsystem read function.
1157 */
1158enum pnfs_try_status
1159pnfs_try_to_read_data(struct nfs_read_data *rdata,
1160 const struct rpc_call_ops *call_ops)
1161{
1162 struct inode *inode = rdata->inode;
1163 struct nfs_server *nfss = NFS_SERVER(inode);
1164 enum pnfs_try_status trypnfs;
1165
1166 rdata->mds_ops = call_ops;
1167
1168 dprintk("%s: Reading ino:%lu %u@%llu\n",
1169 __func__, inode->i_ino, rdata->args.count, rdata->args.offset);
1170
1171 trypnfs = nfss->pnfs_curr_ld->read_pagelist(rdata);
1172 if (trypnfs == PNFS_NOT_ATTEMPTED) {
1173 put_lseg(rdata->lseg);
1174 rdata->lseg = NULL;
1175 } else {
1176 nfs_inc_stats(inode, NFSIOS_PNFS_READ);
1177 }
1178 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
1179 return trypnfs;
1180}
863a3c6c
AA
1181
1182/*
1183 * Currently there is only one (whole file) write lseg.
1184 */
1185static struct pnfs_layout_segment *pnfs_list_write_lseg(struct inode *inode)
1186{
1187 struct pnfs_layout_segment *lseg, *rv = NULL;
1188
1189 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list)
1190 if (lseg->pls_range.iomode == IOMODE_RW)
1191 rv = lseg;
1192 return rv;
1193}
1194
1195void
1196pnfs_set_layoutcommit(struct nfs_write_data *wdata)
1197{
1198 struct nfs_inode *nfsi = NFS_I(wdata->inode);
4b8ee2b8 1199 loff_t end_pos = wdata->mds_offset + wdata->res.count;
79a48a1f 1200 bool mark_as_dirty = false;
863a3c6c
AA
1201
1202 spin_lock(&nfsi->vfs_inode.i_lock);
1203 if (!test_and_set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
1204 /* references matched in nfs4_layoutcommit_release */
1205 get_lseg(wdata->lseg);
1206 wdata->lseg->pls_lc_cred =
1207 get_rpccred(wdata->args.context->state->owner->so_cred);
79a48a1f 1208 mark_as_dirty = true;
863a3c6c
AA
1209 dprintk("%s: Set layoutcommit for inode %lu ",
1210 __func__, wdata->inode->i_ino);
1211 }
1212 if (end_pos > wdata->lseg->pls_end_pos)
1213 wdata->lseg->pls_end_pos = end_pos;
1214 spin_unlock(&nfsi->vfs_inode.i_lock);
79a48a1f
WAA
1215
1216 /* if pnfs_layoutcommit_inode() runs between inode locks, the next one
1217 * will be a noop because NFS_INO_LAYOUTCOMMIT will not be set */
1218 if (mark_as_dirty)
1219 mark_inode_dirty_sync(wdata->inode);
863a3c6c
AA
1220}
1221EXPORT_SYMBOL_GPL(pnfs_set_layoutcommit);
1222
de4b15c7
AA
1223/*
1224 * For the LAYOUT4_NFSV4_1_FILES layout type, NFS_DATA_SYNC WRITEs and
1225 * NFS_UNSTABLE WRITEs with a COMMIT to data servers must store enough
1226 * data to disk to allow the server to recover the data if it crashes.
1227 * LAYOUTCOMMIT is only needed when the NFL4_UFLG_COMMIT_THRU_MDS flag
1228 * is off, and a COMMIT is sent to a data server, or
1229 * if WRITEs to a data server return NFS_DATA_SYNC.
1230 */
863a3c6c 1231int
ef311537 1232pnfs_layoutcommit_inode(struct inode *inode, bool sync)
863a3c6c
AA
1233{
1234 struct nfs4_layoutcommit_data *data;
1235 struct nfs_inode *nfsi = NFS_I(inode);
1236 struct pnfs_layout_segment *lseg;
1237 struct rpc_cred *cred;
1238 loff_t end_pos;
1239 int status = 0;
1240
1241 dprintk("--> %s inode %lu\n", __func__, inode->i_ino);
1242
de4b15c7
AA
1243 if (!test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
1244 return 0;
1245
863a3c6c
AA
1246 /* Note kzalloc ensures data->res.seq_res.sr_slot == NULL */
1247 data = kzalloc(sizeof(*data), GFP_NOFS);
de4b15c7
AA
1248 if (!data) {
1249 mark_inode_dirty_sync(inode);
1250 status = -ENOMEM;
1251 goto out;
1252 }
863a3c6c 1253
de4b15c7 1254 spin_lock(&inode->i_lock);
863a3c6c
AA
1255 if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
1256 spin_unlock(&inode->i_lock);
1257 kfree(data);
1258 goto out;
1259 }
1260 /*
1261 * Currently only one (whole file) write lseg which is referenced
1262 * in pnfs_set_layoutcommit and will be found.
1263 */
1264 lseg = pnfs_list_write_lseg(inode);
1265
1266 end_pos = lseg->pls_end_pos;
1267 cred = lseg->pls_lc_cred;
1268 lseg->pls_end_pos = 0;
1269 lseg->pls_lc_cred = NULL;
1270
de4b15c7
AA
1271 memcpy(&data->args.stateid.data, nfsi->layout->plh_stateid.data,
1272 sizeof(nfsi->layout->plh_stateid.data));
863a3c6c
AA
1273 spin_unlock(&inode->i_lock);
1274
1275 data->args.inode = inode;
1276 data->lseg = lseg;
1277 data->cred = cred;
1278 nfs_fattr_init(&data->fattr);
1279 data->args.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
1280 data->res.fattr = &data->fattr;
1281 data->args.lastbytewritten = end_pos - 1;
1282 data->res.server = NFS_SERVER(inode);
1283
1284 status = nfs4_proc_layoutcommit(data, sync);
1285out:
1286 dprintk("<-- %s status %d\n", __func__, status);
1287 return status;
1288}