dm-stripe.c 11.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
 *
 * This file is released under the GPL.
 */

7
#include "dm.h"
8
#include <linux/device-mapper.h>
L
Linus Torvalds 已提交
9 10 11 12 13

#include <linux/module.h>
#include <linux/init.h>
#include <linux/blkdev.h>
#include <linux/bio.h>
14
#include <linux/dax.h>
L
Linus Torvalds 已提交
15
#include <linux/slab.h>
V
vignesh babu 已提交
16
#include <linux/log2.h>
L
Linus Torvalds 已提交
17

18
#define DM_MSG_PREFIX "striped"
B
Brian Wood 已提交
19
#define DM_IO_ERROR_THRESHOLD 15
20

L
Linus Torvalds 已提交
21 22 23
struct stripe {
	struct dm_dev *dev;
	sector_t physical_start;
B
Brian Wood 已提交
24 25

	atomic_t error_count;
L
Linus Torvalds 已提交
26 27 28 29
};

struct stripe_c {
	uint32_t stripes;
30
	int stripes_shift;
L
Linus Torvalds 已提交
31 32 33 34

	/* The size of this target / num. stripes */
	sector_t stripe_width;

35
	uint32_t chunk_size;
36
	int chunk_size_shift;
L
Linus Torvalds 已提交
37

B
Brian Wood 已提交
38 39 40 41
	/* Needed for handling events */
	struct dm_target *ti;

	/* Work struct used for triggering events*/
42
	struct work_struct trigger_event;
B
Brian Wood 已提交
43

L
Linus Torvalds 已提交
44 45 46
	struct stripe stripe[0];
};

B
Brian Wood 已提交
47 48 49 50 51 52
/*
 * An event is triggered whenever a drive
 * drops out of a stripe volume.
 */
static void trigger_event(struct work_struct *work)
{
53 54
	struct stripe_c *sc = container_of(work, struct stripe_c,
					   trigger_event);
B
Brian Wood 已提交
55 56 57
	dm_table_event(sc->ti->table);
}

L
Linus Torvalds 已提交
58 59 60 61
static inline struct stripe_c *alloc_context(unsigned int stripes)
{
	size_t len;

M
Mikulas Patocka 已提交
62 63
	if (dm_array_too_big(sizeof(struct stripe_c), sizeof(struct stripe),
			     stripes))
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76
		return NULL;

	len = sizeof(struct stripe_c) + (sizeof(struct stripe) * stripes);

	return kmalloc(len, GFP_KERNEL);
}

/*
 * Parse a single <dev> <sector> pair
 */
static int get_stripe(struct dm_target *ti, struct stripe_c *sc,
		      unsigned int stripe, char **argv)
{
A
Andrew Morton 已提交
77
	unsigned long long start;
78
	char dummy;
79
	int ret;
L
Linus Torvalds 已提交
80

81
	if (sscanf(argv[1], "%llu%c", &start, &dummy) != 1)
L
Linus Torvalds 已提交
82 83
		return -EINVAL;

84 85 86 87
	ret = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table),
			    &sc->stripe[stripe].dev);
	if (ret)
		return ret;
L
Linus Torvalds 已提交
88 89

	sc->stripe[stripe].physical_start = start;
B
Brian Wood 已提交
90

L
Linus Torvalds 已提交
91 92 93 94 95
	return 0;
}

/*
 * Construct a striped mapping.
96
 * <number of stripes> <chunk size> [<dev_path> <offset>]+
L
Linus Torvalds 已提交
97 98 99 100
 */
static int stripe_ctr(struct dm_target *ti, unsigned int argc, char **argv)
{
	struct stripe_c *sc;
101
	sector_t width, tmp_len;
L
Linus Torvalds 已提交
102 103 104 105 106 107
	uint32_t stripes;
	uint32_t chunk_size;
	int r;
	unsigned int i;

	if (argc < 2) {
108
		ti->error = "Not enough arguments";
L
Linus Torvalds 已提交
109 110 111
		return -EINVAL;
	}

M
majianpeng 已提交
112
	if (kstrtouint(argv[0], 10, &stripes) || !stripes) {
113
		ti->error = "Invalid stripe count";
L
Linus Torvalds 已提交
114 115 116
		return -EINVAL;
	}

117
	if (kstrtouint(argv[1], 10, &chunk_size) || !chunk_size) {
118
		ti->error = "Invalid chunk_size";
L
Linus Torvalds 已提交
119 120 121
		return -EINVAL;
	}

122
	width = ti->len;
123
	if (sector_div(width, stripes)) {
124
		ti->error = "Target length not divisible by "
125
		    "number of stripes";
K
Kevin Corry 已提交
126 127 128
		return -EINVAL;
	}

129 130
	tmp_len = width;
	if (sector_div(tmp_len, chunk_size)) {
131
		ti->error = "Target length not divisible by "
132
		    "chunk size";
L
Linus Torvalds 已提交
133 134 135 136 137 138 139
		return -EINVAL;
	}

	/*
	 * Do we have enough arguments for that many stripes ?
	 */
	if (argc != (2 + 2 * stripes)) {
140
		ti->error = "Not enough destinations "
L
Linus Torvalds 已提交
141 142 143 144 145 146
			"specified";
		return -EINVAL;
	}

	sc = alloc_context(stripes);
	if (!sc) {
147
		ti->error = "Memory allocation for striped context "
L
Linus Torvalds 已提交
148 149 150 151
		    "failed";
		return -ENOMEM;
	}

152
	INIT_WORK(&sc->trigger_event, trigger_event);
B
Brian Wood 已提交
153 154 155

	/* Set pointer to dm target; used in trigger_event */
	sc->ti = ti;
L
Linus Torvalds 已提交
156 157
	sc->stripes = stripes;
	sc->stripe_width = width;
158 159 160

	if (stripes & (stripes - 1))
		sc->stripes_shift = -1;
M
Mikulas Patocka 已提交
161 162
	else
		sc->stripes_shift = __ffs(stripes);
163

164
	r = dm_set_target_max_io_len(ti, chunk_size);
165 166
	if (r) {
		kfree(sc);
167
		return r;
168
	}
169

170 171 172
	ti->num_flush_bios = stripes;
	ti->num_discard_bios = stripes;
	ti->num_write_same_bios = stripes;
173
	ti->num_write_zeroes_bios = stripes;
L
Linus Torvalds 已提交
174

175
	sc->chunk_size = chunk_size;
176 177 178 179
	if (chunk_size & (chunk_size - 1))
		sc->chunk_size_shift = -1;
	else
		sc->chunk_size_shift = __ffs(chunk_size);
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188

	/*
	 * Get the stripe destinations.
	 */
	for (i = 0; i < stripes; i++) {
		argv += 2;

		r = get_stripe(ti, sc, i, argv);
		if (r < 0) {
189
			ti->error = "Couldn't parse stripe destination";
L
Linus Torvalds 已提交
190 191 192 193 194
			while (i--)
				dm_put_device(ti, sc->stripe[i].dev);
			kfree(sc);
			return r;
		}
B
Brian Wood 已提交
195
		atomic_set(&(sc->stripe[i].error_count), 0);
L
Linus Torvalds 已提交
196 197 198
	}

	ti->private = sc;
B
Brian Wood 已提交
199

L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208 209 210
	return 0;
}

static void stripe_dtr(struct dm_target *ti)
{
	unsigned int i;
	struct stripe_c *sc = (struct stripe_c *) ti->private;

	for (i = 0; i < sc->stripes; i++)
		dm_put_device(ti, sc->stripe[i].dev);

211
	flush_work(&sc->trigger_event);
L
Linus Torvalds 已提交
212 213 214
	kfree(sc);
}

215 216 217
static void stripe_map_sector(struct stripe_c *sc, sector_t sector,
			      uint32_t *stripe, sector_t *result)
{
218
	sector_t chunk = dm_target_offset(sc->ti, sector);
219 220 221 222 223 224 225 226
	sector_t chunk_offset;

	if (sc->chunk_size_shift < 0)
		chunk_offset = sector_div(chunk, sc->chunk_size);
	else {
		chunk_offset = chunk & (sc->chunk_size - 1);
		chunk >>= sc->chunk_size_shift;
	}
227

228 229 230
	if (sc->stripes_shift < 0)
		*stripe = sector_div(chunk, sc->stripes);
	else {
M
Mikulas Patocka 已提交
231
		*stripe = chunk & (sc->stripes - 1);
232 233 234
		chunk >>= sc->stripes_shift;
	}

235 236 237 238 239 240
	if (sc->chunk_size_shift < 0)
		chunk *= sc->chunk_size;
	else
		chunk <<= sc->chunk_size_shift;

	*result = chunk + chunk_offset;
241 242
}

M
Mikulas Patocka 已提交
243 244 245 246 247 248 249 250
static void stripe_map_range_sector(struct stripe_c *sc, sector_t sector,
				    uint32_t target_stripe, sector_t *result)
{
	uint32_t stripe;

	stripe_map_sector(sc, sector, &stripe, result);
	if (stripe == target_stripe)
		return;
251 252 253

	/* round down */
	sector = *result;
254 255 256 257
	if (sc->chunk_size_shift < 0)
		*result -= sector_div(sector, sc->chunk_size);
	else
		*result = sector & ~(sector_t)(sc->chunk_size - 1);
258

M
Mikulas Patocka 已提交
259
	if (target_stripe < stripe)
260
		*result += sc->chunk_size;		/* next chunk */
M
Mikulas Patocka 已提交
261 262
}

M
Mike Snitzer 已提交
263 264
static int stripe_map_range(struct stripe_c *sc, struct bio *bio,
			    uint32_t target_stripe)
M
Mikulas Patocka 已提交
265 266 267
{
	sector_t begin, end;

268 269
	stripe_map_range_sector(sc, bio->bi_iter.bi_sector,
				target_stripe, &begin);
K
Kent Overstreet 已提交
270
	stripe_map_range_sector(sc, bio_end_sector(bio),
M
Mikulas Patocka 已提交
271 272 273
				target_stripe, &end);
	if (begin < end) {
		bio->bi_bdev = sc->stripe[target_stripe].dev->bdev;
274 275 276
		bio->bi_iter.bi_sector = begin +
			sc->stripe[target_stripe].physical_start;
		bio->bi_iter.bi_size = to_bytes(end - begin);
M
Mikulas Patocka 已提交
277 278 279
		return DM_MAPIO_REMAPPED;
	} else {
		/* The range doesn't map to the target stripe */
280
		bio_endio(bio);
M
Mikulas Patocka 已提交
281 282 283 284
		return DM_MAPIO_SUBMITTED;
	}
}

M
Mikulas Patocka 已提交
285
static int stripe_map(struct dm_target *ti, struct bio *bio)
L
Linus Torvalds 已提交
286
{
287
	struct stripe_c *sc = ti->private;
M
Mikulas Patocka 已提交
288
	uint32_t stripe;
289
	unsigned target_bio_nr;
L
Linus Torvalds 已提交
290

J
Jens Axboe 已提交
291
	if (bio->bi_opf & REQ_PREFLUSH) {
292 293 294
		target_bio_nr = dm_bio_get_target_bio_nr(bio);
		BUG_ON(target_bio_nr >= sc->stripes);
		bio->bi_bdev = sc->stripe[target_bio_nr].dev->bdev;
M
Mikulas Patocka 已提交
295 296
		return DM_MAPIO_REMAPPED;
	}
M
Mike Christie 已提交
297
	if (unlikely(bio_op(bio) == REQ_OP_DISCARD) ||
298
	    unlikely(bio_op(bio) == REQ_OP_WRITE_ZEROES) ||
M
Mike Christie 已提交
299
	    unlikely(bio_op(bio) == REQ_OP_WRITE_SAME)) {
300 301 302
		target_bio_nr = dm_bio_get_target_bio_nr(bio);
		BUG_ON(target_bio_nr >= sc->stripes);
		return stripe_map_range(sc, bio, target_bio_nr);
M
Mikulas Patocka 已提交
303
	}
M
Mikulas Patocka 已提交
304

305 306
	stripe_map_sector(sc, bio->bi_iter.bi_sector,
			  &stripe, &bio->bi_iter.bi_sector);
L
Linus Torvalds 已提交
307

308
	bio->bi_iter.bi_sector += sc->stripe[stripe].physical_start;
L
Linus Torvalds 已提交
309
	bio->bi_bdev = sc->stripe[stripe].dev->bdev;
310

311
	return DM_MAPIO_REMAPPED;
L
Linus Torvalds 已提交
312 313
}

314 315
static long stripe_dax_direct_access(struct dm_target *ti, pgoff_t pgoff,
		long nr_pages, void **kaddr, pfn_t *pfn)
T
Toshi Kani 已提交
316
{
317
	sector_t dev_sector, sector = pgoff * PAGE_SECTORS;
T
Toshi Kani 已提交
318
	struct stripe_c *sc = ti->private;
319
	struct dax_device *dax_dev;
T
Toshi Kani 已提交
320
	struct block_device *bdev;
321
	uint32_t stripe;
T
Toshi Kani 已提交
322 323
	long ret;

324 325 326
	stripe_map_sector(sc, sector, &stripe, &dev_sector);
	dev_sector += sc->stripe[stripe].physical_start;
	dax_dev = sc->stripe[stripe].dev->dax_dev;
T
Toshi Kani 已提交
327 328
	bdev = sc->stripe[stripe].dev->bdev;

329 330 331 332
	ret = bdev_dax_pgoff(bdev, dev_sector, nr_pages * PAGE_SIZE, &pgoff);
	if (ret)
		return ret;
	return dax_direct_access(dax_dev, pgoff, nr_pages, kaddr, pfn);
T
Toshi Kani 已提交
333 334
}

335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
static size_t stripe_dax_copy_from_iter(struct dm_target *ti, pgoff_t pgoff,
		void *addr, size_t bytes, struct iov_iter *i)
{
	sector_t dev_sector, sector = pgoff * PAGE_SECTORS;
	struct stripe_c *sc = ti->private;
	struct dax_device *dax_dev;
	struct block_device *bdev;
	uint32_t stripe;

	stripe_map_sector(sc, sector, &stripe, &dev_sector);
	dev_sector += sc->stripe[stripe].physical_start;
	dax_dev = sc->stripe[stripe].dev->dax_dev;
	bdev = sc->stripe[stripe].dev->bdev;

	if (bdev_dax_pgoff(bdev, dev_sector, ALIGN(bytes, PAGE_SIZE), &pgoff))
		return 0;
	return dax_copy_from_iter(dax_dev, pgoff, addr, bytes, i);
}

354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
static void stripe_dax_flush(struct dm_target *ti, pgoff_t pgoff, void *addr,
		size_t size)
{
	sector_t dev_sector, sector = pgoff * PAGE_SECTORS;
	struct stripe_c *sc = ti->private;
	struct dax_device *dax_dev;
	struct block_device *bdev;
	uint32_t stripe;

	stripe_map_sector(sc, sector, &stripe, &dev_sector);
	dev_sector += sc->stripe[stripe].physical_start;
	dax_dev = sc->stripe[stripe].dev->dax_dev;
	bdev = sc->stripe[stripe].dev->bdev;

	if (bdev_dax_pgoff(bdev, dev_sector, ALIGN(size, PAGE_SIZE), &pgoff))
		return;
	dax_flush(dax_dev, pgoff, addr, size);
}

B
Brian Wood 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385
/*
 * Stripe status:
 *
 * INFO
 * #stripes [stripe_name <stripe_name>] [group word count]
 * [error count 'A|D' <error count 'A|D'>]
 *
 * TABLE
 * #stripes [stripe chunk size]
 * [stripe_name physical_start <stripe_name physical_start>]
 *
 */

386 387
static void stripe_status(struct dm_target *ti, status_type_t type,
			  unsigned status_flags, char *result, unsigned maxlen)
L
Linus Torvalds 已提交
388 389
{
	struct stripe_c *sc = (struct stripe_c *) ti->private;
B
Brian Wood 已提交
390
	char buffer[sc->stripes + 1];
L
Linus Torvalds 已提交
391 392 393 394 395
	unsigned int sz = 0;
	unsigned int i;

	switch (type) {
	case STATUSTYPE_INFO:
B
Brian Wood 已提交
396 397 398 399 400 401 402 403
		DMEMIT("%d ", sc->stripes);
		for (i = 0; i < sc->stripes; i++)  {
			DMEMIT("%s ", sc->stripe[i].dev->name);
			buffer[i] = atomic_read(&(sc->stripe[i].error_count)) ?
				'D' : 'A';
		}
		buffer[i] = '\0';
		DMEMIT("1 %s", buffer);
L
Linus Torvalds 已提交
404 405 406
		break;

	case STATUSTYPE_TABLE:
A
Andrew Morton 已提交
407
		DMEMIT("%d %llu", sc->stripes,
408
			(unsigned long long)sc->chunk_size);
L
Linus Torvalds 已提交
409
		for (i = 0; i < sc->stripes; i++)
A
Andrew Morton 已提交
410 411
			DMEMIT(" %s %llu", sc->stripe[i].dev->name,
			    (unsigned long long)sc->stripe[i].physical_start);
L
Linus Torvalds 已提交
412 413 414 415
		break;
	}
}

416 417
static int stripe_end_io(struct dm_target *ti, struct bio *bio,
		blk_status_t *error)
B
Brian Wood 已提交
418 419 420 421 422
{
	unsigned i;
	char major_minor[16];
	struct stripe_c *sc = ti->private;

423 424
	if (!*error)
		return DM_ENDIO_DONE; /* I/O complete */
B
Brian Wood 已提交
425

C
Christoph Hellwig 已提交
426
	if (bio->bi_opf & REQ_RAHEAD)
427
		return DM_ENDIO_DONE;
B
Brian Wood 已提交
428

429
	if (*error == BLK_STS_NOTSUPP)
430
		return DM_ENDIO_DONE;
B
Brian Wood 已提交
431 432 433

	memset(major_minor, 0, sizeof(major_minor));
	sprintf(major_minor, "%d:%d",
434 435
		MAJOR(disk_devt(bio->bi_bdev->bd_disk)),
		MINOR(disk_devt(bio->bi_bdev->bd_disk)));
B
Brian Wood 已提交
436 437 438 439 440 441 442 443 444 445 446 447

	/*
	 * Test to see which stripe drive triggered the event
	 * and increment error count for all stripes on that device.
	 * If the error count for a given device exceeds the threshold
	 * value we will no longer trigger any further events.
	 */
	for (i = 0; i < sc->stripes; i++)
		if (!strcmp(sc->stripe[i].dev->name, major_minor)) {
			atomic_inc(&(sc->stripe[i].error_count));
			if (atomic_read(&(sc->stripe[i].error_count)) <
			    DM_IO_ERROR_THRESHOLD)
448
				schedule_work(&sc->trigger_event);
B
Brian Wood 已提交
449 450
		}

451
	return DM_ENDIO_DONE;
B
Brian Wood 已提交
452 453
}

454 455 456 457 458 459 460
static int stripe_iterate_devices(struct dm_target *ti,
				  iterate_devices_callout_fn fn, void *data)
{
	struct stripe_c *sc = ti->private;
	int ret = 0;
	unsigned i = 0;

461
	do {
462
		ret = fn(ti, sc->stripe[i].dev,
463 464 465
			 sc->stripe[i].physical_start,
			 sc->stripe_width, data);
	} while (!ret && ++i < sc->stripes);
466 467 468 469

	return ret;
}

470 471 472 473
static void stripe_io_hints(struct dm_target *ti,
			    struct queue_limits *limits)
{
	struct stripe_c *sc = ti->private;
474
	unsigned chunk_size = sc->chunk_size << SECTOR_SHIFT;
475 476

	blk_limits_io_min(limits, chunk_size);
477
	blk_limits_io_opt(limits, chunk_size * sc->stripes);
478 479
}

L
Linus Torvalds 已提交
480 481
static struct target_type stripe_target = {
	.name   = "striped",
T
Toshi Kani 已提交
482
	.version = {1, 6, 0},
483
	.features = DM_TARGET_PASSES_INTEGRITY,
L
Linus Torvalds 已提交
484 485 486 487
	.module = THIS_MODULE,
	.ctr    = stripe_ctr,
	.dtr    = stripe_dtr,
	.map    = stripe_map,
B
Brian Wood 已提交
488
	.end_io = stripe_end_io,
L
Linus Torvalds 已提交
489
	.status = stripe_status,
490
	.iterate_devices = stripe_iterate_devices,
491
	.io_hints = stripe_io_hints,
492
	.direct_access = stripe_dax_direct_access,
493
	.dax_copy_from_iter = stripe_dax_copy_from_iter,
494
	.dax_flush = stripe_dax_flush,
L
Linus Torvalds 已提交
495 496 497 498 499 500 501
};

int __init dm_stripe_init(void)
{
	int r;

	r = dm_register_target(&stripe_target);
502
	if (r < 0)
503
		DMWARN("target registration failed");
L
Linus Torvalds 已提交
504 505 506 507 508 509

	return r;
}

void dm_stripe_exit(void)
{
510
	dm_unregister_target(&stripe_target);
L
Linus Torvalds 已提交
511
}