nfs/blocklayout: make sure making a aligned read request
[linux-2.6-block.git] / fs / nfs / blocklayout / blocklayout.c
CommitLineData
155e7524
FI
1/*
2 * linux/fs/nfs/blocklayout/blocklayout.c
3 *
4 * Module for the NFSv4.1 pNFS block layout driver.
5 *
6 * Copyright (c) 2006 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Andy Adamson <andros@citi.umich.edu>
10 * Fred Isaman <iisaman@umich.edu>
11 *
12 * permission is granted to use, copy, create derivative works and
13 * redistribute this software and such derivative works for any purpose,
14 * so long as the name of the university of michigan is not used in
15 * any advertising or publicity pertaining to the use or distribution
16 * of this software without specific, written prior authorization. if
17 * the above copyright notice or any other identification of the
18 * university of michigan is included in any copy of any portion of
19 * this software, then the disclaimer below must also be included.
20 *
21 * this software is provided as is, without representation from the
22 * university of michigan as to its fitness for any purpose, and without
23 * warranty by the university of michigan of any kind, either express
24 * or implied, including without limitation the implied warranties of
25 * merchantability and fitness for a particular purpose. the regents
26 * of the university of michigan shall not be liable for any damages,
27 * including special, indirect, incidental, or consequential damages,
28 * with respect to any claim arising out or in connection with the use
29 * of the software, even if it has been or is hereafter advised of the
30 * possibility of such damages.
31 */
9549ec01 32
155e7524
FI
33#include <linux/module.h>
34#include <linux/init.h>
fe0a9b74
JR
35#include <linux/mount.h>
36#include <linux/namei.h>
9549ec01 37#include <linux/bio.h> /* struct bio */
88c9e421 38#include <linux/prefetch.h>
6296556f 39#include <linux/pagevec.h>
155e7524 40
10bd295a 41#include "../pnfs.h"
76e697ba 42#include "../nfs4session.h"
10bd295a 43#include "../internal.h"
155e7524
FI
44#include "blocklayout.h"
45
46#define NFSDBG_FACILITY NFSDBG_PNFS_LD
47
48MODULE_LICENSE("GPL");
49MODULE_AUTHOR("Andy Adamson <andros@citi.umich.edu>");
50MODULE_DESCRIPTION("The NFSv4.1 pNFS Block layout driver");
51
8067253c 52static bool is_hole(struct pnfs_block_extent *be)
9549ec01 53{
8067253c
CH
54 switch (be->be_state) {
55 case PNFS_BLOCK_NONE_DATA:
56 return true;
57 case PNFS_BLOCK_INVALID_DATA:
58 return be->be_tag ? false : true;
59 default:
60 return false;
61 }
650e2d39
FI
62}
63
9549ec01
FI
64/* The data we are handed might be spread across several bios. We need
65 * to track when the last one is finished.
66 */
67struct parallel_io {
68 struct kref refcnt;
8067253c 69 void (*pnfs_callback) (void *data);
9549ec01
FI
70 void *data;
71};
72
73static inline struct parallel_io *alloc_parallel(void *data)
74{
75 struct parallel_io *rv;
76
77 rv = kmalloc(sizeof(*rv), GFP_NOFS);
78 if (rv) {
79 rv->data = data;
80 kref_init(&rv->refcnt);
81 }
82 return rv;
83}
84
85static inline void get_parallel(struct parallel_io *p)
86{
87 kref_get(&p->refcnt);
88}
89
90static void destroy_parallel(struct kref *kref)
91{
92 struct parallel_io *p = container_of(kref, struct parallel_io, refcnt);
93
94 dprintk("%s enter\n", __func__);
8067253c 95 p->pnfs_callback(p->data);
9549ec01
FI
96 kfree(p);
97}
98
99static inline void put_parallel(struct parallel_io *p)
100{
101 kref_put(&p->refcnt, destroy_parallel);
102}
103
104static struct bio *
105bl_submit_bio(int rw, struct bio *bio)
106{
107 if (bio) {
108 get_parallel(bio->bi_private);
109 dprintk("%s submitting %s bio %u@%llu\n", __func__,
4f024f37
KO
110 rw == READ ? "read" : "write", bio->bi_iter.bi_size,
111 (unsigned long long)bio->bi_iter.bi_sector);
9549ec01
FI
112 submit_bio(rw, bio);
113 }
114 return NULL;
115}
116
5c83746a
CH
117static struct bio *
118bl_alloc_init_bio(int npg, struct block_device *bdev, sector_t disk_sector,
4246a0b6 119 bio_end_io_t end_io, struct parallel_io *par)
9549ec01
FI
120{
121 struct bio *bio;
122
74a6eeb4 123 npg = min(npg, BIO_MAX_PAGES);
9549ec01 124 bio = bio_alloc(GFP_NOIO, npg);
74a6eeb4
PT
125 if (!bio && (current->flags & PF_MEMALLOC)) {
126 while (!bio && (npg /= 2))
127 bio = bio_alloc(GFP_NOIO, npg);
128 }
9549ec01 129
74a6eeb4 130 if (bio) {
5c83746a
CH
131 bio->bi_iter.bi_sector = disk_sector;
132 bio->bi_bdev = bdev;
74a6eeb4
PT
133 bio->bi_end_io = end_io;
134 bio->bi_private = par;
135 }
9549ec01
FI
136 return bio;
137}
138
5c83746a
CH
139static struct bio *
140do_add_page_to_bio(struct bio *bio, int npg, int rw, sector_t isect,
141 struct page *page, struct pnfs_block_dev_map *map,
4246a0b6 142 struct pnfs_block_extent *be, bio_end_io_t end_io,
5c83746a 143 struct parallel_io *par, unsigned int offset, int *len)
9549ec01 144{
5c83746a
CH
145 struct pnfs_block_dev *dev =
146 container_of(be->be_device, struct pnfs_block_dev, node);
147 u64 disk_addr, end;
148
fe6e1e8d 149 dprintk("%s: npg %d rw %d isect %llu offset %u len %d\n", __func__,
5c83746a
CH
150 npg, rw, (unsigned long long)isect, offset, *len);
151
152 /* translate to device offset */
153 isect += be->be_v_offset;
154 isect -= be->be_f_offset;
155
156 /* translate to physical disk offset */
157 disk_addr = (u64)isect << SECTOR_SHIFT;
158 if (disk_addr < map->start || disk_addr >= map->start + map->len) {
159 if (!dev->map(dev, disk_addr, map))
160 return ERR_PTR(-EIO);
161 bio = bl_submit_bio(rw, bio);
162 }
163 disk_addr += map->disk_offset;
164 disk_addr -= map->start;
165
166 /* limit length to what the device mapping allows */
167 end = disk_addr + *len;
168 if (end >= map->start + map->len)
169 *len = map->start + map->len - disk_addr;
170
9549ec01
FI
171retry:
172 if (!bio) {
5c83746a
CH
173 bio = bl_alloc_init_bio(npg, map->bdev,
174 disk_addr >> SECTOR_SHIFT, end_io, par);
9549ec01
FI
175 if (!bio)
176 return ERR_PTR(-ENOMEM);
177 }
5c83746a 178 if (bio_add_page(bio, page, *len, offset) < *len) {
9549ec01
FI
179 bio = bl_submit_bio(rw, bio);
180 goto retry;
181 }
182 return bio;
183}
184
4246a0b6 185static void bl_end_io_read(struct bio *bio)
9549ec01
FI
186{
187 struct parallel_io *par = bio->bi_private;
9549ec01 188
4246a0b6 189 if (bio->bi_error) {
d45f60c6 190 struct nfs_pgio_header *header = par->data;
cd841605
FI
191
192 if (!header->pnfs_error)
193 header->pnfs_error = -EIO;
194 pnfs_set_lo_fail(header->lseg);
9549ec01 195 }
8c792ea9 196
9549ec01
FI
197 bio_put(bio);
198 put_parallel(par);
199}
200
201static void bl_read_cleanup(struct work_struct *work)
202{
203 struct rpc_task *task;
d45f60c6 204 struct nfs_pgio_header *hdr;
9549ec01
FI
205 dprintk("%s enter\n", __func__);
206 task = container_of(work, struct rpc_task, u.tk_work);
d45f60c6
WAA
207 hdr = container_of(task, struct nfs_pgio_header, task);
208 pnfs_ld_read_done(hdr);
9549ec01
FI
209}
210
211static void
8067253c 212bl_end_par_io_read(void *data)
9549ec01 213{
d45f60c6 214 struct nfs_pgio_header *hdr = data;
9549ec01 215
d45f60c6
WAA
216 hdr->task.tk_status = hdr->pnfs_error;
217 INIT_WORK(&hdr->task.u.tk_work, bl_read_cleanup);
218 schedule_work(&hdr->task.u.tk_work);
9549ec01
FI
219}
220
155e7524 221static enum pnfs_try_status
8067253c 222bl_read_pagelist(struct nfs_pgio_header *header)
155e7524 223{
8067253c 224 struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
5c83746a 225 struct pnfs_block_dev_map map = { .start = NFS4_MAX_UINT64 };
9549ec01 226 struct bio *bio = NULL;
8067253c 227 struct pnfs_block_extent be;
9549ec01
FI
228 sector_t isect, extent_length = 0;
229 struct parallel_io *par;
8067253c
CH
230 loff_t f_offset = header->args.offset;
231 size_t bytes_left = header->args.count;
15ae2c7b 232 unsigned int pg_offset = header->args.pgbase, pg_len;
8067253c
CH
233 struct page **pages = header->args.pages;
234 int pg_index = header->args.pgbase >> PAGE_CACHE_SHIFT;
f742dc4a 235 const bool is_dio = (header->dreq != NULL);
be98fd0a 236 struct blk_plug plug;
8067253c 237 int i;
9549ec01 238
6f00866d 239 dprintk("%s enter nr_pages %u offset %lld count %u\n", __func__,
8067253c
CH
240 header->page_array.npages, f_offset,
241 (unsigned int)header->args.count);
9549ec01 242
8067253c 243 par = alloc_parallel(header);
9549ec01 244 if (!par)
8067253c 245 return PNFS_NOT_ATTEMPTED;
9549ec01 246 par->pnfs_callback = bl_end_par_io_read;
9549ec01 247
be98fd0a
CH
248 blk_start_plug(&plug);
249
9549ec01
FI
250 isect = (sector_t) (f_offset >> SECTOR_SHIFT);
251 /* Code assumes extents are page-aligned */
8067253c 252 for (i = pg_index; i < header->page_array.npages; i++) {
921b81a8 253 if (extent_length <= 0) {
9549ec01 254 /* We've used up the previous extent */
9549ec01 255 bio = bl_submit_bio(READ, bio);
8067253c 256
9549ec01 257 /* Get the next one */
8067253c 258 if (!ext_tree_lookup(bl, isect, &be, false)) {
cd841605 259 header->pnfs_error = -EIO;
9549ec01
FI
260 goto out;
261 }
8067253c 262 extent_length = be.be_length - (isect - be.be_f_offset);
9549ec01 263 }
f742dc4a
PT
264
265 if (is_dio) {
f742dc4a
PT
266 if (pg_offset + bytes_left > PAGE_CACHE_SIZE)
267 pg_len = PAGE_CACHE_SIZE - pg_offset;
268 else
269 pg_len = bytes_left;
f742dc4a 270 } else {
3a6fd1f0 271 BUG_ON(pg_offset != 0);
f742dc4a
PT
272 pg_len = PAGE_CACHE_SIZE;
273 }
274
8067253c 275 if (is_hole(&be)) {
9549ec01
FI
276 bio = bl_submit_bio(READ, bio);
277 /* Fill hole w/ zeroes w/o accessing device */
278 dprintk("%s Zeroing page for hole\n", __func__);
f742dc4a 279 zero_user_segment(pages[i], pg_offset, pg_len);
5c83746a
CH
280
281 /* invalidate map */
282 map.start = NFS4_MAX_UINT64;
9549ec01 283 } else {
823b0c9d 284 bio = do_add_page_to_bio(bio,
8067253c 285 header->page_array.npages - i,
30dd374f 286 READ,
5c83746a 287 isect, pages[i], &map, &be,
f742dc4a 288 bl_end_io_read, par,
5c83746a 289 pg_offset, &pg_len);
9549ec01 290 if (IS_ERR(bio)) {
cd841605 291 header->pnfs_error = PTR_ERR(bio);
e6d05a75 292 bio = NULL;
9549ec01
FI
293 goto out;
294 }
295 }
f742dc4a 296 isect += (pg_len >> SECTOR_SHIFT);
921b81a8 297 extent_length -= (pg_len >> SECTOR_SHIFT);
5c83746a
CH
298 f_offset += pg_len;
299 bytes_left -= pg_len;
15ae2c7b 300 pg_offset = 0;
9549ec01 301 }
cd841605 302 if ((isect << SECTOR_SHIFT) >= header->inode->i_size) {
8067253c
CH
303 header->res.eof = 1;
304 header->res.count = header->inode->i_size - header->args.offset;
9549ec01 305 } else {
8067253c 306 header->res.count = (isect << SECTOR_SHIFT) - header->args.offset;
9549ec01
FI
307 }
308out:
9549ec01 309 bl_submit_bio(READ, bio);
be98fd0a 310 blk_finish_plug(&plug);
9549ec01
FI
311 put_parallel(par);
312 return PNFS_ATTEMPTED;
31e6306a
FI
313}
314
4246a0b6 315static void bl_end_io_write(struct bio *bio)
650e2d39
FI
316{
317 struct parallel_io *par = bio->bi_private;
d45f60c6 318 struct nfs_pgio_header *header = par->data;
650e2d39 319
4246a0b6 320 if (bio->bi_error) {
cd841605
FI
321 if (!header->pnfs_error)
322 header->pnfs_error = -EIO;
323 pnfs_set_lo_fail(header->lseg);
650e2d39
FI
324 }
325 bio_put(bio);
326 put_parallel(par);
327}
328
329/* Function scheduled for call during bl_end_par_io_write,
330 * it marks sectors as written and extends the commitlist.
331 */
332static void bl_write_cleanup(struct work_struct *work)
333{
8067253c
CH
334 struct rpc_task *task = container_of(work, struct rpc_task, u.tk_work);
335 struct nfs_pgio_header *hdr =
336 container_of(task, struct nfs_pgio_header, task);
337
650e2d39 338 dprintk("%s enter\n", __func__);
8067253c 339
d45f60c6 340 if (likely(!hdr->pnfs_error)) {
8067253c
CH
341 struct pnfs_block_layout *bl = BLK_LSEG2EXT(hdr->lseg);
342 u64 start = hdr->args.offset & (loff_t)PAGE_CACHE_MASK;
343 u64 end = (hdr->args.offset + hdr->args.count +
344 PAGE_CACHE_SIZE - 1) & (loff_t)PAGE_CACHE_MASK;
345
346 ext_tree_mark_written(bl, start >> SECTOR_SHIFT,
347 (end - start) >> SECTOR_SHIFT);
31e6306a 348 }
8067253c 349
d45f60c6 350 pnfs_ld_write_done(hdr);
650e2d39
FI
351}
352
353/* Called when last of bios associated with a bl_write_pagelist call finishes */
8067253c 354static void bl_end_par_io_write(void *data)
650e2d39 355{
d45f60c6 356 struct nfs_pgio_header *hdr = data;
650e2d39 357
d45f60c6 358 hdr->task.tk_status = hdr->pnfs_error;
c65e6254 359 hdr->verf.committed = NFS_FILE_SYNC;
d45f60c6
WAA
360 INIT_WORK(&hdr->task.u.tk_work, bl_write_cleanup);
361 schedule_work(&hdr->task.u.tk_work);
650e2d39
FI
362}
363
155e7524 364static enum pnfs_try_status
d45f60c6 365bl_write_pagelist(struct nfs_pgio_header *header, int sync)
155e7524 366{
8067253c 367 struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
5c83746a 368 struct pnfs_block_dev_map map = { .start = NFS4_MAX_UINT64 };
650e2d39 369 struct bio *bio = NULL;
8067253c 370 struct pnfs_block_extent be;
3a6fd1f0 371 sector_t isect, extent_length = 0;
96c9eae6 372 struct parallel_io *par = NULL;
d45f60c6
WAA
373 loff_t offset = header->args.offset;
374 size_t count = header->args.count;
d45f60c6 375 struct page **pages = header->args.pages;
b283f944 376 int pg_index = header->args.pgbase >> PAGE_CACHE_SHIFT;
5c83746a 377 unsigned int pg_len;
be98fd0a 378 struct blk_plug plug;
8067253c 379 int i;
650e2d39
FI
380
381 dprintk("%s enter, %Zu@%lld\n", __func__, count, offset);
96c9eae6 382
d45f60c6 383 /* At this point, header->page_aray is a (sequential) list of nfs_pages.
71cdd40f
PT
384 * We want to write each, and if there is an error set pnfs_error
385 * to have it redone using nfs.
650e2d39 386 */
d45f60c6 387 par = alloc_parallel(header);
650e2d39 388 if (!par)
8067253c 389 return PNFS_NOT_ATTEMPTED;
650e2d39 390 par->pnfs_callback = bl_end_par_io_write;
650e2d39 391
3a6fd1f0 392 blk_start_plug(&plug);
71cdd40f 393
3a6fd1f0
CH
394 /* we always write out the whole page */
395 offset = offset & (loff_t)PAGE_CACHE_MASK;
396 isect = offset >> SECTOR_SHIFT;
71cdd40f 397
d45f60c6 398 for (i = pg_index; i < header->page_array.npages; i++) {
921b81a8 399 if (extent_length <= 0) {
650e2d39 400 /* We've used up the previous extent */
650e2d39
FI
401 bio = bl_submit_bio(WRITE, bio);
402 /* Get the next one */
8067253c 403 if (!ext_tree_lookup(bl, isect, &be, true)) {
cd841605 404 header->pnfs_error = -EINVAL;
650e2d39
FI
405 goto out;
406 }
fe6e1e8d 407
8067253c 408 extent_length = be.be_length - (isect - be.be_f_offset);
71cdd40f 409 }
fe6e1e8d 410
5c83746a 411 pg_len = PAGE_CACHE_SIZE;
d45f60c6 412 bio = do_add_page_to_bio(bio, header->page_array.npages - i,
5c83746a 413 WRITE, isect, pages[i], &map, &be,
fe6e1e8d 414 bl_end_io_write, par,
5c83746a 415 0, &pg_len);
71cdd40f 416 if (IS_ERR(bio)) {
cd841605 417 header->pnfs_error = PTR_ERR(bio);
e6d05a75 418 bio = NULL;
71cdd40f 419 goto out;
650e2d39 420 }
5c83746a
CH
421
422 offset += pg_len;
423 count -= pg_len;
424 isect += (pg_len >> SECTOR_SHIFT);
425 extent_length -= (pg_len >> SECTOR_SHIFT);
650e2d39 426 }
71cdd40f 427
d45f60c6 428 header->res.count = header->args.count;
650e2d39 429out:
650e2d39 430 bl_submit_bio(WRITE, bio);
be98fd0a 431 blk_finish_plug(&plug);
650e2d39
FI
432 put_parallel(par);
433 return PNFS_ATTEMPTED;
155e7524
FI
434}
435
436static void bl_free_layout_hdr(struct pnfs_layout_hdr *lo)
437{
438 struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
8067253c 439 int err;
155e7524
FI
440
441 dprintk("%s enter\n", __func__);
8067253c
CH
442
443 err = ext_tree_remove(bl, true, 0, LLONG_MAX);
444 WARN_ON(err);
445
155e7524
FI
446 kfree(bl);
447}
448
449static struct pnfs_layout_hdr *bl_alloc_layout_hdr(struct inode *inode,
450 gfp_t gfp_flags)
451{
452 struct pnfs_block_layout *bl;
453
454 dprintk("%s enter\n", __func__);
455 bl = kzalloc(sizeof(*bl), gfp_flags);
456 if (!bl)
457 return NULL;
8067253c
CH
458
459 bl->bl_ext_rw = RB_ROOT;
460 bl->bl_ext_ro = RB_ROOT;
155e7524 461 spin_lock_init(&bl->bl_ext_lock);
8067253c 462
155e7524
FI
463 return &bl->bl_layout;
464}
465
a60d2ebd 466static void bl_free_lseg(struct pnfs_layout_segment *lseg)
155e7524 467{
a60d2ebd
FI
468 dprintk("%s enter\n", __func__);
469 kfree(lseg);
155e7524
FI
470}
471
9cc47541
CH
472/* Tracks info needed to ensure extents in layout obey constraints of spec */
473struct layout_verification {
474 u32 mode; /* R or RW */
475 u64 start; /* Expected start of next non-COW extent */
476 u64 inval; /* Start of INVAL coverage */
477 u64 cowread; /* End of COW read coverage */
478};
479
480/* Verify the extent meets the layout requirements of the pnfs-block draft,
481 * section 2.3.1.
482 */
483static int verify_extent(struct pnfs_block_extent *be,
484 struct layout_verification *lv)
485{
486 if (lv->mode == IOMODE_READ) {
487 if (be->be_state == PNFS_BLOCK_READWRITE_DATA ||
488 be->be_state == PNFS_BLOCK_INVALID_DATA)
489 return -EIO;
490 if (be->be_f_offset != lv->start)
491 return -EIO;
492 lv->start += be->be_length;
493 return 0;
494 }
495 /* lv->mode == IOMODE_RW */
496 if (be->be_state == PNFS_BLOCK_READWRITE_DATA) {
497 if (be->be_f_offset != lv->start)
498 return -EIO;
499 if (lv->cowread > lv->start)
500 return -EIO;
501 lv->start += be->be_length;
502 lv->inval = lv->start;
503 return 0;
504 } else if (be->be_state == PNFS_BLOCK_INVALID_DATA) {
505 if (be->be_f_offset != lv->start)
506 return -EIO;
507 lv->start += be->be_length;
508 return 0;
509 } else if (be->be_state == PNFS_BLOCK_READ_DATA) {
510 if (be->be_f_offset > lv->start)
511 return -EIO;
512 if (be->be_f_offset < lv->inval)
513 return -EIO;
514 if (be->be_f_offset < lv->cowread)
515 return -EIO;
516 /* It looks like you might want to min this with lv->start,
517 * but you really don't.
518 */
519 lv->inval = lv->inval + be->be_length;
520 lv->cowread = be->be_f_offset + be->be_length;
521 return 0;
522 } else
523 return -EIO;
524}
525
526static int decode_sector_number(__be32 **rp, sector_t *sp)
527{
528 uint64_t s;
529
530 *rp = xdr_decode_hyper(*rp, &s);
531 if (s & 0x1ff) {
532 printk(KERN_WARNING "NFS: %s: sector not aligned\n", __func__);
533 return -1;
534 }
535 *sp = s >> SECTOR_SHIFT;
536 return 0;
537}
538
9cc47541 539static int
ca0fe1df
CH
540bl_alloc_extent(struct xdr_stream *xdr, struct pnfs_layout_hdr *lo,
541 struct layout_verification *lv, struct list_head *extents,
542 gfp_t gfp_mask)
9cc47541 543{
ca0fe1df
CH
544 struct pnfs_block_extent *be;
545 struct nfs4_deviceid id;
546 int error;
9cc47541 547 __be32 *p;
ca0fe1df
CH
548
549 p = xdr_inline_decode(xdr, 28 + NFS4_DEVICEID4_SIZE);
550 if (!p)
551 return -EIO;
552
553 be = kzalloc(sizeof(*be), GFP_NOFS);
554 if (!be)
555 return -ENOMEM;
556
557 memcpy(&id, p, NFS4_DEVICEID4_SIZE);
558 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
559
560 error = -EIO;
561 be->be_device = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode), &id,
562 lo->plh_lc_cred, gfp_mask);
563 if (!be->be_device)
564 goto out_free_be;
565
566 /*
567 * The next three values are read in as bytes, but stored in the
568 * extent structure in 512-byte granularity.
569 */
570 if (decode_sector_number(&p, &be->be_f_offset) < 0)
571 goto out_put_deviceid;
572 if (decode_sector_number(&p, &be->be_length) < 0)
573 goto out_put_deviceid;
574 if (decode_sector_number(&p, &be->be_v_offset) < 0)
575 goto out_put_deviceid;
576 be->be_state = be32_to_cpup(p++);
577
578 error = verify_extent(be, lv);
579 if (error) {
580 dprintk("%s: extent verification failed\n", __func__);
581 goto out_put_deviceid;
582 }
583
584 list_add_tail(&be->be_list, extents);
585 return 0;
586
587out_put_deviceid:
588 nfs4_put_deviceid_node(be->be_device);
589out_free_be:
590 kfree(be);
591 return error;
592}
593
594static struct pnfs_layout_segment *
595bl_alloc_lseg(struct pnfs_layout_hdr *lo, struct nfs4_layoutget_res *lgr,
596 gfp_t gfp_mask)
597{
9cc47541
CH
598 struct layout_verification lv = {
599 .mode = lgr->range.iomode,
600 .start = lgr->range.offset >> SECTOR_SHIFT,
601 .inval = lgr->range.offset >> SECTOR_SHIFT,
602 .cowread = lgr->range.offset >> SECTOR_SHIFT,
603 };
ca0fe1df
CH
604 struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
605 struct pnfs_layout_segment *lseg;
606 struct xdr_buf buf;
607 struct xdr_stream xdr;
608 struct page *scratch;
609 int status, i;
610 uint32_t count;
611 __be32 *p;
9cc47541
CH
612 LIST_HEAD(extents);
613
614 dprintk("---> %s\n", __func__);
615
ca0fe1df
CH
616 lseg = kzalloc(sizeof(*lseg), gfp_mask);
617 if (!lseg)
618 return ERR_PTR(-ENOMEM);
619
620 status = -ENOMEM;
621 scratch = alloc_page(gfp_mask);
9cc47541 622 if (!scratch)
ca0fe1df 623 goto out;
9cc47541 624
ca0fe1df
CH
625 xdr_init_decode_pages(&xdr, &buf,
626 lgr->layoutp->pages, lgr->layoutp->len);
627 xdr_set_scratch_buffer(&xdr, page_address(scratch), PAGE_SIZE);
9cc47541 628
ca0fe1df
CH
629 status = -EIO;
630 p = xdr_inline_decode(&xdr, 4);
9cc47541 631 if (unlikely(!p))
ca0fe1df 632 goto out_free_scratch;
9cc47541
CH
633
634 count = be32_to_cpup(p++);
ca0fe1df 635 dprintk("%s: number of extents %d\n", __func__, count);
9cc47541 636
ca0fe1df
CH
637 /*
638 * Decode individual extents, putting them in temporary staging area
639 * until whole layout is decoded to make error recovery easier.
9cc47541
CH
640 */
641 for (i = 0; i < count; i++) {
ca0fe1df
CH
642 status = bl_alloc_extent(&xdr, lo, &lv, &extents, gfp_mask);
643 if (status)
644 goto process_extents;
9cc47541 645 }
ca0fe1df 646
9cc47541
CH
647 if (lgr->range.offset + lgr->range.length !=
648 lv.start << SECTOR_SHIFT) {
649 dprintk("%s Final length mismatch\n", __func__);
ca0fe1df
CH
650 status = -EIO;
651 goto process_extents;
9cc47541 652 }
ca0fe1df 653
9cc47541
CH
654 if (lv.start < lv.cowread) {
655 dprintk("%s Final uncovered COW extent\n", __func__);
ca0fe1df 656 status = -EIO;
9cc47541 657 }
9cc47541 658
ca0fe1df 659process_extents:
9cc47541 660 while (!list_empty(&extents)) {
ca0fe1df
CH
661 struct pnfs_block_extent *be =
662 list_first_entry(&extents, struct pnfs_block_extent,
663 be_list);
9cc47541 664 list_del(&be->be_list);
9cc47541 665
ca0fe1df
CH
666 if (!status)
667 status = ext_tree_insert(bl, be);
a60d2ebd 668
ca0fe1df
CH
669 if (status) {
670 nfs4_put_deviceid_node(be->be_device);
671 kfree(be);
672 }
673 }
674
675out_free_scratch:
676 __free_page(scratch);
677out:
678 dprintk("%s returns %d\n", __func__, status);
a60d2ebd 679 if (status) {
a60d2ebd
FI
680 kfree(lseg);
681 return ERR_PTR(status);
682 }
683 return lseg;
155e7524
FI
684}
685
71d5b763
CH
686static void
687bl_return_range(struct pnfs_layout_hdr *lo,
688 struct pnfs_layout_range *range)
689{
690 struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
691 sector_t offset = range->offset >> SECTOR_SHIFT, end;
71d5b763
CH
692
693 if (range->offset % 8) {
694 dprintk("%s: offset %lld not block size aligned\n",
695 __func__, range->offset);
696 return;
697 }
698
699 if (range->length != NFS4_MAX_UINT64) {
700 if (range->length % 8) {
701 dprintk("%s: length %lld not block size aligned\n",
702 __func__, range->length);
703 return;
704 }
705
706 end = offset + (range->length >> SECTOR_SHIFT);
707 } else {
708 end = round_down(NFS4_MAX_UINT64, PAGE_SIZE);
709 }
710
164ae58c 711 ext_tree_remove(bl, range->iomode & IOMODE_RW, offset, end);
71d5b763
CH
712}
713
34dc93c2
CH
714static int
715bl_prepare_layoutcommit(struct nfs4_layoutcommit_args *arg)
155e7524 716{
34dc93c2 717 return ext_tree_prepare_commit(arg);
155e7524
FI
718}
719
720static void
721bl_cleanup_layoutcommit(struct nfs4_layoutcommit_data *lcdata)
722{
34dc93c2 723 ext_tree_mark_committed(&lcdata->args, lcdata->res.status);
155e7524
FI
724}
725
726static int
727bl_set_layoutdriver(struct nfs_server *server, const struct nfs_fh *fh)
728{
729 dprintk("%s enter\n", __func__);
2f9fd182
FI
730
731 if (server->pnfs_blksize == 0) {
732 dprintk("%s Server did not return blksize\n", __func__);
733 return -EINVAL;
734 }
e3aaf7f2
CH
735 if (server->pnfs_blksize > PAGE_SIZE) {
736 printk(KERN_ERR "%s: pNFS blksize %d not supported.\n",
737 __func__, server->pnfs_blksize);
738 return -EINVAL;
739 }
740
d4b18c3e 741 return 0;
155e7524
FI
742}
743
f742dc4a 744static bool
3a6fd1f0 745is_aligned_req(struct nfs_pageio_descriptor *pgio,
f35592a9 746 struct nfs_page *req, unsigned int alignment, bool is_write)
f742dc4a 747{
3a6fd1f0
CH
748 /*
749 * Always accept buffered writes, higher layers take care of the
750 * right alignment.
751 */
752 if (pgio->pg_dreq == NULL)
753 return true;
754
755 if (!IS_ALIGNED(req->wb_offset, alignment))
756 return false;
757
758 if (IS_ALIGNED(req->wb_bytes, alignment))
759 return true;
760
f35592a9
KM
761 if (is_write &&
762 (req_offset(req) + req->wb_bytes == i_size_read(pgio->pg_inode))) {
3a6fd1f0
CH
763 /*
764 * If the write goes up to the inode size, just write
765 * the full page. Data past the inode size is
766 * guaranteed to be zeroed by the higher level client
767 * code, and this behaviour is mandated by RFC 5663
768 * section 2.3.2.
769 */
770 return true;
771 }
772
773 return false;
f742dc4a
PT
774}
775
776static void
777bl_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
778{
f35592a9 779 if (!is_aligned_req(pgio, req, SECTOR_SIZE, false)) {
f742dc4a 780 nfs_pageio_reset_read_mds(pgio);
3a6fd1f0
CH
781 return;
782 }
783
784 pnfs_generic_pg_init_read(pgio, req);
f742dc4a
PT
785}
786
b4fdac1a
WAA
787/*
788 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
789 * of bytes (maximum @req->wb_bytes) that can be coalesced.
790 */
791static size_t
f742dc4a
PT
792bl_pg_test_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
793 struct nfs_page *req)
794{
f35592a9 795 if (!is_aligned_req(pgio, req, SECTOR_SIZE, false))
b4fdac1a 796 return 0;
f742dc4a
PT
797 return pnfs_generic_pg_test(pgio, prev, req);
798}
799
6296556f
PT
800/*
801 * Return the number of contiguous bytes for a given inode
802 * starting at page frame idx.
803 */
804static u64 pnfs_num_cont_bytes(struct inode *inode, pgoff_t idx)
805{
806 struct address_space *mapping = inode->i_mapping;
807 pgoff_t end;
808
809 /* Optimize common case that writes from 0 to end of file */
810 end = DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE);
6a74c0c9 811 if (end != inode->i_mapping->nrpages) {
6296556f 812 rcu_read_lock();
e7b563bb 813 end = page_cache_next_hole(mapping, idx + 1, ULONG_MAX);
6296556f
PT
814 rcu_read_unlock();
815 }
816
817 if (!end)
818 return i_size_read(inode) - (idx << PAGE_CACHE_SHIFT);
819 else
820 return (end - idx) << PAGE_CACHE_SHIFT;
821}
822
6f018efa 823static void
96c9eae6
PT
824bl_pg_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
825{
3a6fd1f0
CH
826 u64 wb_size;
827
f35592a9 828 if (!is_aligned_req(pgio, req, PAGE_SIZE, true)) {
96c9eae6 829 nfs_pageio_reset_write_mds(pgio);
3a6fd1f0 830 return;
6296556f 831 }
3a6fd1f0
CH
832
833 if (pgio->pg_dreq == NULL)
834 wb_size = pnfs_num_cont_bytes(pgio->pg_inode,
835 req->wb_index);
836 else
837 wb_size = nfs_dreq_bytes_left(pgio->pg_dreq);
838
839 pnfs_generic_pg_init_write(pgio, req, wb_size);
96c9eae6
PT
840}
841
b4fdac1a
WAA
842/*
843 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
844 * of bytes (maximum @req->wb_bytes) that can be coalesced.
845 */
846static size_t
96c9eae6
PT
847bl_pg_test_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
848 struct nfs_page *req)
849{
f35592a9 850 if (!is_aligned_req(pgio, req, PAGE_SIZE, true))
b4fdac1a 851 return 0;
96c9eae6
PT
852 return pnfs_generic_pg_test(pgio, prev, req);
853}
854
e9643fe8 855static const struct nfs_pageio_ops bl_pg_read_ops = {
f742dc4a
PT
856 .pg_init = bl_pg_init_read,
857 .pg_test = bl_pg_test_read,
e9643fe8 858 .pg_doio = pnfs_generic_pg_readpages,
180bb5ec 859 .pg_cleanup = pnfs_generic_pg_cleanup,
e9643fe8
BH
860};
861
862static const struct nfs_pageio_ops bl_pg_write_ops = {
96c9eae6
PT
863 .pg_init = bl_pg_init_write,
864 .pg_test = bl_pg_test_write,
e9643fe8 865 .pg_doio = pnfs_generic_pg_writepages,
180bb5ec 866 .pg_cleanup = pnfs_generic_pg_cleanup,
e9643fe8
BH
867};
868
155e7524
FI
869static struct pnfs_layoutdriver_type blocklayout_type = {
870 .id = LAYOUT_BLOCK_VOLUME,
871 .name = "LAYOUT_BLOCK_VOLUME",
5a12cca6 872 .owner = THIS_MODULE,
848746bd
CH
873 .flags = PNFS_LAYOUTRET_ON_SETATTR |
874 PNFS_READ_WHOLE_PAGE,
155e7524
FI
875 .read_pagelist = bl_read_pagelist,
876 .write_pagelist = bl_write_pagelist,
877 .alloc_layout_hdr = bl_alloc_layout_hdr,
878 .free_layout_hdr = bl_free_layout_hdr,
879 .alloc_lseg = bl_alloc_lseg,
880 .free_lseg = bl_free_lseg,
71d5b763 881 .return_range = bl_return_range,
34dc93c2 882 .prepare_layoutcommit = bl_prepare_layoutcommit,
155e7524
FI
883 .cleanup_layoutcommit = bl_cleanup_layoutcommit,
884 .set_layoutdriver = bl_set_layoutdriver,
20d655d6
CH
885 .alloc_deviceid_node = bl_alloc_deviceid_node,
886 .free_deviceid_node = bl_free_deviceid_node,
e9643fe8
BH
887 .pg_read_ops = &bl_pg_read_ops,
888 .pg_write_ops = &bl_pg_write_ops,
5bb89b47 889 .sync = pnfs_generic_sync,
155e7524
FI
890};
891
892static int __init nfs4blocklayout_init(void)
893{
894 int ret;
895
896 dprintk("%s: NFSv4 Block Layout Driver Registering...\n", __func__);
897
898 ret = pnfs_register_layoutdriver(&blocklayout_type);
fe0a9b74
JR
899 if (ret)
900 goto out;
871760ce 901 ret = bl_init_pipefs();
627f3066 902 if (ret)
871760ce
CH
903 goto out_unregister;
904 return 0;
fe0a9b74 905
871760ce 906out_unregister:
fe0a9b74 907 pnfs_unregister_layoutdriver(&blocklayout_type);
871760ce 908out:
155e7524
FI
909 return ret;
910}
911
912static void __exit nfs4blocklayout_exit(void)
913{
914 dprintk("%s: NFSv4 Block Layout Driver Unregistering...\n",
915 __func__);
916
871760ce 917 bl_cleanup_pipefs();
155e7524
FI
918 pnfs_unregister_layoutdriver(&blocklayout_type);
919}
920
921MODULE_ALIAS("nfs-layouttype4-3");
922
923module_init(nfs4blocklayout_init);
924module_exit(nfs4blocklayout_exit);