dm-cache-target.c 85.5 KB
Newer Older
J
Joe Thornber 已提交
1 2 3 4 5 6 7
/*
 * Copyright (C) 2012 Red Hat. All rights reserved.
 *
 * This file is released under the GPL.
 */

#include "dm.h"
8
#include "dm-bio-prison-v2.h"
9
#include "dm-bio-record.h"
J
Joe Thornber 已提交
10 11 12 13
#include "dm-cache-metadata.h"

#include <linux/dm-io.h>
#include <linux/dm-kcopyd.h>
14
#include <linux/jiffies.h>
J
Joe Thornber 已提交
15 16 17
#include <linux/init.h>
#include <linux/mempool.h>
#include <linux/module.h>
18
#include <linux/rwsem.h>
J
Joe Thornber 已提交
19 20 21 22 23 24 25 26 27 28
#include <linux/slab.h>
#include <linux/vmalloc.h>

#define DM_MSG_PREFIX "cache"

DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(cache_copy_throttle,
	"A percentage of time allocated for copying to and/or from cache");

/*----------------------------------------------------------------*/

29 30 31 32 33 34 35 36 37 38 39 40
/*
 * Glossary:
 *
 * oblock: index of an origin block
 * cblock: index of a cache block
 * promotion: movement of a block from origin to cache
 * demotion: movement of a block from cache to origin
 * migration: movement of a block between the origin and cache device,
 *	      either direction
 */

/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 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 95 96

struct io_tracker {
	spinlock_t lock;

	/*
	 * Sectors of in-flight IO.
	 */
	sector_t in_flight;

	/*
	 * The time, in jiffies, when this device became idle (if it is
	 * indeed idle).
	 */
	unsigned long idle_time;
	unsigned long last_update_time;
};

static void iot_init(struct io_tracker *iot)
{
	spin_lock_init(&iot->lock);
	iot->in_flight = 0ul;
	iot->idle_time = 0ul;
	iot->last_update_time = jiffies;
}

static bool __iot_idle_for(struct io_tracker *iot, unsigned long jifs)
{
	if (iot->in_flight)
		return false;

	return time_after(jiffies, iot->idle_time + jifs);
}

static bool iot_idle_for(struct io_tracker *iot, unsigned long jifs)
{
	bool r;
	unsigned long flags;

	spin_lock_irqsave(&iot->lock, flags);
	r = __iot_idle_for(iot, jifs);
	spin_unlock_irqrestore(&iot->lock, flags);

	return r;
}

static void iot_io_begin(struct io_tracker *iot, sector_t len)
{
	unsigned long flags;

	spin_lock_irqsave(&iot->lock, flags);
	iot->in_flight += len;
	spin_unlock_irqrestore(&iot->lock, flags);
}

static void __iot_io_end(struct io_tracker *iot, sector_t len)
{
97 98 99
	if (!len)
		return;

J
Joe Thornber 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	iot->in_flight -= len;
	if (!iot->in_flight)
		iot->idle_time = jiffies;
}

static void iot_io_end(struct io_tracker *iot, sector_t len)
{
	unsigned long flags;

	spin_lock_irqsave(&iot->lock, flags);
	__iot_io_end(iot, len);
	spin_unlock_irqrestore(&iot->lock, flags);
}

/*----------------------------------------------------------------*/

J
Joe Thornber 已提交
116
/*
117 118
 * Represents a chunk of future work.  'input' allows continuations to pass
 * values between themselves, typically error values.
J
Joe Thornber 已提交
119
 */
120 121
struct continuation {
	struct work_struct ws;
122
	blk_status_t input;
123 124 125 126 127 128 129 130 131 132 133 134 135 136
};

static inline void init_continuation(struct continuation *k,
				     void (*fn)(struct work_struct *))
{
	INIT_WORK(&k->ws, fn);
	k->input = 0;
}

static inline void queue_continuation(struct workqueue_struct *wq,
				      struct continuation *k)
{
	queue_work(wq, &k->ws);
}
J
Joe Thornber 已提交
137 138 139

/*----------------------------------------------------------------*/

140 141 142 143 144 145 146 147
/*
 * The batcher collects together pieces of work that need a particular
 * operation to occur before they can proceed (typically a commit).
 */
struct batcher {
	/*
	 * The operation that everyone is waiting for.
	 */
148
	blk_status_t (*commit_op)(void *context);
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	void *commit_context;

	/*
	 * This is how bios should be issued once the commit op is complete
	 * (accounted_request).
	 */
	void (*issue_op)(struct bio *bio, void *context);
	void *issue_context;

	/*
	 * Queued work gets put on here after commit.
	 */
	struct workqueue_struct *wq;

	spinlock_t lock;
	struct list_head work_items;
	struct bio_list bios;
	struct work_struct commit_work;

	bool commit_scheduled;
};

static void __commit(struct work_struct *_ws)
{
	struct batcher *b = container_of(_ws, struct batcher, commit_work);
174
	blk_status_t r;
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
	unsigned long flags;
	struct list_head work_items;
	struct work_struct *ws, *tmp;
	struct continuation *k;
	struct bio *bio;
	struct bio_list bios;

	INIT_LIST_HEAD(&work_items);
	bio_list_init(&bios);

	/*
	 * We have to grab these before the commit_op to avoid a race
	 * condition.
	 */
	spin_lock_irqsave(&b->lock, flags);
	list_splice_init(&b->work_items, &work_items);
	bio_list_merge(&bios, &b->bios);
	bio_list_init(&b->bios);
	b->commit_scheduled = false;
	spin_unlock_irqrestore(&b->lock, flags);

	r = b->commit_op(b->commit_context);

	list_for_each_entry_safe(ws, tmp, &work_items, entry) {
		k = container_of(ws, struct continuation, ws);
		k->input = r;
		INIT_LIST_HEAD(&ws->entry); /* to avoid a WARN_ON */
		queue_work(b->wq, ws);
	}

	while ((bio = bio_list_pop(&bios))) {
		if (r) {
207
			bio->bi_status = r;
208 209 210 211 212 213 214
			bio_endio(bio);
		} else
			b->issue_op(bio, b->issue_context);
	}
}

static void batcher_init(struct batcher *b,
215
			 blk_status_t (*commit_op)(void *),
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
			 void *commit_context,
			 void (*issue_op)(struct bio *bio, void *),
			 void *issue_context,
			 struct workqueue_struct *wq)
{
	b->commit_op = commit_op;
	b->commit_context = commit_context;
	b->issue_op = issue_op;
	b->issue_context = issue_context;
	b->wq = wq;

	spin_lock_init(&b->lock);
	INIT_LIST_HEAD(&b->work_items);
	bio_list_init(&b->bios);
	INIT_WORK(&b->commit_work, __commit);
	b->commit_scheduled = false;
}

static void async_commit(struct batcher *b)
{
	queue_work(b->wq, &b->commit_work);
}

static void continue_after_commit(struct batcher *b, struct continuation *k)
{
	unsigned long flags;
	bool commit_scheduled;

	spin_lock_irqsave(&b->lock, flags);
	commit_scheduled = b->commit_scheduled;
	list_add_tail(&k->ws.entry, &b->work_items);
	spin_unlock_irqrestore(&b->lock, flags);

	if (commit_scheduled)
		async_commit(b);
}

/*
 * Bios are errored if commit failed.
 */
static void issue_after_commit(struct batcher *b, struct bio *bio)
{
       unsigned long flags;
       bool commit_scheduled;

       spin_lock_irqsave(&b->lock, flags);
       commit_scheduled = b->commit_scheduled;
       bio_list_add(&b->bios, bio);
       spin_unlock_irqrestore(&b->lock, flags);

       if (commit_scheduled)
	       async_commit(b);
}

/*
 * Call this if some urgent work is waiting for the commit to complete.
 */
static void schedule_commit(struct batcher *b)
{
	bool immediate;
	unsigned long flags;

	spin_lock_irqsave(&b->lock, flags);
	immediate = !list_empty(&b->work_items) || !bio_list_empty(&b->bios);
	b->commit_scheduled = true;
	spin_unlock_irqrestore(&b->lock, flags);

	if (immediate)
		async_commit(b);
}

287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
/*
 * There are a couple of places where we let a bio run, but want to do some
 * work before calling its endio function.  We do this by temporarily
 * changing the endio fn.
 */
struct dm_hook_info {
	bio_end_io_t *bi_end_io;
};

static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio,
			bio_end_io_t *bi_end_io, void *bi_private)
{
	h->bi_end_io = bio->bi_end_io;

	bio->bi_end_io = bi_end_io;
	bio->bi_private = bi_private;
}

static void dm_unhook_bio(struct dm_hook_info *h, struct bio *bio)
{
	bio->bi_end_io = h->bi_end_io;
}

/*----------------------------------------------------------------*/

J
Joe Thornber 已提交
312 313 314 315 316
#define MIGRATION_POOL_SIZE 128
#define COMMIT_PERIOD HZ
#define MIGRATION_COUNT_WINDOW 10

/*
317 318
 * The block size of the device holding cache data must be
 * between 32KB and 1GB.
J
Joe Thornber 已提交
319 320
 */
#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (32 * 1024 >> SECTOR_SHIFT)
321
#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
J
Joe Thornber 已提交
322

J
Joe Thornber 已提交
323
enum cache_metadata_mode {
J
Joe Thornber 已提交
324 325
	CM_WRITE,		/* metadata may be changed */
	CM_READ_ONLY,		/* metadata may not be changed */
326
	CM_FAIL
J
Joe Thornber 已提交
327 328
};

J
Joe Thornber 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
enum cache_io_mode {
	/*
	 * Data is written to cached blocks only.  These blocks are marked
	 * dirty.  If you lose the cache device you will lose data.
	 * Potential performance increase for both reads and writes.
	 */
	CM_IO_WRITEBACK,

	/*
	 * Data is written to both cache and origin.  Blocks are never
	 * dirty.  Potential performance benfit for reads only.
	 */
	CM_IO_WRITETHROUGH,

	/*
	 * A degraded mode useful for various cache coherency situations
	 * (eg, rolling back snapshots).  Reads and writes always go to the
	 * origin.  If a write goes to a cached oblock, then the cache
	 * block is invalidated.
	 */
	CM_IO_PASSTHROUGH
};

J
Joe Thornber 已提交
352
struct cache_features {
J
Joe Thornber 已提交
353 354
	enum cache_metadata_mode mode;
	enum cache_io_mode io_mode;
355
	unsigned metadata_version;
J
Joe Thornber 已提交
356 357 358 359 360 361 362 363 364
};

struct cache_stats {
	atomic_t read_hit;
	atomic_t read_miss;
	atomic_t write_hit;
	atomic_t write_miss;
	atomic_t demotion;
	atomic_t promotion;
365
	atomic_t writeback;
J
Joe Thornber 已提交
366 367 368 369 370 371 372 373 374 375
	atomic_t copies_avoided;
	atomic_t cache_cell_clash;
	atomic_t commit_count;
	atomic_t discard_count;
};

struct cache {
	struct dm_target *ti;
	struct dm_target_callbacks callbacks;

376 377
	struct dm_cache_metadata *cmd;

J
Joe Thornber 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
	/*
	 * Metadata is written to this device.
	 */
	struct dm_dev *metadata_dev;

	/*
	 * The slower of the two data devices.  Typically a spindle.
	 */
	struct dm_dev *origin_dev;

	/*
	 * The faster of the two data devices.  Typically an SSD.
	 */
	struct dm_dev *cache_dev;

	/*
	 * Size of the origin device in _complete_ blocks and native sectors.
	 */
	dm_oblock_t origin_blocks;
	sector_t origin_sectors;

	/*
	 * Size of the cache device in blocks.
	 */
	dm_cblock_t cache_size;

	/*
	 * Fields for converting from sectors to blocks.
	 */
407
	sector_t sectors_per_block;
J
Joe Thornber 已提交
408 409 410
	int sectors_per_block_shift;

	spinlock_t lock;
J
Joe Thornber 已提交
411
	struct list_head deferred_cells;
J
Joe Thornber 已提交
412
	struct bio_list deferred_bios;
413
	struct bio_list deferred_writethrough_bios;
J
Joe Thornber 已提交
414 415
	sector_t migration_threshold;
	wait_queue_head_t migration_wait;
416 417 418 419 420 421 422
	atomic_t nr_allocated_migrations;

	/*
	 * The number of in flight migrations that are performing
	 * background io. eg, promotion, writeback.
	 */
	atomic_t nr_io_migrations;
J
Joe Thornber 已提交
423

424
	struct rw_semaphore quiesce_lock;
425

J
Joe Thornber 已提交
426 427 428
	/*
	 * cache_size entries, dirty if set
	 */
429
	atomic_t nr_dirty;
J
Joe Thornber 已提交
430 431 432 433 434
	unsigned long *dirty_bitset;

	/*
	 * origin_blocks entries, discarded if set.
	 */
435
	dm_dblock_t discard_nr_blocks;
J
Joe Thornber 已提交
436
	unsigned long *discard_bitset;
437
	uint32_t discard_block_size; /* a power of 2 times sectors per block */
438 439 440 441 442 443 444

	/*
	 * Rather than reconstructing the table line for the status we just
	 * save it and regurgitate.
	 */
	unsigned nr_ctr_args;
	const char **ctr_args;
J
Joe Thornber 已提交
445 446 447

	struct dm_kcopyd_client *copier;
	struct workqueue_struct *wq;
448 449 450
	struct work_struct deferred_bio_worker;
	struct work_struct deferred_writethrough_worker;
	struct work_struct migration_worker;
J
Joe Thornber 已提交
451
	struct delayed_work waker;
452
	struct dm_bio_prison_v2 *prison;
J
Joe Thornber 已提交
453 454 455 456 457 458 459 460

	mempool_t *migration_pool;

	struct dm_cache_policy *policy;
	unsigned policy_nr_args;

	bool need_tick_bio:1;
	bool sized:1;
461
	bool invalidate:1;
J
Joe Thornber 已提交
462 463 464 465 466
	bool commit_requested:1;
	bool loaded_mappings:1;
	bool loaded_discards:1;

	/*
467
	 * Cache features such as write-through.
J
Joe Thornber 已提交
468
	 */
469 470 471
	struct cache_features features;

	struct cache_stats stats;
472 473 474 475 476 477

	/*
	 * Invalidation fields.
	 */
	spinlock_t invalidation_lock;
	struct list_head invalidation_requests;
478

479
	struct io_tracker tracker;
480 481 482 483 484

	struct work_struct commit_ws;
	struct batcher committer;

	struct rw_semaphore background_work_lock;
J
Joe Thornber 已提交
485 486 487 488 489
};

struct per_bio_data {
	bool tick:1;
	unsigned req_nr:2;
490
	struct dm_bio_prison_cell_v2 *cell;
491
	struct dm_hook_info hook_info;
492
	sector_t len;
493

494 495 496
	/*
	 * writethrough fields.  These MUST remain at the end of this
	 * structure and the 'cache' member must be the first as it
J
Joe Thornber 已提交
497
	 * is used to determine the offset of the writethrough fields.
498
	 */
499 500
	struct cache *cache;
	dm_cblock_t cblock;
501
	struct dm_bio_details bio_details;
J
Joe Thornber 已提交
502 503 504
};

struct dm_cache_migration {
505
	struct continuation k;
J
Joe Thornber 已提交
506 507
	struct cache *cache;

508 509 510
	struct policy_work *op;
	struct bio *overwrite_bio;
	struct dm_bio_prison_cell_v2 *cell;
J
Joe Thornber 已提交
511

512 513
	dm_cblock_t invalidate_cblock;
	dm_oblock_t invalidate_oblock;
J
Joe Thornber 已提交
514 515
};

516 517
/*----------------------------------------------------------------*/

518
static bool writethrough_mode(struct cache *cache)
519
{
520
	return cache->features.io_mode == CM_IO_WRITETHROUGH;
521 522
}

523
static bool writeback_mode(struct cache *cache)
524
{
525
	return cache->features.io_mode == CM_IO_WRITEBACK;
526 527
}

528
static inline bool passthrough_mode(struct cache *cache)
529
{
530
	return unlikely(cache->features.io_mode == CM_IO_PASSTHROUGH);
531 532 533 534 535 536 537 538
}

/*----------------------------------------------------------------*/

static void wake_deferred_bio_worker(struct cache *cache)
{
	queue_work(cache->wq, &cache->deferred_bio_worker);
}
J
Joe Thornber 已提交
539

540 541 542 543
static void wake_deferred_writethrough_worker(struct cache *cache)
{
	queue_work(cache->wq, &cache->deferred_writethrough_worker);
}
544

545
static void wake_migration_worker(struct cache *cache)
J
Joe Thornber 已提交
546
{
547
	if (passthrough_mode(cache))
548 549 550
		return;

	queue_work(cache->wq, &cache->migration_worker);
J
Joe Thornber 已提交
551 552 553 554
}

/*----------------------------------------------------------------*/

555
static struct dm_bio_prison_cell_v2 *alloc_prison_cell(struct cache *cache)
J
Joe Thornber 已提交
556
{
557
	return dm_bio_prison_alloc_cell_v2(cache->prison, GFP_NOWAIT);
J
Joe Thornber 已提交
558 559
}

560
static void free_prison_cell(struct cache *cache, struct dm_bio_prison_cell_v2 *cell)
J
Joe Thornber 已提交
561
{
562
	dm_bio_prison_free_cell_v2(cache->prison, cell);
J
Joe Thornber 已提交
563 564
}

565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
static struct dm_cache_migration *alloc_migration(struct cache *cache)
{
	struct dm_cache_migration *mg;

	mg = mempool_alloc(cache->migration_pool, GFP_NOWAIT);
	if (mg) {
		mg->cache = cache;
		atomic_inc(&mg->cache->nr_allocated_migrations);
	}

	return mg;
}

static void free_migration(struct dm_cache_migration *mg)
{
580
	struct cache *cache = mg->cache;
581

582 583 584 585
	if (atomic_dec_and_test(&cache->nr_allocated_migrations))
		wake_up(&cache->migration_wait);

	mempool_free(mg, cache->migration_pool);
586 587
}

588
/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
589

590
static inline dm_oblock_t oblock_succ(dm_oblock_t b)
J
Joe Thornber 已提交
591
{
592
	return to_oblock(from_oblock(b) + 1ull);
J
Joe Thornber 已提交
593 594
}

595
static void build_key(dm_oblock_t begin, dm_oblock_t end, struct dm_cell_key_v2 *key)
J
Joe Thornber 已提交
596
{
597 598 599 600
	key->virtual = 0;
	key->dev = 0;
	key->block_begin = from_oblock(begin);
	key->block_end = from_oblock(end);
J
Joe Thornber 已提交
601 602 603
}

/*
604 605
 * We have two lock levels.  Level 0, which is used to prevent WRITEs, and
 * level 1 which prevents *both* READs and WRITEs.
J
Joe Thornber 已提交
606
 */
607 608 609 610
#define WRITE_LOCK_LEVEL 0
#define READ_WRITE_LOCK_LEVEL 1

static unsigned lock_level(struct bio *bio)
J
Joe Thornber 已提交
611
{
612 613 614 615
	return bio_data_dir(bio) == WRITE ?
		WRITE_LOCK_LEVEL :
		READ_WRITE_LOCK_LEVEL;
}
J
Joe Thornber 已提交
616

617 618 619
/*----------------------------------------------------------------
 * Per bio data
 *--------------------------------------------------------------*/
J
Joe Thornber 已提交
620

621 622 623 624 625
/*
 * If using writeback, leave out struct per_bio_data's writethrough fields.
 */
#define PB_DATA_SIZE_WB (offsetof(struct per_bio_data, cache))
#define PB_DATA_SIZE_WT (sizeof(struct per_bio_data))
J
Joe Thornber 已提交
626

627 628
static size_t get_per_bio_data_size(struct cache *cache)
{
629
	return writethrough_mode(cache) ? PB_DATA_SIZE_WT : PB_DATA_SIZE_WB;
J
Joe Thornber 已提交
630 631
}

632
static struct per_bio_data *get_per_bio_data(struct bio *bio, size_t data_size)
J
Joe Thornber 已提交
633
{
634 635 636 637
	struct per_bio_data *pb = dm_per_bio_data(bio, data_size);
	BUG_ON(!pb);
	return pb;
}
J
Joe Thornber 已提交
638

639 640 641
static struct per_bio_data *init_per_bio_data(struct bio *bio, size_t data_size)
{
	struct per_bio_data *pb = get_per_bio_data(bio, data_size);
J
Joe Thornber 已提交
642

643 644 645 646 647 648
	pb->tick = false;
	pb->req_nr = dm_bio_get_target_bio_nr(bio);
	pb->cell = NULL;
	pb->len = 0;

	return pb;
J
Joe Thornber 已提交
649 650 651 652
}

/*----------------------------------------------------------------*/

653
static void defer_bio(struct cache *cache, struct bio *bio)
J
Joe Thornber 已提交
654
{
655
	unsigned long flags;
J
Joe Thornber 已提交
656

657 658 659 660 661 662
	spin_lock_irqsave(&cache->lock, flags);
	bio_list_add(&cache->deferred_bios, bio);
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_deferred_bio_worker(cache);
}
J
Joe Thornber 已提交
663

664
static void defer_bios(struct cache *cache, struct bio_list *bios)
J
Joe Thornber 已提交
665
{
666
	unsigned long flags;
J
Joe Thornber 已提交
667

668 669 670 671
	spin_lock_irqsave(&cache->lock, flags);
	bio_list_merge(&cache->deferred_bios, bios);
	bio_list_init(bios);
	spin_unlock_irqrestore(&cache->lock, flags);
J
Joe Thornber 已提交
672

673
	wake_deferred_bio_worker(cache);
J
Joe Thornber 已提交
674 675
}

676 677 678
/*----------------------------------------------------------------*/

static bool bio_detain_shared(struct cache *cache, dm_oblock_t oblock, struct bio *bio)
J
Joe Thornber 已提交
679
{
680 681 682 683
	bool r;
	size_t pb_size;
	struct per_bio_data *pb;
	struct dm_cell_key_v2 key;
J
Joe Thornber 已提交
684
	dm_oblock_t end = to_oblock(from_oblock(oblock) + 1ULL);
685
	struct dm_bio_prison_cell_v2 *cell_prealloc, *cell;
J
Joe Thornber 已提交
686

687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
	cell_prealloc = alloc_prison_cell(cache); /* FIXME: allow wait if calling from worker */
	if (!cell_prealloc) {
		defer_bio(cache, bio);
		return false;
	}

	build_key(oblock, end, &key);
	r = dm_cell_get_v2(cache->prison, &key, lock_level(bio), bio, cell_prealloc, &cell);
	if (!r) {
		/*
		 * Failed to get the lock.
		 */
		free_prison_cell(cache, cell_prealloc);
		return r;
	}
J
Joe Thornber 已提交
702

703 704
	if (cell != cell_prealloc)
		free_prison_cell(cache, cell_prealloc);
J
Joe Thornber 已提交
705

706 707 708
	pb_size = get_per_bio_data_size(cache);
	pb = get_per_bio_data(bio, pb_size);
	pb->cell = cell;
J
Joe Thornber 已提交
709 710 711 712

	return r;
}

J
Joe Thornber 已提交
713
/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
714 715 716 717 718 719

static bool is_dirty(struct cache *cache, dm_cblock_t b)
{
	return test_bit(from_cblock(b), cache->dirty_bitset);
}

720
static void set_dirty(struct cache *cache, dm_cblock_t cblock)
J
Joe Thornber 已提交
721 722
{
	if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset)) {
723
		atomic_inc(&cache->nr_dirty);
724
		policy_set_dirty(cache->policy, cblock);
J
Joe Thornber 已提交
725 726 727
	}
}

728 729 730 731 732 733 734 735 736 737 738 739
/*
 * These two are called when setting after migrations to force the policy
 * and dirty bitset to be in sync.
 */
static void force_set_dirty(struct cache *cache, dm_cblock_t cblock)
{
	if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset))
		atomic_inc(&cache->nr_dirty);
	policy_set_dirty(cache->policy, cblock);
}

static void force_clear_dirty(struct cache *cache, dm_cblock_t cblock)
J
Joe Thornber 已提交
740 741
{
	if (test_and_clear_bit(from_cblock(cblock), cache->dirty_bitset)) {
742
		if (atomic_dec_return(&cache->nr_dirty) == 0)
J
Joe Thornber 已提交
743 744
			dm_table_event(cache->ti->table);
	}
745 746

	policy_clear_dirty(cache->policy, cblock);
J
Joe Thornber 已提交
747 748 749
}

/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
750

J
Joe Thornber 已提交
751 752 753 754 755
static bool block_size_is_power_of_two(struct cache *cache)
{
	return cache->sectors_per_block_shift >= 0;
}

756 757 758 759
/* gcc on ARM generates spurious references to __udivdi3 and __umoddi3 */
#if defined(CONFIG_ARM) && __GNUC__ == 4 && __GNUC_MINOR__ <= 6
__always_inline
#endif
760 761 762 763 764 765 766
static dm_block_t block_div(dm_block_t b, uint32_t n)
{
	do_div(b, n);

	return b;
}

J
Joe Thornber 已提交
767
static dm_block_t oblocks_per_dblock(struct cache *cache)
768
{
J
Joe Thornber 已提交
769
	dm_block_t oblocks = cache->discard_block_size;
770

J
Joe Thornber 已提交
771 772
	if (block_size_is_power_of_two(cache))
		oblocks >>= cache->sectors_per_block_shift;
773
	else
J
Joe Thornber 已提交
774
		oblocks = block_div(oblocks, cache->sectors_per_block);
775

J
Joe Thornber 已提交
776 777 778 779 780 781 782 783
	return oblocks;
}

static dm_dblock_t oblock_to_dblock(struct cache *cache, dm_oblock_t oblock)
{
	return to_dblock(block_div(from_oblock(oblock),
				   oblocks_per_dblock(cache)));
}
784 785

static void set_discard(struct cache *cache, dm_dblock_t b)
J
Joe Thornber 已提交
786 787 788
{
	unsigned long flags;

J
Joe Thornber 已提交
789
	BUG_ON(from_dblock(b) >= from_dblock(cache->discard_nr_blocks));
J
Joe Thornber 已提交
790 791 792
	atomic_inc(&cache->stats.discard_count);

	spin_lock_irqsave(&cache->lock, flags);
793
	set_bit(from_dblock(b), cache->discard_bitset);
J
Joe Thornber 已提交
794 795 796
	spin_unlock_irqrestore(&cache->lock, flags);
}

797
static void clear_discard(struct cache *cache, dm_dblock_t b)
J
Joe Thornber 已提交
798 799 800 801
{
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
802
	clear_bit(from_dblock(b), cache->discard_bitset);
J
Joe Thornber 已提交
803 804 805
	spin_unlock_irqrestore(&cache->lock, flags);
}

806
static bool is_discarded(struct cache *cache, dm_dblock_t b)
J
Joe Thornber 已提交
807 808 809 810 811
{
	int r;
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
812
	r = test_bit(from_dblock(b), cache->discard_bitset);
J
Joe Thornber 已提交
813 814 815 816 817 818 819 820 821 822 823
	spin_unlock_irqrestore(&cache->lock, flags);

	return r;
}

static bool is_discarded_oblock(struct cache *cache, dm_oblock_t b)
{
	int r;
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
824 825
	r = test_bit(from_dblock(oblock_to_dblock(cache, b)),
		     cache->discard_bitset);
J
Joe Thornber 已提交
826 827 828 829 830
	spin_unlock_irqrestore(&cache->lock, flags);

	return r;
}

831 832 833 834
/*----------------------------------------------------------------
 * Remapping
 *--------------------------------------------------------------*/
static void remap_to_origin(struct cache *cache, struct bio *bio)
J
Joe Thornber 已提交
835
{
836
	bio_set_dev(bio, cache->origin_dev->bdev);
J
Joe Thornber 已提交
837 838 839 840 841
}

static void remap_to_cache(struct cache *cache, struct bio *bio,
			   dm_cblock_t cblock)
{
842
	sector_t bi_sector = bio->bi_iter.bi_sector;
843
	sector_t block = from_cblock(cblock);
J
Joe Thornber 已提交
844

845
	bio_set_dev(bio, cache->cache_dev->bdev);
J
Joe Thornber 已提交
846
	if (!block_size_is_power_of_two(cache))
847
		bio->bi_iter.bi_sector =
848
			(block * cache->sectors_per_block) +
849
			sector_div(bi_sector, cache->sectors_per_block);
J
Joe Thornber 已提交
850
	else
851
		bio->bi_iter.bi_sector =
852
			(block << cache->sectors_per_block_shift) |
853
			(bi_sector & (cache->sectors_per_block - 1));
J
Joe Thornber 已提交
854 855 856 857 858
}

static void check_if_tick_bio_needed(struct cache *cache, struct bio *bio)
{
	unsigned long flags;
859 860
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
J
Joe Thornber 已提交
861 862

	spin_lock_irqsave(&cache->lock, flags);
863
	if (cache->need_tick_bio && !op_is_flush(bio->bi_opf) &&
M
Mike Christie 已提交
864
	    bio_op(bio) != REQ_OP_DISCARD) {
J
Joe Thornber 已提交
865 866 867 868 869 870 871
		pb->tick = true;
		cache->need_tick_bio = false;
	}
	spin_unlock_irqrestore(&cache->lock, flags);
}

static void remap_to_origin_clear_discard(struct cache *cache, struct bio *bio,
872
					  dm_oblock_t oblock)
J
Joe Thornber 已提交
873
{
874
	// FIXME: this is called way too much.
J
Joe Thornber 已提交
875 876 877
	check_if_tick_bio_needed(cache, bio);
	remap_to_origin(cache, bio);
	if (bio_data_dir(bio) == WRITE)
878
		clear_discard(cache, oblock_to_dblock(cache, oblock));
J
Joe Thornber 已提交
879 880 881 882 883
}

static void remap_to_cache_dirty(struct cache *cache, struct bio *bio,
				 dm_oblock_t oblock, dm_cblock_t cblock)
{
884
	check_if_tick_bio_needed(cache, bio);
J
Joe Thornber 已提交
885 886
	remap_to_cache(cache, bio, cblock);
	if (bio_data_dir(bio) == WRITE) {
887
		set_dirty(cache, cblock);
888
		clear_discard(cache, oblock_to_dblock(cache, oblock));
J
Joe Thornber 已提交
889 890 891 892 893
	}
}

static dm_oblock_t get_bio_block(struct cache *cache, struct bio *bio)
{
894
	sector_t block_nr = bio->bi_iter.bi_sector;
J
Joe Thornber 已提交
895 896 897 898 899 900 901 902 903

	if (!block_size_is_power_of_two(cache))
		(void) sector_div(block_nr, cache->sectors_per_block);
	else
		block_nr >>= cache->sectors_per_block_shift;

	return to_oblock(block_nr);
}

904 905
static bool accountable_bio(struct cache *cache, struct bio *bio)
{
906
	return bio_op(bio) != REQ_OP_DISCARD;
907 908 909 910 911 912 913 914 915
}

static void accounted_begin(struct cache *cache, struct bio *bio)
{
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

	if (accountable_bio(cache, bio)) {
		pb->len = bio_sectors(bio);
916
		iot_io_begin(&cache->tracker, pb->len);
917 918 919 920 921 922 923 924
	}
}

static void accounted_complete(struct cache *cache, struct bio *bio)
{
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

925
	iot_io_end(&cache->tracker, pb->len);
926 927 928 929 930 931 932 933
}

static void accounted_request(struct cache *cache, struct bio *bio)
{
	accounted_begin(cache, bio);
	generic_make_request(bio);
}

934
static void issue_op(struct bio *bio, void *context)
935
{
936 937
	struct cache *cache = context;
	accounted_request(cache, bio);
938 939
}

940 941 942 943 944 945 946 947
static void defer_writethrough_bio(struct cache *cache, struct bio *bio)
{
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
	bio_list_add(&cache->deferred_writethrough_bios, bio);
	spin_unlock_irqrestore(&cache->lock, flags);

948
	wake_deferred_writethrough_worker(cache);
949 950
}

951
static void writethrough_endio(struct bio *bio)
952
{
953
	struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
954 955

	dm_unhook_bio(&pb->hook_info, bio);
956

957
	if (bio->bi_status) {
958
		bio_endio(bio);
959 960 961
		return;
	}

962
	dm_bio_restore(&pb->bio_details, bio);
963 964 965 966
	remap_to_cache(pb->cache, bio, pb->cblock);

	/*
	 * We can't issue this bio directly, since we're in interrupt
J
Joe Thornber 已提交
967
	 * context.  So it gets put on a bio list for processing by the
968 969 970 971 972 973
	 * worker thread.
	 */
	defer_writethrough_bio(pb->cache, bio);
}

/*
974
 * FIXME: send in parallel, huge latency as is.
975 976 977 978 979 980 981 982
 * When running in writethrough mode we need to send writes to clean blocks
 * to both the cache and origin devices.  In future we'd like to clone the
 * bio and send them in parallel, but for now we're doing them in
 * series as this is easier.
 */
static void remap_to_origin_then_cache(struct cache *cache, struct bio *bio,
				       dm_oblock_t oblock, dm_cblock_t cblock)
{
983
	struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
984 985 986

	pb->cache = cache;
	pb->cblock = cblock;
987
	dm_hook_bio(&pb->hook_info, bio, writethrough_endio, NULL);
988
	dm_bio_record(&pb->bio_details, bio);
989 990 991 992

	remap_to_origin_clear_discard(pb->cache, bio, oblock);
}

993 994 995 996 997 998 999 1000
/*----------------------------------------------------------------
 * Failure modes
 *--------------------------------------------------------------*/
static enum cache_metadata_mode get_cache_mode(struct cache *cache)
{
	return cache->features.mode;
}

1001 1002 1003 1004 1005
static const char *cache_device_name(struct cache *cache)
{
	return dm_device_name(dm_table_get_md(cache->ti->table));
}

1006 1007 1008 1009 1010 1011 1012 1013 1014
static void notify_mode_switch(struct cache *cache, enum cache_metadata_mode mode)
{
	const char *descs[] = {
		"write",
		"read-only",
		"fail"
	};

	dm_table_event(cache->ti->table);
1015 1016
	DMINFO("%s: switching cache to %s mode",
	       cache_device_name(cache), descs[(int)mode]);
1017 1018 1019 1020
}

static void set_cache_mode(struct cache *cache, enum cache_metadata_mode new_mode)
{
1021
	bool needs_check;
1022 1023
	enum cache_metadata_mode old_mode = get_cache_mode(cache);

1024
	if (dm_cache_metadata_needs_check(cache->cmd, &needs_check)) {
1025 1026
		DMERR("%s: unable to read needs_check flag, setting failure mode.",
		      cache_device_name(cache));
1027 1028 1029
		new_mode = CM_FAIL;
	}

1030
	if (new_mode == CM_WRITE && needs_check) {
1031 1032
		DMERR("%s: unable to switch cache to write mode until repaired.",
		      cache_device_name(cache));
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
		if (old_mode != new_mode)
			new_mode = old_mode;
		else
			new_mode = CM_READ_ONLY;
	}

	/* Never move out of fail mode */
	if (old_mode == CM_FAIL)
		new_mode = CM_FAIL;

	switch (new_mode) {
	case CM_FAIL:
	case CM_READ_ONLY:
		dm_cache_metadata_set_read_only(cache->cmd);
		break;

	case CM_WRITE:
		dm_cache_metadata_set_read_write(cache->cmd);
		break;
	}

	cache->features.mode = new_mode;

	if (new_mode != old_mode)
		notify_mode_switch(cache, new_mode);
}

static void abort_transaction(struct cache *cache)
{
1062 1063
	const char *dev_name = cache_device_name(cache);

1064 1065 1066 1067
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return;

	if (dm_cache_metadata_set_needs_check(cache->cmd)) {
1068
		DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
1069 1070 1071
		set_cache_mode(cache, CM_FAIL);
	}

1072
	DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
1073
	if (dm_cache_metadata_abort(cache->cmd)) {
1074
		DMERR("%s: failed to abort metadata transaction", dev_name);
1075 1076 1077 1078 1079 1080
		set_cache_mode(cache, CM_FAIL);
	}
}

static void metadata_operation_failed(struct cache *cache, const char *op, int r)
{
1081 1082
	DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
		    cache_device_name(cache), op, r);
1083 1084 1085 1086
	abort_transaction(cache);
	set_cache_mode(cache, CM_READ_ONLY);
}

1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
/*----------------------------------------------------------------*/

static void load_stats(struct cache *cache)
{
	struct dm_cache_statistics stats;

	dm_cache_metadata_get_stats(cache->cmd, &stats);
	atomic_set(&cache->stats.read_hit, stats.read_hits);
	atomic_set(&cache->stats.read_miss, stats.read_misses);
	atomic_set(&cache->stats.write_hit, stats.write_hits);
	atomic_set(&cache->stats.write_miss, stats.write_misses);
}

static void save_stats(struct cache *cache)
{
	struct dm_cache_statistics stats;

	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return;

	stats.read_hits = atomic_read(&cache->stats.read_hit);
	stats.read_misses = atomic_read(&cache->stats.read_miss);
	stats.write_hits = atomic_read(&cache->stats.write_hit);
	stats.write_misses = atomic_read(&cache->stats.write_miss);

	dm_cache_metadata_set_stats(cache->cmd, &stats);
}

static void update_stats(struct cache_stats *stats, enum policy_operation op)
{
	switch (op) {
	case POLICY_PROMOTE:
		atomic_inc(&stats->promotion);
		break;

	case POLICY_DEMOTE:
		atomic_inc(&stats->demotion);
		break;

	case POLICY_WRITEBACK:
		atomic_inc(&stats->writeback);
		break;
	}
}

J
Joe Thornber 已提交
1132 1133 1134 1135 1136 1137
/*----------------------------------------------------------------
 * Migration processing
 *
 * Migration covers moving data from the origin device to the cache, or
 * vice versa.
 *--------------------------------------------------------------*/
1138

1139
static void inc_io_migrations(struct cache *cache)
J
Joe Thornber 已提交
1140
{
1141
	atomic_inc(&cache->nr_io_migrations);
J
Joe Thornber 已提交
1142 1143
}

1144
static void dec_io_migrations(struct cache *cache)
J
Joe Thornber 已提交
1145
{
1146
	atomic_dec(&cache->nr_io_migrations);
J
Joe Thornber 已提交
1147 1148
}

J
Joe Thornber 已提交
1149 1150
static bool discard_or_flush(struct bio *bio)
{
1151
	return bio_op(bio) == REQ_OP_DISCARD || op_is_flush(bio->bi_opf);
J
Joe Thornber 已提交
1152 1153
}

1154 1155
static void calc_discard_block_range(struct cache *cache, struct bio *bio,
				     dm_dblock_t *b, dm_dblock_t *e)
J
Joe Thornber 已提交
1156
{
1157 1158
	sector_t sb = bio->bi_iter.bi_sector;
	sector_t se = bio_end_sector(bio);
J
Joe Thornber 已提交
1159

1160
	*b = to_dblock(dm_sector_div_up(sb, cache->discard_block_size));
J
Joe Thornber 已提交
1161

1162 1163 1164 1165
	if (se - sb < cache->discard_block_size)
		*e = *b;
	else
		*e = to_dblock(block_div(se, cache->discard_block_size));
J
Joe Thornber 已提交
1166 1167
}

1168
/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
1169

1170
static void prevent_background_work(struct cache *cache)
J
Joe Thornber 已提交
1171
{
1172 1173 1174
	lockdep_off();
	down_write(&cache->background_work_lock);
	lockdep_on();
J
Joe Thornber 已提交
1175 1176
}

1177
static void allow_background_work(struct cache *cache)
J
Joe Thornber 已提交
1178
{
1179 1180 1181
	lockdep_off();
	up_write(&cache->background_work_lock);
	lockdep_on();
J
Joe Thornber 已提交
1182 1183
}

1184
static bool background_work_begin(struct cache *cache)
J
Joe Thornber 已提交
1185
{
1186
	bool r;
J
Joe Thornber 已提交
1187

1188 1189 1190
	lockdep_off();
	r = down_read_trylock(&cache->background_work_lock);
	lockdep_on();
J
Joe Thornber 已提交
1191

1192
	return r;
J
Joe Thornber 已提交
1193 1194
}

1195
static void background_work_end(struct cache *cache)
J
Joe Thornber 已提交
1196
{
1197 1198 1199 1200
	lockdep_off();
	up_read(&cache->background_work_lock);
	lockdep_on();
}
J
Joe Thornber 已提交
1201

1202
/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
1203

1204 1205 1206 1207 1208 1209 1210 1211
static bool bio_writes_complete_block(struct cache *cache, struct bio *bio)
{
	return (bio_data_dir(bio) == WRITE) &&
		(bio->bi_iter.bi_size == (cache->sectors_per_block << SECTOR_SHIFT));
}

static bool optimisable_bio(struct cache *cache, struct bio *bio, dm_oblock_t block)
{
1212
	return writeback_mode(cache) &&
1213 1214 1215
		(is_discarded_oblock(cache, block) || bio_writes_complete_block(cache, bio));
}

1216 1217 1218 1219 1220
static void quiesce(struct dm_cache_migration *mg,
		    void (*continuation)(struct work_struct *))
{
	init_continuation(&mg->k, continuation);
	dm_cell_quiesce_v2(mg->cache->prison, mg->cell, &mg->k.ws);
J
Joe Thornber 已提交
1221 1222
}

1223
static struct dm_cache_migration *ws_to_mg(struct work_struct *ws)
J
Joe Thornber 已提交
1224
{
1225 1226
	struct continuation *k = container_of(ws, struct continuation, ws);
	return container_of(k, struct dm_cache_migration, k);
J
Joe Thornber 已提交
1227 1228 1229 1230
}

static void copy_complete(int read_err, unsigned long write_err, void *context)
{
1231
	struct dm_cache_migration *mg = container_of(context, struct dm_cache_migration, k);
J
Joe Thornber 已提交
1232 1233

	if (read_err || write_err)
1234
		mg->k.input = BLK_STS_IOERR;
J
Joe Thornber 已提交
1235

1236
	queue_continuation(mg->cache->wq, &mg->k);
J
Joe Thornber 已提交
1237 1238
}

1239
static int copy(struct dm_cache_migration *mg, bool promote)
J
Joe Thornber 已提交
1240 1241 1242 1243 1244 1245
{
	int r;
	struct dm_io_region o_region, c_region;
	struct cache *cache = mg->cache;

	o_region.bdev = cache->origin_dev->bdev;
1246
	o_region.sector = from_oblock(mg->op->oblock) * cache->sectors_per_block;
J
Joe Thornber 已提交
1247 1248 1249
	o_region.count = cache->sectors_per_block;

	c_region.bdev = cache->cache_dev->bdev;
1250
	c_region.sector = from_cblock(mg->op->cblock) * cache->sectors_per_block;
J
Joe Thornber 已提交
1251 1252
	c_region.count = cache->sectors_per_block;

1253 1254 1255 1256
	if (promote)
		r = dm_kcopyd_copy(cache->copier, &o_region, 1, &c_region, 0, copy_complete, &mg->k);
	else
		r = dm_kcopyd_copy(cache->copier, &c_region, 1, &o_region, 0, copy_complete, &mg->k);
J
Joe Thornber 已提交
1257

1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
	return r;
}

static void bio_drop_shared_lock(struct cache *cache, struct bio *bio)
{
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

	if (pb->cell && dm_cell_put_v2(cache->prison, pb->cell))
		free_prison_cell(cache, pb->cell);
	pb->cell = NULL;
J
Joe Thornber 已提交
1269 1270
}

1271
static void overwrite_endio(struct bio *bio)
1272 1273 1274 1275 1276 1277
{
	struct dm_cache_migration *mg = bio->bi_private;
	struct cache *cache = mg->cache;
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

1278 1279
	dm_unhook_bio(&pb->hook_info, bio);

1280 1281
	if (bio->bi_status)
		mg->k.input = bio->bi_status;
1282

1283
	queue_continuation(mg->cache->wq, &mg->k);
1284 1285
}

1286 1287
static void overwrite(struct dm_cache_migration *mg,
		      void (*continuation)(struct work_struct *))
1288
{
1289
	struct bio *bio = mg->overwrite_bio;
1290 1291 1292 1293
	size_t pb_data_size = get_per_bio_data_size(mg->cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

	dm_hook_bio(&pb->hook_info, bio, overwrite_endio, mg);
1294 1295

	/*
1296 1297
	 * The overwrite bio is part of the copy operation, as such it does
	 * not set/clear discard or dirty flags.
1298
	 */
1299 1300 1301 1302 1303 1304
	if (mg->op->op == POLICY_PROMOTE)
		remap_to_cache(mg->cache, bio, mg->op->cblock);
	else
		remap_to_origin(mg->cache, bio);

	init_continuation(&mg->k, continuation);
1305
	accounted_request(mg->cache, bio);
1306 1307
}

1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
/*
 * Migration steps:
 *
 * 1) exclusive lock preventing WRITEs
 * 2) quiesce
 * 3) copy or issue overwrite bio
 * 4) upgrade to exclusive lock preventing READs and WRITEs
 * 5) quiesce
 * 6) update metadata and commit
 * 7) unlock
 */
static void mg_complete(struct dm_cache_migration *mg, bool success)
1320
{
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
	struct bio_list bios;
	struct cache *cache = mg->cache;
	struct policy_work *op = mg->op;
	dm_cblock_t cblock = op->cblock;

	if (success)
		update_stats(&cache->stats, op->op);

	switch (op->op) {
	case POLICY_PROMOTE:
		clear_discard(cache, oblock_to_dblock(cache, op->oblock));
		policy_complete_background_work(cache->policy, op, success);

		if (mg->overwrite_bio) {
			if (success)
				force_set_dirty(cache, cblock);
1337 1338
			else if (mg->k.input)
				mg->overwrite_bio->bi_status = mg->k.input;
1339
			else
1340
				mg->overwrite_bio->bi_status = BLK_STS_IOERR;
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377
			bio_endio(mg->overwrite_bio);
		} else {
			if (success)
				force_clear_dirty(cache, cblock);
			dec_io_migrations(cache);
		}
		break;

	case POLICY_DEMOTE:
		/*
		 * We clear dirty here to update the nr_dirty counter.
		 */
		if (success)
			force_clear_dirty(cache, cblock);
		policy_complete_background_work(cache->policy, op, success);
		dec_io_migrations(cache);
		break;

	case POLICY_WRITEBACK:
		if (success)
			force_clear_dirty(cache, cblock);
		policy_complete_background_work(cache->policy, op, success);
		dec_io_migrations(cache);
		break;
	}

	bio_list_init(&bios);
	if (mg->cell) {
		if (dm_cell_unlock_v2(cache->prison, mg->cell, &bios))
			free_prison_cell(cache, mg->cell);
	}

	free_migration(mg);
	defer_bios(cache, &bios);
	wake_migration_worker(cache);

	background_work_end(cache);
1378 1379
}

1380
static void mg_success(struct work_struct *ws)
J
Joe Thornber 已提交
1381
{
1382 1383
	struct dm_cache_migration *mg = ws_to_mg(ws);
	mg_complete(mg, mg->k.input == 0);
J
Joe Thornber 已提交
1384 1385
}

1386
static void mg_update_metadata(struct work_struct *ws)
J
Joe Thornber 已提交
1387
{
1388 1389
	int r;
	struct dm_cache_migration *mg = ws_to_mg(ws);
J
Joe Thornber 已提交
1390
	struct cache *cache = mg->cache;
1391
	struct policy_work *op = mg->op;
J
Joe Thornber 已提交
1392

1393 1394 1395 1396 1397 1398 1399
	switch (op->op) {
	case POLICY_PROMOTE:
		r = dm_cache_insert_mapping(cache->cmd, op->cblock, op->oblock);
		if (r) {
			DMERR_LIMIT("%s: migration failed; couldn't insert mapping",
				    cache_device_name(cache));
			metadata_operation_failed(cache, "dm_cache_insert_mapping", r);
J
Joe Thornber 已提交
1400

1401 1402 1403 1404 1405
			mg_complete(mg, false);
			return;
		}
		mg_complete(mg, true);
		break;
1406

1407 1408 1409 1410 1411 1412
	case POLICY_DEMOTE:
		r = dm_cache_remove_mapping(cache->cmd, op->cblock);
		if (r) {
			DMERR_LIMIT("%s: migration failed; couldn't update on disk metadata",
				    cache_device_name(cache));
			metadata_operation_failed(cache, "dm_cache_remove_mapping", r);
J
Joe Thornber 已提交
1413

1414
			mg_complete(mg, false);
1415 1416 1417
			return;
		}

1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
		/*
		 * It would be nice if we only had to commit when a REQ_FLUSH
		 * comes through.  But there's one scenario that we have to
		 * look out for:
		 *
		 * - vblock x in a cache block
		 * - domotion occurs
		 * - cache block gets reallocated and over written
		 * - crash
		 *
		 * When we recover, because there was no commit the cache will
		 * rollback to having the data for vblock x in the cache block.
		 * But the cache block has since been overwritten, so it'll end
		 * up pointing to data that was never in 'x' during the history
		 * of the device.
		 *
		 * To avoid this issue we require a commit as part of the
		 * demotion operation.
		 */
		init_continuation(&mg->k, mg_success);
		continue_after_commit(&cache->committer, &mg->k);
		schedule_commit(&cache->committer);
		break;

	case POLICY_WRITEBACK:
		mg_complete(mg, true);
		break;
J
Joe Thornber 已提交
1445
	}
J
Joe Thornber 已提交
1446 1447
}

1448
static void mg_update_metadata_after_copy(struct work_struct *ws)
J
Joe Thornber 已提交
1449
{
1450 1451 1452 1453 1454 1455 1456
	struct dm_cache_migration *mg = ws_to_mg(ws);

	/*
	 * Did the copy succeed?
	 */
	if (mg->k.input)
		mg_complete(mg, false);
J
Joe Thornber 已提交
1457
	else
1458
		mg_update_metadata(ws);
J
Joe Thornber 已提交
1459 1460
}

1461
static void mg_upgrade_lock(struct work_struct *ws)
J
Joe Thornber 已提交
1462
{
1463 1464
	int r;
	struct dm_cache_migration *mg = ws_to_mg(ws);
J
Joe Thornber 已提交
1465

1466 1467 1468 1469 1470
	/*
	 * Did the copy succeed?
	 */
	if (mg->k.input)
		mg_complete(mg, false);
J
Joe Thornber 已提交
1471

1472
	else {
1473 1474 1475 1476 1477 1478 1479
		/*
		 * Now we want the lock to prevent both reads and writes.
		 */
		r = dm_cell_lock_promote_v2(mg->cache->prison, mg->cell,
					    READ_WRITE_LOCK_LEVEL);
		if (r < 0)
			mg_complete(mg, false);
J
Joe Thornber 已提交
1480

1481 1482
		else if (r)
			quiesce(mg, mg_update_metadata);
J
Joe Thornber 已提交
1483

1484 1485
		else
			mg_update_metadata(ws);
1486
	}
J
Joe Thornber 已提交
1487 1488
}

1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
static void mg_full_copy(struct work_struct *ws)
{
	struct dm_cache_migration *mg = ws_to_mg(ws);
	struct cache *cache = mg->cache;
	struct policy_work *op = mg->op;
	bool is_policy_promote = (op->op == POLICY_PROMOTE);

	if ((!is_policy_promote && !is_dirty(cache, op->cblock)) ||
	    is_discarded_oblock(cache, op->oblock)) {
		mg_upgrade_lock(ws);
		return;
	}

	init_continuation(&mg->k, mg_upgrade_lock);

	if (copy(mg, is_policy_promote)) {
		DMERR_LIMIT("%s: migration copy failed", cache_device_name(cache));
		mg->k.input = BLK_STS_IOERR;
		mg_complete(mg, false);
	}
}

1511
static void mg_copy(struct work_struct *ws)
J
Joe Thornber 已提交
1512
{
1513
	struct dm_cache_migration *mg = ws_to_mg(ws);
J
Joe Thornber 已提交
1514

1515
	if (mg->overwrite_bio) {
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
		/*
		 * No exclusive lock was held when we last checked if the bio
		 * was optimisable.  So we have to check again in case things
		 * have changed (eg, the block may no longer be discarded).
		 */
		if (!optimisable_bio(mg->cache, mg->overwrite_bio, mg->op->oblock)) {
			/*
			 * Fallback to a real full copy after doing some tidying up.
			 */
			bool rb = bio_detain_shared(mg->cache, mg->op->oblock, mg->overwrite_bio);
			BUG_ON(rb); /* An exclussive lock must _not_ be held for this block */
			mg->overwrite_bio = NULL;
			inc_io_migrations(mg->cache);
			mg_full_copy(ws);
			return;
		}

1533 1534 1535 1536 1537 1538 1539 1540
		/*
		 * It's safe to do this here, even though it's new data
		 * because all IO has been locked out of the block.
		 *
		 * mg_lock_writes() already took READ_WRITE_LOCK_LEVEL
		 * so _not_ using mg_upgrade_lock() as continutation.
		 */
		overwrite(mg, mg_update_metadata_after_copy);
J
Joe Thornber 已提交
1541

1542 1543
	} else
		mg_full_copy(ws);
J
Joe Thornber 已提交
1544 1545
}

1546
static int mg_lock_writes(struct dm_cache_migration *mg)
J
Joe Thornber 已提交
1547
{
1548 1549
	int r;
	struct dm_cell_key_v2 key;
J
Joe Thornber 已提交
1550
	struct cache *cache = mg->cache;
1551
	struct dm_bio_prison_cell_v2 *prealloc;
J
Joe Thornber 已提交
1552

1553 1554 1555 1556 1557 1558
	prealloc = alloc_prison_cell(cache);
	if (!prealloc) {
		DMERR_LIMIT("%s: alloc_prison_cell failed", cache_device_name(cache));
		mg_complete(mg, false);
		return -ENOMEM;
	}
J
Joe Thornber 已提交
1559

1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573
	/*
	 * Prevent writes to the block, but allow reads to continue.
	 * Unless we're using an overwrite bio, in which case we lock
	 * everything.
	 */
	build_key(mg->op->oblock, oblock_succ(mg->op->oblock), &key);
	r = dm_cell_lock_v2(cache->prison, &key,
			    mg->overwrite_bio ?  READ_WRITE_LOCK_LEVEL : WRITE_LOCK_LEVEL,
			    prealloc, &mg->cell);
	if (r < 0) {
		free_prison_cell(cache, prealloc);
		mg_complete(mg, false);
		return r;
	}
J
Joe Thornber 已提交
1574

1575 1576
	if (mg->cell != prealloc)
		free_prison_cell(cache, prealloc);
J
Joe Thornber 已提交
1577

1578 1579 1580 1581
	if (r == 0)
		mg_copy(&mg->k.ws);
	else
		quiesce(mg, mg_copy);
J
Joe Thornber 已提交
1582

1583
	return 0;
J
Joe Thornber 已提交
1584 1585
}

1586
static int mg_start(struct cache *cache, struct policy_work *op, struct bio *bio)
J
Joe Thornber 已提交
1587
{
1588
	struct dm_cache_migration *mg;
J
Joe Thornber 已提交
1589

1590 1591 1592 1593
	if (!background_work_begin(cache)) {
		policy_complete_background_work(cache->policy, op, false);
		return -EPERM;
	}
J
Joe Thornber 已提交
1594

1595 1596 1597 1598 1599 1600
	mg = alloc_migration(cache);
	if (!mg) {
		policy_complete_background_work(cache->policy, op, false);
		background_work_end(cache);
		return -ENOMEM;
	}
J
Joe Thornber 已提交
1601

1602
	memset(mg, 0, sizeof(*mg));
J
Joe Thornber 已提交
1603 1604

	mg->cache = cache;
1605 1606 1607 1608 1609
	mg->op = op;
	mg->overwrite_bio = bio;

	if (!bio)
		inc_io_migrations(cache);
J
Joe Thornber 已提交
1610

1611
	return mg_lock_writes(mg);
J
Joe Thornber 已提交
1612 1613
}

J
Joe Thornber 已提交
1614
/*----------------------------------------------------------------
1615
 * invalidation processing
J
Joe Thornber 已提交
1616 1617
 *--------------------------------------------------------------*/

1618
static void invalidate_complete(struct dm_cache_migration *mg, bool success)
J
Joe Thornber 已提交
1619
{
1620 1621
	struct bio_list bios;
	struct cache *cache = mg->cache;
J
Joe Thornber 已提交
1622

1623 1624 1625
	bio_list_init(&bios);
	if (dm_cell_unlock_v2(cache->prison, mg->cell, &bios))
		free_prison_cell(cache, mg->cell);
J
Joe Thornber 已提交
1626

1627 1628
	if (!success && mg->overwrite_bio)
		bio_io_error(mg->overwrite_bio);
J
Joe Thornber 已提交
1629

1630 1631
	free_migration(mg);
	defer_bios(cache, &bios);
J
Joe Thornber 已提交
1632

1633
	background_work_end(cache);
J
Joe Thornber 已提交
1634 1635
}

1636
static void invalidate_completed(struct work_struct *ws)
J
Joe Thornber 已提交
1637
{
1638 1639
	struct dm_cache_migration *mg = ws_to_mg(ws);
	invalidate_complete(mg, !mg->k.input);
J
Joe Thornber 已提交
1640 1641
}

1642
static int invalidate_cblock(struct cache *cache, dm_cblock_t cblock)
J
Joe Thornber 已提交
1643
{
1644 1645 1646 1647 1648 1649 1650
	int r = policy_invalidate_mapping(cache->policy, cblock);
	if (!r) {
		r = dm_cache_remove_mapping(cache->cmd, cblock);
		if (r) {
			DMERR_LIMIT("%s: invalidation failed; couldn't update on disk metadata",
				    cache_device_name(cache));
			metadata_operation_failed(cache, "dm_cache_remove_mapping", r);
J
Joe Thornber 已提交
1651 1652
		}

1653 1654 1655 1656 1657
	} else if (r == -ENODATA) {
		/*
		 * Harmless, already unmapped.
		 */
		r = 0;
J
Joe Thornber 已提交
1658

1659 1660
	} else
		DMERR("%s: policy_invalidate_mapping failed", cache_device_name(cache));
J
Joe Thornber 已提交
1661

1662
	return r;
J
Joe Thornber 已提交
1663 1664
}

1665
static void invalidate_remove(struct work_struct *ws)
J
Joe Thornber 已提交
1666
{
1667 1668 1669
	int r;
	struct dm_cache_migration *mg = ws_to_mg(ws);
	struct cache *cache = mg->cache;
J
Joe Thornber 已提交
1670

1671 1672 1673 1674
	r = invalidate_cblock(cache, mg->invalidate_cblock);
	if (r) {
		invalidate_complete(mg, false);
		return;
J
Joe Thornber 已提交
1675
	}
1676

1677 1678 1679 1680 1681
	init_continuation(&mg->k, invalidate_completed);
	continue_after_commit(&cache->committer, &mg->k);
	remap_to_origin_clear_discard(cache, mg->overwrite_bio, mg->invalidate_oblock);
	mg->overwrite_bio = NULL;
	schedule_commit(&cache->committer);
J
Joe Thornber 已提交
1682 1683
}

1684
static int invalidate_lock(struct dm_cache_migration *mg)
J
Joe Thornber 已提交
1685
{
1686 1687 1688 1689
	int r;
	struct dm_cell_key_v2 key;
	struct cache *cache = mg->cache;
	struct dm_bio_prison_cell_v2 *prealloc;
J
Joe Thornber 已提交
1690

1691 1692 1693 1694
	prealloc = alloc_prison_cell(cache);
	if (!prealloc) {
		invalidate_complete(mg, false);
		return -ENOMEM;
J
Joe Thornber 已提交
1695 1696
	}

1697 1698 1699 1700 1701 1702 1703
	build_key(mg->invalidate_oblock, oblock_succ(mg->invalidate_oblock), &key);
	r = dm_cell_lock_v2(cache->prison, &key,
			    READ_WRITE_LOCK_LEVEL, prealloc, &mg->cell);
	if (r < 0) {
		free_prison_cell(cache, prealloc);
		invalidate_complete(mg, false);
		return r;
J
Joe Thornber 已提交
1704
	}
1705

1706 1707
	if (mg->cell != prealloc)
		free_prison_cell(cache, prealloc);
J
Joe Thornber 已提交
1708

1709 1710
	if (r)
		quiesce(mg, invalidate_remove);
J
Joe Thornber 已提交
1711

1712 1713 1714 1715 1716 1717 1718 1719
	else {
		/*
		 * We can't call invalidate_remove() directly here because we
		 * might still be in request context.
		 */
		init_continuation(&mg->k, invalidate_remove);
		queue_work(cache->wq, &mg->k.ws);
	}
1720 1721 1722 1723

	return 0;
}

1724 1725
static int invalidate_start(struct cache *cache, dm_cblock_t cblock,
			    dm_oblock_t oblock, struct bio *bio)
1726
{
1727
	struct dm_cache_migration *mg;
J
Joe Thornber 已提交
1728

1729 1730
	if (!background_work_begin(cache))
		return -EPERM;
J
Joe Thornber 已提交
1731

1732 1733 1734 1735
	mg = alloc_migration(cache);
	if (!mg) {
		background_work_end(cache);
		return -ENOMEM;
J
Joe Thornber 已提交
1736
	}
J
Joe Thornber 已提交
1737

1738
	memset(mg, 0, sizeof(*mg));
J
Joe Thornber 已提交
1739

1740 1741 1742 1743
	mg->cache = cache;
	mg->overwrite_bio = bio;
	mg->invalidate_cblock = cblock;
	mg->invalidate_oblock = oblock;
J
Joe Thornber 已提交
1744

1745
	return invalidate_lock(mg);
J
Joe Thornber 已提交
1746 1747
}

1748 1749 1750
/*----------------------------------------------------------------
 * bio processing
 *--------------------------------------------------------------*/
J
Joe Thornber 已提交
1751

1752 1753 1754 1755
enum busy {
	IDLE,
	BUSY
};
J
Joe Thornber 已提交
1756

1757
static enum busy spare_migration_bandwidth(struct cache *cache)
J
Joe Thornber 已提交
1758
{
1759
	bool idle = iot_idle_for(&cache->tracker, HZ);
1760
	sector_t current_volume = (atomic_read(&cache->nr_io_migrations) + 1) *
J
Joe Thornber 已提交
1761
		cache->sectors_per_block;
J
Joe Thornber 已提交
1762

1763 1764
	if (idle && current_volume <= cache->migration_threshold)
		return IDLE;
1765
	else
1766
		return BUSY;
J
Joe Thornber 已提交
1767 1768
}

J
Joe Thornber 已提交
1769 1770 1771 1772 1773 1774 1775
static void inc_hit_counter(struct cache *cache, struct bio *bio)
{
	atomic_inc(bio_data_dir(bio) == READ ?
		   &cache->stats.read_hit : &cache->stats.write_hit);
}

static void inc_miss_counter(struct cache *cache, struct bio *bio)
1776
{
J
Joe Thornber 已提交
1777 1778 1779
	atomic_inc(bio_data_dir(bio) == READ ?
		   &cache->stats.read_miss : &cache->stats.write_miss);
}
1780

1781
/*----------------------------------------------------------------*/
1782

1783 1784
static int map_bio(struct cache *cache, struct bio *bio, dm_oblock_t block,
		   bool *commit_needed)
J
Joe Thornber 已提交
1785
{
1786 1787 1788 1789 1790
	int r, data_dir;
	bool rb, background_queued;
	dm_cblock_t cblock;
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
J
Joe Thornber 已提交
1791

1792
	*commit_needed = false;
J
Joe Thornber 已提交
1793

1794 1795
	rb = bio_detain_shared(cache, block, bio);
	if (!rb) {
J
Joe Thornber 已提交
1796
		/*
1797 1798 1799 1800
		 * An exclusive lock is held for this block, so we have to
		 * wait.  We set the commit_needed flag so the current
		 * transaction will be committed asap, allowing this lock
		 * to be dropped.
J
Joe Thornber 已提交
1801
		 */
1802 1803
		*commit_needed = true;
		return DM_MAPIO_SUBMITTED;
J
Joe Thornber 已提交
1804
	}
1805

1806
	data_dir = bio_data_dir(bio);
J
Joe Thornber 已提交
1807

1808 1809
	if (optimisable_bio(cache, bio, block)) {
		struct policy_work *op = NULL;
1810

1811 1812 1813 1814 1815 1816
		r = policy_lookup_with_work(cache->policy, block, &cblock, data_dir, true, &op);
		if (unlikely(r && r != -ENOENT)) {
			DMERR_LIMIT("%s: policy_lookup_with_work() failed with r = %d",
				    cache_device_name(cache), r);
			bio_io_error(bio);
			return DM_MAPIO_SUBMITTED;
J
Joe Thornber 已提交
1817 1818
		}

1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832
		if (r == -ENOENT && op) {
			bio_drop_shared_lock(cache, bio);
			BUG_ON(op->op != POLICY_PROMOTE);
			mg_start(cache, op, bio);
			return DM_MAPIO_SUBMITTED;
		}
	} else {
		r = policy_lookup(cache->policy, block, &cblock, data_dir, false, &background_queued);
		if (unlikely(r && r != -ENOENT)) {
			DMERR_LIMIT("%s: policy_lookup() failed with r = %d",
				    cache_device_name(cache), r);
			bio_io_error(bio);
			return DM_MAPIO_SUBMITTED;
		}
J
Joe Thornber 已提交
1833

1834 1835
		if (background_queued)
			wake_migration_worker(cache);
J
Joe Thornber 已提交
1836 1837
	}

1838 1839 1840 1841 1842 1843 1844 1845
	if (r == -ENOENT) {
		/*
		 * Miss.
		 */
		inc_miss_counter(cache, bio);
		if (pb->req_nr == 0) {
			accounted_begin(cache, bio);
			remap_to_origin_clear_discard(cache, bio, block);
J
Joe Thornber 已提交
1846

1847
		} else {
J
Joe Thornber 已提交
1848
			/*
1849 1850
			 * This is a duplicate writethrough io that is no
			 * longer needed because the block has been demoted.
J
Joe Thornber 已提交
1851
			 */
1852 1853 1854 1855 1856 1857 1858 1859
			bio_endio(bio);
			return DM_MAPIO_SUBMITTED;
		}
	} else {
		/*
		 * Hit.
		 */
		inc_hit_counter(cache, bio);
J
Joe Thornber 已提交
1860

1861 1862 1863 1864
		/*
		 * Passthrough always maps to the origin, invalidating any
		 * cache blocks that are written to.
		 */
1865
		if (passthrough_mode(cache)) {
J
Joe Thornber 已提交
1866
			if (bio_data_dir(bio) == WRITE) {
1867
				bio_drop_shared_lock(cache, bio);
J
Joe Thornber 已提交
1868
				atomic_inc(&cache->stats.demotion);
1869 1870
				invalidate_start(cache, cblock, block, bio);
			} else
J
Joe Thornber 已提交
1871
				remap_to_origin_clear_discard(cache, bio, block);
J
Joe Thornber 已提交
1872

J
Joe Thornber 已提交
1873
		} else {
1874
			if (bio_data_dir(bio) == WRITE && writethrough_mode(cache) &&
1875 1876 1877 1878 1879
			    !is_dirty(cache, cblock)) {
				remap_to_origin_then_cache(cache, bio, block, cblock);
				accounted_begin(cache, bio);
			} else
				remap_to_cache_dirty(cache, bio, block, cblock);
J
Joe Thornber 已提交
1880
		}
J
Joe Thornber 已提交
1881
	}
J
Joe Thornber 已提交
1882 1883

	/*
1884
	 * dm core turns FUA requests into a separate payload and FLUSH req.
J
Joe Thornber 已提交
1885
	 */
1886
	if (bio->bi_opf & REQ_FUA) {
J
Joe Thornber 已提交
1887
		/*
1888 1889
		 * issue_after_commit will call accounted_begin a second time.  So
		 * we call accounted_complete() to avoid double accounting.
J
Joe Thornber 已提交
1890
		 */
1891 1892 1893 1894
		accounted_complete(cache, bio);
		issue_after_commit(&cache->committer, bio);
		*commit_needed = true;
		return DM_MAPIO_SUBMITTED;
J
Joe Thornber 已提交
1895 1896
	}

1897
	return DM_MAPIO_REMAPPED;
J
Joe Thornber 已提交
1898 1899
}

1900
static bool process_bio(struct cache *cache, struct bio *bio)
J
Joe Thornber 已提交
1901
{
1902
	bool commit_needed;
J
Joe Thornber 已提交
1903

1904 1905
	if (map_bio(cache, bio, get_bio_block(cache, bio), &commit_needed) == DM_MAPIO_REMAPPED)
		generic_make_request(bio);
J
Joe Thornber 已提交
1906

1907
	return commit_needed;
J
Joe Thornber 已提交
1908 1909
}

1910 1911 1912 1913
/*
 * A non-zero return indicates read_only or fail_io mode.
 */
static int commit(struct cache *cache, bool clean_shutdown)
1914
{
1915
	int r;
1916

1917 1918
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;
1919

1920 1921 1922 1923
	atomic_inc(&cache->stats.commit_count);
	r = dm_cache_commit(cache->cmd, clean_shutdown);
	if (r)
		metadata_operation_failed(cache, "dm_cache_commit", r);
1924

1925
	return r;
1926 1927
}

1928 1929 1930
/*
 * Used by the batcher.
 */
1931
static blk_status_t commit_op(void *context)
J
Joe Thornber 已提交
1932
{
1933
	struct cache *cache = context;
J
Joe Thornber 已提交
1934

1935
	if (dm_cache_changed_this_transaction(cache->cmd))
1936
		return errno_to_blk_status(commit(cache, false));
J
Joe Thornber 已提交
1937

1938
	return 0;
J
Joe Thornber 已提交
1939 1940
}

1941
/*----------------------------------------------------------------*/
1942

1943
static bool process_flush_bio(struct cache *cache, struct bio *bio)
1944
{
1945 1946
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
1947

1948 1949 1950 1951
	if (!pb->req_nr)
		remap_to_origin(cache, bio);
	else
		remap_to_cache(cache, bio, 0);
1952

1953 1954
	issue_after_commit(&cache->committer, bio);
	return true;
1955 1956
}

1957
static bool process_discard_bio(struct cache *cache, struct bio *bio)
1958
{
1959
	dm_dblock_t b, e;
1960

1961 1962 1963 1964 1965 1966 1967
	// FIXME: do we need to lock the region?  Or can we just assume the
	// user wont be so foolish as to issue discard concurrently with
	// other IO?
	calc_discard_block_range(cache, bio, &b, &e);
	while (b != e) {
		set_discard(cache, b);
		b = to_dblock(from_dblock(b) + 1);
J
Joe Thornber 已提交
1968
	}
1969

1970
	bio_endio(bio);
1971

1972
	return false;
J
Joe Thornber 已提交
1973 1974
}

1975
static void process_deferred_bios(struct work_struct *ws)
1976
{
1977
	struct cache *cache = container_of(ws, struct cache, deferred_bio_worker);
1978

J
Joe Thornber 已提交
1979
	unsigned long flags;
1980
	bool commit_needed = false;
J
Joe Thornber 已提交
1981 1982
	struct bio_list bios;
	struct bio *bio;
1983

J
Joe Thornber 已提交
1984 1985 1986
	bio_list_init(&bios);

	spin_lock_irqsave(&cache->lock, flags);
1987 1988
	bio_list_merge(&bios, &cache->deferred_bios);
	bio_list_init(&cache->deferred_bios);
J
Joe Thornber 已提交
1989 1990
	spin_unlock_irqrestore(&cache->lock, flags);

1991 1992 1993
	while ((bio = bio_list_pop(&bios))) {
		if (bio->bi_opf & REQ_PREFLUSH)
			commit_needed = process_flush_bio(cache, bio) || commit_needed;
J
Joe Thornber 已提交
1994

1995 1996 1997 1998 1999 2000 2001 2002 2003
		else if (bio_op(bio) == REQ_OP_DISCARD)
			commit_needed = process_discard_bio(cache, bio) || commit_needed;

		else
			commit_needed = process_bio(cache, bio) || commit_needed;
	}

	if (commit_needed)
		schedule_commit(&cache->committer);
J
Joe Thornber 已提交
2004 2005
}

2006
static void process_deferred_writethrough_bios(struct work_struct *ws)
J
Joe Thornber 已提交
2007
{
2008 2009
	struct cache *cache = container_of(ws, struct cache, deferred_writethrough_worker);

J
Joe Thornber 已提交
2010
	unsigned long flags;
2011 2012 2013 2014
	struct bio_list bios;
	struct bio *bio;

	bio_list_init(&bios);
J
Joe Thornber 已提交
2015 2016

	spin_lock_irqsave(&cache->lock, flags);
2017 2018
	bio_list_merge(&bios, &cache->deferred_writethrough_bios);
	bio_list_init(&cache->deferred_writethrough_bios);
J
Joe Thornber 已提交
2019 2020
	spin_unlock_irqrestore(&cache->lock, flags);

2021
	/*
2022
	 * These bios have already been through accounted_begin()
2023
	 */
2024
	while ((bio = bio_list_pop(&bios)))
2025
		generic_make_request(bio);
J
Joe Thornber 已提交
2026 2027
}

J
Joe Thornber 已提交
2028 2029 2030
/*----------------------------------------------------------------
 * Main worker loop
 *--------------------------------------------------------------*/
J
Joe Thornber 已提交
2031 2032

static void requeue_deferred_bios(struct cache *cache)
J
Joe Thornber 已提交
2033 2034 2035 2036 2037 2038 2039 2040
{
	struct bio *bio;
	struct bio_list bios;

	bio_list_init(&bios);
	bio_list_merge(&bios, &cache->deferred_bios);
	bio_list_init(&cache->deferred_bios);

2041
	while ((bio = bio_list_pop(&bios))) {
2042
		bio->bi_status = BLK_STS_DM_REQUEUE;
2043 2044
		bio_endio(bio);
	}
J
Joe Thornber 已提交
2045 2046 2047 2048 2049 2050 2051 2052 2053
}

/*
 * We want to commit periodically so that not too much
 * unwritten metadata builds up.
 */
static void do_waker(struct work_struct *ws)
{
	struct cache *cache = container_of(to_delayed_work(ws), struct cache, waker);
2054

2055
	policy_tick(cache->policy, true);
2056 2057
	wake_migration_worker(cache);
	schedule_commit(&cache->committer);
J
Joe Thornber 已提交
2058 2059 2060
	queue_delayed_work(cache->wq, &cache->waker, COMMIT_PERIOD);
}

2061
static void check_migrations(struct work_struct *ws)
J
Joe Thornber 已提交
2062
{
2063 2064 2065 2066
	int r;
	struct policy_work *op;
	struct cache *cache = container_of(ws, struct cache, migration_worker);
	enum busy b;
J
Joe Thornber 已提交
2067

2068 2069
	for (;;) {
		b = spare_migration_bandwidth(cache);
J
Joe Thornber 已提交
2070

2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
		r = policy_get_background_work(cache->policy, b == IDLE, &op);
		if (r == -ENODATA)
			break;

		if (r) {
			DMERR_LIMIT("%s: policy_background_work failed",
				    cache_device_name(cache));
			break;
		}

		r = mg_start(cache, op, NULL);
		if (r)
			break;
	}
J
Joe Thornber 已提交
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
}

/*----------------------------------------------------------------
 * Target methods
 *--------------------------------------------------------------*/

/*
 * This function gets called on the error paths of the constructor, so we
 * have to cope with a partially initialised struct.
 */
static void destroy(struct cache *cache)
{
	unsigned i;

2099
	mempool_destroy(cache->migration_pool);
J
Joe Thornber 已提交
2100 2101

	if (cache->prison)
2102
		dm_bio_prison_destroy_v2(cache->prison);
J
Joe Thornber 已提交
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295

	if (cache->wq)
		destroy_workqueue(cache->wq);

	if (cache->dirty_bitset)
		free_bitset(cache->dirty_bitset);

	if (cache->discard_bitset)
		free_bitset(cache->discard_bitset);

	if (cache->copier)
		dm_kcopyd_client_destroy(cache->copier);

	if (cache->cmd)
		dm_cache_metadata_close(cache->cmd);

	if (cache->metadata_dev)
		dm_put_device(cache->ti, cache->metadata_dev);

	if (cache->origin_dev)
		dm_put_device(cache->ti, cache->origin_dev);

	if (cache->cache_dev)
		dm_put_device(cache->ti, cache->cache_dev);

	if (cache->policy)
		dm_cache_policy_destroy(cache->policy);

	for (i = 0; i < cache->nr_ctr_args ; i++)
		kfree(cache->ctr_args[i]);
	kfree(cache->ctr_args);

	kfree(cache);
}

static void cache_dtr(struct dm_target *ti)
{
	struct cache *cache = ti->private;

	destroy(cache);
}

static sector_t get_dev_size(struct dm_dev *dev)
{
	return i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT;
}

/*----------------------------------------------------------------*/

/*
 * Construct a cache device mapping.
 *
 * cache <metadata dev> <cache dev> <origin dev> <block size>
 *       <#feature args> [<feature arg>]*
 *       <policy> <#policy args> [<policy arg>]*
 *
 * metadata dev    : fast device holding the persistent metadata
 * cache dev	   : fast device holding cached data blocks
 * origin dev	   : slow device holding original data blocks
 * block size	   : cache unit size in sectors
 *
 * #feature args   : number of feature arguments passed
 * feature args    : writethrough.  (The default is writeback.)
 *
 * policy	   : the replacement policy to use
 * #policy args    : an even number of policy arguments corresponding
 *		     to key/value pairs passed to the policy
 * policy args	   : key/value pairs passed to the policy
 *		     E.g. 'sequential_threshold 1024'
 *		     See cache-policies.txt for details.
 *
 * Optional feature arguments are:
 *   writethrough  : write through caching that prohibits cache block
 *		     content from being different from origin block content.
 *		     Without this argument, the default behaviour is to write
 *		     back cache block contents later for performance reasons,
 *		     so they may differ from the corresponding origin blocks.
 */
struct cache_args {
	struct dm_target *ti;

	struct dm_dev *metadata_dev;

	struct dm_dev *cache_dev;
	sector_t cache_sectors;

	struct dm_dev *origin_dev;
	sector_t origin_sectors;

	uint32_t block_size;

	const char *policy_name;
	int policy_argc;
	const char **policy_argv;

	struct cache_features features;
};

static void destroy_cache_args(struct cache_args *ca)
{
	if (ca->metadata_dev)
		dm_put_device(ca->ti, ca->metadata_dev);

	if (ca->cache_dev)
		dm_put_device(ca->ti, ca->cache_dev);

	if (ca->origin_dev)
		dm_put_device(ca->ti, ca->origin_dev);

	kfree(ca);
}

static bool at_least_one_arg(struct dm_arg_set *as, char **error)
{
	if (!as->argc) {
		*error = "Insufficient args";
		return false;
	}

	return true;
}

static int parse_metadata_dev(struct cache_args *ca, struct dm_arg_set *as,
			      char **error)
{
	int r;
	sector_t metadata_dev_size;
	char b[BDEVNAME_SIZE];

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
			  &ca->metadata_dev);
	if (r) {
		*error = "Error opening metadata device";
		return r;
	}

	metadata_dev_size = get_dev_size(ca->metadata_dev);
	if (metadata_dev_size > DM_CACHE_METADATA_MAX_SECTORS_WARNING)
		DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
		       bdevname(ca->metadata_dev->bdev, b), THIN_METADATA_MAX_SECTORS);

	return 0;
}

static int parse_cache_dev(struct cache_args *ca, struct dm_arg_set *as,
			   char **error)
{
	int r;

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
			  &ca->cache_dev);
	if (r) {
		*error = "Error opening cache device";
		return r;
	}
	ca->cache_sectors = get_dev_size(ca->cache_dev);

	return 0;
}

static int parse_origin_dev(struct cache_args *ca, struct dm_arg_set *as,
			    char **error)
{
	int r;

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
			  &ca->origin_dev);
	if (r) {
		*error = "Error opening origin device";
		return r;
	}

	ca->origin_sectors = get_dev_size(ca->origin_dev);
	if (ca->ti->len > ca->origin_sectors) {
		*error = "Device size larger than cached device";
		return -EINVAL;
	}

	return 0;
}

static int parse_block_size(struct cache_args *ca, struct dm_arg_set *as,
			    char **error)
{
2296
	unsigned long block_size;
J
Joe Thornber 已提交
2297 2298 2299 2300

	if (!at_least_one_arg(as, error))
		return -EINVAL;

2301 2302 2303 2304
	if (kstrtoul(dm_shift_arg(as), 10, &block_size) || !block_size ||
	    block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
	    block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
	    block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
J
Joe Thornber 已提交
2305 2306 2307 2308
		*error = "Invalid data block size";
		return -EINVAL;
	}

2309
	if (block_size > ca->cache_sectors) {
J
Joe Thornber 已提交
2310 2311 2312 2313
		*error = "Data block size is larger than the cache device";
		return -EINVAL;
	}

2314
	ca->block_size = block_size;
J
Joe Thornber 已提交
2315 2316 2317 2318 2319 2320 2321

	return 0;
}

static void init_features(struct cache_features *cf)
{
	cf->mode = CM_WRITE;
J
Joe Thornber 已提交
2322
	cf->io_mode = CM_IO_WRITEBACK;
2323
	cf->metadata_version = 1;
J
Joe Thornber 已提交
2324 2325 2326 2327 2328
}

static int parse_features(struct cache_args *ca, struct dm_arg_set *as,
			  char **error)
{
E
Eric Biggers 已提交
2329
	static const struct dm_arg _args[] = {
2330
		{0, 2, "Invalid number of cache feature arguments"},
J
Joe Thornber 已提交
2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
	};

	int r;
	unsigned argc;
	const char *arg;
	struct cache_features *cf = &ca->features;

	init_features(cf);

	r = dm_read_arg_group(_args, as, &argc, error);
	if (r)
		return -EINVAL;

	while (argc--) {
		arg = dm_shift_arg(as);

		if (!strcasecmp(arg, "writeback"))
J
Joe Thornber 已提交
2348
			cf->io_mode = CM_IO_WRITEBACK;
J
Joe Thornber 已提交
2349 2350

		else if (!strcasecmp(arg, "writethrough"))
J
Joe Thornber 已提交
2351 2352 2353 2354
			cf->io_mode = CM_IO_WRITETHROUGH;

		else if (!strcasecmp(arg, "passthrough"))
			cf->io_mode = CM_IO_PASSTHROUGH;
J
Joe Thornber 已提交
2355

2356 2357 2358
		else if (!strcasecmp(arg, "metadata2"))
			cf->metadata_version = 2;

J
Joe Thornber 已提交
2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370
		else {
			*error = "Unrecognised cache feature requested";
			return -EINVAL;
		}
	}

	return 0;
}

static int parse_policy(struct cache_args *ca, struct dm_arg_set *as,
			char **error)
{
E
Eric Biggers 已提交
2371
	static const struct dm_arg _args[] = {
J
Joe Thornber 已提交
2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431
		{0, 1024, "Invalid number of policy arguments"},
	};

	int r;

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	ca->policy_name = dm_shift_arg(as);

	r = dm_read_arg_group(_args, as, &ca->policy_argc, error);
	if (r)
		return -EINVAL;

	ca->policy_argv = (const char **)as->argv;
	dm_consume_args(as, ca->policy_argc);

	return 0;
}

static int parse_cache_args(struct cache_args *ca, int argc, char **argv,
			    char **error)
{
	int r;
	struct dm_arg_set as;

	as.argc = argc;
	as.argv = argv;

	r = parse_metadata_dev(ca, &as, error);
	if (r)
		return r;

	r = parse_cache_dev(ca, &as, error);
	if (r)
		return r;

	r = parse_origin_dev(ca, &as, error);
	if (r)
		return r;

	r = parse_block_size(ca, &as, error);
	if (r)
		return r;

	r = parse_features(ca, &as, error);
	if (r)
		return r;

	r = parse_policy(ca, &as, error);
	if (r)
		return r;

	return 0;
}

/*----------------------------------------------------------------*/

static struct kmem_cache *migration_cache;

A
Alasdair G Kergon 已提交
2432 2433
#define NOT_CORE_OPTION 1

J
Joe Thornber 已提交
2434
static int process_config_option(struct cache *cache, const char *key, const char *value)
A
Alasdair G Kergon 已提交
2435 2436 2437
{
	unsigned long tmp;

J
Joe Thornber 已提交
2438 2439
	if (!strcasecmp(key, "migration_threshold")) {
		if (kstrtoul(value, 10, &tmp))
A
Alasdair G Kergon 已提交
2440 2441 2442 2443 2444 2445 2446 2447 2448
			return -EINVAL;

		cache->migration_threshold = tmp;
		return 0;
	}

	return NOT_CORE_OPTION;
}

J
Joe Thornber 已提交
2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462
static int set_config_value(struct cache *cache, const char *key, const char *value)
{
	int r = process_config_option(cache, key, value);

	if (r == NOT_CORE_OPTION)
		r = policy_set_config_value(cache->policy, key, value);

	if (r)
		DMWARN("bad config value for %s: %s", key, value);

	return r;
}

static int set_config_values(struct cache *cache, int argc, const char **argv)
J
Joe Thornber 已提交
2463 2464 2465 2466 2467 2468 2469 2470 2471
{
	int r = 0;

	if (argc & 1) {
		DMWARN("Odd number of policy arguments given but they should be <key> <value> pairs.");
		return -EINVAL;
	}

	while (argc) {
J
Joe Thornber 已提交
2472 2473 2474
		r = set_config_value(cache, argv[0], argv[1]);
		if (r)
			break;
J
Joe Thornber 已提交
2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485

		argc -= 2;
		argv += 2;
	}

	return r;
}

static int create_cache_policy(struct cache *cache, struct cache_args *ca,
			       char **error)
{
2486 2487 2488 2489 2490
	struct dm_cache_policy *p = dm_cache_policy_create(ca->policy_name,
							   cache->cache_size,
							   cache->origin_sectors,
							   cache->sectors_per_block);
	if (IS_ERR(p)) {
J
Joe Thornber 已提交
2491
		*error = "Error creating cache's policy";
2492
		return PTR_ERR(p);
J
Joe Thornber 已提交
2493
	}
2494
	cache->policy = p;
2495
	BUG_ON(!cache->policy);
J
Joe Thornber 已提交
2496

J
Joe Thornber 已提交
2497
	return 0;
J
Joe Thornber 已提交
2498 2499
}

2500
/*
2501 2502
 * We want the discard block size to be at least the size of the cache
 * block size and have no more than 2^14 discard blocks across the origin.
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516
 */
#define MAX_DISCARD_BLOCKS (1 << 14)

static bool too_many_discard_blocks(sector_t discard_block_size,
				    sector_t origin_size)
{
	(void) sector_div(origin_size, discard_block_size);

	return origin_size > MAX_DISCARD_BLOCKS;
}

static sector_t calculate_discard_block_size(sector_t cache_block_size,
					     sector_t origin_size)
{
2517
	sector_t discard_block_size = cache_block_size;
2518 2519 2520 2521 2522 2523 2524 2525

	if (origin_size)
		while (too_many_discard_blocks(discard_block_size, origin_size))
			discard_block_size *= 2;

	return discard_block_size;
}

2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538
static void set_cache_size(struct cache *cache, dm_cblock_t size)
{
	dm_block_t nr_blocks = from_cblock(size);

	if (nr_blocks > (1 << 20) && cache->cache_size != size)
		DMWARN_LIMIT("You have created a cache device with a lot of individual cache blocks (%llu)\n"
			     "All these mappings can consume a lot of kernel memory, and take some time to read/write.\n"
			     "Please consider increasing the cache block size to reduce the overall cache block count.",
			     (unsigned long long) nr_blocks);

	cache->cache_size = size;
}

2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552
static int is_congested(struct dm_dev *dev, int bdi_bits)
{
	struct request_queue *q = bdev_get_queue(dev->bdev);
	return bdi_congested(q->backing_dev_info, bdi_bits);
}

static int cache_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
{
	struct cache *cache = container_of(cb, struct cache, callbacks);

	return is_congested(cache->origin_dev, bdi_bits) ||
		is_congested(cache->cache_dev, bdi_bits);
}

2553
#define DEFAULT_MIGRATION_THRESHOLD 2048
J
Joe Thornber 已提交
2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575

static int cache_create(struct cache_args *ca, struct cache **result)
{
	int r = 0;
	char **error = &ca->ti->error;
	struct cache *cache;
	struct dm_target *ti = ca->ti;
	dm_block_t origin_blocks;
	struct dm_cache_metadata *cmd;
	bool may_format = ca->features.mode == CM_WRITE;

	cache = kzalloc(sizeof(*cache), GFP_KERNEL);
	if (!cache)
		return -ENOMEM;

	cache->ti = ca->ti;
	ti->private = cache;
	ti->num_flush_bios = 2;
	ti->flush_supported = true;

	ti->num_discard_bios = 1;
	ti->discards_supported = true;
2576
	ti->split_discard_bios = false;
J
Joe Thornber 已提交
2577

2578
	cache->features = ca->features;
2579
	ti->per_io_data_size = get_per_bio_data_size(cache);
J
Joe Thornber 已提交
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590

	cache->callbacks.congested_fn = cache_is_congested;
	dm_table_add_target_callbacks(ti->table, &cache->callbacks);

	cache->metadata_dev = ca->metadata_dev;
	cache->origin_dev = ca->origin_dev;
	cache->cache_dev = ca->cache_dev;

	ca->metadata_dev = ca->origin_dev = ca->cache_dev = NULL;

	origin_blocks = cache->origin_sectors = ca->origin_sectors;
2591
	origin_blocks = block_div(origin_blocks, ca->block_size);
J
Joe Thornber 已提交
2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603
	cache->origin_blocks = to_oblock(origin_blocks);

	cache->sectors_per_block = ca->block_size;
	if (dm_set_target_max_io_len(ti, cache->sectors_per_block)) {
		r = -EINVAL;
		goto bad;
	}

	if (ca->block_size & (ca->block_size - 1)) {
		dm_block_t cache_size = ca->cache_sectors;

		cache->sectors_per_block_shift = -1;
2604
		cache_size = block_div(cache_size, ca->block_size);
2605
		set_cache_size(cache, to_cblock(cache_size));
J
Joe Thornber 已提交
2606 2607
	} else {
		cache->sectors_per_block_shift = __ffs(ca->block_size);
2608
		set_cache_size(cache, to_cblock(ca->cache_sectors >> cache->sectors_per_block_shift));
J
Joe Thornber 已提交
2609 2610 2611 2612 2613
	}

	r = create_cache_policy(cache, ca, error);
	if (r)
		goto bad;
J
Joe Thornber 已提交
2614

J
Joe Thornber 已提交
2615
	cache->policy_nr_args = ca->policy_argc;
J
Joe Thornber 已提交
2616 2617 2618 2619 2620 2621 2622
	cache->migration_threshold = DEFAULT_MIGRATION_THRESHOLD;

	r = set_config_values(cache, ca->policy_argc, ca->policy_argv);
	if (r) {
		*error = "Error setting cache policy's config values";
		goto bad;
	}
J
Joe Thornber 已提交
2623 2624 2625

	cmd = dm_cache_metadata_open(cache->metadata_dev->bdev,
				     ca->block_size, may_format,
2626 2627
				     dm_cache_policy_get_hint_size(cache->policy),
				     ca->features.metadata_version);
J
Joe Thornber 已提交
2628 2629 2630 2631 2632 2633
	if (IS_ERR(cmd)) {
		*error = "Error creating metadata object";
		r = PTR_ERR(cmd);
		goto bad;
	}
	cache->cmd = cmd;
2634 2635 2636 2637 2638 2639
	set_cache_mode(cache, CM_WRITE);
	if (get_cache_mode(cache) != CM_WRITE) {
		*error = "Unable to get write access to metadata, please check/repair metadata.";
		r = -EINVAL;
		goto bad;
	}
J
Joe Thornber 已提交
2640

2641
	if (passthrough_mode(cache)) {
J
Joe Thornber 已提交
2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654
		bool all_clean;

		r = dm_cache_metadata_all_clean(cache->cmd, &all_clean);
		if (r) {
			*error = "dm_cache_metadata_all_clean() failed";
			goto bad;
		}

		if (!all_clean) {
			*error = "Cannot enter passthrough mode unless all blocks are clean";
			r = -EINVAL;
			goto bad;
		}
2655 2656

		policy_allow_migrations(cache->policy, false);
J
Joe Thornber 已提交
2657 2658
	}

J
Joe Thornber 已提交
2659
	spin_lock_init(&cache->lock);
J
Joe Thornber 已提交
2660
	INIT_LIST_HEAD(&cache->deferred_cells);
J
Joe Thornber 已提交
2661
	bio_list_init(&cache->deferred_bios);
2662
	bio_list_init(&cache->deferred_writethrough_bios);
2663 2664
	atomic_set(&cache->nr_allocated_migrations, 0);
	atomic_set(&cache->nr_io_migrations, 0);
J
Joe Thornber 已提交
2665 2666
	init_waitqueue_head(&cache->migration_wait);

2667
	r = -ENOMEM;
2668
	atomic_set(&cache->nr_dirty, 0);
J
Joe Thornber 已提交
2669 2670 2671 2672 2673 2674 2675
	cache->dirty_bitset = alloc_bitset(from_cblock(cache->cache_size));
	if (!cache->dirty_bitset) {
		*error = "could not allocate dirty bitset";
		goto bad;
	}
	clear_bitset(cache->dirty_bitset, from_cblock(cache->cache_size));

2676 2677 2678
	cache->discard_block_size =
		calculate_discard_block_size(cache->sectors_per_block,
					     cache->origin_sectors);
2679 2680
	cache->discard_nr_blocks = to_dblock(dm_sector_div_up(cache->origin_sectors,
							      cache->discard_block_size));
2681
	cache->discard_bitset = alloc_bitset(from_dblock(cache->discard_nr_blocks));
J
Joe Thornber 已提交
2682 2683 2684 2685
	if (!cache->discard_bitset) {
		*error = "could not allocate discard bitset";
		goto bad;
	}
2686
	clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));
J
Joe Thornber 已提交
2687 2688 2689 2690 2691 2692 2693 2694

	cache->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
	if (IS_ERR(cache->copier)) {
		*error = "could not create kcopyd client";
		r = PTR_ERR(cache->copier);
		goto bad;
	}

2695
	cache->wq = alloc_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM, 0);
J
Joe Thornber 已提交
2696 2697 2698 2699
	if (!cache->wq) {
		*error = "could not create workqueue for metadata object";
		goto bad;
	}
2700 2701 2702 2703
	INIT_WORK(&cache->deferred_bio_worker, process_deferred_bios);
	INIT_WORK(&cache->deferred_writethrough_worker,
		  process_deferred_writethrough_bios);
	INIT_WORK(&cache->migration_worker, check_migrations);
J
Joe Thornber 已提交
2704 2705
	INIT_DELAYED_WORK(&cache->waker, do_waker);

2706
	cache->prison = dm_bio_prison_create_v2(cache->wq);
J
Joe Thornber 已提交
2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720
	if (!cache->prison) {
		*error = "could not create bio prison";
		goto bad;
	}

	cache->migration_pool = mempool_create_slab_pool(MIGRATION_POOL_SIZE,
							 migration_cache);
	if (!cache->migration_pool) {
		*error = "Error creating cache's migration mempool";
		goto bad;
	}

	cache->need_tick_bio = true;
	cache->sized = false;
2721
	cache->invalidate = false;
J
Joe Thornber 已提交
2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734
	cache->commit_requested = false;
	cache->loaded_mappings = false;
	cache->loaded_discards = false;

	load_stats(cache);

	atomic_set(&cache->stats.demotion, 0);
	atomic_set(&cache->stats.promotion, 0);
	atomic_set(&cache->stats.copies_avoided, 0);
	atomic_set(&cache->stats.cache_cell_clash, 0);
	atomic_set(&cache->stats.commit_count, 0);
	atomic_set(&cache->stats.discard_count, 0);

2735 2736 2737
	spin_lock_init(&cache->invalidation_lock);
	INIT_LIST_HEAD(&cache->invalidation_requests);

2738 2739
	batcher_init(&cache->committer, commit_op, cache,
		     issue_op, cache, cache->wq);
2740
	iot_init(&cache->tracker);
2741

2742 2743 2744
	init_rwsem(&cache->background_work_lock);
	prevent_background_work(cache);

J
Joe Thornber 已提交
2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793
	*result = cache;
	return 0;
bad:
	destroy(cache);
	return r;
}

static int copy_ctr_args(struct cache *cache, int argc, const char **argv)
{
	unsigned i;
	const char **copy;

	copy = kcalloc(argc, sizeof(*copy), GFP_KERNEL);
	if (!copy)
		return -ENOMEM;
	for (i = 0; i < argc; i++) {
		copy[i] = kstrdup(argv[i], GFP_KERNEL);
		if (!copy[i]) {
			while (i--)
				kfree(copy[i]);
			kfree(copy);
			return -ENOMEM;
		}
	}

	cache->nr_ctr_args = argc;
	cache->ctr_args = copy;

	return 0;
}

static int cache_ctr(struct dm_target *ti, unsigned argc, char **argv)
{
	int r = -EINVAL;
	struct cache_args *ca;
	struct cache *cache = NULL;

	ca = kzalloc(sizeof(*ca), GFP_KERNEL);
	if (!ca) {
		ti->error = "Error allocating memory for cache";
		return -ENOMEM;
	}
	ca->ti = ti;

	r = parse_cache_args(ca, argc, argv, &ti->error);
	if (r)
		goto out;

	r = cache_create(ca, &cache);
2794 2795
	if (r)
		goto out;
J
Joe Thornber 已提交
2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808

	r = copy_ctr_args(cache, argc - 3, (const char **)argv + 3);
	if (r) {
		destroy(cache);
		goto out;
	}

	ti->private = cache;
out:
	destroy_cache_args(ca);
	return r;
}

J
Joe Thornber 已提交
2809 2810 2811
/*----------------------------------------------------------------*/

static int cache_map(struct dm_target *ti, struct bio *bio)
J
Joe Thornber 已提交
2812
{
J
Joe Thornber 已提交
2813 2814
	struct cache *cache = ti->private;

J
Joe Thornber 已提交
2815
	int r;
2816
	bool commit_needed;
J
Joe Thornber 已提交
2817
	dm_oblock_t block = get_bio_block(cache, bio);
2818
	size_t pb_data_size = get_per_bio_data_size(cache);
J
Joe Thornber 已提交
2819

2820
	init_per_bio_data(bio, pb_data_size);
2821
	if (unlikely(from_oblock(block) >= from_oblock(cache->origin_blocks))) {
J
Joe Thornber 已提交
2822 2823 2824 2825 2826
		/*
		 * This can only occur if the io goes to a partial block at
		 * the end of the origin device.  We don't cache these.
		 * Just remap to the origin and carry on.
		 */
2827
		remap_to_origin(cache, bio);
J
Joe Thornber 已提交
2828
		accounted_begin(cache, bio);
J
Joe Thornber 已提交
2829 2830 2831
		return DM_MAPIO_REMAPPED;
	}

J
Joe Thornber 已提交
2832
	if (discard_or_flush(bio)) {
J
Joe Thornber 已提交
2833 2834 2835 2836
		defer_bio(cache, bio);
		return DM_MAPIO_SUBMITTED;
	}

2837 2838 2839
	r = map_bio(cache, bio, block, &commit_needed);
	if (commit_needed)
		schedule_commit(&cache->committer);
J
Joe Thornber 已提交
2840

J
Joe Thornber 已提交
2841
	return r;
J
Joe Thornber 已提交
2842 2843
}

2844 2845
static int cache_end_io(struct dm_target *ti, struct bio *bio,
		blk_status_t *error)
J
Joe Thornber 已提交
2846 2847 2848
{
	struct cache *cache = ti->private;
	unsigned long flags;
2849 2850
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
J
Joe Thornber 已提交
2851 2852

	if (pb->tick) {
2853
		policy_tick(cache->policy, false);
J
Joe Thornber 已提交
2854 2855 2856 2857 2858 2859

		spin_lock_irqsave(&cache->lock, flags);
		cache->need_tick_bio = true;
		spin_unlock_irqrestore(&cache->lock, flags);
	}

2860
	bio_drop_shared_lock(cache, bio);
2861
	accounted_complete(cache, bio);
J
Joe Thornber 已提交
2862

2863
	return DM_ENDIO_DONE;
J
Joe Thornber 已提交
2864 2865 2866 2867
}

static int write_dirty_bitset(struct cache *cache)
{
2868
	int r;
J
Joe Thornber 已提交
2869

2870 2871 2872
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;

2873 2874 2875
	r = dm_cache_set_dirty_bits(cache->cmd, from_cblock(cache->cache_size), cache->dirty_bitset);
	if (r)
		metadata_operation_failed(cache, "dm_cache_set_dirty_bits", r);
J
Joe Thornber 已提交
2876

2877
	return r;
J
Joe Thornber 已提交
2878 2879 2880 2881 2882 2883
}

static int write_discard_bitset(struct cache *cache)
{
	unsigned i, r;

2884 2885 2886
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;

2887 2888
	r = dm_cache_discard_bitset_resize(cache->cmd, cache->discard_block_size,
					   cache->discard_nr_blocks);
J
Joe Thornber 已提交
2889
	if (r) {
2890
		DMERR("%s: could not resize on-disk discard bitset", cache_device_name(cache));
2891
		metadata_operation_failed(cache, "dm_cache_discard_bitset_resize", r);
J
Joe Thornber 已提交
2892 2893 2894
		return r;
	}

2895 2896 2897
	for (i = 0; i < from_dblock(cache->discard_nr_blocks); i++) {
		r = dm_cache_set_discard(cache->cmd, to_dblock(i),
					 is_discarded(cache, to_dblock(i)));
2898 2899
		if (r) {
			metadata_operation_failed(cache, "dm_cache_set_discard", r);
J
Joe Thornber 已提交
2900
			return r;
2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917
		}
	}

	return 0;
}

static int write_hints(struct cache *cache)
{
	int r;

	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;

	r = dm_cache_write_hints(cache->cmd, cache->policy);
	if (r) {
		metadata_operation_failed(cache, "dm_cache_write_hints", r);
		return r;
J
Joe Thornber 已提交
2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931
	}

	return 0;
}

/*
 * returns true on success
 */
static bool sync_metadata(struct cache *cache)
{
	int r1, r2, r3, r4;

	r1 = write_dirty_bitset(cache);
	if (r1)
2932
		DMERR("%s: could not write dirty bitset", cache_device_name(cache));
J
Joe Thornber 已提交
2933 2934 2935

	r2 = write_discard_bitset(cache);
	if (r2)
2936
		DMERR("%s: could not write discard bitset", cache_device_name(cache));
J
Joe Thornber 已提交
2937 2938 2939

	save_stats(cache);

2940
	r3 = write_hints(cache);
J
Joe Thornber 已提交
2941
	if (r3)
2942
		DMERR("%s: could not write hints", cache_device_name(cache));
J
Joe Thornber 已提交
2943 2944 2945 2946 2947 2948

	/*
	 * If writing the above metadata failed, we still commit, but don't
	 * set the clean shutdown flag.  This will effectively force every
	 * dirty bit to be set on reload.
	 */
2949
	r4 = commit(cache, !r1 && !r2 && !r3);
J
Joe Thornber 已提交
2950
	if (r4)
2951
		DMERR("%s: could not write cache metadata", cache_device_name(cache));
J
Joe Thornber 已提交
2952 2953 2954 2955 2956 2957 2958 2959

	return !r1 && !r2 && !r3 && !r4;
}

static void cache_postsuspend(struct dm_target *ti)
{
	struct cache *cache = ti->private;

2960 2961 2962 2963 2964
	prevent_background_work(cache);
	BUG_ON(atomic_read(&cache->nr_io_migrations));

	cancel_delayed_work(&cache->waker);
	flush_workqueue(cache->wq);
2965
	WARN_ON(cache->tracker.in_flight);
2966 2967 2968 2969 2970

	/*
	 * If it's a flush suspend there won't be any deferred bios, so this
	 * call is harmless.
	 */
J
Joe Thornber 已提交
2971
	requeue_deferred_bios(cache);
J
Joe Thornber 已提交
2972

2973 2974
	if (get_cache_mode(cache) == CM_WRITE)
		(void) sync_metadata(cache);
J
Joe Thornber 已提交
2975 2976 2977 2978 2979 2980 2981 2982
}

static int load_mapping(void *context, dm_oblock_t oblock, dm_cblock_t cblock,
			bool dirty, uint32_t hint, bool hint_valid)
{
	int r;
	struct cache *cache = context;

2983 2984 2985 2986 2987 2988
	if (dirty) {
		set_bit(from_cblock(cblock), cache->dirty_bitset);
		atomic_inc(&cache->nr_dirty);
	} else
		clear_bit(from_cblock(cblock), cache->dirty_bitset);

2989
	r = policy_load_mapping(cache->policy, oblock, cblock, dirty, hint, hint_valid);
J
Joe Thornber 已提交
2990 2991 2992 2993 2994 2995
	if (r)
		return r;

	return 0;
}

2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049
/*
 * The discard block size in the on disk metadata is not
 * neccessarily the same as we're currently using.  So we have to
 * be careful to only set the discarded attribute if we know it
 * covers a complete block of the new size.
 */
struct discard_load_info {
	struct cache *cache;

	/*
	 * These blocks are sized using the on disk dblock size, rather
	 * than the current one.
	 */
	dm_block_t block_size;
	dm_block_t discard_begin, discard_end;
};

static void discard_load_info_init(struct cache *cache,
				   struct discard_load_info *li)
{
	li->cache = cache;
	li->discard_begin = li->discard_end = 0;
}

static void set_discard_range(struct discard_load_info *li)
{
	sector_t b, e;

	if (li->discard_begin == li->discard_end)
		return;

	/*
	 * Convert to sectors.
	 */
	b = li->discard_begin * li->block_size;
	e = li->discard_end * li->block_size;

	/*
	 * Then convert back to the current dblock size.
	 */
	b = dm_sector_div_up(b, li->cache->discard_block_size);
	sector_div(e, li->cache->discard_block_size);

	/*
	 * The origin may have shrunk, so we need to check we're still in
	 * bounds.
	 */
	if (e > from_dblock(li->cache->discard_nr_blocks))
		e = from_dblock(li->cache->discard_nr_blocks);

	for (; b < e; b++)
		set_discard(li->cache, to_dblock(b));
}

J
Joe Thornber 已提交
3050
static int load_discard(void *context, sector_t discard_block_size,
3051
			dm_dblock_t dblock, bool discard)
J
Joe Thornber 已提交
3052
{
3053
	struct discard_load_info *li = context;
J
Joe Thornber 已提交
3054

3055
	li->block_size = discard_block_size;
3056

3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075
	if (discard) {
		if (from_dblock(dblock) == li->discard_end)
			/*
			 * We're already in a discard range, just extend it.
			 */
			li->discard_end = li->discard_end + 1ULL;

		else {
			/*
			 * Emit the old range and start a new one.
			 */
			set_discard_range(li);
			li->discard_begin = from_dblock(dblock);
			li->discard_end = li->discard_begin + 1ULL;
		}
	} else {
		set_discard_range(li);
		li->discard_begin = li->discard_end = 0;
	}
J
Joe Thornber 已提交
3076 3077 3078 3079

	return 0;
}

J
Joe Thornber 已提交
3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097
static dm_cblock_t get_cache_dev_size(struct cache *cache)
{
	sector_t size = get_dev_size(cache->cache_dev);
	(void) sector_div(size, cache->sectors_per_block);
	return to_cblock(size);
}

static bool can_resize(struct cache *cache, dm_cblock_t new_size)
{
	if (from_cblock(new_size) > from_cblock(cache->cache_size))
		return true;

	/*
	 * We can't drop a dirty block when shrinking the cache.
	 */
	while (from_cblock(new_size) < from_cblock(cache->cache_size)) {
		new_size = to_cblock(from_cblock(new_size) + 1);
		if (is_dirty(cache, new_size)) {
3098 3099
			DMERR("%s: unable to shrink cache; cache block %llu is dirty",
			      cache_device_name(cache),
J
Joe Thornber 已提交
3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111
			      (unsigned long long) from_cblock(new_size));
			return false;
		}
	}

	return true;
}

static int resize_cache_dev(struct cache *cache, dm_cblock_t new_size)
{
	int r;

3112
	r = dm_cache_resize(cache->cmd, new_size);
J
Joe Thornber 已提交
3113
	if (r) {
3114
		DMERR("%s: could not resize cache metadata", cache_device_name(cache));
3115
		metadata_operation_failed(cache, "dm_cache_resize", r);
J
Joe Thornber 已提交
3116 3117 3118
		return r;
	}

3119
	set_cache_size(cache, new_size);
J
Joe Thornber 已提交
3120 3121 3122 3123

	return 0;
}

J
Joe Thornber 已提交
3124 3125 3126 3127
static int cache_preresume(struct dm_target *ti)
{
	int r = 0;
	struct cache *cache = ti->private;
J
Joe Thornber 已提交
3128
	dm_cblock_t csize = get_cache_dev_size(cache);
J
Joe Thornber 已提交
3129 3130 3131 3132

	/*
	 * Check to see if the cache has resized.
	 */
J
Joe Thornber 已提交
3133 3134 3135
	if (!cache->sized) {
		r = resize_cache_dev(cache, csize);
		if (r)
J
Joe Thornber 已提交
3136 3137 3138
			return r;

		cache->sized = true;
J
Joe Thornber 已提交
3139 3140 3141 3142 3143 3144 3145 3146

	} else if (csize != cache->cache_size) {
		if (!can_resize(cache, csize))
			return -EINVAL;

		r = resize_cache_dev(cache, csize);
		if (r)
			return r;
J
Joe Thornber 已提交
3147 3148 3149
	}

	if (!cache->loaded_mappings) {
3150
		r = dm_cache_load_mappings(cache->cmd, cache->policy,
J
Joe Thornber 已提交
3151 3152
					   load_mapping, cache);
		if (r) {
3153
			DMERR("%s: could not load cache mappings", cache_device_name(cache));
3154
			metadata_operation_failed(cache, "dm_cache_load_mappings", r);
J
Joe Thornber 已提交
3155 3156 3157 3158 3159 3160 3161
			return r;
		}

		cache->loaded_mappings = true;
	}

	if (!cache->loaded_discards) {
3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172
		struct discard_load_info li;

		/*
		 * The discard bitset could have been resized, or the
		 * discard block size changed.  To be safe we start by
		 * setting every dblock to not discarded.
		 */
		clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));

		discard_load_info_init(cache, &li);
		r = dm_cache_load_discards(cache->cmd, load_discard, &li);
J
Joe Thornber 已提交
3173
		if (r) {
3174
			DMERR("%s: could not load origin discards", cache_device_name(cache));
3175
			metadata_operation_failed(cache, "dm_cache_load_discards", r);
J
Joe Thornber 已提交
3176 3177
			return r;
		}
3178
		set_discard_range(&li);
J
Joe Thornber 已提交
3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190

		cache->loaded_discards = true;
	}

	return r;
}

static void cache_resume(struct dm_target *ti)
{
	struct cache *cache = ti->private;

	cache->need_tick_bio = true;
3191
	allow_background_work(cache);
J
Joe Thornber 已提交
3192 3193 3194 3195 3196 3197
	do_waker(&cache->waker.work);
}

/*
 * Status format:
 *
3198 3199
 * <metadata block size> <#used metadata blocks>/<#total metadata blocks>
 * <cache block size> <#used cache blocks>/<#total cache blocks>
J
Joe Thornber 已提交
3200
 * <#read hits> <#read misses> <#write hits> <#write misses>
3201
 * <#demotions> <#promotions> <#dirty>
J
Joe Thornber 已提交
3202 3203
 * <#features> <features>*
 * <#core args> <core args>
3204
 * <policy name> <#policy args> <policy args>* <cache metadata mode> <needs_check>
J
Joe Thornber 已提交
3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216
 */
static void cache_status(struct dm_target *ti, status_type_t type,
			 unsigned status_flags, char *result, unsigned maxlen)
{
	int r = 0;
	unsigned i;
	ssize_t sz = 0;
	dm_block_t nr_free_blocks_metadata = 0;
	dm_block_t nr_blocks_metadata = 0;
	char buf[BDEVNAME_SIZE];
	struct cache *cache = ti->private;
	dm_cblock_t residency;
3217
	bool needs_check;
J
Joe Thornber 已提交
3218 3219 3220

	switch (type) {
	case STATUSTYPE_INFO:
3221 3222 3223
		if (get_cache_mode(cache) == CM_FAIL) {
			DMEMIT("Fail");
			break;
J
Joe Thornber 已提交
3224 3225
		}

3226 3227 3228 3229
		/* Commit to ensure statistics aren't out-of-date */
		if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
			(void) commit(cache, false);

3230
		r = dm_cache_get_free_metadata_block_count(cache->cmd, &nr_free_blocks_metadata);
J
Joe Thornber 已提交
3231
		if (r) {
3232 3233
			DMERR("%s: dm_cache_get_free_metadata_block_count returned %d",
			      cache_device_name(cache), r);
J
Joe Thornber 已提交
3234 3235 3236 3237 3238
			goto err;
		}

		r = dm_cache_get_metadata_dev_size(cache->cmd, &nr_blocks_metadata);
		if (r) {
3239 3240
			DMERR("%s: dm_cache_get_metadata_dev_size returned %d",
			      cache_device_name(cache), r);
J
Joe Thornber 已提交
3241 3242 3243 3244 3245
			goto err;
		}

		residency = policy_residency(cache->policy);

3246
		DMEMIT("%u %llu/%llu %llu %llu/%llu %u %u %u %u %u %u %lu ",
3247
		       (unsigned)DM_CACHE_METADATA_BLOCK_SIZE,
J
Joe Thornber 已提交
3248 3249
		       (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
		       (unsigned long long)nr_blocks_metadata,
3250
		       (unsigned long long)cache->sectors_per_block,
3251 3252
		       (unsigned long long) from_cblock(residency),
		       (unsigned long long) from_cblock(cache->cache_size),
J
Joe Thornber 已提交
3253 3254 3255 3256 3257 3258
		       (unsigned) atomic_read(&cache->stats.read_hit),
		       (unsigned) atomic_read(&cache->stats.read_miss),
		       (unsigned) atomic_read(&cache->stats.write_hit),
		       (unsigned) atomic_read(&cache->stats.write_miss),
		       (unsigned) atomic_read(&cache->stats.demotion),
		       (unsigned) atomic_read(&cache->stats.promotion),
3259
		       (unsigned long) atomic_read(&cache->nr_dirty));
J
Joe Thornber 已提交
3260

3261 3262 3263 3264 3265
		if (cache->features.metadata_version == 2)
			DMEMIT("2 metadata2 ");
		else
			DMEMIT("1 ");

3266
		if (writethrough_mode(cache))
3267
			DMEMIT("writethrough ");
J
Joe Thornber 已提交
3268

3269
		else if (passthrough_mode(cache))
3270
			DMEMIT("passthrough ");
J
Joe Thornber 已提交
3271

3272
		else if (writeback_mode(cache))
3273
			DMEMIT("writeback ");
J
Joe Thornber 已提交
3274 3275

		else {
3276 3277
			DMERR("%s: internal error: unknown io mode: %d",
			      cache_device_name(cache), (int) cache->features.io_mode);
J
Joe Thornber 已提交
3278 3279
			goto err;
		}
J
Joe Thornber 已提交
3280 3281

		DMEMIT("2 migration_threshold %llu ", (unsigned long long) cache->migration_threshold);
3282 3283

		DMEMIT("%s ", dm_cache_policy_get_name(cache->policy));
J
Joe Thornber 已提交
3284
		if (sz < maxlen) {
3285
			r = policy_emit_config_values(cache->policy, result, maxlen, &sz);
J
Joe Thornber 已提交
3286
			if (r)
3287 3288
				DMERR("%s: policy_emit_config_values returned %d",
				      cache_device_name(cache), r);
J
Joe Thornber 已提交
3289 3290
		}

3291 3292 3293 3294 3295
		if (get_cache_mode(cache) == CM_READ_ONLY)
			DMEMIT("ro ");
		else
			DMEMIT("rw ");

3296 3297 3298
		r = dm_cache_metadata_needs_check(cache->cmd, &needs_check);

		if (r || needs_check)
3299 3300 3301 3302
			DMEMIT("needs_check ");
		else
			DMEMIT("- ");

J
Joe Thornber 已提交
3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324
		break;

	case STATUSTYPE_TABLE:
		format_dev_t(buf, cache->metadata_dev->bdev->bd_dev);
		DMEMIT("%s ", buf);
		format_dev_t(buf, cache->cache_dev->bdev->bd_dev);
		DMEMIT("%s ", buf);
		format_dev_t(buf, cache->origin_dev->bdev->bd_dev);
		DMEMIT("%s", buf);

		for (i = 0; i < cache->nr_ctr_args - 1; i++)
			DMEMIT(" %s", cache->ctr_args[i]);
		if (cache->nr_ctr_args)
			DMEMIT(" %s", cache->ctr_args[cache->nr_ctr_args - 1]);
	}

	return;

err:
	DMEMIT("Error");
}

3325 3326 3327 3328 3329 3330 3331 3332 3333
/*
 * Defines a range of cblocks, begin to (end - 1) are in the range.  end is
 * the one-past-the-end value.
 */
struct cblock_range {
	dm_cblock_t begin;
	dm_cblock_t end;
};

J
Joe Thornber 已提交
3334
/*
3335 3336 3337
 * A cache block range can take two forms:
 *
 * i) A single cblock, eg. '3456'
3338
 * ii) A begin and end cblock with a dash between, eg. 123-234
3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372
 */
static int parse_cblock_range(struct cache *cache, const char *str,
			      struct cblock_range *result)
{
	char dummy;
	uint64_t b, e;
	int r;

	/*
	 * Try and parse form (ii) first.
	 */
	r = sscanf(str, "%llu-%llu%c", &b, &e, &dummy);
	if (r < 0)
		return r;

	if (r == 2) {
		result->begin = to_cblock(b);
		result->end = to_cblock(e);
		return 0;
	}

	/*
	 * That didn't work, try form (i).
	 */
	r = sscanf(str, "%llu%c", &b, &dummy);
	if (r < 0)
		return r;

	if (r == 1) {
		result->begin = to_cblock(b);
		result->end = to_cblock(from_cblock(result->begin) + 1u);
		return 0;
	}

3373
	DMERR("%s: invalid cblock range '%s'", cache_device_name(cache), str);
3374 3375 3376 3377 3378 3379 3380 3381 3382 3383
	return -EINVAL;
}

static int validate_cblock_range(struct cache *cache, struct cblock_range *range)
{
	uint64_t b = from_cblock(range->begin);
	uint64_t e = from_cblock(range->end);
	uint64_t n = from_cblock(cache->cache_size);

	if (b >= n) {
3384 3385
		DMERR("%s: begin cblock out of range: %llu >= %llu",
		      cache_device_name(cache), b, n);
3386 3387 3388 3389
		return -EINVAL;
	}

	if (e > n) {
3390 3391
		DMERR("%s: end cblock out of range: %llu > %llu",
		      cache_device_name(cache), e, n);
3392 3393 3394 3395
		return -EINVAL;
	}

	if (b >= e) {
3396 3397
		DMERR("%s: invalid cblock range: %llu >= %llu",
		      cache_device_name(cache), b, e);
3398 3399 3400 3401 3402 3403
		return -EINVAL;
	}

	return 0;
}

3404 3405 3406 3407 3408
static inline dm_cblock_t cblock_succ(dm_cblock_t b)
{
	return to_cblock(from_cblock(b) + 1);
}

3409 3410
static int request_invalidation(struct cache *cache, struct cblock_range *range)
{
3411
	int r = 0;
3412

3413 3414 3415 3416 3417 3418 3419 3420 3421 3422
	/*
	 * We don't need to do any locking here because we know we're in
	 * passthrough mode.  There's is potential for a race between an
	 * invalidation triggered by an io and an invalidation message.  This
	 * is harmless, we must not worry if the policy call fails.
	 */
	while (range->begin != range->end) {
		r = invalidate_cblock(cache, range->begin);
		if (r)
			return r;
3423

3424 3425
		range->begin = cblock_succ(range->begin);
	}
3426

3427 3428
	cache->commit_requested = true;
	return r;
3429 3430 3431 3432 3433 3434 3435 3436 3437
}

static int process_invalidate_cblocks_message(struct cache *cache, unsigned count,
					      const char **cblock_ranges)
{
	int r = 0;
	unsigned i;
	struct cblock_range range;

3438
	if (!passthrough_mode(cache)) {
3439 3440
		DMERR("%s: cache has to be in passthrough mode for invalidation",
		      cache_device_name(cache));
3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468
		return -EPERM;
	}

	for (i = 0; i < count; i++) {
		r = parse_cblock_range(cache, cblock_ranges[i], &range);
		if (r)
			break;

		r = validate_cblock_range(cache, &range);
		if (r)
			break;

		/*
		 * Pass begin and end origin blocks to the worker and wake it.
		 */
		r = request_invalidation(cache, &range);
		if (r)
			break;
	}

	return r;
}

/*
 * Supports
 *	"<key> <value>"
 * and
 *     "invalidate_cblocks [(<begin>)|(<begin>-<end>)]*
J
Joe Thornber 已提交
3469 3470 3471 3472 3473 3474 3475
 *
 * The key migration_threshold is supported by the cache target core.
 */
static int cache_message(struct dm_target *ti, unsigned argc, char **argv)
{
	struct cache *cache = ti->private;

3476 3477 3478
	if (!argc)
		return -EINVAL;

3479
	if (get_cache_mode(cache) >= CM_READ_ONLY) {
3480 3481
		DMERR("%s: unable to service cache target messages in READ_ONLY or FAIL mode",
		      cache_device_name(cache));
3482 3483 3484
		return -EOPNOTSUPP;
	}

3485
	if (!strcasecmp(argv[0], "invalidate_cblocks"))
3486 3487
		return process_invalidate_cblocks_message(cache, argc - 1, (const char **) argv + 1);

J
Joe Thornber 已提交
3488 3489 3490
	if (argc != 2)
		return -EINVAL;

J
Joe Thornber 已提交
3491
	return set_config_value(cache, argv[0], argv[1]);
J
Joe Thornber 已提交
3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511
}

static int cache_iterate_devices(struct dm_target *ti,
				 iterate_devices_callout_fn fn, void *data)
{
	int r = 0;
	struct cache *cache = ti->private;

	r = fn(ti, cache->cache_dev, 0, get_dev_size(cache->cache_dev), data);
	if (!r)
		r = fn(ti, cache->origin_dev, 0, ti->len, data);

	return r;
}

static void set_discard_limits(struct cache *cache, struct queue_limits *limits)
{
	/*
	 * FIXME: these limits may be incompatible with the cache device
	 */
J
Joe Thornber 已提交
3512 3513
	limits->max_discard_sectors = min_t(sector_t, cache->discard_block_size * 1024,
					    cache->origin_sectors);
3514
	limits->discard_granularity = cache->discard_block_size << SECTOR_SHIFT;
J
Joe Thornber 已提交
3515 3516 3517 3518 3519
}

static void cache_io_hints(struct dm_target *ti, struct queue_limits *limits)
{
	struct cache *cache = ti->private;
3520
	uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
J
Joe Thornber 已提交
3521

3522 3523 3524 3525 3526 3527
	/*
	 * If the system-determined stacked limits are compatible with the
	 * cache's blocksize (io_opt is a factor) do not override them.
	 */
	if (io_opt_sectors < cache->sectors_per_block ||
	    do_div(io_opt_sectors, cache->sectors_per_block)) {
3528
		blk_limits_io_min(limits, cache->sectors_per_block << SECTOR_SHIFT);
3529 3530
		blk_limits_io_opt(limits, cache->sectors_per_block << SECTOR_SHIFT);
	}
J
Joe Thornber 已提交
3531 3532 3533 3534 3535 3536 3537
	set_discard_limits(cache, limits);
}

/*----------------------------------------------------------------*/

static struct target_type cache_target = {
	.name = "cache",
3538
	.version = {2, 0, 0},
J
Joe Thornber 已提交
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583
	.module = THIS_MODULE,
	.ctr = cache_ctr,
	.dtr = cache_dtr,
	.map = cache_map,
	.end_io = cache_end_io,
	.postsuspend = cache_postsuspend,
	.preresume = cache_preresume,
	.resume = cache_resume,
	.status = cache_status,
	.message = cache_message,
	.iterate_devices = cache_iterate_devices,
	.io_hints = cache_io_hints,
};

static int __init dm_cache_init(void)
{
	int r;

	r = dm_register_target(&cache_target);
	if (r) {
		DMERR("cache target registration failed: %d", r);
		return r;
	}

	migration_cache = KMEM_CACHE(dm_cache_migration, 0);
	if (!migration_cache) {
		dm_unregister_target(&cache_target);
		return -ENOMEM;
	}

	return 0;
}

static void __exit dm_cache_exit(void)
{
	dm_unregister_target(&cache_target);
	kmem_cache_destroy(migration_cache);
}

module_init(dm_cache_init);
module_exit(dm_cache_exit);

MODULE_DESCRIPTION(DM_NAME " cache target");
MODULE_AUTHOR("Joe Thornber <ejt@redhat.com>");
MODULE_LICENSE("GPL");