blk.c 9.0 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
/*
 * NVDIMM Block Window Driver
 * Copyright (c) 2014, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#include <linux/blkdev.h>
#include <linux/fs.h>
#include <linux/genhd.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/nd.h>
#include <linux/sizes.h>
#include "nd.h"

24 25 26 27
static u32 nsblk_meta_size(struct nd_namespace_blk *nsblk)
{
	return nsblk->lbasize - ((nsblk->lbasize >= 4096) ? 4096 : 512);
}
28

29
static u32 nsblk_internal_lbasize(struct nd_namespace_blk *nsblk)
30
{
31 32 33 34 35 36
	return roundup(nsblk->lbasize, INT_LBASIZE_ALIGNMENT);
}

static u32 nsblk_sector_size(struct nd_namespace_blk *nsblk)
{
	return nsblk->lbasize - nsblk_meta_size(nsblk);
37 38
}

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
static resource_size_t to_dev_offset(struct nd_namespace_blk *nsblk,
				resource_size_t ns_offset, unsigned int len)
{
	int i;

	for (i = 0; i < nsblk->num_resources; i++) {
		if (ns_offset < resource_size(nsblk->res[i])) {
			if (ns_offset + len > resource_size(nsblk->res[i])) {
				dev_WARN_ONCE(&nsblk->common.dev, 1,
					"illegal request\n");
				return SIZE_MAX;
			}
			return nsblk->res[i]->start + ns_offset;
		}
		ns_offset -= resource_size(nsblk->res[i]);
	}

	dev_WARN_ONCE(&nsblk->common.dev, 1, "request out of range\n");
	return SIZE_MAX;
}

60 61 62 63 64 65 66 67 68 69
static struct nd_blk_region *to_ndbr(struct nd_namespace_blk *nsblk)
{
	struct nd_region *nd_region;
	struct device *parent;

	parent = nsblk->common.dev.parent;
	nd_region = container_of(parent, struct nd_region, dev);
	return container_of(nd_region, struct nd_blk_region, nd_region);
}

70
#ifdef CONFIG_BLK_DEV_INTEGRITY
71 72
static int nd_blk_rw_integrity(struct nd_namespace_blk *nsblk,
		struct bio_integrity_payload *bip, u64 lba, int rw)
73
{
74 75
	struct nd_blk_region *ndbr = to_ndbr(nsblk);
	unsigned int len = nsblk_meta_size(nsblk);
76
	resource_size_t	dev_offset, ns_offset;
77
	u32 internal_lbasize, sector_size;
78 79
	int err = 0;

80 81 82
	internal_lbasize = nsblk_internal_lbasize(nsblk);
	sector_size = nsblk_sector_size(nsblk);
	ns_offset = lba * internal_lbasize + sector_size;
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	dev_offset = to_dev_offset(nsblk, ns_offset, len);
	if (dev_offset == SIZE_MAX)
		return -EIO;

	while (len) {
		unsigned int cur_len;
		struct bio_vec bv;
		void *iobuf;

		bv = bvec_iter_bvec(bip->bip_vec, bip->bip_iter);
		/*
		 * The 'bv' obtained from bvec_iter_bvec has its .bv_len and
		 * .bv_offset already adjusted for iter->bi_bvec_done, and we
		 * can use those directly
		 */

		cur_len = min(len, bv.bv_len);
		iobuf = kmap_atomic(bv.bv_page);
		err = ndbr->do_io(ndbr, dev_offset, iobuf + bv.bv_offset,
				cur_len, rw);
		kunmap_atomic(iobuf);
		if (err)
			return err;

		len -= cur_len;
		dev_offset += cur_len;
		bvec_iter_advance(bip->bip_vec, &bip->bip_iter, cur_len);
	}

	return err;
}

#else /* CONFIG_BLK_DEV_INTEGRITY */
116 117
static int nd_blk_rw_integrity(struct nd_namespace_blk *nsblk,
		struct bio_integrity_payload *bip, u64 lba, int rw)
118 119 120 121 122
{
	return 0;
}
#endif

123 124 125
static int nsblk_do_bvec(struct nd_namespace_blk *nsblk,
		struct bio_integrity_payload *bip, struct page *page,
		unsigned int len, unsigned int off, int rw, sector_t sector)
126
{
127
	struct nd_blk_region *ndbr = to_ndbr(nsblk);
128
	resource_size_t	dev_offset, ns_offset;
129
	u32 internal_lbasize, sector_size;
130 131 132 133
	int err = 0;
	void *iobuf;
	u64 lba;

134 135
	internal_lbasize = nsblk_internal_lbasize(nsblk);
	sector_size = nsblk_sector_size(nsblk);
136 137 138 139 140 141 142 143 144
	while (len) {
		unsigned int cur_len;

		/*
		 * If we don't have an integrity payload, we don't have to
		 * split the bvec into sectors, as this would cause unnecessary
		 * Block Window setup/move steps. the do_io routine is capable
		 * of handling len <= PAGE_SIZE.
		 */
145
		cur_len = bip ? min(len, sector_size) : len;
146

147 148 149
		lba = div_u64(sector << SECTOR_SHIFT, sector_size);
		ns_offset = lba * internal_lbasize;
		dev_offset = to_dev_offset(nsblk, ns_offset, cur_len);
150 151 152 153 154 155 156 157 158 159
		if (dev_offset == SIZE_MAX)
			return -EIO;

		iobuf = kmap_atomic(page);
		err = ndbr->do_io(ndbr, dev_offset, iobuf + off, cur_len, rw);
		kunmap_atomic(iobuf);
		if (err)
			return err;

		if (bip) {
160
			err = nd_blk_rw_integrity(nsblk, bip, lba, rw);
161 162 163 164 165
			if (err)
				return err;
		}
		len -= cur_len;
		off += cur_len;
166
		sector += sector_size >> SECTOR_SHIFT;
167 168 169 170 171
	}

	return err;
}

172
static blk_qc_t nd_blk_make_request(struct request_queue *q, struct bio *bio)
173
{
174
	struct bio_integrity_payload *bip;
175
	struct nd_namespace_blk *nsblk;
176
	struct bvec_iter iter;
D
Dan Williams 已提交
177
	unsigned long start;
178 179
	struct bio_vec bvec;
	int err = 0, rw;
D
Dan Williams 已提交
180
	bool do_acct;
181

182 183 184 185 186 187 188
	/*
	 * bio_integrity_enabled also checks if the bio already has an
	 * integrity payload attached. If it does, we *don't* do a
	 * bio_integrity_prep here - the payload has been generated by
	 * another kernel subsystem, and we just pass it through.
	 */
	if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
189
		bio->bi_error = -EIO;
190 191 192 193
		goto out;
	}

	bip = bio_integrity(bio);
194
	nsblk = q->queuedata;
195
	rw = bio_data_dir(bio);
D
Dan Williams 已提交
196
	do_acct = nd_iostat_start(bio, &start);
197 198 199 200
	bio_for_each_segment(bvec, bio, iter) {
		unsigned int len = bvec.bv_len;

		BUG_ON(len > PAGE_SIZE);
201 202
		err = nsblk_do_bvec(nsblk, bip, bvec.bv_page, len,
				bvec.bv_offset, rw, iter.bi_sector);
203
		if (err) {
204
			dev_dbg(&nsblk->common.dev,
205 206 207
					"io error in %s sector %lld, len %d,\n",
					(rw == READ) ? "READ" : "WRITE",
					(unsigned long long) iter.bi_sector, len);
208
			bio->bi_error = err;
D
Dan Williams 已提交
209
			break;
210 211
		}
	}
D
Dan Williams 已提交
212 213
	if (do_acct)
		nd_iostat_end(bio, start);
214 215

 out:
216
	bio_endio(bio);
217
	return BLK_QC_T_NONE;
218 219
}

220
static int nsblk_rw_bytes(struct nd_namespace_common *ndns,
221 222
		resource_size_t offset, void *iobuf, size_t n, int rw,
		unsigned long flags)
223
{
224 225
	struct nd_namespace_blk *nsblk = to_nd_namespace_blk(&ndns->dev);
	struct nd_blk_region *ndbr = to_ndbr(nsblk);
226 227 228 229
	resource_size_t	dev_offset;

	dev_offset = to_dev_offset(nsblk, offset, n);

230
	if (unlikely(offset + n > nsblk->size)) {
231 232 233 234 235 236 237 238 239 240 241 242
		dev_WARN_ONCE(&ndns->dev, 1, "request out of range\n");
		return -EFAULT;
	}

	if (dev_offset == SIZE_MAX)
		return -EIO;

	return ndbr->do_io(ndbr, dev_offset, iobuf, n, rw);
}

static const struct block_device_operations nd_blk_fops = {
	.owner = THIS_MODULE,
243
	.revalidate_disk = nvdimm_revalidate_disk,
244 245
};

246 247 248 249 250 251 252 253 254 255 256
static void nd_blk_release_queue(void *q)
{
	blk_cleanup_queue(q);
}

static void nd_blk_release_disk(void *disk)
{
	del_gendisk(disk);
	put_disk(disk);
}

257
static int nsblk_attach_disk(struct nd_namespace_blk *nsblk)
258
{
259
	struct device *dev = &nsblk->common.dev;
260
	resource_size_t available_disk_size;
261
	struct request_queue *q;
262
	struct gendisk *disk;
263 264
	u64 internal_nlba;

265 266
	internal_nlba = div_u64(nsblk->size, nsblk_internal_lbasize(nsblk));
	available_disk_size = internal_nlba * nsblk_sector_size(nsblk);
267

268 269 270
	q = blk_alloc_queue(GFP_KERNEL);
	if (!q)
		return -ENOMEM;
271
	if (devm_add_action_or_reset(dev, nd_blk_release_queue, q))
272 273
		return -ENOMEM;

274 275 276
	blk_queue_make_request(q, nd_blk_make_request);
	blk_queue_max_hw_sectors(q, UINT_MAX);
	blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
277
	blk_queue_logical_block_size(q, nsblk_sector_size(nsblk));
278
	queue_flag_set_unlocked(QUEUE_FLAG_NONROT, q);
279
	q->queuedata = nsblk;
280

281 282 283
	disk = alloc_disk(0);
	if (!disk)
		return -ENOMEM;
284 285 286

	disk->first_minor	= 0;
	disk->fops		= &nd_blk_fops;
287
	disk->queue		= q;
288
	disk->flags		= GENHD_FL_EXT_DEVT;
289
	nvdimm_namespace_disk_name(&nsblk->common, disk->disk_name);
290
	set_capacity(disk, 0);
291
	device_add_disk(dev, disk);
292

293 294 295
	if (devm_add_action_or_reset(dev, nd_blk_release_disk, disk))
		return -ENOMEM;

296 297
	if (nsblk_meta_size(nsblk)) {
		int rc = nd_integrity_init(disk, nsblk_meta_size(nsblk));
298

299
		if (rc)
300 301 302 303
			return rc;
	}

	set_capacity(disk, available_disk_size >> SECTOR_SHIFT);
304
	revalidate_disk(disk);
305 306 307 308 309 310
	return 0;
}

static int nd_blk_probe(struct device *dev)
{
	struct nd_namespace_common *ndns;
311
	struct nd_namespace_blk *nsblk;
312 313 314 315 316

	ndns = nvdimm_namespace_common_probe(dev);
	if (IS_ERR(ndns))
		return PTR_ERR(ndns);

317
	nsblk = to_nd_namespace_blk(&ndns->dev);
318 319 320 321
	nsblk->size = nvdimm_namespace_capacity(ndns);
	dev_set_drvdata(dev, nsblk);

	ndns->rw_bytes = nsblk_rw_bytes;
322
	if (is_nd_btt(dev))
323
		return nvdimm_namespace_attach_btt(ndns);
324
	else if (nd_btt_probe(dev, ndns) == 0) {
325
		/* we'll come back as btt-blk */
326
		return -ENXIO;
327
	} else
328
		return nsblk_attach_disk(nsblk);
329 330 331 332 333
}

static int nd_blk_remove(struct device *dev)
{
	if (is_nd_btt(dev))
D
Dan Williams 已提交
334
		nvdimm_namespace_detach_btt(to_nd_btt(dev));
335 336 337 338 339 340 341 342 343 344 345 346 347 348
	return 0;
}

static struct nd_device_driver nd_blk_driver = {
	.probe = nd_blk_probe,
	.remove = nd_blk_remove,
	.drv = {
		.name = "nd_blk",
	},
	.type = ND_DRIVER_NAMESPACE_BLK,
};

static int __init nd_blk_init(void)
{
349
	return nd_driver_register(&nd_blk_driver);
350 351 352 353 354 355 356 357 358 359 360 361
}

static void __exit nd_blk_exit(void)
{
	driver_unregister(&nd_blk_driver.drv);
}

MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
MODULE_LICENSE("GPL v2");
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_BLK);
module_init(nd_blk_init);
module_exit(nd_blk_exit);