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