blob: 77fec6a55f5795b5aa0cc6142de72f1b10dbf0f3 [file] [log] [blame]
Fred Isaman155e7522011-07-30 20:52:39 -04001/*
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 */
Fred Isaman9549ec02011-07-30 20:52:53 -040032
Fred Isaman155e7522011-07-30 20:52:39 -040033#include <linux/module.h>
34#include <linux/init.h>
Jim Reesfe0a9b72011-07-30 20:52:42 -040035#include <linux/mount.h>
36#include <linux/namei.h>
Fred Isaman9549ec02011-07-30 20:52:53 -040037#include <linux/bio.h> /* struct bio */
Heiko Carstens88c9e422011-08-02 09:57:35 +020038#include <linux/prefetch.h>
Peng Tao62965562012-09-25 14:55:57 +080039#include <linux/pagevec.h>
Fred Isaman155e7522011-07-30 20:52:39 -040040
Jim Rees10bd2952012-04-09 22:33:39 -040041#include "../pnfs.h"
Trond Myklebust76e697b2012-11-26 14:20:49 -050042#include "../nfs4session.h"
Jim Rees10bd2952012-04-09 22:33:39 -040043#include "../internal.h"
Fred Isaman155e7522011-07-30 20:52:39 -040044#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
Christoph Hellwig80672532014-09-10 08:23:34 -070052static bool is_hole(struct pnfs_block_extent *be)
Fred Isaman9549ec02011-07-30 20:52:53 -040053{
Christoph Hellwig80672532014-09-10 08:23:34 -070054 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 }
Fred Isaman650e2d32011-07-30 20:52:54 -040062}
63
Fred Isaman9549ec02011-07-30 20:52:53 -040064/* 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;
Christoph Hellwig80672532014-09-10 08:23:34 -070069 void (*pnfs_callback) (void *data);
Fred Isaman9549ec02011-07-30 20:52:53 -040070 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__);
Christoph Hellwig80672532014-09-10 08:23:34 -070095 p->pnfs_callback(p->data);
Fred Isaman9549ec02011-07-30 20:52:53 -040096 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__,
Kent Overstreet4f024f32013-10-11 15:44:27 -0700110 rw == READ ? "read" : "write", bio->bi_iter.bi_size,
111 (unsigned long long)bio->bi_iter.bi_sector);
Fred Isaman9549ec02011-07-30 20:52:53 -0400112 submit_bio(rw, bio);
113 }
114 return NULL;
115}
116
Christoph Hellwig5c837462014-09-10 17:37:27 -0700117static struct bio *
118bl_alloc_init_bio(int npg, struct block_device *bdev, sector_t disk_sector,
119 void (*end_io)(struct bio *, int err), struct parallel_io *par)
Fred Isaman9549ec02011-07-30 20:52:53 -0400120{
121 struct bio *bio;
122
Peng Tao74a6eeb2012-01-12 23:18:48 +0800123 npg = min(npg, BIO_MAX_PAGES);
Fred Isaman9549ec02011-07-30 20:52:53 -0400124 bio = bio_alloc(GFP_NOIO, npg);
Peng Tao74a6eeb2012-01-12 23:18:48 +0800125 if (!bio && (current->flags & PF_MEMALLOC)) {
126 while (!bio && (npg /= 2))
127 bio = bio_alloc(GFP_NOIO, npg);
128 }
Fred Isaman9549ec02011-07-30 20:52:53 -0400129
Peng Tao74a6eeb2012-01-12 23:18:48 +0800130 if (bio) {
Christoph Hellwig5c837462014-09-10 17:37:27 -0700131 bio->bi_iter.bi_sector = disk_sector;
132 bio->bi_bdev = bdev;
Peng Tao74a6eeb2012-01-12 23:18:48 +0800133 bio->bi_end_io = end_io;
134 bio->bi_private = par;
135 }
Fred Isaman9549ec02011-07-30 20:52:53 -0400136 return bio;
137}
138
Christoph Hellwig5c837462014-09-10 17:37:27 -0700139static 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,
142 struct pnfs_block_extent *be,
143 void (*end_io)(struct bio *, int err),
144 struct parallel_io *par, unsigned int offset, int *len)
Fred Isaman9549ec02011-07-30 20:52:53 -0400145{
Christoph Hellwig5c837462014-09-10 17:37:27 -0700146 struct pnfs_block_dev *dev =
147 container_of(be->be_device, struct pnfs_block_dev, node);
148 u64 disk_addr, end;
149
Peng Taofe6e1e82012-08-24 00:27:51 +0800150 dprintk("%s: npg %d rw %d isect %llu offset %u len %d\n", __func__,
Christoph Hellwig5c837462014-09-10 17:37:27 -0700151 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);
162 bio = bl_submit_bio(rw, bio);
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
Fred Isaman9549ec02011-07-30 20:52:53 -0400172retry:
173 if (!bio) {
Christoph Hellwig5c837462014-09-10 17:37:27 -0700174 bio = bl_alloc_init_bio(npg, map->bdev,
175 disk_addr >> SECTOR_SHIFT, end_io, par);
Fred Isaman9549ec02011-07-30 20:52:53 -0400176 if (!bio)
177 return ERR_PTR(-ENOMEM);
178 }
Christoph Hellwig5c837462014-09-10 17:37:27 -0700179 if (bio_add_page(bio, page, *len, offset) < *len) {
Fred Isaman9549ec02011-07-30 20:52:53 -0400180 bio = bl_submit_bio(rw, bio);
181 goto retry;
182 }
183 return bio;
184}
185
Fred Isaman9549ec02011-07-30 20:52:53 -0400186static void bl_end_io_read(struct bio *bio, int err)
187{
188 struct parallel_io *par = bio->bi_private;
Fred Isaman9549ec02011-07-30 20:52:53 -0400189
Kent Overstreet2c30c712013-11-07 12:20:26 -0800190 if (err) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400191 struct nfs_pgio_header *header = par->data;
Fred Isamancd841602012-04-20 14:47:44 -0400192
193 if (!header->pnfs_error)
194 header->pnfs_error = -EIO;
195 pnfs_set_lo_fail(header->lseg);
Fred Isaman9549ec02011-07-30 20:52:53 -0400196 }
Christoph Hellwig8c792ea2014-09-10 08:23:33 -0700197
Fred Isaman9549ec02011-07-30 20:52:53 -0400198 bio_put(bio);
199 put_parallel(par);
200}
201
202static void bl_read_cleanup(struct work_struct *work)
203{
204 struct rpc_task *task;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400205 struct nfs_pgio_header *hdr;
Fred Isaman9549ec02011-07-30 20:52:53 -0400206 dprintk("%s enter\n", __func__);
207 task = container_of(work, struct rpc_task, u.tk_work);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400208 hdr = container_of(task, struct nfs_pgio_header, task);
209 pnfs_ld_read_done(hdr);
Fred Isaman9549ec02011-07-30 20:52:53 -0400210}
211
212static void
Christoph Hellwig80672532014-09-10 08:23:34 -0700213bl_end_par_io_read(void *data)
Fred Isaman9549ec02011-07-30 20:52:53 -0400214{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400215 struct nfs_pgio_header *hdr = data;
Fred Isaman9549ec02011-07-30 20:52:53 -0400216
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400217 hdr->task.tk_status = hdr->pnfs_error;
218 INIT_WORK(&hdr->task.u.tk_work, bl_read_cleanup);
219 schedule_work(&hdr->task.u.tk_work);
Fred Isaman9549ec02011-07-30 20:52:53 -0400220}
221
Fred Isaman155e7522011-07-30 20:52:39 -0400222static enum pnfs_try_status
Christoph Hellwig80672532014-09-10 08:23:34 -0700223bl_read_pagelist(struct nfs_pgio_header *header)
Fred Isaman155e7522011-07-30 20:52:39 -0400224{
Christoph Hellwig80672532014-09-10 08:23:34 -0700225 struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
Christoph Hellwig5c837462014-09-10 17:37:27 -0700226 struct pnfs_block_dev_map map = { .start = NFS4_MAX_UINT64 };
Fred Isaman9549ec02011-07-30 20:52:53 -0400227 struct bio *bio = NULL;
Christoph Hellwig80672532014-09-10 08:23:34 -0700228 struct pnfs_block_extent be;
Fred Isaman9549ec02011-07-30 20:52:53 -0400229 sector_t isect, extent_length = 0;
230 struct parallel_io *par;
Christoph Hellwig80672532014-09-10 08:23:34 -0700231 loff_t f_offset = header->args.offset;
232 size_t bytes_left = header->args.count;
Peng Taof742dc42012-08-24 00:27:52 +0800233 unsigned int pg_offset, pg_len;
Christoph Hellwig80672532014-09-10 08:23:34 -0700234 struct page **pages = header->args.pages;
235 int pg_index = header->args.pgbase >> PAGE_CACHE_SHIFT;
Peng Taof742dc42012-08-24 00:27:52 +0800236 const bool is_dio = (header->dreq != NULL);
Christoph Hellwigbe98fd02014-08-21 11:09:28 -0500237 struct blk_plug plug;
Christoph Hellwig80672532014-09-10 08:23:34 -0700238 int i;
Fred Isaman9549ec02011-07-30 20:52:53 -0400239
Trond Myklebust6f008662012-03-20 14:12:46 -0400240 dprintk("%s enter nr_pages %u offset %lld count %u\n", __func__,
Christoph Hellwig80672532014-09-10 08:23:34 -0700241 header->page_array.npages, f_offset,
242 (unsigned int)header->args.count);
Fred Isaman9549ec02011-07-30 20:52:53 -0400243
Christoph Hellwig80672532014-09-10 08:23:34 -0700244 par = alloc_parallel(header);
Fred Isaman9549ec02011-07-30 20:52:53 -0400245 if (!par)
Christoph Hellwig80672532014-09-10 08:23:34 -0700246 return PNFS_NOT_ATTEMPTED;
Fred Isaman9549ec02011-07-30 20:52:53 -0400247 par->pnfs_callback = bl_end_par_io_read;
Fred Isaman9549ec02011-07-30 20:52:53 -0400248
Christoph Hellwigbe98fd02014-08-21 11:09:28 -0500249 blk_start_plug(&plug);
250
Fred Isaman9549ec02011-07-30 20:52:53 -0400251 isect = (sector_t) (f_offset >> SECTOR_SHIFT);
252 /* Code assumes extents are page-aligned */
Christoph Hellwig80672532014-09-10 08:23:34 -0700253 for (i = pg_index; i < header->page_array.npages; i++) {
Christoph Hellwig921b81a2014-08-21 11:09:29 -0500254 if (extent_length <= 0) {
Fred Isaman9549ec02011-07-30 20:52:53 -0400255 /* We've used up the previous extent */
Fred Isaman9549ec02011-07-30 20:52:53 -0400256 bio = bl_submit_bio(READ, bio);
Christoph Hellwig80672532014-09-10 08:23:34 -0700257
Fred Isaman9549ec02011-07-30 20:52:53 -0400258 /* Get the next one */
Christoph Hellwig80672532014-09-10 08:23:34 -0700259 if (!ext_tree_lookup(bl, isect, &be, false)) {
Fred Isamancd841602012-04-20 14:47:44 -0400260 header->pnfs_error = -EIO;
Fred Isaman9549ec02011-07-30 20:52:53 -0400261 goto out;
262 }
Christoph Hellwig80672532014-09-10 08:23:34 -0700263 extent_length = be.be_length - (isect - be.be_f_offset);
Fred Isaman9549ec02011-07-30 20:52:53 -0400264 }
Peng Taof742dc42012-08-24 00:27:52 +0800265
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700266 pg_offset = f_offset & ~PAGE_CACHE_MASK;
Peng Taof742dc42012-08-24 00:27:52 +0800267 if (is_dio) {
Peng Taof742dc42012-08-24 00:27:52 +0800268 if (pg_offset + bytes_left > PAGE_CACHE_SIZE)
269 pg_len = PAGE_CACHE_SIZE - pg_offset;
270 else
271 pg_len = bytes_left;
Peng Taof742dc42012-08-24 00:27:52 +0800272 } else {
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700273 BUG_ON(pg_offset != 0);
Peng Taof742dc42012-08-24 00:27:52 +0800274 pg_len = PAGE_CACHE_SIZE;
275 }
276
Christoph Hellwig5c837462014-09-10 17:37:27 -0700277 isect += (pg_offset >> SECTOR_SHIFT);
278 extent_length -= (pg_offset >> SECTOR_SHIFT);
279
Christoph Hellwig80672532014-09-10 08:23:34 -0700280 if (is_hole(&be)) {
Fred Isaman9549ec02011-07-30 20:52:53 -0400281 bio = bl_submit_bio(READ, bio);
282 /* Fill hole w/ zeroes w/o accessing device */
283 dprintk("%s Zeroing page for hole\n", __func__);
Peng Taof742dc42012-08-24 00:27:52 +0800284 zero_user_segment(pages[i], pg_offset, pg_len);
Christoph Hellwig5c837462014-09-10 17:37:27 -0700285
286 /* invalidate map */
287 map.start = NFS4_MAX_UINT64;
Fred Isaman9549ec02011-07-30 20:52:53 -0400288 } else {
Weston Andros Adamson823b0c92014-06-09 11:48:34 -0400289 bio = do_add_page_to_bio(bio,
Christoph Hellwig80672532014-09-10 08:23:34 -0700290 header->page_array.npages - i,
Fred Isaman30dd3742012-04-20 14:47:45 -0400291 READ,
Christoph Hellwig5c837462014-09-10 17:37:27 -0700292 isect, pages[i], &map, &be,
Peng Taof742dc42012-08-24 00:27:52 +0800293 bl_end_io_read, par,
Christoph Hellwig5c837462014-09-10 17:37:27 -0700294 pg_offset, &pg_len);
Fred Isaman9549ec02011-07-30 20:52:53 -0400295 if (IS_ERR(bio)) {
Fred Isamancd841602012-04-20 14:47:44 -0400296 header->pnfs_error = PTR_ERR(bio);
Peng Taoe6d05a72011-09-22 21:50:16 -0400297 bio = NULL;
Fred Isaman9549ec02011-07-30 20:52:53 -0400298 goto out;
299 }
300 }
Peng Taof742dc42012-08-24 00:27:52 +0800301 isect += (pg_len >> SECTOR_SHIFT);
Christoph Hellwig921b81a2014-08-21 11:09:29 -0500302 extent_length -= (pg_len >> SECTOR_SHIFT);
Christoph Hellwig5c837462014-09-10 17:37:27 -0700303 f_offset += pg_len;
304 bytes_left -= pg_len;
Fred Isaman9549ec02011-07-30 20:52:53 -0400305 }
Fred Isamancd841602012-04-20 14:47:44 -0400306 if ((isect << SECTOR_SHIFT) >= header->inode->i_size) {
Christoph Hellwig80672532014-09-10 08:23:34 -0700307 header->res.eof = 1;
308 header->res.count = header->inode->i_size - header->args.offset;
Fred Isaman9549ec02011-07-30 20:52:53 -0400309 } else {
Christoph Hellwig80672532014-09-10 08:23:34 -0700310 header->res.count = (isect << SECTOR_SHIFT) - header->args.offset;
Fred Isaman9549ec02011-07-30 20:52:53 -0400311 }
312out:
Fred Isaman9549ec02011-07-30 20:52:53 -0400313 bl_submit_bio(READ, bio);
Christoph Hellwigbe98fd02014-08-21 11:09:28 -0500314 blk_finish_plug(&plug);
Fred Isaman9549ec02011-07-30 20:52:53 -0400315 put_parallel(par);
316 return PNFS_ATTEMPTED;
Fred Isaman31e63062011-07-30 20:52:55 -0400317}
318
Fred Isaman650e2d32011-07-30 20:52:54 -0400319static void bl_end_io_write(struct bio *bio, int err)
Fred Isaman155e7522011-07-30 20:52:39 -0400320{
Fred Isaman650e2d32011-07-30 20:52:54 -0400321 struct parallel_io *par = bio->bi_private;
322 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400323 struct nfs_pgio_header *header = par->data;
Fred Isaman650e2d32011-07-30 20:52:54 -0400324
325 if (!uptodate) {
Fred Isamancd841602012-04-20 14:47:44 -0400326 if (!header->pnfs_error)
327 header->pnfs_error = -EIO;
328 pnfs_set_lo_fail(header->lseg);
Fred Isaman650e2d32011-07-30 20:52:54 -0400329 }
330 bio_put(bio);
331 put_parallel(par);
332}
333
334/* Function scheduled for call during bl_end_par_io_write,
335 * it marks sectors as written and extends the commitlist.
336 */
337static void bl_write_cleanup(struct work_struct *work)
338{
Christoph Hellwig80672532014-09-10 08:23:34 -0700339 struct rpc_task *task = container_of(work, struct rpc_task, u.tk_work);
340 struct nfs_pgio_header *hdr =
341 container_of(task, struct nfs_pgio_header, task);
342
Fred Isaman650e2d32011-07-30 20:52:54 -0400343 dprintk("%s enter\n", __func__);
Christoph Hellwig80672532014-09-10 08:23:34 -0700344
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400345 if (likely(!hdr->pnfs_error)) {
Christoph Hellwig80672532014-09-10 08:23:34 -0700346 struct pnfs_block_layout *bl = BLK_LSEG2EXT(hdr->lseg);
347 u64 start = hdr->args.offset & (loff_t)PAGE_CACHE_MASK;
348 u64 end = (hdr->args.offset + hdr->args.count +
349 PAGE_CACHE_SIZE - 1) & (loff_t)PAGE_CACHE_MASK;
350
351 ext_tree_mark_written(bl, start >> SECTOR_SHIFT,
352 (end - start) >> SECTOR_SHIFT);
Fred Isaman31e63062011-07-30 20:52:55 -0400353 }
Christoph Hellwig80672532014-09-10 08:23:34 -0700354
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400355 pnfs_ld_write_done(hdr);
Fred Isaman650e2d32011-07-30 20:52:54 -0400356}
357
358/* Called when last of bios associated with a bl_write_pagelist call finishes */
Christoph Hellwig80672532014-09-10 08:23:34 -0700359static void bl_end_par_io_write(void *data)
Fred Isaman650e2d32011-07-30 20:52:54 -0400360{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400361 struct nfs_pgio_header *hdr = data;
Fred Isaman650e2d32011-07-30 20:52:54 -0400362
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400363 hdr->task.tk_status = hdr->pnfs_error;
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400364 hdr->verf.committed = NFS_FILE_SYNC;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400365 INIT_WORK(&hdr->task.u.tk_work, bl_write_cleanup);
366 schedule_work(&hdr->task.u.tk_work);
Fred Isaman650e2d32011-07-30 20:52:54 -0400367}
368
369static enum pnfs_try_status
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400370bl_write_pagelist(struct nfs_pgio_header *header, int sync)
Fred Isaman650e2d32011-07-30 20:52:54 -0400371{
Christoph Hellwig80672532014-09-10 08:23:34 -0700372 struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
Christoph Hellwig5c837462014-09-10 17:37:27 -0700373 struct pnfs_block_dev_map map = { .start = NFS4_MAX_UINT64 };
Fred Isaman650e2d32011-07-30 20:52:54 -0400374 struct bio *bio = NULL;
Christoph Hellwig80672532014-09-10 08:23:34 -0700375 struct pnfs_block_extent be;
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700376 sector_t isect, extent_length = 0;
Peng Tao96c9eae2012-08-24 00:27:53 +0800377 struct parallel_io *par = NULL;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400378 loff_t offset = header->args.offset;
379 size_t count = header->args.count;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400380 struct page **pages = header->args.pages;
Jan Karab283f942014-10-21 13:32:10 +0200381 int pg_index = header->args.pgbase >> PAGE_CACHE_SHIFT;
Christoph Hellwig5c837462014-09-10 17:37:27 -0700382 unsigned int pg_len;
Christoph Hellwigbe98fd02014-08-21 11:09:28 -0500383 struct blk_plug plug;
Christoph Hellwig80672532014-09-10 08:23:34 -0700384 int i;
Fred Isaman650e2d32011-07-30 20:52:54 -0400385
386 dprintk("%s enter, %Zu@%lld\n", __func__, count, offset);
Peng Tao96c9eae2012-08-24 00:27:53 +0800387
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400388 /* At this point, header->page_aray is a (sequential) list of nfs_pages.
Peng Tao71cdd402011-07-30 20:52:56 -0400389 * We want to write each, and if there is an error set pnfs_error
390 * to have it redone using nfs.
Fred Isaman650e2d32011-07-30 20:52:54 -0400391 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400392 par = alloc_parallel(header);
Fred Isaman650e2d32011-07-30 20:52:54 -0400393 if (!par)
Christoph Hellwig80672532014-09-10 08:23:34 -0700394 return PNFS_NOT_ATTEMPTED;
Fred Isaman650e2d32011-07-30 20:52:54 -0400395 par->pnfs_callback = bl_end_par_io_write;
Fred Isaman650e2d32011-07-30 20:52:54 -0400396
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700397 blk_start_plug(&plug);
Peng Tao71cdd402011-07-30 20:52:56 -0400398
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700399 /* we always write out the whole page */
400 offset = offset & (loff_t)PAGE_CACHE_MASK;
401 isect = offset >> SECTOR_SHIFT;
Peng Tao71cdd402011-07-30 20:52:56 -0400402
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400403 for (i = pg_index; i < header->page_array.npages; i++) {
Christoph Hellwig921b81a2014-08-21 11:09:29 -0500404 if (extent_length <= 0) {
Fred Isaman650e2d32011-07-30 20:52:54 -0400405 /* We've used up the previous extent */
Fred Isaman650e2d32011-07-30 20:52:54 -0400406 bio = bl_submit_bio(WRITE, bio);
407 /* Get the next one */
Christoph Hellwig80672532014-09-10 08:23:34 -0700408 if (!ext_tree_lookup(bl, isect, &be, true)) {
Fred Isamancd841602012-04-20 14:47:44 -0400409 header->pnfs_error = -EINVAL;
Fred Isaman650e2d32011-07-30 20:52:54 -0400410 goto out;
411 }
Peng Taofe6e1e82012-08-24 00:27:51 +0800412
Christoph Hellwig80672532014-09-10 08:23:34 -0700413 extent_length = be.be_length - (isect - be.be_f_offset);
Peng Tao71cdd402011-07-30 20:52:56 -0400414 }
Peng Taofe6e1e82012-08-24 00:27:51 +0800415
Christoph Hellwig5c837462014-09-10 17:37:27 -0700416 pg_len = PAGE_CACHE_SIZE;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400417 bio = do_add_page_to_bio(bio, header->page_array.npages - i,
Christoph Hellwig5c837462014-09-10 17:37:27 -0700418 WRITE, isect, pages[i], &map, &be,
Peng Taofe6e1e82012-08-24 00:27:51 +0800419 bl_end_io_write, par,
Christoph Hellwig5c837462014-09-10 17:37:27 -0700420 0, &pg_len);
Peng Tao71cdd402011-07-30 20:52:56 -0400421 if (IS_ERR(bio)) {
Fred Isamancd841602012-04-20 14:47:44 -0400422 header->pnfs_error = PTR_ERR(bio);
Peng Taoe6d05a72011-09-22 21:50:16 -0400423 bio = NULL;
Peng Tao71cdd402011-07-30 20:52:56 -0400424 goto out;
Fred Isaman650e2d32011-07-30 20:52:54 -0400425 }
Christoph Hellwig5c837462014-09-10 17:37:27 -0700426
427 offset += pg_len;
428 count -= pg_len;
429 isect += (pg_len >> SECTOR_SHIFT);
430 extent_length -= (pg_len >> SECTOR_SHIFT);
Fred Isaman650e2d32011-07-30 20:52:54 -0400431 }
Peng Tao71cdd402011-07-30 20:52:56 -0400432
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400433 header->res.count = header->args.count;
Fred Isaman650e2d32011-07-30 20:52:54 -0400434out:
Fred Isaman650e2d32011-07-30 20:52:54 -0400435 bl_submit_bio(WRITE, bio);
Christoph Hellwigbe98fd02014-08-21 11:09:28 -0500436 blk_finish_plug(&plug);
Fred Isaman650e2d32011-07-30 20:52:54 -0400437 put_parallel(par);
438 return PNFS_ATTEMPTED;
Fred Isaman155e7522011-07-30 20:52:39 -0400439}
440
441static void bl_free_layout_hdr(struct pnfs_layout_hdr *lo)
442{
443 struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
Christoph Hellwig80672532014-09-10 08:23:34 -0700444 int err;
Fred Isaman155e7522011-07-30 20:52:39 -0400445
446 dprintk("%s enter\n", __func__);
Christoph Hellwig80672532014-09-10 08:23:34 -0700447
448 err = ext_tree_remove(bl, true, 0, LLONG_MAX);
449 WARN_ON(err);
450
Fred Isaman155e7522011-07-30 20:52:39 -0400451 kfree(bl);
452}
453
454static struct pnfs_layout_hdr *bl_alloc_layout_hdr(struct inode *inode,
455 gfp_t gfp_flags)
456{
457 struct pnfs_block_layout *bl;
458
459 dprintk("%s enter\n", __func__);
460 bl = kzalloc(sizeof(*bl), gfp_flags);
461 if (!bl)
462 return NULL;
Christoph Hellwig80672532014-09-10 08:23:34 -0700463
464 bl->bl_ext_rw = RB_ROOT;
465 bl->bl_ext_ro = RB_ROOT;
Fred Isaman155e7522011-07-30 20:52:39 -0400466 spin_lock_init(&bl->bl_ext_lock);
Christoph Hellwig80672532014-09-10 08:23:34 -0700467
Fred Isaman155e7522011-07-30 20:52:39 -0400468 return &bl->bl_layout;
469}
470
Fred Isamana60d2eb2011-07-30 20:52:44 -0400471static void bl_free_lseg(struct pnfs_layout_segment *lseg)
Fred Isaman155e7522011-07-30 20:52:39 -0400472{
Fred Isamana60d2eb2011-07-30 20:52:44 -0400473 dprintk("%s enter\n", __func__);
474 kfree(lseg);
Fred Isaman155e7522011-07-30 20:52:39 -0400475}
476
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700477/* Tracks info needed to ensure extents in layout obey constraints of spec */
478struct layout_verification {
479 u32 mode; /* R or RW */
480 u64 start; /* Expected start of next non-COW extent */
481 u64 inval; /* Start of INVAL coverage */
482 u64 cowread; /* End of COW read coverage */
483};
484
485/* Verify the extent meets the layout requirements of the pnfs-block draft,
486 * section 2.3.1.
487 */
488static int verify_extent(struct pnfs_block_extent *be,
489 struct layout_verification *lv)
490{
491 if (lv->mode == IOMODE_READ) {
492 if (be->be_state == PNFS_BLOCK_READWRITE_DATA ||
493 be->be_state == PNFS_BLOCK_INVALID_DATA)
494 return -EIO;
495 if (be->be_f_offset != lv->start)
496 return -EIO;
497 lv->start += be->be_length;
498 return 0;
499 }
500 /* lv->mode == IOMODE_RW */
501 if (be->be_state == PNFS_BLOCK_READWRITE_DATA) {
502 if (be->be_f_offset != lv->start)
503 return -EIO;
504 if (lv->cowread > lv->start)
505 return -EIO;
506 lv->start += be->be_length;
507 lv->inval = lv->start;
508 return 0;
509 } else if (be->be_state == PNFS_BLOCK_INVALID_DATA) {
510 if (be->be_f_offset != lv->start)
511 return -EIO;
512 lv->start += be->be_length;
513 return 0;
514 } else if (be->be_state == PNFS_BLOCK_READ_DATA) {
515 if (be->be_f_offset > lv->start)
516 return -EIO;
517 if (be->be_f_offset < lv->inval)
518 return -EIO;
519 if (be->be_f_offset < lv->cowread)
520 return -EIO;
521 /* It looks like you might want to min this with lv->start,
522 * but you really don't.
523 */
524 lv->inval = lv->inval + be->be_length;
525 lv->cowread = be->be_f_offset + be->be_length;
526 return 0;
527 } else
528 return -EIO;
529}
530
531static int decode_sector_number(__be32 **rp, sector_t *sp)
532{
533 uint64_t s;
534
535 *rp = xdr_decode_hyper(*rp, &s);
536 if (s & 0x1ff) {
537 printk(KERN_WARNING "NFS: %s: sector not aligned\n", __func__);
538 return -1;
539 }
540 *sp = s >> SECTOR_SHIFT;
541 return 0;
542}
543
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700544static int
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700545bl_alloc_extent(struct xdr_stream *xdr, struct pnfs_layout_hdr *lo,
546 struct layout_verification *lv, struct list_head *extents,
547 gfp_t gfp_mask)
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700548{
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700549 struct pnfs_block_extent *be;
550 struct nfs4_deviceid id;
551 int error;
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700552 __be32 *p;
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700553
554 p = xdr_inline_decode(xdr, 28 + NFS4_DEVICEID4_SIZE);
555 if (!p)
556 return -EIO;
557
558 be = kzalloc(sizeof(*be), GFP_NOFS);
559 if (!be)
560 return -ENOMEM;
561
562 memcpy(&id, p, NFS4_DEVICEID4_SIZE);
563 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
564
565 error = -EIO;
566 be->be_device = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode), &id,
567 lo->plh_lc_cred, gfp_mask);
568 if (!be->be_device)
569 goto out_free_be;
570
571 /*
572 * The next three values are read in as bytes, but stored in the
573 * extent structure in 512-byte granularity.
574 */
575 if (decode_sector_number(&p, &be->be_f_offset) < 0)
576 goto out_put_deviceid;
577 if (decode_sector_number(&p, &be->be_length) < 0)
578 goto out_put_deviceid;
579 if (decode_sector_number(&p, &be->be_v_offset) < 0)
580 goto out_put_deviceid;
581 be->be_state = be32_to_cpup(p++);
582
583 error = verify_extent(be, lv);
584 if (error) {
585 dprintk("%s: extent verification failed\n", __func__);
586 goto out_put_deviceid;
587 }
588
589 list_add_tail(&be->be_list, extents);
590 return 0;
591
592out_put_deviceid:
593 nfs4_put_deviceid_node(be->be_device);
594out_free_be:
595 kfree(be);
596 return error;
597}
598
599static struct pnfs_layout_segment *
600bl_alloc_lseg(struct pnfs_layout_hdr *lo, struct nfs4_layoutget_res *lgr,
601 gfp_t gfp_mask)
602{
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700603 struct layout_verification lv = {
604 .mode = lgr->range.iomode,
605 .start = lgr->range.offset >> SECTOR_SHIFT,
606 .inval = lgr->range.offset >> SECTOR_SHIFT,
607 .cowread = lgr->range.offset >> SECTOR_SHIFT,
608 };
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700609 struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
610 struct pnfs_layout_segment *lseg;
611 struct xdr_buf buf;
612 struct xdr_stream xdr;
613 struct page *scratch;
614 int status, i;
615 uint32_t count;
616 __be32 *p;
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700617 LIST_HEAD(extents);
618
619 dprintk("---> %s\n", __func__);
620
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700621 lseg = kzalloc(sizeof(*lseg), gfp_mask);
622 if (!lseg)
623 return ERR_PTR(-ENOMEM);
624
625 status = -ENOMEM;
626 scratch = alloc_page(gfp_mask);
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700627 if (!scratch)
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700628 goto out;
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700629
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700630 xdr_init_decode_pages(&xdr, &buf,
631 lgr->layoutp->pages, lgr->layoutp->len);
632 xdr_set_scratch_buffer(&xdr, page_address(scratch), PAGE_SIZE);
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700633
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700634 status = -EIO;
635 p = xdr_inline_decode(&xdr, 4);
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700636 if (unlikely(!p))
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700637 goto out_free_scratch;
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700638
639 count = be32_to_cpup(p++);
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700640 dprintk("%s: number of extents %d\n", __func__, count);
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700641
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700642 /*
643 * Decode individual extents, putting them in temporary staging area
644 * until whole layout is decoded to make error recovery easier.
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700645 */
646 for (i = 0; i < count; i++) {
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700647 status = bl_alloc_extent(&xdr, lo, &lv, &extents, gfp_mask);
648 if (status)
649 goto process_extents;
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700650 }
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700651
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700652 if (lgr->range.offset + lgr->range.length !=
653 lv.start << SECTOR_SHIFT) {
654 dprintk("%s Final length mismatch\n", __func__);
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700655 status = -EIO;
656 goto process_extents;
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700657 }
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700658
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700659 if (lv.start < lv.cowread) {
660 dprintk("%s Final uncovered COW extent\n", __func__);
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700661 status = -EIO;
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700662 }
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700663
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700664process_extents:
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700665 while (!list_empty(&extents)) {
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700666 struct pnfs_block_extent *be =
667 list_first_entry(&extents, struct pnfs_block_extent,
668 be_list);
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700669 list_del(&be->be_list);
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700670
671 if (!status)
672 status = ext_tree_insert(bl, be);
673
674 if (status) {
675 nfs4_put_deviceid_node(be->be_device);
676 kfree(be);
677 }
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700678 }
Christoph Hellwig9cc47542014-09-10 17:37:24 -0700679
Christoph Hellwigca0fe1d2014-09-10 17:37:25 -0700680out_free_scratch:
681 __free_page(scratch);
682out:
683 dprintk("%s returns %d\n", __func__, status);
Fred Isamana60d2eb2011-07-30 20:52:44 -0400684 if (status) {
Fred Isamana60d2eb2011-07-30 20:52:44 -0400685 kfree(lseg);
686 return ERR_PTR(status);
687 }
688 return lseg;
Fred Isaman155e7522011-07-30 20:52:39 -0400689}
690
691static void
Christoph Hellwig71d5b762014-09-10 08:23:35 -0700692bl_return_range(struct pnfs_layout_hdr *lo,
693 struct pnfs_layout_range *range)
694{
695 struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
696 sector_t offset = range->offset >> SECTOR_SHIFT, end;
Christoph Hellwig71d5b762014-09-10 08:23:35 -0700697
698 if (range->offset % 8) {
699 dprintk("%s: offset %lld not block size aligned\n",
700 __func__, range->offset);
701 return;
702 }
703
704 if (range->length != NFS4_MAX_UINT64) {
705 if (range->length % 8) {
706 dprintk("%s: length %lld not block size aligned\n",
707 __func__, range->length);
708 return;
709 }
710
711 end = offset + (range->length >> SECTOR_SHIFT);
712 } else {
713 end = round_down(NFS4_MAX_UINT64, PAGE_SIZE);
714 }
715
Trond Myklebust164ae582014-09-12 13:25:14 -0400716 ext_tree_remove(bl, range->iomode & IOMODE_RW, offset, end);
Christoph Hellwig71d5b762014-09-10 08:23:35 -0700717}
718
Christoph Hellwig34dc93c2014-09-10 17:36:30 -0700719static int
720bl_prepare_layoutcommit(struct nfs4_layoutcommit_args *arg)
Fred Isaman155e7522011-07-30 20:52:39 -0400721{
Christoph Hellwig34dc93c2014-09-10 17:36:30 -0700722 return ext_tree_prepare_commit(arg);
Fred Isaman155e7522011-07-30 20:52:39 -0400723}
724
725static void
726bl_cleanup_layoutcommit(struct nfs4_layoutcommit_data *lcdata)
727{
Christoph Hellwig34dc93c2014-09-10 17:36:30 -0700728 ext_tree_mark_committed(&lcdata->args, lcdata->res.status);
Fred Isaman155e7522011-07-30 20:52:39 -0400729}
730
731static int
732bl_set_layoutdriver(struct nfs_server *server, const struct nfs_fh *fh)
733{
734 dprintk("%s enter\n", __func__);
Fred Isaman2f9fd182011-07-30 20:52:46 -0400735
736 if (server->pnfs_blksize == 0) {
737 dprintk("%s Server did not return blksize\n", __func__);
738 return -EINVAL;
739 }
Christoph Hellwige3aaf7f2014-08-21 11:09:26 -0500740 if (server->pnfs_blksize > PAGE_SIZE) {
741 printk(KERN_ERR "%s: pNFS blksize %d not supported.\n",
742 __func__, server->pnfs_blksize);
743 return -EINVAL;
744 }
745
Christoph Hellwigd4b18c32014-09-10 17:36:31 -0700746 return 0;
Fred Isaman155e7522011-07-30 20:52:39 -0400747}
748
Peng Taof742dc42012-08-24 00:27:52 +0800749static bool
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700750is_aligned_req(struct nfs_pageio_descriptor *pgio,
751 struct nfs_page *req, unsigned int alignment)
Peng Taof742dc42012-08-24 00:27:52 +0800752{
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700753 /*
754 * Always accept buffered writes, higher layers take care of the
755 * right alignment.
756 */
757 if (pgio->pg_dreq == NULL)
758 return true;
759
760 if (!IS_ALIGNED(req->wb_offset, alignment))
761 return false;
762
763 if (IS_ALIGNED(req->wb_bytes, alignment))
764 return true;
765
766 if (req_offset(req) + req->wb_bytes == i_size_read(pgio->pg_inode)) {
767 /*
768 * If the write goes up to the inode size, just write
769 * the full page. Data past the inode size is
770 * guaranteed to be zeroed by the higher level client
771 * code, and this behaviour is mandated by RFC 5663
772 * section 2.3.2.
773 */
774 return true;
775 }
776
777 return false;
Peng Taof742dc42012-08-24 00:27:52 +0800778}
779
780static void
781bl_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
782{
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700783 if (!is_aligned_req(pgio, req, SECTOR_SIZE)) {
Peng Taof742dc42012-08-24 00:27:52 +0800784 nfs_pageio_reset_read_mds(pgio);
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700785 return;
786 }
787
788 pnfs_generic_pg_init_read(pgio, req);
Peng Taof742dc42012-08-24 00:27:52 +0800789}
790
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400791/*
792 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
793 * of bytes (maximum @req->wb_bytes) that can be coalesced.
794 */
795static size_t
Peng Taof742dc42012-08-24 00:27:52 +0800796bl_pg_test_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
797 struct nfs_page *req)
798{
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700799 if (!is_aligned_req(pgio, req, SECTOR_SIZE))
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400800 return 0;
Peng Taof742dc42012-08-24 00:27:52 +0800801 return pnfs_generic_pg_test(pgio, prev, req);
802}
803
Peng Tao62965562012-09-25 14:55:57 +0800804/*
805 * Return the number of contiguous bytes for a given inode
806 * starting at page frame idx.
807 */
808static u64 pnfs_num_cont_bytes(struct inode *inode, pgoff_t idx)
809{
810 struct address_space *mapping = inode->i_mapping;
811 pgoff_t end;
812
813 /* Optimize common case that writes from 0 to end of file */
814 end = DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE);
Christoph Hellwig6a74c0c2014-11-24 16:47:02 -0500815 if (end != inode->i_mapping->nrpages) {
Peng Tao62965562012-09-25 14:55:57 +0800816 rcu_read_lock();
Johannes Weinere7b563b2014-04-03 14:47:44 -0700817 end = page_cache_next_hole(mapping, idx + 1, ULONG_MAX);
Peng Tao62965562012-09-25 14:55:57 +0800818 rcu_read_unlock();
819 }
820
821 if (!end)
822 return i_size_read(inode) - (idx << PAGE_CACHE_SHIFT);
823 else
824 return (end - idx) << PAGE_CACHE_SHIFT;
825}
826
Trond Myklebust6f018ef2012-10-02 08:29:14 -0700827static void
Peng Tao96c9eae2012-08-24 00:27:53 +0800828bl_pg_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
829{
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700830 u64 wb_size;
Peng Tao62965562012-09-25 14:55:57 +0800831
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700832 if (!is_aligned_req(pgio, req, PAGE_SIZE)) {
833 nfs_pageio_reset_write_mds(pgio);
834 return;
Peng Tao62965562012-09-25 14:55:57 +0800835 }
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700836
837 if (pgio->pg_dreq == NULL)
838 wb_size = pnfs_num_cont_bytes(pgio->pg_inode,
839 req->wb_index);
840 else
841 wb_size = nfs_dreq_bytes_left(pgio->pg_dreq);
842
843 pnfs_generic_pg_init_write(pgio, req, wb_size);
Peng Tao96c9eae2012-08-24 00:27:53 +0800844}
845
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400846/*
847 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
848 * of bytes (maximum @req->wb_bytes) that can be coalesced.
849 */
850static size_t
Peng Tao96c9eae2012-08-24 00:27:53 +0800851bl_pg_test_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
852 struct nfs_page *req)
853{
Christoph Hellwig3a6fd1f2014-09-10 08:23:32 -0700854 if (!is_aligned_req(pgio, req, PAGE_SIZE))
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400855 return 0;
Peng Tao96c9eae2012-08-24 00:27:53 +0800856 return pnfs_generic_pg_test(pgio, prev, req);
857}
858
Benny Halevye9643fe2011-07-30 20:52:40 -0400859static const struct nfs_pageio_ops bl_pg_read_ops = {
Peng Taof742dc42012-08-24 00:27:52 +0800860 .pg_init = bl_pg_init_read,
861 .pg_test = bl_pg_test_read,
Benny Halevye9643fe2011-07-30 20:52:40 -0400862 .pg_doio = pnfs_generic_pg_readpages,
863};
864
865static const struct nfs_pageio_ops bl_pg_write_ops = {
Peng Tao96c9eae2012-08-24 00:27:53 +0800866 .pg_init = bl_pg_init_write,
867 .pg_test = bl_pg_test_write,
Benny Halevye9643fe2011-07-30 20:52:40 -0400868 .pg_doio = pnfs_generic_pg_writepages,
869};
870
Fred Isaman155e7522011-07-30 20:52:39 -0400871static struct pnfs_layoutdriver_type blocklayout_type = {
872 .id = LAYOUT_BLOCK_VOLUME,
873 .name = "LAYOUT_BLOCK_VOLUME",
fanchaoting5a12cca2013-02-04 21:15:02 +0800874 .owner = THIS_MODULE,
Christoph Hellwig848746b2014-09-10 08:23:36 -0700875 .flags = PNFS_LAYOUTRET_ON_SETATTR |
876 PNFS_READ_WHOLE_PAGE,
Fred Isaman155e7522011-07-30 20:52:39 -0400877 .read_pagelist = bl_read_pagelist,
878 .write_pagelist = bl_write_pagelist,
879 .alloc_layout_hdr = bl_alloc_layout_hdr,
880 .free_layout_hdr = bl_free_layout_hdr,
881 .alloc_lseg = bl_alloc_lseg,
882 .free_lseg = bl_free_lseg,
Christoph Hellwig71d5b762014-09-10 08:23:35 -0700883 .return_range = bl_return_range,
Christoph Hellwig34dc93c2014-09-10 17:36:30 -0700884 .prepare_layoutcommit = bl_prepare_layoutcommit,
Fred Isaman155e7522011-07-30 20:52:39 -0400885 .cleanup_layoutcommit = bl_cleanup_layoutcommit,
886 .set_layoutdriver = bl_set_layoutdriver,
Christoph Hellwig20d655d2014-09-02 21:28:00 -0700887 .alloc_deviceid_node = bl_alloc_deviceid_node,
888 .free_deviceid_node = bl_free_deviceid_node,
Benny Halevye9643fe2011-07-30 20:52:40 -0400889 .pg_read_ops = &bl_pg_read_ops,
890 .pg_write_ops = &bl_pg_write_ops,
Fred Isaman155e7522011-07-30 20:52:39 -0400891};
892
893static int __init nfs4blocklayout_init(void)
894{
895 int ret;
896
897 dprintk("%s: NFSv4 Block Layout Driver Registering...\n", __func__);
898
899 ret = pnfs_register_layoutdriver(&blocklayout_type);
Jim Reesfe0a9b72011-07-30 20:52:42 -0400900 if (ret)
901 goto out;
Christoph Hellwig871760c2014-09-10 17:37:26 -0700902 ret = bl_init_pipefs();
Stanislav Kinsbursky9e2e74d2012-01-10 17:04:24 +0400903 if (ret)
Christoph Hellwig871760c2014-09-10 17:37:26 -0700904 goto out_unregister;
905 return 0;
Jim Reesfe0a9b72011-07-30 20:52:42 -0400906
Christoph Hellwig871760c2014-09-10 17:37:26 -0700907out_unregister:
Jim Reesfe0a9b72011-07-30 20:52:42 -0400908 pnfs_unregister_layoutdriver(&blocklayout_type);
Christoph Hellwig871760c2014-09-10 17:37:26 -0700909out:
Fred Isaman155e7522011-07-30 20:52:39 -0400910 return ret;
911}
912
913static void __exit nfs4blocklayout_exit(void)
914{
915 dprintk("%s: NFSv4 Block Layout Driver Unregistering...\n",
916 __func__);
917
Christoph Hellwig871760c2014-09-10 17:37:26 -0700918 bl_cleanup_pipefs();
Fred Isaman155e7522011-07-30 20:52:39 -0400919 pnfs_unregister_layoutdriver(&blocklayout_type);
Fred Isaman155e7522011-07-30 20:52:39 -0400920}
921
922MODULE_ALIAS("nfs-layouttype4-3");
923
924module_init(nfs4blocklayout_init);
925module_exit(nfs4blocklayout_exit);