dm-stripe.c 13.1 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

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

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 62 63
/*
 * 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 已提交
64
	unsigned long long start;
65
	char dummy;
66
	int ret;
L
Linus Torvalds 已提交
67

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

71 72 73 74
	ret = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table),
			    &sc->stripe[stripe].dev);
	if (ret)
		return ret;
L
Linus Torvalds 已提交
75 76

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

L
Linus Torvalds 已提交
78 79 80 81 82
	return 0;
}

/*
 * Construct a striped mapping.
83
 * <number of stripes> <chunk size> [<dev_path> <offset>]+
L
Linus Torvalds 已提交
84 85 86 87
 */
static int stripe_ctr(struct dm_target *ti, unsigned int argc, char **argv)
{
	struct stripe_c *sc;
88
	sector_t width, tmp_len;
L
Linus Torvalds 已提交
89 90 91 92 93 94
	uint32_t stripes;
	uint32_t chunk_size;
	int r;
	unsigned int i;

	if (argc < 2) {
95
		ti->error = "Not enough arguments";
L
Linus Torvalds 已提交
96 97 98
		return -EINVAL;
	}

M
majianpeng 已提交
99
	if (kstrtouint(argv[0], 10, &stripes) || !stripes) {
100
		ti->error = "Invalid stripe count";
L
Linus Torvalds 已提交
101 102 103
		return -EINVAL;
	}

104
	if (kstrtouint(argv[1], 10, &chunk_size) || !chunk_size) {
105
		ti->error = "Invalid chunk_size";
L
Linus Torvalds 已提交
106 107 108
		return -EINVAL;
	}

109
	width = ti->len;
110
	if (sector_div(width, stripes)) {
111
		ti->error = "Target length not divisible by "
112
		    "number of stripes";
K
Kevin Corry 已提交
113 114 115
		return -EINVAL;
	}

116 117
	tmp_len = width;
	if (sector_div(tmp_len, chunk_size)) {
118
		ti->error = "Target length not divisible by "
119
		    "chunk size";
L
Linus Torvalds 已提交
120 121 122 123 124 125 126
		return -EINVAL;
	}

	/*
	 * Do we have enough arguments for that many stripes ?
	 */
	if (argc != (2 + 2 * stripes)) {
127
		ti->error = "Not enough destinations "
L
Linus Torvalds 已提交
128 129 130 131
			"specified";
		return -EINVAL;
	}

132
	sc = kmalloc(struct_size(sc, stripe, stripes), GFP_KERNEL);
L
Linus Torvalds 已提交
133
	if (!sc) {
134
		ti->error = "Memory allocation for striped context "
L
Linus Torvalds 已提交
135 136 137 138
		    "failed";
		return -ENOMEM;
	}

139
	INIT_WORK(&sc->trigger_event, trigger_event);
B
Brian Wood 已提交
140 141 142

	/* Set pointer to dm target; used in trigger_event */
	sc->ti = ti;
L
Linus Torvalds 已提交
143 144
	sc->stripes = stripes;
	sc->stripe_width = width;
145 146 147

	if (stripes & (stripes - 1))
		sc->stripes_shift = -1;
M
Mikulas Patocka 已提交
148 149
	else
		sc->stripes_shift = __ffs(stripes);
150

151
	r = dm_set_target_max_io_len(ti, chunk_size);
152 153
	if (r) {
		kfree(sc);
154
		return r;
155
	}
156

157 158
	ti->num_flush_bios = stripes;
	ti->num_discard_bios = stripes;
159
	ti->num_secure_erase_bios = stripes;
160
	ti->num_write_same_bios = stripes;
161
	ti->num_write_zeroes_bios = stripes;
L
Linus Torvalds 已提交
162

163
	sc->chunk_size = chunk_size;
164 165 166 167
	if (chunk_size & (chunk_size - 1))
		sc->chunk_size_shift = -1;
	else
		sc->chunk_size_shift = __ffs(chunk_size);
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175 176

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

		r = get_stripe(ti, sc, i, argv);
		if (r < 0) {
177
			ti->error = "Couldn't parse stripe destination";
L
Linus Torvalds 已提交
178 179 180 181 182
			while (i--)
				dm_put_device(ti, sc->stripe[i].dev);
			kfree(sc);
			return r;
		}
B
Brian Wood 已提交
183
		atomic_set(&(sc->stripe[i].error_count), 0);
L
Linus Torvalds 已提交
184 185 186
	}

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

L
Linus Torvalds 已提交
188 189 190 191 192 193 194 195 196 197 198
	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);

199
	flush_work(&sc->trigger_event);
L
Linus Torvalds 已提交
200 201 202
	kfree(sc);
}

203 204 205
static void stripe_map_sector(struct stripe_c *sc, sector_t sector,
			      uint32_t *stripe, sector_t *result)
{
206
	sector_t chunk = dm_target_offset(sc->ti, sector);
207 208 209 210 211 212 213 214
	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;
	}
215

216 217 218
	if (sc->stripes_shift < 0)
		*stripe = sector_div(chunk, sc->stripes);
	else {
M
Mikulas Patocka 已提交
219
		*stripe = chunk & (sc->stripes - 1);
220 221 222
		chunk >>= sc->stripes_shift;
	}

223 224 225 226 227 228
	if (sc->chunk_size_shift < 0)
		chunk *= sc->chunk_size;
	else
		chunk <<= sc->chunk_size_shift;

	*result = chunk + chunk_offset;
229 230
}

M
Mikulas Patocka 已提交
231 232 233 234 235 236 237 238
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;
239 240 241

	/* round down */
	sector = *result;
242 243 244 245
	if (sc->chunk_size_shift < 0)
		*result -= sector_div(sector, sc->chunk_size);
	else
		*result = sector & ~(sector_t)(sc->chunk_size - 1);
246

M
Mikulas Patocka 已提交
247
	if (target_stripe < stripe)
248
		*result += sc->chunk_size;		/* next chunk */
M
Mikulas Patocka 已提交
249 250
}

M
Mike Snitzer 已提交
251 252
static int stripe_map_range(struct stripe_c *sc, struct bio *bio,
			    uint32_t target_stripe)
M
Mikulas Patocka 已提交
253 254 255
{
	sector_t begin, end;

256 257
	stripe_map_range_sector(sc, bio->bi_iter.bi_sector,
				target_stripe, &begin);
K
Kent Overstreet 已提交
258
	stripe_map_range_sector(sc, bio_end_sector(bio),
M
Mikulas Patocka 已提交
259 260
				target_stripe, &end);
	if (begin < end) {
261
		bio_set_dev(bio, sc->stripe[target_stripe].dev->bdev);
262 263 264
		bio->bi_iter.bi_sector = begin +
			sc->stripe[target_stripe].physical_start;
		bio->bi_iter.bi_size = to_bytes(end - begin);
M
Mikulas Patocka 已提交
265 266 267
		return DM_MAPIO_REMAPPED;
	} else {
		/* The range doesn't map to the target stripe */
268
		bio_endio(bio);
M
Mikulas Patocka 已提交
269 270 271 272
		return DM_MAPIO_SUBMITTED;
	}
}

M
Mikulas Patocka 已提交
273
static int stripe_map(struct dm_target *ti, struct bio *bio)
L
Linus Torvalds 已提交
274
{
275
	struct stripe_c *sc = ti->private;
M
Mikulas Patocka 已提交
276
	uint32_t stripe;
277
	unsigned target_bio_nr;
L
Linus Torvalds 已提交
278

J
Jens Axboe 已提交
279
	if (bio->bi_opf & REQ_PREFLUSH) {
280 281
		target_bio_nr = dm_bio_get_target_bio_nr(bio);
		BUG_ON(target_bio_nr >= sc->stripes);
282
		bio_set_dev(bio, sc->stripe[target_bio_nr].dev->bdev);
M
Mikulas Patocka 已提交
283 284
		return DM_MAPIO_REMAPPED;
	}
M
Mike Christie 已提交
285
	if (unlikely(bio_op(bio) == REQ_OP_DISCARD) ||
286
	    unlikely(bio_op(bio) == REQ_OP_SECURE_ERASE) ||
287
	    unlikely(bio_op(bio) == REQ_OP_WRITE_ZEROES) ||
M
Mike Christie 已提交
288
	    unlikely(bio_op(bio) == REQ_OP_WRITE_SAME)) {
289 290 291
		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 已提交
292
	}
M
Mikulas Patocka 已提交
293

294 295
	stripe_map_sector(sc, bio->bi_iter.bi_sector,
			  &stripe, &bio->bi_iter.bi_sector);
L
Linus Torvalds 已提交
296

297
	bio->bi_iter.bi_sector += sc->stripe[stripe].physical_start;
298
	bio_set_dev(bio, sc->stripe[stripe].dev->bdev);
299

300
	return DM_MAPIO_REMAPPED;
L
Linus Torvalds 已提交
301 302
}

303
#if IS_ENABLED(CONFIG_DAX_DRIVER)
304 305
static long stripe_dax_direct_access(struct dm_target *ti, pgoff_t pgoff,
		long nr_pages, void **kaddr, pfn_t *pfn)
T
Toshi Kani 已提交
306
{
307
	sector_t dev_sector, sector = pgoff * PAGE_SECTORS;
T
Toshi Kani 已提交
308
	struct stripe_c *sc = ti->private;
309
	struct dax_device *dax_dev;
T
Toshi Kani 已提交
310
	struct block_device *bdev;
311
	uint32_t stripe;
T
Toshi Kani 已提交
312 313
	long ret;

314 315 316
	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 已提交
317 318
	bdev = sc->stripe[stripe].dev->bdev;

319 320 321 322
	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 已提交
323 324
}

325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
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);
}

344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
static size_t stripe_dax_copy_to_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_to_iter(dax_dev, pgoff, addr, bytes, i);
}

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
static int stripe_dax_zero_page_range(struct dm_target *ti, pgoff_t pgoff,
				      size_t nr_pages)
{
	int ret;
	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;

	ret = bdev_dax_pgoff(bdev, dev_sector, nr_pages << PAGE_SHIFT, &pgoff);
	if (ret)
		return ret;
	return dax_zero_page_range(dax_dev, pgoff, nr_pages);
}

384 385 386
#else
#define stripe_dax_direct_access NULL
#define stripe_dax_copy_from_iter NULL
387
#define stripe_dax_copy_to_iter NULL
388
#define stripe_dax_zero_page_range NULL
389 390
#endif

B
Brian Wood 已提交
391 392 393 394 395 396 397 398 399 400 401 402 403
/*
 * 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>]
 *
 */

404 405
static void stripe_status(struct dm_target *ti, status_type_t type,
			  unsigned status_flags, char *result, unsigned maxlen)
L
Linus Torvalds 已提交
406 407 408 409 410 411 412
{
	struct stripe_c *sc = (struct stripe_c *) ti->private;
	unsigned int sz = 0;
	unsigned int i;

	switch (type) {
	case STATUSTYPE_INFO:
B
Brian Wood 已提交
413 414 415 416
		DMEMIT("%d ", sc->stripes);
		for (i = 0; i < sc->stripes; i++)  {
			DMEMIT("%s ", sc->stripe[i].dev->name);
		}
417 418 419 420 421
		DMEMIT("1 ");
		for (i = 0; i < sc->stripes; i++) {
			DMEMIT("%c", atomic_read(&(sc->stripe[i].error_count)) ?
			       'D' : 'A');
		}
L
Linus Torvalds 已提交
422 423 424
		break;

	case STATUSTYPE_TABLE:
A
Andrew Morton 已提交
425
		DMEMIT("%d %llu", sc->stripes,
426
			(unsigned long long)sc->chunk_size);
L
Linus Torvalds 已提交
427
		for (i = 0; i < sc->stripes; i++)
A
Andrew Morton 已提交
428 429
			DMEMIT(" %s %llu", sc->stripe[i].dev->name,
			    (unsigned long long)sc->stripe[i].physical_start);
L
Linus Torvalds 已提交
430
		break;
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445

	case STATUSTYPE_IMA:
		DMEMIT_TARGET_NAME_VERSION(ti->type);
		DMEMIT(",stripes=%d,chunk_size=%llu", sc->stripes,
		       (unsigned long long)sc->chunk_size);

		for (i = 0; i < sc->stripes; i++) {
			DMEMIT(",stripe_%d_device_name=%s", i, sc->stripe[i].dev->name);
			DMEMIT(",stripe_%d_physical_start=%llu", i,
			       (unsigned long long)sc->stripe[i].physical_start);
			DMEMIT(",stripe_%d_status=%c", i,
			       atomic_read(&(sc->stripe[i].error_count)) ? 'D' : 'A');
		}
		DMEMIT(";");
		break;
L
Linus Torvalds 已提交
446 447 448
	}
}

449 450
static int stripe_end_io(struct dm_target *ti, struct bio *bio,
		blk_status_t *error)
B
Brian Wood 已提交
451 452 453 454 455
{
	unsigned i;
	char major_minor[16];
	struct stripe_c *sc = ti->private;

456 457
	if (!*error)
		return DM_ENDIO_DONE; /* I/O complete */
B
Brian Wood 已提交
458

C
Christoph Hellwig 已提交
459
	if (bio->bi_opf & REQ_RAHEAD)
460
		return DM_ENDIO_DONE;
B
Brian Wood 已提交
461

462
	if (*error == BLK_STS_NOTSUPP)
463
		return DM_ENDIO_DONE;
B
Brian Wood 已提交
464 465

	memset(major_minor, 0, sizeof(major_minor));
466
	sprintf(major_minor, "%d:%d", MAJOR(bio_dev(bio)), MINOR(bio_dev(bio)));
B
Brian Wood 已提交
467 468 469 470 471 472 473 474 475 476 477 478

	/*
	 * 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)
479
				schedule_work(&sc->trigger_event);
B
Brian Wood 已提交
480 481
		}

482
	return DM_ENDIO_DONE;
B
Brian Wood 已提交
483 484
}

485 486 487 488 489 490 491
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;

492
	do {
493
		ret = fn(ti, sc->stripe[i].dev,
494 495 496
			 sc->stripe[i].physical_start,
			 sc->stripe_width, data);
	} while (!ret && ++i < sc->stripes);
497 498 499 500

	return ret;
}

501 502 503 504
static void stripe_io_hints(struct dm_target *ti,
			    struct queue_limits *limits)
{
	struct stripe_c *sc = ti->private;
505
	unsigned chunk_size = sc->chunk_size << SECTOR_SHIFT;
506 507

	blk_limits_io_min(limits, chunk_size);
508
	blk_limits_io_opt(limits, chunk_size * sc->stripes);
509 510
}

L
Linus Torvalds 已提交
511 512
static struct target_type stripe_target = {
	.name   = "striped",
T
Toshi Kani 已提交
513
	.version = {1, 6, 0},
514
	.features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT,
L
Linus Torvalds 已提交
515 516 517 518
	.module = THIS_MODULE,
	.ctr    = stripe_ctr,
	.dtr    = stripe_dtr,
	.map    = stripe_map,
B
Brian Wood 已提交
519
	.end_io = stripe_end_io,
L
Linus Torvalds 已提交
520
	.status = stripe_status,
521
	.iterate_devices = stripe_iterate_devices,
522
	.io_hints = stripe_io_hints,
523
	.direct_access = stripe_dax_direct_access,
524
	.dax_copy_from_iter = stripe_dax_copy_from_iter,
525
	.dax_copy_to_iter = stripe_dax_copy_to_iter,
526
	.dax_zero_page_range = stripe_dax_zero_page_range,
L
Linus Torvalds 已提交
527 528 529 530 531 532 533
};

int __init dm_stripe_init(void)
{
	int r;

	r = dm_register_target(&stripe_target);
534
	if (r < 0)
535
		DMWARN("target registration failed");
L
Linus Torvalds 已提交
536 537 538 539 540 541

	return r;
}

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