blocklayout.c 21.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 *  linux/fs/nfs/blocklayout/blocklayout.c
 *
 *  Module for the NFSv4.1 pNFS block layout driver.
 *
 *  Copyright (c) 2006 The Regents of the University of Michigan.
 *  All rights reserved.
 *
 *  Andy Adamson <andros@citi.umich.edu>
 *  Fred Isaman <iisaman@umich.edu>
 *
 * permission is granted to use, copy, create derivative works and
 * redistribute this software and such derivative works for any purpose,
 * so long as the name of the university of michigan is not used in
 * any advertising or publicity pertaining to the use or distribution
 * of this software without specific, written prior authorization.  if
 * the above copyright notice or any other identification of the
 * university of michigan is included in any copy of any portion of
 * this software, then the disclaimer below must also be included.
 *
 * this software is provided as is, without representation from the
 * university of michigan as to its fitness for any purpose, and without
 * warranty by the university of michigan of any kind, either express
 * or implied, including without limitation the implied warranties of
 * merchantability and fitness for a particular purpose.  the regents
 * of the university of michigan shall not be liable for any damages,
 * including special, indirect, incidental, or consequential damages,
 * with respect to any claim arising out or in connection with the use
 * of the software, even if it has been or is hereafter advised of the
 * possibility of such damages.
 */
F
Fred Isaman 已提交
32

33 34
#include <linux/module.h>
#include <linux/init.h>
J
Jim Rees 已提交
35 36
#include <linux/mount.h>
#include <linux/namei.h>
F
Fred Isaman 已提交
37
#include <linux/bio.h>		/* struct bio */
38
#include <linux/prefetch.h>
39
#include <linux/pagevec.h>
40

41
#include "../pnfs.h"
42
#include "../nfs4session.h"
43
#include "../internal.h"
44 45 46 47 48 49 50 51
#include "blocklayout.h"

#define NFSDBG_FACILITY	NFSDBG_PNFS_LD

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Andy Adamson <andros@citi.umich.edu>");
MODULE_DESCRIPTION("The NFSv4.1 pNFS Block layout driver");

52
static bool is_hole(struct pnfs_block_extent *be)
F
Fred Isaman 已提交
53
{
54 55 56 57 58 59 60 61
	switch (be->be_state) {
	case PNFS_BLOCK_NONE_DATA:
		return true;
	case PNFS_BLOCK_INVALID_DATA:
		return be->be_tag ? false : true;
	default:
		return false;
	}
F
Fred Isaman 已提交
62 63
}

F
Fred Isaman 已提交
64 65 66 67 68
/* The data we are handed might be spread across several bios.  We need
 * to track when the last one is finished.
 */
struct parallel_io {
	struct kref refcnt;
69
	void (*pnfs_callback) (void *data);
F
Fred Isaman 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
	void *data;
};

static inline struct parallel_io *alloc_parallel(void *data)
{
	struct parallel_io *rv;

	rv  = kmalloc(sizeof(*rv), GFP_NOFS);
	if (rv) {
		rv->data = data;
		kref_init(&rv->refcnt);
	}
	return rv;
}

static inline void get_parallel(struct parallel_io *p)
{
	kref_get(&p->refcnt);
}

static void destroy_parallel(struct kref *kref)
{
	struct parallel_io *p = container_of(kref, struct parallel_io, refcnt);

	dprintk("%s enter\n", __func__);
95
	p->pnfs_callback(p->data);
F
Fred Isaman 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109
	kfree(p);
}

static inline void put_parallel(struct parallel_io *p)
{
	kref_put(&p->refcnt, destroy_parallel);
}

static struct bio *
bl_submit_bio(int rw, struct bio *bio)
{
	if (bio) {
		get_parallel(bio->bi_private);
		dprintk("%s submitting %s bio %u@%llu\n", __func__,
110 111
			rw == READ ? "read" : "write", bio->bi_iter.bi_size,
			(unsigned long long)bio->bi_iter.bi_sector);
F
Fred Isaman 已提交
112 113 114 115 116 117 118 119 120 121
		submit_bio(rw, bio);
	}
	return NULL;
}

static struct bio *bl_alloc_init_bio(int npg, sector_t isect,
				     struct pnfs_block_extent *be,
				     void (*end_io)(struct bio *, int err),
				     struct parallel_io *par)
{
122 123
	struct pnfs_block_dev *dev =
		container_of(be->be_device, struct pnfs_block_dev, d_node);
F
Fred Isaman 已提交
124 125
	struct bio *bio;

P
Peng Tao 已提交
126
	npg = min(npg, BIO_MAX_PAGES);
F
Fred Isaman 已提交
127
	bio = bio_alloc(GFP_NOIO, npg);
P
Peng Tao 已提交
128 129 130 131
	if (!bio && (current->flags & PF_MEMALLOC)) {
		while (!bio && (npg /= 2))
			bio = bio_alloc(GFP_NOIO, npg);
	}
F
Fred Isaman 已提交
132

P
Peng Tao 已提交
133
	if (bio) {
134 135
		bio->bi_iter.bi_sector = isect - be->be_f_offset +
			be->be_v_offset;
136
		bio->bi_bdev = dev->d_bdev;
P
Peng Tao 已提交
137 138 139
		bio->bi_end_io = end_io;
		bio->bi_private = par;
	}
F
Fred Isaman 已提交
140 141 142
	return bio;
}

143
static struct bio *do_add_page_to_bio(struct bio *bio, int npg, int rw,
F
Fred Isaman 已提交
144 145 146
				      sector_t isect, struct page *page,
				      struct pnfs_block_extent *be,
				      void (*end_io)(struct bio *, int err),
147 148
				      struct parallel_io *par,
				      unsigned int offset, int len)
F
Fred Isaman 已提交
149
{
150 151 152
	isect = isect + (offset >> SECTOR_SHIFT);
	dprintk("%s: npg %d rw %d isect %llu offset %u len %d\n", __func__,
		npg, rw, (unsigned long long)isect, offset, len);
F
Fred Isaman 已提交
153 154 155 156 157 158
retry:
	if (!bio) {
		bio = bl_alloc_init_bio(npg, isect, be, end_io, par);
		if (!bio)
			return ERR_PTR(-ENOMEM);
	}
159
	if (bio_add_page(bio, page, len, offset) < len) {
F
Fred Isaman 已提交
160 161 162 163 164 165 166 167 168 169
		bio = bl_submit_bio(rw, bio);
		goto retry;
	}
	return bio;
}

static void bl_end_io_read(struct bio *bio, int err)
{
	struct parallel_io *par = bio->bi_private;

170
	if (err) {
171
		struct nfs_pgio_header *header = par->data;
172 173 174 175

		if (!header->pnfs_error)
			header->pnfs_error = -EIO;
		pnfs_set_lo_fail(header->lseg);
F
Fred Isaman 已提交
176
	}
177

F
Fred Isaman 已提交
178 179 180 181 182 183 184
	bio_put(bio);
	put_parallel(par);
}

static void bl_read_cleanup(struct work_struct *work)
{
	struct rpc_task *task;
185
	struct nfs_pgio_header *hdr;
F
Fred Isaman 已提交
186 187
	dprintk("%s enter\n", __func__);
	task = container_of(work, struct rpc_task, u.tk_work);
188 189
	hdr = container_of(task, struct nfs_pgio_header, task);
	pnfs_ld_read_done(hdr);
F
Fred Isaman 已提交
190 191 192
}

static void
193
bl_end_par_io_read(void *data)
F
Fred Isaman 已提交
194
{
195
	struct nfs_pgio_header *hdr = data;
F
Fred Isaman 已提交
196

197 198 199
	hdr->task.tk_status = hdr->pnfs_error;
	INIT_WORK(&hdr->task.u.tk_work, bl_read_cleanup);
	schedule_work(&hdr->task.u.tk_work);
F
Fred Isaman 已提交
200 201
}

202
static enum pnfs_try_status
203
bl_read_pagelist(struct nfs_pgio_header *header)
204
{
205
	struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
F
Fred Isaman 已提交
206
	struct bio *bio = NULL;
207
	struct pnfs_block_extent be;
F
Fred Isaman 已提交
208 209
	sector_t isect, extent_length = 0;
	struct parallel_io *par;
210 211
	loff_t f_offset = header->args.offset;
	size_t bytes_left = header->args.count;
P
Peng Tao 已提交
212
	unsigned int pg_offset, pg_len;
213 214
	struct page **pages = header->args.pages;
	int pg_index = header->args.pgbase >> PAGE_CACHE_SHIFT;
P
Peng Tao 已提交
215
	const bool is_dio = (header->dreq != NULL);
216
	struct blk_plug plug;
217
	int i;
F
Fred Isaman 已提交
218

219
	dprintk("%s enter nr_pages %u offset %lld count %u\n", __func__,
220 221
		header->page_array.npages, f_offset,
		(unsigned int)header->args.count);
F
Fred Isaman 已提交
222

223
	par = alloc_parallel(header);
F
Fred Isaman 已提交
224
	if (!par)
225
		return PNFS_NOT_ATTEMPTED;
F
Fred Isaman 已提交
226 227
	par->pnfs_callback = bl_end_par_io_read;

228 229
	blk_start_plug(&plug);

F
Fred Isaman 已提交
230 231
	isect = (sector_t) (f_offset >> SECTOR_SHIFT);
	/* Code assumes extents are page-aligned */
232
	for (i = pg_index; i < header->page_array.npages; i++) {
233
		if (extent_length <= 0) {
F
Fred Isaman 已提交
234 235
			/* We've used up the previous extent */
			bio = bl_submit_bio(READ, bio);
236

F
Fred Isaman 已提交
237
			/* Get the next one */
238
			if (!ext_tree_lookup(bl, isect, &be, false)) {
239
				header->pnfs_error = -EIO;
F
Fred Isaman 已提交
240 241
				goto out;
			}
242
			extent_length = be.be_length - (isect - be.be_f_offset);
F
Fred Isaman 已提交
243
		}
P
Peng Tao 已提交
244

245
		pg_offset = f_offset & ~PAGE_CACHE_MASK;
P
Peng Tao 已提交
246 247 248 249 250 251 252 253 254
		if (is_dio) {
			if (pg_offset + bytes_left > PAGE_CACHE_SIZE)
				pg_len = PAGE_CACHE_SIZE - pg_offset;
			else
				pg_len = bytes_left;

			f_offset += pg_len;
			bytes_left -= pg_len;
			isect += (pg_offset >> SECTOR_SHIFT);
255
			extent_length -= (pg_offset >> SECTOR_SHIFT);
P
Peng Tao 已提交
256
		} else {
257
			BUG_ON(pg_offset != 0);
P
Peng Tao 已提交
258 259 260
			pg_len = PAGE_CACHE_SIZE;
		}

261
		if (is_hole(&be)) {
F
Fred Isaman 已提交
262 263 264
			bio = bl_submit_bio(READ, bio);
			/* Fill hole w/ zeroes w/o accessing device */
			dprintk("%s Zeroing page for hole\n", __func__);
P
Peng Tao 已提交
265
			zero_user_segment(pages[i], pg_offset, pg_len);
F
Fred Isaman 已提交
266
		} else {
267
			bio = do_add_page_to_bio(bio,
268
						 header->page_array.npages - i,
F
Fred Isaman 已提交
269
						 READ,
270
						 isect, pages[i], &be,
P
Peng Tao 已提交
271 272
						 bl_end_io_read, par,
						 pg_offset, pg_len);
F
Fred Isaman 已提交
273
			if (IS_ERR(bio)) {
274
				header->pnfs_error = PTR_ERR(bio);
P
Peng Tao 已提交
275
				bio = NULL;
F
Fred Isaman 已提交
276 277 278
				goto out;
			}
		}
P
Peng Tao 已提交
279
		isect += (pg_len >> SECTOR_SHIFT);
280
		extent_length -= (pg_len >> SECTOR_SHIFT);
F
Fred Isaman 已提交
281
	}
282
	if ((isect << SECTOR_SHIFT) >= header->inode->i_size) {
283 284
		header->res.eof = 1;
		header->res.count = header->inode->i_size - header->args.offset;
F
Fred Isaman 已提交
285
	} else {
286
		header->res.count = (isect << SECTOR_SHIFT) - header->args.offset;
F
Fred Isaman 已提交
287 288 289
	}
out:
	bl_submit_bio(READ, bio);
290
	blk_finish_plug(&plug);
F
Fred Isaman 已提交
291 292
	put_parallel(par);
	return PNFS_ATTEMPTED;
293 294
}

F
Fred Isaman 已提交
295 296 297 298
static void bl_end_io_write(struct bio *bio, int err)
{
	struct parallel_io *par = bio->bi_private;
	const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
299
	struct nfs_pgio_header *header = par->data;
F
Fred Isaman 已提交
300 301

	if (!uptodate) {
302 303 304
		if (!header->pnfs_error)
			header->pnfs_error = -EIO;
		pnfs_set_lo_fail(header->lseg);
F
Fred Isaman 已提交
305 306 307 308 309 310 311 312 313 314
	}
	bio_put(bio);
	put_parallel(par);
}

/* Function scheduled for call during bl_end_par_io_write,
 * it marks sectors as written and extends the commitlist.
 */
static void bl_write_cleanup(struct work_struct *work)
{
315 316 317 318
	struct rpc_task *task = container_of(work, struct rpc_task, u.tk_work);
	struct nfs_pgio_header *hdr =
			container_of(task, struct nfs_pgio_header, task);

F
Fred Isaman 已提交
319
	dprintk("%s enter\n", __func__);
320

321
	if (likely(!hdr->pnfs_error)) {
322 323 324 325 326 327 328
		struct pnfs_block_layout *bl = BLK_LSEG2EXT(hdr->lseg);
		u64 start = hdr->args.offset & (loff_t)PAGE_CACHE_MASK;
		u64 end = (hdr->args.offset + hdr->args.count +
			PAGE_CACHE_SIZE - 1) & (loff_t)PAGE_CACHE_MASK;

		ext_tree_mark_written(bl, start >> SECTOR_SHIFT,
					(end - start) >> SECTOR_SHIFT);
329
	}
330

331
	pnfs_ld_write_done(hdr);
F
Fred Isaman 已提交
332 333 334
}

/* Called when last of bios associated with a bl_write_pagelist call finishes */
335
static void bl_end_par_io_write(void *data)
F
Fred Isaman 已提交
336
{
337
	struct nfs_pgio_header *hdr = data;
F
Fred Isaman 已提交
338

339
	hdr->task.tk_status = hdr->pnfs_error;
340
	hdr->verf.committed = NFS_FILE_SYNC;
341 342
	INIT_WORK(&hdr->task.u.tk_work, bl_write_cleanup);
	schedule_work(&hdr->task.u.tk_work);
F
Fred Isaman 已提交
343 344
}

345
static enum pnfs_try_status
346
bl_write_pagelist(struct nfs_pgio_header *header, int sync)
347
{
348
	struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
F
Fred Isaman 已提交
349
	struct bio *bio = NULL;
350
	struct pnfs_block_extent be;
351
	sector_t isect, extent_length = 0;
P
Peng Tao 已提交
352
	struct parallel_io *par = NULL;
353 354 355
	loff_t offset = header->args.offset;
	size_t count = header->args.count;
	struct page **pages = header->args.pages;
356
	int pg_index = pg_index = header->args.pgbase >> PAGE_CACHE_SHIFT;
357
	struct blk_plug plug;
358
	int i;
F
Fred Isaman 已提交
359 360

	dprintk("%s enter, %Zu@%lld\n", __func__, count, offset);
P
Peng Tao 已提交
361

362
	/* At this point, header->page_aray is a (sequential) list of nfs_pages.
363 364
	 * We want to write each, and if there is an error set pnfs_error
	 * to have it redone using nfs.
F
Fred Isaman 已提交
365
	 */
366
	par = alloc_parallel(header);
F
Fred Isaman 已提交
367
	if (!par)
368
		return PNFS_NOT_ATTEMPTED;
F
Fred Isaman 已提交
369 370
	par->pnfs_callback = bl_end_par_io_write;

371
	blk_start_plug(&plug);
372

373 374 375
	/* we always write out the whole page */
	offset = offset & (loff_t)PAGE_CACHE_MASK;
	isect = offset >> SECTOR_SHIFT;
376

377
	for (i = pg_index; i < header->page_array.npages; i++) {
378
		if (extent_length <= 0) {
F
Fred Isaman 已提交
379 380 381
			/* We've used up the previous extent */
			bio = bl_submit_bio(WRITE, bio);
			/* Get the next one */
382
			if (!ext_tree_lookup(bl, isect, &be, true)) {
383
				header->pnfs_error = -EINVAL;
F
Fred Isaman 已提交
384 385
				goto out;
			}
386

387
			extent_length = be.be_length - (isect - be.be_f_offset);
388
		}
389

390
		bio = do_add_page_to_bio(bio, header->page_array.npages - i,
391
					 WRITE, isect, pages[i], &be,
392
					 bl_end_io_write, par,
393
					 0, PAGE_CACHE_SIZE);
394
		if (IS_ERR(bio)) {
395
			header->pnfs_error = PTR_ERR(bio);
P
Peng Tao 已提交
396
			bio = NULL;
397
			goto out;
F
Fred Isaman 已提交
398
		}
399 400
		offset += PAGE_CACHE_SIZE;
		count -= PAGE_CACHE_SIZE;
F
Fred Isaman 已提交
401 402 403
		isect += PAGE_CACHE_SECTORS;
		extent_length -= PAGE_CACHE_SECTORS;
	}
404

405
	header->res.count = header->args.count;
F
Fred Isaman 已提交
406 407
out:
	bl_submit_bio(WRITE, bio);
408
	blk_finish_plug(&plug);
F
Fred Isaman 已提交
409 410
	put_parallel(par);
	return PNFS_ATTEMPTED;
411 412 413 414 415
}

static void bl_free_layout_hdr(struct pnfs_layout_hdr *lo)
{
	struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
416
	int err;
417 418

	dprintk("%s enter\n", __func__);
419 420 421 422

	err = ext_tree_remove(bl, true, 0, LLONG_MAX);
	WARN_ON(err);

423 424 425 426 427 428 429 430 431 432 433 434
	kfree(bl);
}

static struct pnfs_layout_hdr *bl_alloc_layout_hdr(struct inode *inode,
						   gfp_t gfp_flags)
{
	struct pnfs_block_layout *bl;

	dprintk("%s enter\n", __func__);
	bl = kzalloc(sizeof(*bl), gfp_flags);
	if (!bl)
		return NULL;
435 436 437

	bl->bl_ext_rw = RB_ROOT;
	bl->bl_ext_ro = RB_ROOT;
438
	spin_lock_init(&bl->bl_ext_lock);
439

440 441 442
	return &bl->bl_layout;
}

F
Fred Isaman 已提交
443
static void bl_free_lseg(struct pnfs_layout_segment *lseg)
444
{
F
Fred Isaman 已提交
445 446
	dprintk("%s enter\n", __func__);
	kfree(lseg);
447 448
}

F
Fred Isaman 已提交
449 450 451 452 453 454
/* We pretty much ignore lseg, and store all data layout wide, so we
 * can correctly merge.
 */
static struct pnfs_layout_segment *bl_alloc_lseg(struct pnfs_layout_hdr *lo,
						 struct nfs4_layoutget_res *lgr,
						 gfp_t gfp_flags)
455
{
F
Fred Isaman 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
	struct pnfs_layout_segment *lseg;
	int status;

	dprintk("%s enter\n", __func__);
	lseg = kzalloc(sizeof(*lseg), gfp_flags);
	if (!lseg)
		return ERR_PTR(-ENOMEM);
	status = nfs4_blk_process_layoutget(lo, lgr, gfp_flags);
	if (status) {
		/* We don't want to call the full-blown bl_free_lseg,
		 * since on error extents were not touched.
		 */
		kfree(lseg);
		return ERR_PTR(status);
	}
	return lseg;
472 473
}

474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
static void
bl_return_range(struct pnfs_layout_hdr *lo,
		struct pnfs_layout_range *range)
{
	struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
	sector_t offset = range->offset >> SECTOR_SHIFT, end;
	int err;

	if (range->offset % 8) {
		dprintk("%s: offset %lld not block size aligned\n",
			__func__, range->offset);
		return;
	}

	if (range->length != NFS4_MAX_UINT64) {
		if (range->length % 8) {
			dprintk("%s: length %lld not block size aligned\n",
				__func__, range->length);
			return;
		}

		end = offset + (range->length >> SECTOR_SHIFT);
	} else {
		end = round_down(NFS4_MAX_UINT64, PAGE_SIZE);
	}

	err = ext_tree_remove(bl, range->iomode & IOMODE_RW, offset, end);
}

503 504 505 506
static void
bl_encode_layoutcommit(struct pnfs_layout_hdr *lo, struct xdr_stream *xdr,
		       const struct nfs4_layoutcommit_args *arg)
{
F
Fred Isaman 已提交
507
	dprintk("%s enter\n", __func__);
508
	ext_tree_encode_commit(BLK_LO2EXT(lo), xdr);
509 510 511 512 513
}

static void
bl_cleanup_layoutcommit(struct nfs4_layoutcommit_data *lcdata)
{
F
Fred Isaman 已提交
514 515 516
	struct pnfs_layout_hdr *lo = NFS_I(lcdata->args.inode)->layout;

	dprintk("%s enter\n", __func__);
517
	ext_tree_mark_committed(BLK_LO2EXT(lo), lcdata->res.status);
518 519 520 521 522 523
}

static int
bl_set_layoutdriver(struct nfs_server *server, const struct nfs_fh *fh)
{
	dprintk("%s enter\n", __func__);
524 525 526 527 528

	if (server->pnfs_blksize == 0) {
		dprintk("%s Server did not return blksize\n", __func__);
		return -EINVAL;
	}
529 530 531 532 533 534
	if (server->pnfs_blksize > PAGE_SIZE) {
		printk(KERN_ERR "%s: pNFS blksize %d not supported.\n",
			__func__, server->pnfs_blksize);
		return -EINVAL;
	}

535
	return nfs4_deviceid_getdevicelist(server, fh);
536 537
}

P
Peng Tao 已提交
538
static bool
539 540
is_aligned_req(struct nfs_pageio_descriptor *pgio,
		struct nfs_page *req, unsigned int alignment)
P
Peng Tao 已提交
541
{
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
	/*
	 * Always accept buffered writes, higher layers take care of the
	 * right alignment.
	 */
	if (pgio->pg_dreq == NULL)
		return true;

	if (!IS_ALIGNED(req->wb_offset, alignment))
		return false;

	if (IS_ALIGNED(req->wb_bytes, alignment))
		return true;

	if (req_offset(req) + req->wb_bytes == i_size_read(pgio->pg_inode)) {
		/*
		 * If the write goes up to the inode size, just write
		 * the full page.  Data past the inode size is
		 * guaranteed to be zeroed by the higher level client
		 * code, and this behaviour is mandated by RFC 5663
		 * section 2.3.2.
		 */
		return true;
	}

	return false;
P
Peng Tao 已提交
567 568 569 570 571
}

static void
bl_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
{
572
	if (!is_aligned_req(pgio, req, SECTOR_SIZE)) {
P
Peng Tao 已提交
573
		nfs_pageio_reset_read_mds(pgio);
574 575 576 577
		return;
	}

	pnfs_generic_pg_init_read(pgio, req);
P
Peng Tao 已提交
578 579
}

580 581 582 583 584
/*
 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
 * of bytes (maximum @req->wb_bytes) that can be coalesced.
 */
static size_t
P
Peng Tao 已提交
585 586 587
bl_pg_test_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
		struct nfs_page *req)
{
588
	if (!is_aligned_req(pgio, req, SECTOR_SIZE))
589
		return 0;
P
Peng Tao 已提交
590 591 592
	return pnfs_generic_pg_test(pgio, prev, req);
}

593 594 595 596 597 598 599 600 601 602 603 604 605
/*
 * Return the number of contiguous bytes for a given inode
 * starting at page frame idx.
 */
static u64 pnfs_num_cont_bytes(struct inode *inode, pgoff_t idx)
{
	struct address_space *mapping = inode->i_mapping;
	pgoff_t end;

	/* Optimize common case that writes from 0 to end of file */
	end = DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE);
	if (end != NFS_I(inode)->npages) {
		rcu_read_lock();
606
		end = page_cache_next_hole(mapping, idx + 1, ULONG_MAX);
607 608 609 610 611 612 613 614 615
		rcu_read_unlock();
	}

	if (!end)
		return i_size_read(inode) - (idx << PAGE_CACHE_SHIFT);
	else
		return (end - idx) << PAGE_CACHE_SHIFT;
}

616
static void
P
Peng Tao 已提交
617 618
bl_pg_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
{
619 620 621
	u64 wb_size;

	if (!is_aligned_req(pgio, req, PAGE_SIZE)) {
P
Peng Tao 已提交
622
		nfs_pageio_reset_write_mds(pgio);
623
		return;
624
	}
625 626 627 628 629 630 631 632

	if (pgio->pg_dreq == NULL)
		wb_size = pnfs_num_cont_bytes(pgio->pg_inode,
					      req->wb_index);
	else
		wb_size = nfs_dreq_bytes_left(pgio->pg_dreq);

	pnfs_generic_pg_init_write(pgio, req, wb_size);
P
Peng Tao 已提交
633 634
}

635 636 637 638 639
/*
 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
 * of bytes (maximum @req->wb_bytes) that can be coalesced.
 */
static size_t
P
Peng Tao 已提交
640 641 642
bl_pg_test_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
		 struct nfs_page *req)
{
643
	if (!is_aligned_req(pgio, req, PAGE_SIZE))
644
		return 0;
P
Peng Tao 已提交
645 646 647
	return pnfs_generic_pg_test(pgio, prev, req);
}

B
Benny Halevy 已提交
648
static const struct nfs_pageio_ops bl_pg_read_ops = {
P
Peng Tao 已提交
649 650
	.pg_init = bl_pg_init_read,
	.pg_test = bl_pg_test_read,
B
Benny Halevy 已提交
651 652 653 654
	.pg_doio = pnfs_generic_pg_readpages,
};

static const struct nfs_pageio_ops bl_pg_write_ops = {
P
Peng Tao 已提交
655 656
	.pg_init = bl_pg_init_write,
	.pg_test = bl_pg_test_write,
B
Benny Halevy 已提交
657 658 659
	.pg_doio = pnfs_generic_pg_writepages,
};

660 661 662
static struct pnfs_layoutdriver_type blocklayout_type = {
	.id				= LAYOUT_BLOCK_VOLUME,
	.name				= "LAYOUT_BLOCK_VOLUME",
663
	.owner				= THIS_MODULE,
664 665
	.flags				= PNFS_LAYOUTRET_ON_SETATTR |
					  PNFS_READ_WHOLE_PAGE,
666 667 668 669 670 671
	.read_pagelist			= bl_read_pagelist,
	.write_pagelist			= bl_write_pagelist,
	.alloc_layout_hdr		= bl_alloc_layout_hdr,
	.free_layout_hdr		= bl_free_layout_hdr,
	.alloc_lseg			= bl_alloc_lseg,
	.free_lseg			= bl_free_lseg,
672
	.return_range			= bl_return_range,
673 674 675
	.encode_layoutcommit		= bl_encode_layoutcommit,
	.cleanup_layoutcommit		= bl_cleanup_layoutcommit,
	.set_layoutdriver		= bl_set_layoutdriver,
676 677
	.alloc_deviceid_node		= bl_alloc_deviceid_node,
	.free_deviceid_node		= bl_free_deviceid_node,
B
Benny Halevy 已提交
678 679
	.pg_read_ops			= &bl_pg_read_ops,
	.pg_write_ops			= &bl_pg_write_ops,
680 681
};

J
Jim Rees 已提交
682
static const struct rpc_pipe_ops bl_upcall_ops = {
683
	.upcall		= rpc_pipe_generic_upcall,
J
Jim Rees 已提交
684 685 686 687
	.downcall	= bl_pipe_downcall,
	.destroy_msg	= bl_pipe_destroy_msg,
};

688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
static struct dentry *nfs4blocklayout_register_sb(struct super_block *sb,
					    struct rpc_pipe *pipe)
{
	struct dentry *dir, *dentry;

	dir = rpc_d_lookup_sb(sb, NFS_PIPE_DIRNAME);
	if (dir == NULL)
		return ERR_PTR(-ENOENT);
	dentry = rpc_mkpipe_dentry(dir, "blocklayout", NULL, pipe);
	dput(dir);
	return dentry;
}

static void nfs4blocklayout_unregister_sb(struct super_block *sb,
					  struct rpc_pipe *pipe)
{
	if (pipe->dentry)
		rpc_unlink(pipe->dentry);
}

708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
			   void *ptr)
{
	struct super_block *sb = ptr;
	struct net *net = sb->s_fs_info;
	struct nfs_net *nn = net_generic(net, nfs_net_id);
	struct dentry *dentry;
	int ret = 0;

	if (!try_module_get(THIS_MODULE))
		return 0;

	if (nn->bl_device_pipe == NULL) {
		module_put(THIS_MODULE);
		return 0;
	}

	switch (event) {
	case RPC_PIPEFS_MOUNT:
		dentry = nfs4blocklayout_register_sb(sb, nn->bl_device_pipe);
		if (IS_ERR(dentry)) {
			ret = PTR_ERR(dentry);
			break;
		}
		nn->bl_device_pipe->dentry = dentry;
		break;
	case RPC_PIPEFS_UMOUNT:
		if (nn->bl_device_pipe->dentry)
			nfs4blocklayout_unregister_sb(sb, nn->bl_device_pipe);
		break;
	default:
		ret = -ENOTSUPP;
		break;
	}
	module_put(THIS_MODULE);
	return ret;
}

static struct notifier_block nfs4blocklayout_block = {
	.notifier_call = rpc_pipefs_event,
};

750 751 752 753 754 755 756 757
static struct dentry *nfs4blocklayout_register_net(struct net *net,
						   struct rpc_pipe *pipe)
{
	struct super_block *pipefs_sb;
	struct dentry *dentry;

	pipefs_sb = rpc_get_sb_net(net);
	if (!pipefs_sb)
758
		return NULL;
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
	dentry = nfs4blocklayout_register_sb(pipefs_sb, pipe);
	rpc_put_sb_net(net);
	return dentry;
}

static void nfs4blocklayout_unregister_net(struct net *net,
					   struct rpc_pipe *pipe)
{
	struct super_block *pipefs_sb;

	pipefs_sb = rpc_get_sb_net(net);
	if (pipefs_sb) {
		nfs4blocklayout_unregister_sb(pipefs_sb, pipe);
		rpc_put_sb_net(net);
	}
}

776 777 778 779 780
static int nfs4blocklayout_net_init(struct net *net)
{
	struct nfs_net *nn = net_generic(net, nfs_net_id);
	struct dentry *dentry;

781
	init_waitqueue_head(&nn->bl_wq);
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
	nn->bl_device_pipe = rpc_mkpipe_data(&bl_upcall_ops, 0);
	if (IS_ERR(nn->bl_device_pipe))
		return PTR_ERR(nn->bl_device_pipe);
	dentry = nfs4blocklayout_register_net(net, nn->bl_device_pipe);
	if (IS_ERR(dentry)) {
		rpc_destroy_pipe_data(nn->bl_device_pipe);
		return PTR_ERR(dentry);
	}
	nn->bl_device_pipe->dentry = dentry;
	return 0;
}

static void nfs4blocklayout_net_exit(struct net *net)
{
	struct nfs_net *nn = net_generic(net, nfs_net_id);

	nfs4blocklayout_unregister_net(net, nn->bl_device_pipe);
	rpc_destroy_pipe_data(nn->bl_device_pipe);
	nn->bl_device_pipe = NULL;
}

static struct pernet_operations nfs4blocklayout_net_ops = {
	.init = nfs4blocklayout_net_init,
	.exit = nfs4blocklayout_net_exit,
};

808 809 810 811 812 813 814
static int __init nfs4blocklayout_init(void)
{
	int ret;

	dprintk("%s: NFSv4 Block Layout Driver Registering...\n", __func__);

	ret = pnfs_register_layoutdriver(&blocklayout_type);
J
Jim Rees 已提交
815 816 817
	if (ret)
		goto out;

818
	ret = rpc_pipefs_notifier_register(&nfs4blocklayout_block);
819 820
	if (ret)
		goto out_remove;
821 822 823
	ret = register_pernet_subsys(&nfs4blocklayout_net_ops);
	if (ret)
		goto out_notifier;
J
Jim Rees 已提交
824 825 826
out:
	return ret;

827 828
out_notifier:
	rpc_pipefs_notifier_unregister(&nfs4blocklayout_block);
J
Jim Rees 已提交
829 830
out_remove:
	pnfs_unregister_layoutdriver(&blocklayout_type);
831 832 833 834 835 836 837 838
	return ret;
}

static void __exit nfs4blocklayout_exit(void)
{
	dprintk("%s: NFSv4 Block Layout Driver Unregistering...\n",
	       __func__);

839
	rpc_pipefs_notifier_unregister(&nfs4blocklayout_block);
840
	unregister_pernet_subsys(&nfs4blocklayout_net_ops);
841 842 843 844 845 846 847
	pnfs_unregister_layoutdriver(&blocklayout_type);
}

MODULE_ALIAS("nfs-layouttype4-3");

module_init(nfs4blocklayout_init);
module_exit(nfs4blocklayout_exit);