dm-zoned-target.c 28.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (C) 2017 Western Digital Corporation or its affiliates.
 *
 * This file is released under the GPL.
 */

#include "dm-zoned.h"

#include <linux/module.h>

#define	DM_MSG_PREFIX		"zoned"

#define DMZ_MIN_BIOS		8192

/*
 * Zone BIO context.
 */
struct dmz_bioctx {
20
	struct dmz_dev		*dev;
21 22
	struct dm_zone		*zone;
	struct bio		*bio;
23
	refcount_t		ref;
24 25 26 27 28 29 30
};

/*
 * Chunk work descriptor.
 */
struct dm_chunk_work {
	struct work_struct	work;
31
	refcount_t		refcount;
32 33 34 35 36 37 38 39 40
	struct dmz_target	*target;
	unsigned int		chunk;
	struct bio_list		bio_list;
};

/*
 * Target descriptor.
 */
struct dmz_target {
41
	struct dm_dev		**ddev;
H
Hannes Reinecke 已提交
42
	unsigned int		nr_ddevs;
43

44
	unsigned int		flags;
45 46 47 48 49 50 51 52 53 54

	/* Zoned block device information */
	struct dmz_dev		*dev;

	/* For metadata handling */
	struct dmz_metadata     *metadata;

	/* For chunk work */
	struct radix_tree_root	chunk_rxtree;
	struct workqueue_struct *chunk_wq;
55
	struct mutex		chunk_lock;
56 57

	/* For cloned BIOs to zones */
58
	struct bio_set		bio_set;
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

	/* For flush */
	spinlock_t		flush_lock;
	struct bio_list		flush_list;
	struct delayed_work	flush_work;
	struct workqueue_struct *flush_wq;
};

/*
 * Flush intervals (seconds).
 */
#define DMZ_FLUSH_PERIOD	(10 * HZ)

/*
 * Target BIO completion.
 */
static inline void dmz_bio_endio(struct bio *bio, blk_status_t status)
{
77 78
	struct dmz_bioctx *bioctx =
		dm_per_bio_data(bio, sizeof(struct dmz_bioctx));
79

80 81
	if (status != BLK_STS_OK && bio->bi_status == BLK_STS_OK)
		bio->bi_status = status;
H
Hannes Reinecke 已提交
82
	if (bioctx->dev && bio->bi_status != BLK_STS_OK)
83
		bioctx->dev->flags |= DMZ_CHECK_BDEV;
84 85 86 87 88 89 90 91 92 93 94 95 96

	if (refcount_dec_and_test(&bioctx->ref)) {
		struct dm_zone *zone = bioctx->zone;

		if (zone) {
			if (bio->bi_status != BLK_STS_OK &&
			    bio_op(bio) == REQ_OP_WRITE &&
			    dmz_is_seq(zone))
				set_bit(DMZ_SEQ_WRITE_ERR, &zone->flags);
			dmz_deactivate_zone(zone);
		}
		bio_endio(bio);
	}
97 98 99
}

/*
100
 * Completion callback for an internally cloned target BIO. This terminates the
101 102
 * target BIO when there are no more references to its context.
 */
103
static void dmz_clone_endio(struct bio *clone)
104
{
105 106
	struct dmz_bioctx *bioctx = clone->bi_private;
	blk_status_t status = clone->bi_status;
107

108
	bio_put(clone);
109 110 111 112
	dmz_bio_endio(bioctx->bio, status);
}

/*
113
 * Issue a clone of a target BIO. The clone may only partially process the
114 115
 * original target BIO.
 */
116 117 118
static int dmz_submit_bio(struct dmz_target *dmz, struct dm_zone *zone,
			  struct bio *bio, sector_t chunk_block,
			  unsigned int nr_blocks)
119
{
120 121
	struct dmz_bioctx *bioctx =
		dm_per_bio_data(bio, sizeof(struct dmz_bioctx));
122
	struct dmz_dev *dev = zone->dev;
123 124
	struct bio *clone;

125 126 127
	if (dev->flags & DMZ_BDEV_DYING)
		return -EIO;

128
	clone = bio_clone_fast(bio, GFP_NOIO, &dmz->bio_set);
129 130 131
	if (!clone)
		return -ENOMEM;

132 133
	bio_set_dev(clone, dev->bdev);
	bioctx->dev = dev;
134 135
	clone->bi_iter.bi_sector =
		dmz_start_sect(dmz->metadata, zone) + dmz_blk2sect(chunk_block);
136
	clone->bi_iter.bi_size = dmz_blk2sect(nr_blocks) << SECTOR_SHIFT;
137
	clone->bi_end_io = dmz_clone_endio;
138 139 140 141
	clone->bi_private = bioctx;

	bio_advance(bio, clone->bi_iter.bi_size);

142
	refcount_inc(&bioctx->ref);
143
	submit_bio_noacct(clone);
144

145 146 147
	if (bio_op(bio) == REQ_OP_WRITE && dmz_is_seq(zone))
		zone->wp_block += nr_blocks;

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
	return 0;
}

/*
 * Zero out pages of discarded blocks accessed by a read BIO.
 */
static void dmz_handle_read_zero(struct dmz_target *dmz, struct bio *bio,
				 sector_t chunk_block, unsigned int nr_blocks)
{
	unsigned int size = nr_blocks << DMZ_BLOCK_SHIFT;

	/* Clear nr_blocks */
	swap(bio->bi_iter.bi_size, size);
	zero_fill_bio(bio);
	swap(bio->bi_iter.bi_size, size);

	bio_advance(bio, size);
}

/*
 * Process a read BIO.
 */
static int dmz_handle_read(struct dmz_target *dmz, struct dm_zone *zone,
			   struct bio *bio)
{
173 174
	struct dmz_metadata *zmd = dmz->metadata;
	sector_t chunk_block = dmz_chunk_block(zmd, dmz_bio_block(bio));
175 176 177 178 179 180 181 182 183 184 185
	unsigned int nr_blocks = dmz_bio_blocks(bio);
	sector_t end_block = chunk_block + nr_blocks;
	struct dm_zone *rzone, *bzone;
	int ret;

	/* Read into unmapped chunks need only zeroing the BIO buffer */
	if (!zone) {
		zero_fill_bio(bio);
		return 0;
	}

186 187 188
	DMDEBUG("(%s): READ chunk %llu -> %s zone %u, block %llu, %u blocks",
		dmz_metadata_label(zmd),
		(unsigned long long)dmz_bio_chunk(zmd, bio),
189 190
		(dmz_is_rnd(zone) ? "RND" :
		 (dmz_is_cache(zone) ? "CACHE" : "SEQ")),
191 192
		zone->id,
		(unsigned long long)chunk_block, nr_blocks);
193 194 195 196 197

	/* Check block validity to determine the read location */
	bzone = zone->bzone;
	while (chunk_block < end_block) {
		nr_blocks = 0;
198 199
		if (dmz_is_rnd(zone) || dmz_is_cache(zone) ||
		    chunk_block < zone->wp_block) {
200
			/* Test block validity in the data zone */
201
			ret = dmz_block_valid(zmd, zone, chunk_block);
202 203 204 205 206 207 208 209 210 211 212 213 214 215
			if (ret < 0)
				return ret;
			if (ret > 0) {
				/* Read data zone blocks */
				nr_blocks = ret;
				rzone = zone;
			}
		}

		/*
		 * No valid blocks found in the data zone.
		 * Check the buffer zone, if there is one.
		 */
		if (!nr_blocks && bzone) {
216
			ret = dmz_block_valid(zmd, bzone, chunk_block);
217 218 219 220 221 222 223 224 225 226 227
			if (ret < 0)
				return ret;
			if (ret > 0) {
				/* Read buffer zone blocks */
				nr_blocks = ret;
				rzone = bzone;
			}
		}

		if (nr_blocks) {
			/* Valid blocks found: read them */
228 229 230 231
			nr_blocks = min_t(unsigned int, nr_blocks,
					  end_block - chunk_block);
			ret = dmz_submit_bio(dmz, rzone, bio,
					     chunk_block, nr_blocks);
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
			if (ret)
				return ret;
			chunk_block += nr_blocks;
		} else {
			/* No valid block: zeroout the current BIO block */
			dmz_handle_read_zero(dmz, bio, chunk_block, 1);
			chunk_block++;
		}
	}

	return 0;
}

/*
 * Write blocks directly in a data zone, at the write pointer.
 * If a buffer zone is assigned, invalidate the blocks written
 * in place.
 */
static int dmz_handle_direct_write(struct dmz_target *dmz,
				   struct dm_zone *zone, struct bio *bio,
				   sector_t chunk_block,
				   unsigned int nr_blocks)
{
	struct dmz_metadata *zmd = dmz->metadata;
	struct dm_zone *bzone = zone->bzone;
	int ret;

	if (dmz_is_readonly(zone))
		return -EROFS;

	/* Submit write */
263 264 265
	ret = dmz_submit_bio(dmz, zone, bio, chunk_block, nr_blocks);
	if (ret)
		return ret;
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293

	/*
	 * Validate the blocks in the data zone and invalidate
	 * in the buffer zone, if there is one.
	 */
	ret = dmz_validate_blocks(zmd, zone, chunk_block, nr_blocks);
	if (ret == 0 && bzone)
		ret = dmz_invalidate_blocks(zmd, bzone, chunk_block, nr_blocks);

	return ret;
}

/*
 * Write blocks in the buffer zone of @zone.
 * If no buffer zone is assigned yet, get one.
 * Called with @zone write locked.
 */
static int dmz_handle_buffered_write(struct dmz_target *dmz,
				     struct dm_zone *zone, struct bio *bio,
				     sector_t chunk_block,
				     unsigned int nr_blocks)
{
	struct dmz_metadata *zmd = dmz->metadata;
	struct dm_zone *bzone;
	int ret;

	/* Get the buffer zone. One will be allocated if needed */
	bzone = dmz_get_chunk_buffer(zmd, zone);
294 295
	if (IS_ERR(bzone))
		return PTR_ERR(bzone);
296 297 298 299 300

	if (dmz_is_readonly(bzone))
		return -EROFS;

	/* Submit write */
301 302 303
	ret = dmz_submit_bio(dmz, bzone, bio, chunk_block, nr_blocks);
	if (ret)
		return ret;
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321

	/*
	 * Validate the blocks in the buffer zone
	 * and invalidate in the data zone.
	 */
	ret = dmz_validate_blocks(zmd, bzone, chunk_block, nr_blocks);
	if (ret == 0 && chunk_block < zone->wp_block)
		ret = dmz_invalidate_blocks(zmd, zone, chunk_block, nr_blocks);

	return ret;
}

/*
 * Process a write BIO.
 */
static int dmz_handle_write(struct dmz_target *dmz, struct dm_zone *zone,
			    struct bio *bio)
{
322 323
	struct dmz_metadata *zmd = dmz->metadata;
	sector_t chunk_block = dmz_chunk_block(zmd, dmz_bio_block(bio));
324 325 326 327 328
	unsigned int nr_blocks = dmz_bio_blocks(bio);

	if (!zone)
		return -ENOSPC;

329 330 331
	DMDEBUG("(%s): WRITE chunk %llu -> %s zone %u, block %llu, %u blocks",
		dmz_metadata_label(zmd),
		(unsigned long long)dmz_bio_chunk(zmd, bio),
332 333
		(dmz_is_rnd(zone) ? "RND" :
		 (dmz_is_cache(zone) ? "CACHE" : "SEQ")),
334 335
		zone->id,
		(unsigned long long)chunk_block, nr_blocks);
336

337 338
	if (dmz_is_rnd(zone) || dmz_is_cache(zone) ||
	    chunk_block == zone->wp_block) {
339 340 341 342 343
		/*
		 * zone is a random zone or it is a sequential zone
		 * and the BIO is aligned to the zone write pointer:
		 * direct write the zone.
		 */
344 345
		return dmz_handle_direct_write(dmz, zone, bio,
					       chunk_block, nr_blocks);
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
	}

	/*
	 * This is an unaligned write in a sequential zone:
	 * use buffered write.
	 */
	return dmz_handle_buffered_write(dmz, zone, bio, chunk_block, nr_blocks);
}

/*
 * Process a discard BIO.
 */
static int dmz_handle_discard(struct dmz_target *dmz, struct dm_zone *zone,
			      struct bio *bio)
{
	struct dmz_metadata *zmd = dmz->metadata;
	sector_t block = dmz_bio_block(bio);
	unsigned int nr_blocks = dmz_bio_blocks(bio);
364
	sector_t chunk_block = dmz_chunk_block(zmd, block);
365 366 367 368 369 370 371 372 373
	int ret = 0;

	/* For unmapped chunks, there is nothing to do */
	if (!zone)
		return 0;

	if (dmz_is_readonly(zone))
		return -EROFS;

374 375 376 377 378
	DMDEBUG("(%s): DISCARD chunk %llu -> zone %u, block %llu, %u blocks",
		dmz_metadata_label(dmz->metadata),
		(unsigned long long)dmz_bio_chunk(zmd, bio),
		zone->id,
		(unsigned long long)chunk_block, nr_blocks);
379 380 381 382 383

	/*
	 * Invalidate blocks in the data zone and its
	 * buffer zone if one is mapped.
	 */
384 385
	if (dmz_is_rnd(zone) || dmz_is_cache(zone) ||
	    chunk_block < zone->wp_block)
386 387 388 389 390 391 392 393 394 395 396 397 398
		ret = dmz_invalidate_blocks(zmd, zone, chunk_block, nr_blocks);
	if (ret == 0 && zone->bzone)
		ret = dmz_invalidate_blocks(zmd, zone->bzone,
					    chunk_block, nr_blocks);
	return ret;
}

/*
 * Process a BIO.
 */
static void dmz_handle_bio(struct dmz_target *dmz, struct dm_chunk_work *cw,
			   struct bio *bio)
{
399 400
	struct dmz_bioctx *bioctx =
		dm_per_bio_data(bio, sizeof(struct dmz_bioctx));
401 402
	struct dmz_metadata *zmd = dmz->metadata;
	struct dm_zone *zone;
403
	int ret;
404 405 406 407 408 409 410 411

	dmz_lock_metadata(zmd);

	/*
	 * Get the data zone mapping the chunk. There may be no
	 * mapping for read and discard. If a mapping is obtained,
	 + the zone returned will be set to active state.
	 */
412
	zone = dmz_get_chunk_mapping(zmd, dmz_bio_chunk(zmd, bio),
413 414 415 416 417 418 419 420 421 422
				     bio_op(bio));
	if (IS_ERR(zone)) {
		ret = PTR_ERR(zone);
		goto out;
	}

	/* Process the BIO */
	if (zone) {
		dmz_activate_zone(zone);
		bioctx->zone = zone;
H
Hannes Reinecke 已提交
423
		dmz_reclaim_bio_acc(zone->dev->reclaim);
424 425 426 427 428 429 430 431 432 433 434 435 436 437
	}

	switch (bio_op(bio)) {
	case REQ_OP_READ:
		ret = dmz_handle_read(dmz, zone, bio);
		break;
	case REQ_OP_WRITE:
		ret = dmz_handle_write(dmz, zone, bio);
		break;
	case REQ_OP_DISCARD:
	case REQ_OP_WRITE_ZEROES:
		ret = dmz_handle_discard(dmz, zone, bio);
		break;
	default:
438 439
		DMERR("(%s): Unsupported BIO operation 0x%x",
		      dmz_metadata_label(dmz->metadata), bio_op(bio));
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
		ret = -EIO;
	}

	/*
	 * Release the chunk mapping. This will check that the mapping
	 * is still valid, that is, that the zone used still has valid blocks.
	 */
	if (zone)
		dmz_put_chunk_mapping(zmd, zone);
out:
	dmz_bio_endio(bio, errno_to_blk_status(ret));

	dmz_unlock_metadata(zmd);
}

/*
 * Increment a chunk reference counter.
 */
static inline void dmz_get_chunk_work(struct dm_chunk_work *cw)
{
460
	refcount_inc(&cw->refcount);
461 462 463 464 465 466 467 468
}

/*
 * Decrement a chunk work reference count and
 * free it if it becomes 0.
 */
static void dmz_put_chunk_work(struct dm_chunk_work *cw)
{
469
	if (refcount_dec_and_test(&cw->refcount)) {
470 471 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 503 504 505 506 507 508 509 510 511
		WARN_ON(!bio_list_empty(&cw->bio_list));
		radix_tree_delete(&cw->target->chunk_rxtree, cw->chunk);
		kfree(cw);
	}
}

/*
 * Chunk BIO work function.
 */
static void dmz_chunk_work(struct work_struct *work)
{
	struct dm_chunk_work *cw = container_of(work, struct dm_chunk_work, work);
	struct dmz_target *dmz = cw->target;
	struct bio *bio;

	mutex_lock(&dmz->chunk_lock);

	/* Process the chunk BIOs */
	while ((bio = bio_list_pop(&cw->bio_list))) {
		mutex_unlock(&dmz->chunk_lock);
		dmz_handle_bio(dmz, cw, bio);
		mutex_lock(&dmz->chunk_lock);
		dmz_put_chunk_work(cw);
	}

	/* Queueing the work incremented the work refcount */
	dmz_put_chunk_work(cw);

	mutex_unlock(&dmz->chunk_lock);
}

/*
 * Flush work.
 */
static void dmz_flush_work(struct work_struct *work)
{
	struct dmz_target *dmz = container_of(work, struct dmz_target, flush_work.work);
	struct bio *bio;
	int ret;

	/* Flush dirty metadata blocks */
	ret = dmz_flush_metadata(dmz->metadata);
512
	if (ret)
513
		DMDEBUG("(%s): Metadata flush failed, rc=%d",
514
			dmz_metadata_label(dmz->metadata), ret);
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534

	/* Process queued flush requests */
	while (1) {
		spin_lock(&dmz->flush_lock);
		bio = bio_list_pop(&dmz->flush_list);
		spin_unlock(&dmz->flush_lock);

		if (!bio)
			break;

		dmz_bio_endio(bio, errno_to_blk_status(ret));
	}

	queue_delayed_work(dmz->flush_wq, &dmz->flush_work, DMZ_FLUSH_PERIOD);
}

/*
 * Get a chunk work and start it to process a new BIO.
 * If the BIO chunk has no work yet, create one.
 */
535
static int dmz_queue_chunk_work(struct dmz_target *dmz, struct bio *bio)
536
{
537
	unsigned int chunk = dmz_bio_chunk(dmz->metadata, bio);
538
	struct dm_chunk_work *cw;
539
	int ret = 0;
540 541 542 543 544

	mutex_lock(&dmz->chunk_lock);

	/* Get the BIO chunk work. If one is not active yet, create one */
	cw = radix_tree_lookup(&dmz->chunk_rxtree, chunk);
545 546 547
	if (cw) {
		dmz_get_chunk_work(cw);
	} else {
548
		/* Create a new chunk work */
549
		cw = kmalloc(sizeof(struct dm_chunk_work), GFP_NOIO);
550 551
		if (unlikely(!cw)) {
			ret = -ENOMEM;
552
			goto out;
553
		}
554 555

		INIT_WORK(&cw->work, dmz_chunk_work);
556
		refcount_set(&cw->refcount, 1);
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
		cw->target = dmz;
		cw->chunk = chunk;
		bio_list_init(&cw->bio_list);

		ret = radix_tree_insert(&dmz->chunk_rxtree, chunk, cw);
		if (unlikely(ret)) {
			kfree(cw);
			goto out;
		}
	}

	bio_list_add(&cw->bio_list, bio);

	if (queue_work(dmz->chunk_wq, &cw->work))
		dmz_get_chunk_work(cw);
out:
	mutex_unlock(&dmz->chunk_lock);
574
	return ret;
575 576
}

577
/*
578
 * Check if the backing device is being removed. If it's on the way out,
579 580 581 582 583
 * start failing I/O. Reclaim and metadata components also call this
 * function to cleanly abort operation in the event of such failure.
 */
bool dmz_bdev_is_dying(struct dmz_dev *dmz_dev)
{
584 585
	if (dmz_dev->flags & DMZ_BDEV_DYING)
		return true;
586

587 588 589 590 591 592
	if (dmz_dev->flags & DMZ_CHECK_BDEV)
		return !dmz_check_bdev(dmz_dev);

	if (blk_queue_dying(bdev_get_queue(dmz_dev->bdev))) {
		dmz_dev_warn(dmz_dev, "Backing device queue dying");
		dmz_dev->flags |= DMZ_BDEV_DYING;
593 594 595 596 597
	}

	return dmz_dev->flags & DMZ_BDEV_DYING;
}

598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
/*
 * Check the backing device availability. This detects such events as
 * backing device going offline due to errors, media removals, etc.
 * This check is less efficient than dmz_bdev_is_dying() and should
 * only be performed as a part of error handling.
 */
bool dmz_check_bdev(struct dmz_dev *dmz_dev)
{
	struct gendisk *disk;

	dmz_dev->flags &= ~DMZ_CHECK_BDEV;

	if (dmz_bdev_is_dying(dmz_dev))
		return false;

	disk = dmz_dev->bdev->bd_disk;
	if (disk->fops->check_events &&
	    disk->fops->check_events(disk, 0) & DISK_EVENT_MEDIA_CHANGE) {
		dmz_dev_warn(dmz_dev, "Backing device offline");
		dmz_dev->flags |= DMZ_BDEV_DYING;
	}

	return !(dmz_dev->flags & DMZ_BDEV_DYING);
}

623 624 625 626 627 628
/*
 * Process a new BIO.
 */
static int dmz_map(struct dm_target *ti, struct bio *bio)
{
	struct dmz_target *dmz = ti->private;
629
	struct dmz_metadata *zmd = dmz->metadata;
630 631 632 633
	struct dmz_bioctx *bioctx = dm_per_bio_data(bio, sizeof(struct dmz_bioctx));
	sector_t sector = bio->bi_iter.bi_sector;
	unsigned int nr_sectors = bio_sectors(bio);
	sector_t chunk_sector;
634
	int ret;
635

636
	if (dmz_dev_is_dying(zmd))
637 638
		return DM_MAPIO_KILL;

639 640 641 642 643 644
	DMDEBUG("(%s): BIO op %d sector %llu + %u => chunk %llu, block %llu, %u blocks",
		dmz_metadata_label(zmd),
		bio_op(bio), (unsigned long long)sector, nr_sectors,
		(unsigned long long)dmz_bio_chunk(zmd, bio),
		(unsigned long long)dmz_chunk_block(zmd, dmz_bio_block(bio)),
		(unsigned int)dmz_bio_blocks(bio));
645

646
	if (!nr_sectors && bio_op(bio) != REQ_OP_WRITE)
647 648 649 650 651 652 653
		return DM_MAPIO_REMAPPED;

	/* The BIO should be block aligned */
	if ((nr_sectors & DMZ_BLOCK_SECTORS_MASK) || (sector & DMZ_BLOCK_SECTORS_MASK))
		return DM_MAPIO_KILL;

	/* Initialize the BIO context */
654
	bioctx->dev = NULL;
655 656
	bioctx->zone = NULL;
	bioctx->bio = bio;
657
	refcount_set(&bioctx->ref, 1);
658 659

	/* Set the BIO pending in the flush list */
660
	if (!nr_sectors && bio_op(bio) == REQ_OP_WRITE) {
661 662 663 664 665 666 667 668
		spin_lock(&dmz->flush_lock);
		bio_list_add(&dmz->flush_list, bio);
		spin_unlock(&dmz->flush_lock);
		mod_delayed_work(dmz->flush_wq, &dmz->flush_work, 0);
		return DM_MAPIO_SUBMITTED;
	}

	/* Split zone BIOs to fit entirely into a zone */
669 670 671
	chunk_sector = sector & (dmz_zone_nr_sectors(zmd) - 1);
	if (chunk_sector + nr_sectors > dmz_zone_nr_sectors(zmd))
		dm_accept_partial_bio(bio, dmz_zone_nr_sectors(zmd) - chunk_sector);
672 673

	/* Now ready to handle this BIO */
674 675
	ret = dmz_queue_chunk_work(dmz, bio);
	if (ret) {
676
		DMDEBUG("(%s): BIO op %d, can't process chunk %llu, err %i",
677 678 679
			dmz_metadata_label(zmd),
			bio_op(bio), (u64)dmz_bio_chunk(zmd, bio),
			ret);
680 681
		return DM_MAPIO_REQUEUE;
	}
682 683 684 685 686 687 688

	return DM_MAPIO_SUBMITTED;
}

/*
 * Get zoned device information.
 */
H
Hannes Reinecke 已提交
689 690
static int dmz_get_zoned_device(struct dm_target *ti, char *path,
				int idx, int nr_devs)
691 692
{
	struct dmz_target *dmz = ti->private;
H
Hannes Reinecke 已提交
693
	struct dm_dev *ddev;
694 695
	struct dmz_dev *dev;
	int ret;
H
Hannes Reinecke 已提交
696
	struct block_device *bdev;
697 698

	/* Get the target device */
H
Hannes Reinecke 已提交
699
	ret = dm_get_device(ti, path, dm_table_get_mode(ti->table), &ddev);
700 701 702 703 704
	if (ret) {
		ti->error = "Get target device failed";
		return ret;
	}

H
Hannes Reinecke 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
	bdev = ddev->bdev;
	if (bdev_zoned_model(bdev) == BLK_ZONED_NONE) {
		if (nr_devs == 1) {
			ti->error = "Invalid regular device";
			goto err;
		}
		if (idx != 0) {
			ti->error = "First device must be a regular device";
			goto err;
		}
		if (dmz->ddev[0]) {
			ti->error = "Too many regular devices";
			goto err;
		}
		dev = &dmz->dev[idx];
		dev->flags = DMZ_BDEV_REGULAR;
	} else {
		if (dmz->ddev[idx]) {
			ti->error = "Too many zoned devices";
			goto err;
		}
		if (nr_devs > 1 && idx == 0) {
			ti->error = "First device must be a regular device";
			goto err;
		}
		dev = &dmz->dev[idx];
731
	}
H
Hannes Reinecke 已提交
732
	dev->bdev = bdev;
733
	dev->dev_idx = idx;
734 735
	(void)bdevname(dev->bdev, dev->name);

H
Hannes Reinecke 已提交
736 737 738
	dev->capacity = i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
	if (ti->begin) {
		ti->error = "Partial mapping is not supported";
739 740 741
		goto err;
	}

H
Hannes Reinecke 已提交
742
	dmz->ddev[idx] = ddev;
743 744 745

	return 0;
err:
H
Hannes Reinecke 已提交
746 747
	dm_put_device(ti, ddev);
	return -EINVAL;
748 749 750 751 752 753 754 755
}

/*
 * Cleanup zoned device information.
 */
static void dmz_put_zoned_device(struct dm_target *ti)
{
	struct dmz_target *dmz = ti->private;
H
Hannes Reinecke 已提交
756
	int i;
757

758
	for (i = 0; i < dmz->nr_ddevs; i++) {
H
Hannes Reinecke 已提交
759 760 761 762 763 764 765 766 767 768 769 770
		if (dmz->ddev[i]) {
			dm_put_device(ti, dmz->ddev[i]);
			dmz->ddev[i] = NULL;
		}
	}
}

static int dmz_fixup_devices(struct dm_target *ti)
{
	struct dmz_target *dmz = ti->private;
	struct dmz_dev *reg_dev, *zoned_dev;
	struct request_queue *q;
771 772
	sector_t zone_nr_sectors = 0;
	int i;
H
Hannes Reinecke 已提交
773 774

	/*
775 776
	 * When we have more than on devices, the first one must be a
	 * regular block device and the others zoned block devices.
H
Hannes Reinecke 已提交
777
	 */
778
	if (dmz->nr_ddevs > 1) {
H
Hannes Reinecke 已提交
779 780 781 782 783
		reg_dev = &dmz->dev[0];
		if (!(reg_dev->flags & DMZ_BDEV_REGULAR)) {
			ti->error = "Primary disk is not a regular device";
			return -EINVAL;
		}
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
		for (i = 1; i < dmz->nr_ddevs; i++) {
			zoned_dev = &dmz->dev[i];
			if (zoned_dev->flags & DMZ_BDEV_REGULAR) {
				ti->error = "Secondary disk is not a zoned device";
				return -EINVAL;
			}
			q = bdev_get_queue(zoned_dev->bdev);
			if (zone_nr_sectors &&
			    zone_nr_sectors != blk_queue_zone_sectors(q)) {
				ti->error = "Zone nr sectors mismatch";
				return -EINVAL;
			}
			zone_nr_sectors = blk_queue_zone_sectors(q);
			zoned_dev->zone_nr_sectors = zone_nr_sectors;
			zoned_dev->nr_zones =
				blkdev_nr_zones(zoned_dev->bdev->bd_disk);
H
Hannes Reinecke 已提交
800 801 802 803 804 805 806 807
		}
	} else {
		reg_dev = NULL;
		zoned_dev = &dmz->dev[0];
		if (zoned_dev->flags & DMZ_BDEV_REGULAR) {
			ti->error = "Disk is not a zoned device";
			return -EINVAL;
		}
808 809 810
		q = bdev_get_queue(zoned_dev->bdev);
		zoned_dev->zone_nr_sectors = blk_queue_zone_sectors(q);
		zoned_dev->nr_zones = blkdev_nr_zones(zoned_dev->bdev->bd_disk);
H
Hannes Reinecke 已提交
811 812 813
	}

	if (reg_dev) {
814 815 816
		sector_t zone_offset;

		reg_dev->zone_nr_sectors = zone_nr_sectors;
817 818 819
		reg_dev->nr_zones =
			DIV_ROUND_UP_SECTOR_T(reg_dev->capacity,
					      reg_dev->zone_nr_sectors);
820 821 822 823 824 825
		reg_dev->zone_offset = 0;
		zone_offset = reg_dev->nr_zones;
		for (i = 1; i < dmz->nr_ddevs; i++) {
			dmz->dev[i].zone_offset = zone_offset;
			zone_offset += dmz->dev[i].nr_zones;
		}
H
Hannes Reinecke 已提交
826 827
	}
	return 0;
828 829 830 831 832 833 834 835
}

/*
 * Setup target.
 */
static int dmz_ctr(struct dm_target *ti, unsigned int argc, char **argv)
{
	struct dmz_target *dmz;
H
Hannes Reinecke 已提交
836
	int ret, i;
837 838

	/* Check arguments */
839
	if (argc < 1) {
840 841 842 843 844 845 846 847 848 849
		ti->error = "Invalid argument count";
		return -EINVAL;
	}

	/* Allocate and initialize the target descriptor */
	dmz = kzalloc(sizeof(struct dmz_target), GFP_KERNEL);
	if (!dmz) {
		ti->error = "Unable to allocate the zoned target descriptor";
		return -ENOMEM;
	}
850
	dmz->dev = kcalloc(argc, sizeof(struct dmz_dev), GFP_KERNEL);
H
Hannes Reinecke 已提交
851 852 853 854 855
	if (!dmz->dev) {
		ti->error = "Unable to allocate the zoned device descriptors";
		kfree(dmz);
		return -ENOMEM;
	}
856 857 858 859 860 861
	dmz->ddev = kcalloc(argc, sizeof(struct dm_dev *), GFP_KERNEL);
	if (!dmz->ddev) {
		ti->error = "Unable to allocate the dm device descriptors";
		ret = -ENOMEM;
		goto err;
	}
H
Hannes Reinecke 已提交
862
	dmz->nr_ddevs = argc;
863

864 865 866
	ti->private = dmz;

	/* Get the target zoned block device */
867 868 869 870
	for (i = 0; i < argc; i++) {
		ret = dmz_get_zoned_device(ti, argv[i], i, argc);
		if (ret)
			goto err_dev;
H
Hannes Reinecke 已提交
871 872
	}
	ret = dmz_fixup_devices(ti);
873 874
	if (ret)
		goto err_dev;
875 876

	/* Initialize metadata */
H
Hannes Reinecke 已提交
877
	ret = dmz_ctr_metadata(dmz->dev, argc, &dmz->metadata,
878
			       dm_table_device_name(ti->table));
879 880 881 882 883 884
	if (ret) {
		ti->error = "Metadata initialization failed";
		goto err_dev;
	}

	/* Set target (no write same support) */
H
Hou Tao 已提交
885
	ti->max_io_len = dmz_zone_nr_sectors(dmz->metadata);
886 887 888 889 890 891 892 893
	ti->num_flush_bios = 1;
	ti->num_discard_bios = 1;
	ti->num_write_zeroes_bios = 1;
	ti->per_io_data_size = sizeof(struct dmz_bioctx);
	ti->flush_supported = true;
	ti->discards_supported = true;

	/* The exposed capacity is the number of chunks that can be mapped */
894 895
	ti->len = (sector_t)dmz_nr_chunks(dmz->metadata) <<
		dmz_zone_nr_sectors_shift(dmz->metadata);
896 897

	/* Zone BIO */
898 899
	ret = bioset_init(&dmz->bio_set, DMZ_MIN_BIOS, 0, 0);
	if (ret) {
900 901 902 903 904 905
		ti->error = "Create BIO set failed";
		goto err_meta;
	}

	/* Chunk BIO work */
	mutex_init(&dmz->chunk_lock);
906
	INIT_RADIX_TREE(&dmz->chunk_rxtree, GFP_NOIO);
907 908 909
	dmz->chunk_wq = alloc_workqueue("dmz_cwq_%s",
					WQ_MEM_RECLAIM | WQ_UNBOUND, 0,
					dmz_metadata_label(dmz->metadata));
910 911 912 913 914 915 916 917 918 919 920
	if (!dmz->chunk_wq) {
		ti->error = "Create chunk workqueue failed";
		ret = -ENOMEM;
		goto err_bio;
	}

	/* Flush work */
	spin_lock_init(&dmz->flush_lock);
	bio_list_init(&dmz->flush_list);
	INIT_DELAYED_WORK(&dmz->flush_work, dmz_flush_work);
	dmz->flush_wq = alloc_ordered_workqueue("dmz_fwq_%s", WQ_MEM_RECLAIM,
921
						dmz_metadata_label(dmz->metadata));
922 923 924 925 926 927 928 929
	if (!dmz->flush_wq) {
		ti->error = "Create flush workqueue failed";
		ret = -ENOMEM;
		goto err_cwq;
	}
	mod_delayed_work(dmz->flush_wq, &dmz->flush_work, DMZ_FLUSH_PERIOD);

	/* Initialize reclaim */
H
Hannes Reinecke 已提交
930 931 932 933 934 935
	for (i = 0; i < dmz->nr_ddevs; i++) {
		ret = dmz_ctr_reclaim(dmz->metadata, &dmz->dev[i].reclaim, i);
		if (ret) {
			ti->error = "Zone reclaim initialization failed";
			goto err_fwq;
		}
936 937
	}

938 939 940 941
	DMINFO("(%s): Target device: %llu 512-byte logical sectors (%llu blocks)",
	       dmz_metadata_label(dmz->metadata),
	       (unsigned long long)ti->len,
	       (unsigned long long)dmz_sect2blk(ti->len));
942 943 944 945 946 947 948

	return 0;
err_fwq:
	destroy_workqueue(dmz->flush_wq);
err_cwq:
	destroy_workqueue(dmz->chunk_wq);
err_bio:
949
	mutex_destroy(&dmz->chunk_lock);
950
	bioset_exit(&dmz->bio_set);
951 952 953 954 955
err_meta:
	dmz_dtr_metadata(dmz->metadata);
err_dev:
	dmz_put_zoned_device(ti);
err:
H
Hannes Reinecke 已提交
956
	kfree(dmz->dev);
957 958 959 960 961 962 963 964 965 966 967
	kfree(dmz);

	return ret;
}

/*
 * Cleanup target.
 */
static void dmz_dtr(struct dm_target *ti)
{
	struct dmz_target *dmz = ti->private;
H
Hannes Reinecke 已提交
968
	int i;
969 970 971 972

	flush_workqueue(dmz->chunk_wq);
	destroy_workqueue(dmz->chunk_wq);

H
Hannes Reinecke 已提交
973 974
	for (i = 0; i < dmz->nr_ddevs; i++)
		dmz_dtr_reclaim(dmz->dev[i].reclaim);
975 976 977 978 979 980 981 982

	cancel_delayed_work_sync(&dmz->flush_work);
	destroy_workqueue(dmz->flush_wq);

	(void) dmz_flush_metadata(dmz->metadata);

	dmz_dtr_metadata(dmz->metadata);

983
	bioset_exit(&dmz->bio_set);
984 985 986

	dmz_put_zoned_device(ti);

987 988
	mutex_destroy(&dmz->chunk_lock);

H
Hannes Reinecke 已提交
989
	kfree(dmz->dev);
990 991 992 993 994 995 996 997 998
	kfree(dmz);
}

/*
 * Setup target request queue limits.
 */
static void dmz_io_hints(struct dm_target *ti, struct queue_limits *limits)
{
	struct dmz_target *dmz = ti->private;
999
	unsigned int chunk_sectors = dmz_zone_nr_sectors(dmz->metadata);
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023

	limits->logical_block_size = DMZ_BLOCK_SIZE;
	limits->physical_block_size = DMZ_BLOCK_SIZE;

	blk_limits_io_min(limits, DMZ_BLOCK_SIZE);
	blk_limits_io_opt(limits, DMZ_BLOCK_SIZE);

	limits->discard_alignment = DMZ_BLOCK_SIZE;
	limits->discard_granularity = DMZ_BLOCK_SIZE;
	limits->max_discard_sectors = chunk_sectors;
	limits->max_hw_discard_sectors = chunk_sectors;
	limits->max_write_zeroes_sectors = chunk_sectors;

	/* FS hint to try to align to the device zone size */
	limits->chunk_sectors = chunk_sectors;
	limits->max_sectors = chunk_sectors;

	/* We are exposing a drive-managed zoned block device */
	limits->zoned = BLK_ZONED_NONE;
}

/*
 * Pass on ioctl to the backend device.
 */
1024
static int dmz_prepare_ioctl(struct dm_target *ti, struct block_device **bdev)
1025 1026
{
	struct dmz_target *dmz = ti->private;
1027
	struct dmz_dev *dev = &dmz->dev[0];
1028

1029
	if (!dmz_check_bdev(dev))
1030
		return -EIO;
1031

1032
	*bdev = dev->bdev;
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042

	return 0;
}

/*
 * Stop works on suspend.
 */
static void dmz_suspend(struct dm_target *ti)
{
	struct dmz_target *dmz = ti->private;
H
Hannes Reinecke 已提交
1043
	int i;
1044 1045

	flush_workqueue(dmz->chunk_wq);
H
Hannes Reinecke 已提交
1046 1047
	for (i = 0; i < dmz->nr_ddevs; i++)
		dmz_suspend_reclaim(dmz->dev[i].reclaim);
1048 1049 1050 1051 1052 1053 1054 1055 1056
	cancel_delayed_work_sync(&dmz->flush_work);
}

/*
 * Restart works on resume or if suspend failed.
 */
static void dmz_resume(struct dm_target *ti)
{
	struct dmz_target *dmz = ti->private;
H
Hannes Reinecke 已提交
1057
	int i;
1058 1059

	queue_delayed_work(dmz->flush_wq, &dmz->flush_work, DMZ_FLUSH_PERIOD);
H
Hannes Reinecke 已提交
1060 1061
	for (i = 0; i < dmz->nr_ddevs; i++)
		dmz_resume_reclaim(dmz->dev[i].reclaim);
1062 1063 1064 1065 1066 1067
}

static int dmz_iterate_devices(struct dm_target *ti,
			       iterate_devices_callout_fn fn, void *data)
{
	struct dmz_target *dmz = ti->private;
H
Hannes Reinecke 已提交
1068 1069
	unsigned int zone_nr_sectors = dmz_zone_nr_sectors(dmz->metadata);
	sector_t capacity;
1070
	int i, r;
H
Hannes Reinecke 已提交
1071

1072 1073 1074 1075 1076
	for (i = 0; i < dmz->nr_ddevs; i++) {
		capacity = dmz->dev[i].capacity & ~(zone_nr_sectors - 1);
		r = fn(ti, dmz->ddev[i], 0, capacity, data);
		if (r)
			break;
H
Hannes Reinecke 已提交
1077 1078
	}
	return r;
1079 1080
}

1081 1082 1083 1084 1085 1086 1087
static void dmz_status(struct dm_target *ti, status_type_t type,
		       unsigned int status_flags, char *result,
		       unsigned int maxlen)
{
	struct dmz_target *dmz = ti->private;
	ssize_t sz = 0;
	char buf[BDEVNAME_SIZE];
H
Hannes Reinecke 已提交
1088
	struct dmz_dev *dev;
1089
	int i;
1090 1091 1092

	switch (type) {
	case STATUSTYPE_INFO:
1093
		DMEMIT("%u zones %u/%u cache",
1094
		       dmz_nr_zones(dmz->metadata),
1095
		       dmz_nr_unmap_cache_zones(dmz->metadata),
1096
		       dmz_nr_cache_zones(dmz->metadata));
1097
		for (i = 0; i < dmz->nr_ddevs; i++) {
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
			/*
			 * For a multi-device setup the first device
			 * contains only cache zones.
			 */
			if ((i == 0) &&
			    (dmz_nr_cache_zones(dmz->metadata) > 0))
				continue;
			DMEMIT(" %u/%u random %u/%u sequential",
			       dmz_nr_unmap_rnd_zones(dmz->metadata, i),
			       dmz_nr_rnd_zones(dmz->metadata, i),
			       dmz_nr_unmap_seq_zones(dmz->metadata, i),
			       dmz_nr_seq_zones(dmz->metadata, i));
		}
1111 1112
		break;
	case STATUSTYPE_TABLE:
H
Hannes Reinecke 已提交
1113 1114
		dev = &dmz->dev[0];
		format_dev_t(buf, dev->bdev->bd_dev);
1115
		DMEMIT("%s", buf);
1116 1117
		for (i = 1; i < dmz->nr_ddevs; i++) {
			dev = &dmz->dev[i];
H
Hannes Reinecke 已提交
1118 1119 1120
			format_dev_t(buf, dev->bdev->bd_dev);
			DMEMIT(" %s", buf);
		}
1121 1122 1123 1124 1125
		break;
	}
	return;
}

1126 1127 1128 1129 1130 1131 1132
static int dmz_message(struct dm_target *ti, unsigned int argc, char **argv,
		       char *result, unsigned int maxlen)
{
	struct dmz_target *dmz = ti->private;
	int r = -EINVAL;

	if (!strcasecmp(argv[0], "reclaim")) {
H
Hannes Reinecke 已提交
1133 1134 1135 1136
		int i;

		for (i = 0; i < dmz->nr_ddevs; i++)
			dmz_schedule_reclaim(dmz->dev[i].reclaim);
1137 1138 1139 1140 1141 1142
		r = 0;
	} else
		DMERR("unrecognized message %s", argv[0]);
	return r;
}

1143 1144
static struct target_type dmz_type = {
	.name		 = "zoned",
H
Hannes Reinecke 已提交
1145
	.version	 = {2, 0, 0},
1146
	.features	 = DM_TARGET_SINGLETON | DM_TARGET_MIXED_ZONED_MODEL,
1147 1148 1149 1150 1151 1152 1153 1154 1155
	.module		 = THIS_MODULE,
	.ctr		 = dmz_ctr,
	.dtr		 = dmz_dtr,
	.map		 = dmz_map,
	.io_hints	 = dmz_io_hints,
	.prepare_ioctl	 = dmz_prepare_ioctl,
	.postsuspend	 = dmz_suspend,
	.resume		 = dmz_resume,
	.iterate_devices = dmz_iterate_devices,
1156
	.status		 = dmz_status,
1157
	.message	 = dmz_message,
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
};

static int __init dmz_init(void)
{
	return dm_register_target(&dmz_type);
}

static void __exit dmz_exit(void)
{
	dm_unregister_target(&dmz_type);
}

module_init(dmz_init);
module_exit(dmz_exit);

MODULE_DESCRIPTION(DM_NAME " target for zoned block devices");
MODULE_AUTHOR("Damien Le Moal <damien.lemoal@wdc.com>");
MODULE_LICENSE("GPL");