dm cache: prevent corruption caused by discard_block_size > cache_block_size
[deliverable/linux.git] / drivers / md / dm-cache-target.c
CommitLineData
c6b4fcba
JT
1/*
2 * Copyright (C) 2012 Red Hat. All rights reserved.
3 *
4 * This file is released under the GPL.
5 */
6
7#include "dm.h"
8#include "dm-bio-prison.h"
b844fe69 9#include "dm-bio-record.h"
c6b4fcba
JT
10#include "dm-cache-metadata.h"
11
12#include <linux/dm-io.h>
13#include <linux/dm-kcopyd.h>
14#include <linux/init.h>
15#include <linux/mempool.h>
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/vmalloc.h>
19
20#define DM_MSG_PREFIX "cache"
21
22DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(cache_copy_throttle,
23 "A percentage of time allocated for copying to and/or from cache");
24
25/*----------------------------------------------------------------*/
26
27/*
28 * Glossary:
29 *
30 * oblock: index of an origin block
31 * cblock: index of a cache block
32 * promotion: movement of a block from origin to cache
33 * demotion: movement of a block from cache to origin
34 * migration: movement of a block between the origin and cache device,
35 * either direction
36 */
37
38/*----------------------------------------------------------------*/
39
40static size_t bitset_size_in_bytes(unsigned nr_entries)
41{
42 return sizeof(unsigned long) * dm_div_up(nr_entries, BITS_PER_LONG);
43}
44
45static unsigned long *alloc_bitset(unsigned nr_entries)
46{
47 size_t s = bitset_size_in_bytes(nr_entries);
48 return vzalloc(s);
49}
50
51static void clear_bitset(void *bitset, unsigned nr_entries)
52{
53 size_t s = bitset_size_in_bytes(nr_entries);
54 memset(bitset, 0, s);
55}
56
57static void free_bitset(unsigned long *bits)
58{
59 vfree(bits);
60}
61
62/*----------------------------------------------------------------*/
63
c9d28d5d
JT
64/*
65 * There are a couple of places where we let a bio run, but want to do some
66 * work before calling its endio function. We do this by temporarily
67 * changing the endio fn.
68 */
69struct dm_hook_info {
70 bio_end_io_t *bi_end_io;
71 void *bi_private;
72};
73
74static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio,
75 bio_end_io_t *bi_end_io, void *bi_private)
76{
77 h->bi_end_io = bio->bi_end_io;
78 h->bi_private = bio->bi_private;
79
80 bio->bi_end_io = bi_end_io;
81 bio->bi_private = bi_private;
82}
83
84static void dm_unhook_bio(struct dm_hook_info *h, struct bio *bio)
85{
86 bio->bi_end_io = h->bi_end_io;
87 bio->bi_private = h->bi_private;
8d307269
MS
88
89 /*
90 * Must bump bi_remaining to allow bio to complete with
91 * restored bi_end_io.
92 */
93 atomic_inc(&bio->bi_remaining);
c9d28d5d
JT
94}
95
96/*----------------------------------------------------------------*/
97
c6b4fcba
JT
98#define PRISON_CELLS 1024
99#define MIGRATION_POOL_SIZE 128
100#define COMMIT_PERIOD HZ
101#define MIGRATION_COUNT_WINDOW 10
102
103/*
05473044
MS
104 * The block size of the device holding cache data must be
105 * between 32KB and 1GB.
c6b4fcba
JT
106 */
107#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (32 * 1024 >> SECTOR_SHIFT)
05473044 108#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
c6b4fcba
JT
109
110/*
111 * FIXME: the cache is read/write for the time being.
112 */
2ee57d58 113enum cache_metadata_mode {
c6b4fcba
JT
114 CM_WRITE, /* metadata may be changed */
115 CM_READ_ONLY, /* metadata may not be changed */
116};
117
2ee57d58
JT
118enum cache_io_mode {
119 /*
120 * Data is written to cached blocks only. These blocks are marked
121 * dirty. If you lose the cache device you will lose data.
122 * Potential performance increase for both reads and writes.
123 */
124 CM_IO_WRITEBACK,
125
126 /*
127 * Data is written to both cache and origin. Blocks are never
128 * dirty. Potential performance benfit for reads only.
129 */
130 CM_IO_WRITETHROUGH,
131
132 /*
133 * A degraded mode useful for various cache coherency situations
134 * (eg, rolling back snapshots). Reads and writes always go to the
135 * origin. If a write goes to a cached oblock, then the cache
136 * block is invalidated.
137 */
138 CM_IO_PASSTHROUGH
139};
140
c6b4fcba 141struct cache_features {
2ee57d58
JT
142 enum cache_metadata_mode mode;
143 enum cache_io_mode io_mode;
c6b4fcba
JT
144};
145
146struct cache_stats {
147 atomic_t read_hit;
148 atomic_t read_miss;
149 atomic_t write_hit;
150 atomic_t write_miss;
151 atomic_t demotion;
152 atomic_t promotion;
153 atomic_t copies_avoided;
154 atomic_t cache_cell_clash;
155 atomic_t commit_count;
156 atomic_t discard_count;
157};
158
65790ff9
JT
159/*
160 * Defines a range of cblocks, begin to (end - 1) are in the range. end is
161 * the one-past-the-end value.
162 */
163struct cblock_range {
164 dm_cblock_t begin;
165 dm_cblock_t end;
166};
167
168struct invalidation_request {
169 struct list_head list;
170 struct cblock_range *cblocks;
171
172 atomic_t complete;
173 int err;
174
175 wait_queue_head_t result_wait;
176};
177
c6b4fcba
JT
178struct cache {
179 struct dm_target *ti;
180 struct dm_target_callbacks callbacks;
181
c9ec5d7c
MS
182 struct dm_cache_metadata *cmd;
183
c6b4fcba
JT
184 /*
185 * Metadata is written to this device.
186 */
187 struct dm_dev *metadata_dev;
188
189 /*
190 * The slower of the two data devices. Typically a spindle.
191 */
192 struct dm_dev *origin_dev;
193
194 /*
195 * The faster of the two data devices. Typically an SSD.
196 */
197 struct dm_dev *cache_dev;
198
c6b4fcba
JT
199 /*
200 * Size of the origin device in _complete_ blocks and native sectors.
201 */
202 dm_oblock_t origin_blocks;
203 sector_t origin_sectors;
204
205 /*
206 * Size of the cache device in blocks.
207 */
208 dm_cblock_t cache_size;
209
210 /*
211 * Fields for converting from sectors to blocks.
212 */
213 uint32_t sectors_per_block;
214 int sectors_per_block_shift;
215
c6b4fcba
JT
216 spinlock_t lock;
217 struct bio_list deferred_bios;
218 struct bio_list deferred_flush_bios;
e2e74d61 219 struct bio_list deferred_writethrough_bios;
c6b4fcba
JT
220 struct list_head quiesced_migrations;
221 struct list_head completed_migrations;
222 struct list_head need_commit_migrations;
223 sector_t migration_threshold;
c6b4fcba 224 wait_queue_head_t migration_wait;
c9ec5d7c 225 atomic_t nr_migrations;
c6b4fcba 226
66cb1910 227 wait_queue_head_t quiescing_wait;
238f8363 228 atomic_t quiescing;
66cb1910
JT
229 atomic_t quiescing_ack;
230
c6b4fcba
JT
231 /*
232 * cache_size entries, dirty if set
233 */
234 dm_cblock_t nr_dirty;
235 unsigned long *dirty_bitset;
236
237 /*
238 * origin_blocks entries, discarded if set.
239 */
c6b4fcba
JT
240 dm_dblock_t discard_nr_blocks;
241 unsigned long *discard_bitset;
d132cc6d 242 uint32_t discard_block_size;
c9ec5d7c
MS
243
244 /*
245 * Rather than reconstructing the table line for the status we just
246 * save it and regurgitate.
247 */
248 unsigned nr_ctr_args;
249 const char **ctr_args;
c6b4fcba
JT
250
251 struct dm_kcopyd_client *copier;
252 struct workqueue_struct *wq;
253 struct work_struct worker;
254
255 struct delayed_work waker;
256 unsigned long last_commit_jiffies;
257
258 struct dm_bio_prison *prison;
259 struct dm_deferred_set *all_io_ds;
260
261 mempool_t *migration_pool;
262 struct dm_cache_migration *next_migration;
263
264 struct dm_cache_policy *policy;
265 unsigned policy_nr_args;
266
267 bool need_tick_bio:1;
268 bool sized:1;
65790ff9 269 bool invalidate:1;
c6b4fcba
JT
270 bool commit_requested:1;
271 bool loaded_mappings:1;
272 bool loaded_discards:1;
273
c6b4fcba 274 /*
c9ec5d7c 275 * Cache features such as write-through.
c6b4fcba 276 */
c9ec5d7c
MS
277 struct cache_features features;
278
279 struct cache_stats stats;
65790ff9
JT
280
281 /*
282 * Invalidation fields.
283 */
284 spinlock_t invalidation_lock;
285 struct list_head invalidation_requests;
c6b4fcba
JT
286};
287
288struct per_bio_data {
289 bool tick:1;
290 unsigned req_nr:2;
291 struct dm_deferred_entry *all_io_entry;
c6eda5e8 292 struct dm_hook_info hook_info;
e2e74d61 293
19b0092e
MS
294 /*
295 * writethrough fields. These MUST remain at the end of this
296 * structure and the 'cache' member must be the first as it
aeed1420 297 * is used to determine the offset of the writethrough fields.
19b0092e 298 */
e2e74d61
JT
299 struct cache *cache;
300 dm_cblock_t cblock;
b844fe69 301 struct dm_bio_details bio_details;
c6b4fcba
JT
302};
303
304struct dm_cache_migration {
305 struct list_head list;
306 struct cache *cache;
307
308 unsigned long start_jiffies;
309 dm_oblock_t old_oblock;
310 dm_oblock_t new_oblock;
311 dm_cblock_t cblock;
312
313 bool err:1;
314 bool writeback:1;
315 bool demote:1;
316 bool promote:1;
c9d28d5d 317 bool requeue_holder:1;
65790ff9 318 bool invalidate:1;
c6b4fcba
JT
319
320 struct dm_bio_prison_cell *old_ocell;
321 struct dm_bio_prison_cell *new_ocell;
322};
323
324/*
325 * Processing a bio in the worker thread may require these memory
326 * allocations. We prealloc to avoid deadlocks (the same worker thread
327 * frees them back to the mempool).
328 */
329struct prealloc {
330 struct dm_cache_migration *mg;
331 struct dm_bio_prison_cell *cell1;
332 struct dm_bio_prison_cell *cell2;
333};
334
335static void wake_worker(struct cache *cache)
336{
337 queue_work(cache->wq, &cache->worker);
338}
339
340/*----------------------------------------------------------------*/
341
342static struct dm_bio_prison_cell *alloc_prison_cell(struct cache *cache)
343{
344 /* FIXME: change to use a local slab. */
345 return dm_bio_prison_alloc_cell(cache->prison, GFP_NOWAIT);
346}
347
348static void free_prison_cell(struct cache *cache, struct dm_bio_prison_cell *cell)
349{
350 dm_bio_prison_free_cell(cache->prison, cell);
351}
352
353static int prealloc_data_structs(struct cache *cache, struct prealloc *p)
354{
355 if (!p->mg) {
356 p->mg = mempool_alloc(cache->migration_pool, GFP_NOWAIT);
357 if (!p->mg)
358 return -ENOMEM;
359 }
360
361 if (!p->cell1) {
362 p->cell1 = alloc_prison_cell(cache);
363 if (!p->cell1)
364 return -ENOMEM;
365 }
366
367 if (!p->cell2) {
368 p->cell2 = alloc_prison_cell(cache);
369 if (!p->cell2)
370 return -ENOMEM;
371 }
372
373 return 0;
374}
375
376static void prealloc_free_structs(struct cache *cache, struct prealloc *p)
377{
378 if (p->cell2)
379 free_prison_cell(cache, p->cell2);
380
381 if (p->cell1)
382 free_prison_cell(cache, p->cell1);
383
384 if (p->mg)
385 mempool_free(p->mg, cache->migration_pool);
386}
387
388static struct dm_cache_migration *prealloc_get_migration(struct prealloc *p)
389{
390 struct dm_cache_migration *mg = p->mg;
391
392 BUG_ON(!mg);
393 p->mg = NULL;
394
395 return mg;
396}
397
398/*
399 * You must have a cell within the prealloc struct to return. If not this
400 * function will BUG() rather than returning NULL.
401 */
402static struct dm_bio_prison_cell *prealloc_get_cell(struct prealloc *p)
403{
404 struct dm_bio_prison_cell *r = NULL;
405
406 if (p->cell1) {
407 r = p->cell1;
408 p->cell1 = NULL;
409
410 } else if (p->cell2) {
411 r = p->cell2;
412 p->cell2 = NULL;
413 } else
414 BUG();
415
416 return r;
417}
418
419/*
420 * You can't have more than two cells in a prealloc struct. BUG() will be
421 * called if you try and overfill.
422 */
423static void prealloc_put_cell(struct prealloc *p, struct dm_bio_prison_cell *cell)
424{
425 if (!p->cell2)
426 p->cell2 = cell;
427
428 else if (!p->cell1)
429 p->cell1 = cell;
430
431 else
432 BUG();
433}
434
435/*----------------------------------------------------------------*/
436
437static void build_key(dm_oblock_t oblock, struct dm_cell_key *key)
438{
439 key->virtual = 0;
440 key->dev = 0;
441 key->block = from_oblock(oblock);
442}
443
444/*
445 * The caller hands in a preallocated cell, and a free function for it.
446 * The cell will be freed if there's an error, or if it wasn't used because
447 * a cell with that key already exists.
448 */
449typedef void (*cell_free_fn)(void *context, struct dm_bio_prison_cell *cell);
450
451static int bio_detain(struct cache *cache, dm_oblock_t oblock,
452 struct bio *bio, struct dm_bio_prison_cell *cell_prealloc,
453 cell_free_fn free_fn, void *free_context,
454 struct dm_bio_prison_cell **cell_result)
455{
456 int r;
457 struct dm_cell_key key;
458
459 build_key(oblock, &key);
460 r = dm_bio_detain(cache->prison, &key, bio, cell_prealloc, cell_result);
461 if (r)
462 free_fn(free_context, cell_prealloc);
463
464 return r;
465}
466
467static int get_cell(struct cache *cache,
468 dm_oblock_t oblock,
469 struct prealloc *structs,
470 struct dm_bio_prison_cell **cell_result)
471{
472 int r;
473 struct dm_cell_key key;
474 struct dm_bio_prison_cell *cell_prealloc;
475
476 cell_prealloc = prealloc_get_cell(structs);
477
478 build_key(oblock, &key);
479 r = dm_get_cell(cache->prison, &key, cell_prealloc, cell_result);
480 if (r)
481 prealloc_put_cell(structs, cell_prealloc);
482
483 return r;
484}
485
aeed1420 486/*----------------------------------------------------------------*/
c6b4fcba
JT
487
488static bool is_dirty(struct cache *cache, dm_cblock_t b)
489{
490 return test_bit(from_cblock(b), cache->dirty_bitset);
491}
492
493static void set_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
494{
495 if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset)) {
496 cache->nr_dirty = to_cblock(from_cblock(cache->nr_dirty) + 1);
497 policy_set_dirty(cache->policy, oblock);
498 }
499}
500
501static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
502{
503 if (test_and_clear_bit(from_cblock(cblock), cache->dirty_bitset)) {
504 policy_clear_dirty(cache->policy, oblock);
505 cache->nr_dirty = to_cblock(from_cblock(cache->nr_dirty) - 1);
506 if (!from_cblock(cache->nr_dirty))
507 dm_table_event(cache->ti->table);
508 }
509}
510
511/*----------------------------------------------------------------*/
aeed1420 512
c6b4fcba
JT
513static bool block_size_is_power_of_two(struct cache *cache)
514{
515 return cache->sectors_per_block_shift >= 0;
516}
517
43aeaa29
MP
518/* gcc on ARM generates spurious references to __udivdi3 and __umoddi3 */
519#if defined(CONFIG_ARM) && __GNUC__ == 4 && __GNUC_MINOR__ <= 6
520__always_inline
521#endif
414dd67d
JT
522static dm_block_t block_div(dm_block_t b, uint32_t n)
523{
524 do_div(b, n);
525
526 return b;
527}
528
c6b4fcba
JT
529static dm_dblock_t oblock_to_dblock(struct cache *cache, dm_oblock_t oblock)
530{
414dd67d 531 uint32_t discard_blocks = cache->discard_block_size;
c6b4fcba
JT
532 dm_block_t b = from_oblock(oblock);
533
534 if (!block_size_is_power_of_two(cache))
414dd67d 535 discard_blocks = discard_blocks / cache->sectors_per_block;
c6b4fcba
JT
536 else
537 discard_blocks >>= cache->sectors_per_block_shift;
538
414dd67d 539 b = block_div(b, discard_blocks);
c6b4fcba
JT
540
541 return to_dblock(b);
542}
543
544static void set_discard(struct cache *cache, dm_dblock_t b)
545{
546 unsigned long flags;
547
548 atomic_inc(&cache->stats.discard_count);
549
550 spin_lock_irqsave(&cache->lock, flags);
551 set_bit(from_dblock(b), cache->discard_bitset);
552 spin_unlock_irqrestore(&cache->lock, flags);
553}
554
555static void clear_discard(struct cache *cache, dm_dblock_t b)
556{
557 unsigned long flags;
558
559 spin_lock_irqsave(&cache->lock, flags);
560 clear_bit(from_dblock(b), cache->discard_bitset);
561 spin_unlock_irqrestore(&cache->lock, flags);
562}
563
564static bool is_discarded(struct cache *cache, dm_dblock_t b)
565{
566 int r;
567 unsigned long flags;
568
569 spin_lock_irqsave(&cache->lock, flags);
570 r = test_bit(from_dblock(b), cache->discard_bitset);
571 spin_unlock_irqrestore(&cache->lock, flags);
572
573 return r;
574}
575
576static bool is_discarded_oblock(struct cache *cache, dm_oblock_t b)
577{
578 int r;
579 unsigned long flags;
580
581 spin_lock_irqsave(&cache->lock, flags);
582 r = test_bit(from_dblock(oblock_to_dblock(cache, b)),
583 cache->discard_bitset);
584 spin_unlock_irqrestore(&cache->lock, flags);
585
586 return r;
587}
588
589/*----------------------------------------------------------------*/
590
591static void load_stats(struct cache *cache)
592{
593 struct dm_cache_statistics stats;
594
595 dm_cache_metadata_get_stats(cache->cmd, &stats);
596 atomic_set(&cache->stats.read_hit, stats.read_hits);
597 atomic_set(&cache->stats.read_miss, stats.read_misses);
598 atomic_set(&cache->stats.write_hit, stats.write_hits);
599 atomic_set(&cache->stats.write_miss, stats.write_misses);
600}
601
602static void save_stats(struct cache *cache)
603{
604 struct dm_cache_statistics stats;
605
606 stats.read_hits = atomic_read(&cache->stats.read_hit);
607 stats.read_misses = atomic_read(&cache->stats.read_miss);
608 stats.write_hits = atomic_read(&cache->stats.write_hit);
609 stats.write_misses = atomic_read(&cache->stats.write_miss);
610
611 dm_cache_metadata_set_stats(cache->cmd, &stats);
612}
613
614/*----------------------------------------------------------------
615 * Per bio data
616 *--------------------------------------------------------------*/
19b0092e
MS
617
618/*
619 * If using writeback, leave out struct per_bio_data's writethrough fields.
620 */
621#define PB_DATA_SIZE_WB (offsetof(struct per_bio_data, cache))
622#define PB_DATA_SIZE_WT (sizeof(struct per_bio_data))
623
2ee57d58
JT
624static bool writethrough_mode(struct cache_features *f)
625{
626 return f->io_mode == CM_IO_WRITETHROUGH;
627}
628
629static bool writeback_mode(struct cache_features *f)
630{
631 return f->io_mode == CM_IO_WRITEBACK;
632}
633
634static bool passthrough_mode(struct cache_features *f)
635{
636 return f->io_mode == CM_IO_PASSTHROUGH;
637}
638
19b0092e
MS
639static size_t get_per_bio_data_size(struct cache *cache)
640{
2ee57d58 641 return writethrough_mode(&cache->features) ? PB_DATA_SIZE_WT : PB_DATA_SIZE_WB;
19b0092e
MS
642}
643
644static struct per_bio_data *get_per_bio_data(struct bio *bio, size_t data_size)
c6b4fcba 645{
19b0092e 646 struct per_bio_data *pb = dm_per_bio_data(bio, data_size);
c6b4fcba
JT
647 BUG_ON(!pb);
648 return pb;
649}
650
19b0092e 651static struct per_bio_data *init_per_bio_data(struct bio *bio, size_t data_size)
c6b4fcba 652{
19b0092e 653 struct per_bio_data *pb = get_per_bio_data(bio, data_size);
c6b4fcba
JT
654
655 pb->tick = false;
656 pb->req_nr = dm_bio_get_target_bio_nr(bio);
657 pb->all_io_entry = NULL;
658
659 return pb;
660}
661
662/*----------------------------------------------------------------
663 * Remapping
664 *--------------------------------------------------------------*/
665static void remap_to_origin(struct cache *cache, struct bio *bio)
666{
667 bio->bi_bdev = cache->origin_dev->bdev;
668}
669
670static void remap_to_cache(struct cache *cache, struct bio *bio,
671 dm_cblock_t cblock)
672{
4f024f37 673 sector_t bi_sector = bio->bi_iter.bi_sector;
e0d849fa 674 sector_t block = from_cblock(cblock);
c6b4fcba
JT
675
676 bio->bi_bdev = cache->cache_dev->bdev;
677 if (!block_size_is_power_of_two(cache))
4f024f37 678 bio->bi_iter.bi_sector =
e0d849fa 679 (block * cache->sectors_per_block) +
4f024f37 680 sector_div(bi_sector, cache->sectors_per_block);
c6b4fcba 681 else
4f024f37 682 bio->bi_iter.bi_sector =
e0d849fa 683 (block << cache->sectors_per_block_shift) |
4f024f37 684 (bi_sector & (cache->sectors_per_block - 1));
c6b4fcba
JT
685}
686
687static void check_if_tick_bio_needed(struct cache *cache, struct bio *bio)
688{
689 unsigned long flags;
19b0092e
MS
690 size_t pb_data_size = get_per_bio_data_size(cache);
691 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
c6b4fcba
JT
692
693 spin_lock_irqsave(&cache->lock, flags);
694 if (cache->need_tick_bio &&
695 !(bio->bi_rw & (REQ_FUA | REQ_FLUSH | REQ_DISCARD))) {
696 pb->tick = true;
697 cache->need_tick_bio = false;
698 }
699 spin_unlock_irqrestore(&cache->lock, flags);
700}
701
702static void remap_to_origin_clear_discard(struct cache *cache, struct bio *bio,
703 dm_oblock_t oblock)
704{
705 check_if_tick_bio_needed(cache, bio);
706 remap_to_origin(cache, bio);
707 if (bio_data_dir(bio) == WRITE)
708 clear_discard(cache, oblock_to_dblock(cache, oblock));
709}
710
711static void remap_to_cache_dirty(struct cache *cache, struct bio *bio,
712 dm_oblock_t oblock, dm_cblock_t cblock)
713{
f8e5f01a 714 check_if_tick_bio_needed(cache, bio);
c6b4fcba
JT
715 remap_to_cache(cache, bio, cblock);
716 if (bio_data_dir(bio) == WRITE) {
717 set_dirty(cache, oblock, cblock);
718 clear_discard(cache, oblock_to_dblock(cache, oblock));
719 }
720}
721
722static dm_oblock_t get_bio_block(struct cache *cache, struct bio *bio)
723{
4f024f37 724 sector_t block_nr = bio->bi_iter.bi_sector;
c6b4fcba
JT
725
726 if (!block_size_is_power_of_two(cache))
727 (void) sector_div(block_nr, cache->sectors_per_block);
728 else
729 block_nr >>= cache->sectors_per_block_shift;
730
731 return to_oblock(block_nr);
732}
733
734static int bio_triggers_commit(struct cache *cache, struct bio *bio)
735{
736 return bio->bi_rw & (REQ_FLUSH | REQ_FUA);
737}
738
739static void issue(struct cache *cache, struct bio *bio)
740{
741 unsigned long flags;
742
743 if (!bio_triggers_commit(cache, bio)) {
744 generic_make_request(bio);
745 return;
746 }
747
748 /*
749 * Batch together any bios that trigger commits and then issue a
750 * single commit for them in do_worker().
751 */
752 spin_lock_irqsave(&cache->lock, flags);
753 cache->commit_requested = true;
754 bio_list_add(&cache->deferred_flush_bios, bio);
755 spin_unlock_irqrestore(&cache->lock, flags);
756}
757
e2e74d61
JT
758static void defer_writethrough_bio(struct cache *cache, struct bio *bio)
759{
760 unsigned long flags;
761
762 spin_lock_irqsave(&cache->lock, flags);
763 bio_list_add(&cache->deferred_writethrough_bios, bio);
764 spin_unlock_irqrestore(&cache->lock, flags);
765
766 wake_worker(cache);
767}
768
769static void writethrough_endio(struct bio *bio, int err)
770{
19b0092e 771 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
c9d28d5d
JT
772
773 dm_unhook_bio(&pb->hook_info, bio);
e2e74d61
JT
774
775 if (err) {
776 bio_endio(bio, err);
777 return;
778 }
779
b844fe69 780 dm_bio_restore(&pb->bio_details, bio);
e2e74d61
JT
781 remap_to_cache(pb->cache, bio, pb->cblock);
782
783 /*
784 * We can't issue this bio directly, since we're in interrupt
aeed1420 785 * context. So it gets put on a bio list for processing by the
e2e74d61
JT
786 * worker thread.
787 */
788 defer_writethrough_bio(pb->cache, bio);
789}
790
791/*
792 * When running in writethrough mode we need to send writes to clean blocks
793 * to both the cache and origin devices. In future we'd like to clone the
794 * bio and send them in parallel, but for now we're doing them in
795 * series as this is easier.
796 */
797static void remap_to_origin_then_cache(struct cache *cache, struct bio *bio,
798 dm_oblock_t oblock, dm_cblock_t cblock)
799{
19b0092e 800 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
e2e74d61
JT
801
802 pb->cache = cache;
803 pb->cblock = cblock;
c9d28d5d 804 dm_hook_bio(&pb->hook_info, bio, writethrough_endio, NULL);
b844fe69 805 dm_bio_record(&pb->bio_details, bio);
e2e74d61
JT
806
807 remap_to_origin_clear_discard(pb->cache, bio, oblock);
808}
809
c6b4fcba
JT
810/*----------------------------------------------------------------
811 * Migration processing
812 *
813 * Migration covers moving data from the origin device to the cache, or
814 * vice versa.
815 *--------------------------------------------------------------*/
816static void free_migration(struct dm_cache_migration *mg)
817{
818 mempool_free(mg, mg->cache->migration_pool);
819}
820
821static void inc_nr_migrations(struct cache *cache)
822{
823 atomic_inc(&cache->nr_migrations);
824}
825
826static void dec_nr_migrations(struct cache *cache)
827{
828 atomic_dec(&cache->nr_migrations);
829
830 /*
831 * Wake the worker in case we're suspending the target.
832 */
833 wake_up(&cache->migration_wait);
834}
835
836static void __cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell,
837 bool holder)
838{
839 (holder ? dm_cell_release : dm_cell_release_no_holder)
840 (cache->prison, cell, &cache->deferred_bios);
841 free_prison_cell(cache, cell);
842}
843
844static void cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell,
845 bool holder)
846{
847 unsigned long flags;
848
849 spin_lock_irqsave(&cache->lock, flags);
850 __cell_defer(cache, cell, holder);
851 spin_unlock_irqrestore(&cache->lock, flags);
852
853 wake_worker(cache);
854}
855
856static void cleanup_migration(struct dm_cache_migration *mg)
857{
66cb1910 858 struct cache *cache = mg->cache;
c6b4fcba 859 free_migration(mg);
66cb1910 860 dec_nr_migrations(cache);
c6b4fcba
JT
861}
862
863static void migration_failure(struct dm_cache_migration *mg)
864{
865 struct cache *cache = mg->cache;
866
867 if (mg->writeback) {
868 DMWARN_LIMIT("writeback failed; couldn't copy block");
869 set_dirty(cache, mg->old_oblock, mg->cblock);
870 cell_defer(cache, mg->old_ocell, false);
871
872 } else if (mg->demote) {
873 DMWARN_LIMIT("demotion failed; couldn't copy block");
874 policy_force_mapping(cache->policy, mg->new_oblock, mg->old_oblock);
875
80f659f3 876 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
c6b4fcba 877 if (mg->promote)
80f659f3 878 cell_defer(cache, mg->new_ocell, true);
c6b4fcba
JT
879 } else {
880 DMWARN_LIMIT("promotion failed; couldn't copy block");
881 policy_remove_mapping(cache->policy, mg->new_oblock);
80f659f3 882 cell_defer(cache, mg->new_ocell, true);
c6b4fcba
JT
883 }
884
885 cleanup_migration(mg);
886}
887
888static void migration_success_pre_commit(struct dm_cache_migration *mg)
889{
890 unsigned long flags;
891 struct cache *cache = mg->cache;
892
893 if (mg->writeback) {
894 cell_defer(cache, mg->old_ocell, false);
895 clear_dirty(cache, mg->old_oblock, mg->cblock);
896 cleanup_migration(mg);
897 return;
898
899 } else if (mg->demote) {
900 if (dm_cache_remove_mapping(cache->cmd, mg->cblock)) {
901 DMWARN_LIMIT("demotion failed; couldn't update on disk metadata");
902 policy_force_mapping(cache->policy, mg->new_oblock,
903 mg->old_oblock);
904 if (mg->promote)
905 cell_defer(cache, mg->new_ocell, true);
906 cleanup_migration(mg);
907 return;
908 }
909 } else {
910 if (dm_cache_insert_mapping(cache->cmd, mg->cblock, mg->new_oblock)) {
911 DMWARN_LIMIT("promotion failed; couldn't update on disk metadata");
912 policy_remove_mapping(cache->policy, mg->new_oblock);
913 cleanup_migration(mg);
914 return;
915 }
916 }
917
918 spin_lock_irqsave(&cache->lock, flags);
919 list_add_tail(&mg->list, &cache->need_commit_migrations);
920 cache->commit_requested = true;
921 spin_unlock_irqrestore(&cache->lock, flags);
922}
923
924static void migration_success_post_commit(struct dm_cache_migration *mg)
925{
926 unsigned long flags;
927 struct cache *cache = mg->cache;
928
929 if (mg->writeback) {
930 DMWARN("writeback unexpectedly triggered commit");
931 return;
932
933 } else if (mg->demote) {
80f659f3 934 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
c6b4fcba
JT
935
936 if (mg->promote) {
937 mg->demote = false;
938
939 spin_lock_irqsave(&cache->lock, flags);
940 list_add_tail(&mg->list, &cache->quiesced_migrations);
941 spin_unlock_irqrestore(&cache->lock, flags);
942
65790ff9
JT
943 } else {
944 if (mg->invalidate)
945 policy_remove_mapping(cache->policy, mg->old_oblock);
c6b4fcba 946 cleanup_migration(mg);
65790ff9 947 }
c6b4fcba
JT
948
949 } else {
c9d28d5d
JT
950 if (mg->requeue_holder)
951 cell_defer(cache, mg->new_ocell, true);
952 else {
953 bio_endio(mg->new_ocell->holder, 0);
954 cell_defer(cache, mg->new_ocell, false);
955 }
c6b4fcba
JT
956 clear_dirty(cache, mg->new_oblock, mg->cblock);
957 cleanup_migration(mg);
958 }
959}
960
961static void copy_complete(int read_err, unsigned long write_err, void *context)
962{
963 unsigned long flags;
964 struct dm_cache_migration *mg = (struct dm_cache_migration *) context;
965 struct cache *cache = mg->cache;
966
967 if (read_err || write_err)
968 mg->err = true;
969
970 spin_lock_irqsave(&cache->lock, flags);
971 list_add_tail(&mg->list, &cache->completed_migrations);
972 spin_unlock_irqrestore(&cache->lock, flags);
973
974 wake_worker(cache);
975}
976
977static void issue_copy_real(struct dm_cache_migration *mg)
978{
979 int r;
980 struct dm_io_region o_region, c_region;
981 struct cache *cache = mg->cache;
8b9d9666 982 sector_t cblock = from_cblock(mg->cblock);
c6b4fcba
JT
983
984 o_region.bdev = cache->origin_dev->bdev;
985 o_region.count = cache->sectors_per_block;
986
987 c_region.bdev = cache->cache_dev->bdev;
8b9d9666 988 c_region.sector = cblock * cache->sectors_per_block;
c6b4fcba
JT
989 c_region.count = cache->sectors_per_block;
990
991 if (mg->writeback || mg->demote) {
992 /* demote */
993 o_region.sector = from_oblock(mg->old_oblock) * cache->sectors_per_block;
994 r = dm_kcopyd_copy(cache->copier, &c_region, 1, &o_region, 0, copy_complete, mg);
995 } else {
996 /* promote */
997 o_region.sector = from_oblock(mg->new_oblock) * cache->sectors_per_block;
998 r = dm_kcopyd_copy(cache->copier, &o_region, 1, &c_region, 0, copy_complete, mg);
999 }
1000
2c2263c9
HM
1001 if (r < 0) {
1002 DMERR_LIMIT("issuing migration failed");
c6b4fcba 1003 migration_failure(mg);
2c2263c9 1004 }
c6b4fcba
JT
1005}
1006
c9d28d5d
JT
1007static void overwrite_endio(struct bio *bio, int err)
1008{
1009 struct dm_cache_migration *mg = bio->bi_private;
1010 struct cache *cache = mg->cache;
1011 size_t pb_data_size = get_per_bio_data_size(cache);
1012 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
1013 unsigned long flags;
1014
80ae49aa
MS
1015 dm_unhook_bio(&pb->hook_info, bio);
1016
c9d28d5d
JT
1017 if (err)
1018 mg->err = true;
1019
80ae49aa
MS
1020 mg->requeue_holder = false;
1021
c9d28d5d
JT
1022 spin_lock_irqsave(&cache->lock, flags);
1023 list_add_tail(&mg->list, &cache->completed_migrations);
c9d28d5d
JT
1024 spin_unlock_irqrestore(&cache->lock, flags);
1025
1026 wake_worker(cache);
1027}
1028
1029static void issue_overwrite(struct dm_cache_migration *mg, struct bio *bio)
1030{
1031 size_t pb_data_size = get_per_bio_data_size(mg->cache);
1032 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
1033
1034 dm_hook_bio(&pb->hook_info, bio, overwrite_endio, mg);
1035 remap_to_cache_dirty(mg->cache, bio, mg->new_oblock, mg->cblock);
1036 generic_make_request(bio);
1037}
1038
1039static bool bio_writes_complete_block(struct cache *cache, struct bio *bio)
1040{
1041 return (bio_data_dir(bio) == WRITE) &&
4f024f37 1042 (bio->bi_iter.bi_size == (cache->sectors_per_block << SECTOR_SHIFT));
c9d28d5d
JT
1043}
1044
c6b4fcba
JT
1045static void avoid_copy(struct dm_cache_migration *mg)
1046{
1047 atomic_inc(&mg->cache->stats.copies_avoided);
1048 migration_success_pre_commit(mg);
1049}
1050
1051static void issue_copy(struct dm_cache_migration *mg)
1052{
1053 bool avoid;
1054 struct cache *cache = mg->cache;
1055
1056 if (mg->writeback || mg->demote)
1057 avoid = !is_dirty(cache, mg->cblock) ||
1058 is_discarded_oblock(cache, mg->old_oblock);
c9d28d5d
JT
1059 else {
1060 struct bio *bio = mg->new_ocell->holder;
1061
c6b4fcba
JT
1062 avoid = is_discarded_oblock(cache, mg->new_oblock);
1063
c9d28d5d
JT
1064 if (!avoid && bio_writes_complete_block(cache, bio)) {
1065 issue_overwrite(mg, bio);
1066 return;
1067 }
1068 }
1069
c6b4fcba
JT
1070 avoid ? avoid_copy(mg) : issue_copy_real(mg);
1071}
1072
1073static void complete_migration(struct dm_cache_migration *mg)
1074{
1075 if (mg->err)
1076 migration_failure(mg);
1077 else
1078 migration_success_pre_commit(mg);
1079}
1080
1081static void process_migrations(struct cache *cache, struct list_head *head,
1082 void (*fn)(struct dm_cache_migration *))
1083{
1084 unsigned long flags;
1085 struct list_head list;
1086 struct dm_cache_migration *mg, *tmp;
1087
1088 INIT_LIST_HEAD(&list);
1089 spin_lock_irqsave(&cache->lock, flags);
1090 list_splice_init(head, &list);
1091 spin_unlock_irqrestore(&cache->lock, flags);
1092
1093 list_for_each_entry_safe(mg, tmp, &list, list)
1094 fn(mg);
1095}
1096
1097static void __queue_quiesced_migration(struct dm_cache_migration *mg)
1098{
1099 list_add_tail(&mg->list, &mg->cache->quiesced_migrations);
1100}
1101
1102static void queue_quiesced_migration(struct dm_cache_migration *mg)
1103{
1104 unsigned long flags;
1105 struct cache *cache = mg->cache;
1106
1107 spin_lock_irqsave(&cache->lock, flags);
1108 __queue_quiesced_migration(mg);
1109 spin_unlock_irqrestore(&cache->lock, flags);
1110
1111 wake_worker(cache);
1112}
1113
1114static void queue_quiesced_migrations(struct cache *cache, struct list_head *work)
1115{
1116 unsigned long flags;
1117 struct dm_cache_migration *mg, *tmp;
1118
1119 spin_lock_irqsave(&cache->lock, flags);
1120 list_for_each_entry_safe(mg, tmp, work, list)
1121 __queue_quiesced_migration(mg);
1122 spin_unlock_irqrestore(&cache->lock, flags);
1123
1124 wake_worker(cache);
1125}
1126
1127static void check_for_quiesced_migrations(struct cache *cache,
1128 struct per_bio_data *pb)
1129{
1130 struct list_head work;
1131
1132 if (!pb->all_io_entry)
1133 return;
1134
1135 INIT_LIST_HEAD(&work);
1136 if (pb->all_io_entry)
1137 dm_deferred_entry_dec(pb->all_io_entry, &work);
1138
1139 if (!list_empty(&work))
1140 queue_quiesced_migrations(cache, &work);
1141}
1142
1143static void quiesce_migration(struct dm_cache_migration *mg)
1144{
1145 if (!dm_deferred_set_add_work(mg->cache->all_io_ds, &mg->list))
1146 queue_quiesced_migration(mg);
1147}
1148
1149static void promote(struct cache *cache, struct prealloc *structs,
1150 dm_oblock_t oblock, dm_cblock_t cblock,
1151 struct dm_bio_prison_cell *cell)
1152{
1153 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1154
1155 mg->err = false;
1156 mg->writeback = false;
1157 mg->demote = false;
1158 mg->promote = true;
c9d28d5d 1159 mg->requeue_holder = true;
65790ff9 1160 mg->invalidate = false;
c6b4fcba
JT
1161 mg->cache = cache;
1162 mg->new_oblock = oblock;
1163 mg->cblock = cblock;
1164 mg->old_ocell = NULL;
1165 mg->new_ocell = cell;
1166 mg->start_jiffies = jiffies;
1167
1168 inc_nr_migrations(cache);
1169 quiesce_migration(mg);
1170}
1171
1172static void writeback(struct cache *cache, struct prealloc *structs,
1173 dm_oblock_t oblock, dm_cblock_t cblock,
1174 struct dm_bio_prison_cell *cell)
1175{
1176 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1177
1178 mg->err = false;
1179 mg->writeback = true;
1180 mg->demote = false;
1181 mg->promote = false;
c9d28d5d 1182 mg->requeue_holder = true;
65790ff9 1183 mg->invalidate = false;
c6b4fcba
JT
1184 mg->cache = cache;
1185 mg->old_oblock = oblock;
1186 mg->cblock = cblock;
1187 mg->old_ocell = cell;
1188 mg->new_ocell = NULL;
1189 mg->start_jiffies = jiffies;
1190
1191 inc_nr_migrations(cache);
1192 quiesce_migration(mg);
1193}
1194
1195static void demote_then_promote(struct cache *cache, struct prealloc *structs,
1196 dm_oblock_t old_oblock, dm_oblock_t new_oblock,
1197 dm_cblock_t cblock,
1198 struct dm_bio_prison_cell *old_ocell,
1199 struct dm_bio_prison_cell *new_ocell)
1200{
1201 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1202
1203 mg->err = false;
1204 mg->writeback = false;
1205 mg->demote = true;
1206 mg->promote = true;
c9d28d5d 1207 mg->requeue_holder = true;
65790ff9 1208 mg->invalidate = false;
c6b4fcba
JT
1209 mg->cache = cache;
1210 mg->old_oblock = old_oblock;
1211 mg->new_oblock = new_oblock;
1212 mg->cblock = cblock;
1213 mg->old_ocell = old_ocell;
1214 mg->new_ocell = new_ocell;
1215 mg->start_jiffies = jiffies;
1216
1217 inc_nr_migrations(cache);
1218 quiesce_migration(mg);
1219}
1220
2ee57d58
JT
1221/*
1222 * Invalidate a cache entry. No writeback occurs; any changes in the cache
1223 * block are thrown away.
1224 */
1225static void invalidate(struct cache *cache, struct prealloc *structs,
1226 dm_oblock_t oblock, dm_cblock_t cblock,
1227 struct dm_bio_prison_cell *cell)
1228{
1229 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1230
1231 mg->err = false;
1232 mg->writeback = false;
1233 mg->demote = true;
1234 mg->promote = false;
1235 mg->requeue_holder = true;
65790ff9 1236 mg->invalidate = true;
2ee57d58
JT
1237 mg->cache = cache;
1238 mg->old_oblock = oblock;
1239 mg->cblock = cblock;
1240 mg->old_ocell = cell;
1241 mg->new_ocell = NULL;
1242 mg->start_jiffies = jiffies;
1243
1244 inc_nr_migrations(cache);
1245 quiesce_migration(mg);
1246}
1247
c6b4fcba
JT
1248/*----------------------------------------------------------------
1249 * bio processing
1250 *--------------------------------------------------------------*/
1251static void defer_bio(struct cache *cache, struct bio *bio)
1252{
1253 unsigned long flags;
1254
1255 spin_lock_irqsave(&cache->lock, flags);
1256 bio_list_add(&cache->deferred_bios, bio);
1257 spin_unlock_irqrestore(&cache->lock, flags);
1258
1259 wake_worker(cache);
1260}
1261
1262static void process_flush_bio(struct cache *cache, struct bio *bio)
1263{
19b0092e
MS
1264 size_t pb_data_size = get_per_bio_data_size(cache);
1265 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
c6b4fcba 1266
4f024f37 1267 BUG_ON(bio->bi_iter.bi_size);
c6b4fcba
JT
1268 if (!pb->req_nr)
1269 remap_to_origin(cache, bio);
1270 else
1271 remap_to_cache(cache, bio, 0);
1272
1273 issue(cache, bio);
1274}
1275
1276/*
1277 * People generally discard large parts of a device, eg, the whole device
1278 * when formatting. Splitting these large discards up into cache block
1279 * sized ios and then quiescing (always neccessary for discard) takes too
1280 * long.
1281 *
1282 * We keep it simple, and allow any size of discard to come in, and just
1283 * mark off blocks on the discard bitset. No passdown occurs!
1284 *
1285 * To implement passdown we need to change the bio_prison such that a cell
1286 * can have a key that spans many blocks.
1287 */
1288static void process_discard_bio(struct cache *cache, struct bio *bio)
1289{
4f024f37 1290 dm_block_t start_block = dm_sector_div_up(bio->bi_iter.bi_sector,
c6b4fcba 1291 cache->discard_block_size);
4f024f37 1292 dm_block_t end_block = bio_end_sector(bio);
c6b4fcba
JT
1293 dm_block_t b;
1294
414dd67d 1295 end_block = block_div(end_block, cache->discard_block_size);
c6b4fcba
JT
1296
1297 for (b = start_block; b < end_block; b++)
1298 set_discard(cache, to_dblock(b));
1299
1300 bio_endio(bio, 0);
1301}
1302
1303static bool spare_migration_bandwidth(struct cache *cache)
1304{
1305 sector_t current_volume = (atomic_read(&cache->nr_migrations) + 1) *
1306 cache->sectors_per_block;
1307 return current_volume < cache->migration_threshold;
1308}
1309
c6b4fcba
JT
1310static void inc_hit_counter(struct cache *cache, struct bio *bio)
1311{
1312 atomic_inc(bio_data_dir(bio) == READ ?
1313 &cache->stats.read_hit : &cache->stats.write_hit);
1314}
1315
1316static void inc_miss_counter(struct cache *cache, struct bio *bio)
1317{
1318 atomic_inc(bio_data_dir(bio) == READ ?
1319 &cache->stats.read_miss : &cache->stats.write_miss);
1320}
1321
2ee57d58
JT
1322static void issue_cache_bio(struct cache *cache, struct bio *bio,
1323 struct per_bio_data *pb,
1324 dm_oblock_t oblock, dm_cblock_t cblock)
1325{
1326 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
1327 remap_to_cache_dirty(cache, bio, oblock, cblock);
1328 issue(cache, bio);
1329}
1330
c6b4fcba
JT
1331static void process_bio(struct cache *cache, struct prealloc *structs,
1332 struct bio *bio)
1333{
1334 int r;
1335 bool release_cell = true;
1336 dm_oblock_t block = get_bio_block(cache, bio);
1337 struct dm_bio_prison_cell *cell_prealloc, *old_ocell, *new_ocell;
1338 struct policy_result lookup_result;
19b0092e
MS
1339 size_t pb_data_size = get_per_bio_data_size(cache);
1340 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
c6b4fcba 1341 bool discarded_block = is_discarded_oblock(cache, block);
2ee57d58
JT
1342 bool passthrough = passthrough_mode(&cache->features);
1343 bool can_migrate = !passthrough && (discarded_block || spare_migration_bandwidth(cache));
c6b4fcba
JT
1344
1345 /*
1346 * Check to see if that block is currently migrating.
1347 */
1348 cell_prealloc = prealloc_get_cell(structs);
1349 r = bio_detain(cache, block, bio, cell_prealloc,
1350 (cell_free_fn) prealloc_put_cell,
1351 structs, &new_ocell);
1352 if (r > 0)
1353 return;
1354
1355 r = policy_map(cache->policy, block, true, can_migrate, discarded_block,
1356 bio, &lookup_result);
1357
1358 if (r == -EWOULDBLOCK)
1359 /* migration has been denied */
1360 lookup_result.op = POLICY_MISS;
1361
1362 switch (lookup_result.op) {
1363 case POLICY_HIT:
2ee57d58
JT
1364 if (passthrough) {
1365 inc_miss_counter(cache, bio);
c6b4fcba 1366
2ee57d58
JT
1367 /*
1368 * Passthrough always maps to the origin,
1369 * invalidating any cache blocks that are written
1370 * to.
1371 */
1372
1373 if (bio_data_dir(bio) == WRITE) {
1374 atomic_inc(&cache->stats.demotion);
1375 invalidate(cache, structs, block, lookup_result.cblock, new_ocell);
1376 release_cell = false;
1377
1378 } else {
1379 /* FIXME: factor out issue_origin() */
1380 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
1381 remap_to_origin_clear_discard(cache, bio, block);
1382 issue(cache, bio);
1383 }
1384 } else {
1385 inc_hit_counter(cache, bio);
1386
1387 if (bio_data_dir(bio) == WRITE &&
1388 writethrough_mode(&cache->features) &&
1389 !is_dirty(cache, lookup_result.cblock)) {
1390 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
1391 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
1392 issue(cache, bio);
1393 } else
1394 issue_cache_bio(cache, bio, pb, block, lookup_result.cblock);
1395 }
c6b4fcba 1396
c6b4fcba
JT
1397 break;
1398
1399 case POLICY_MISS:
1400 inc_miss_counter(cache, bio);
1401 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
e2e74d61
JT
1402 remap_to_origin_clear_discard(cache, bio, block);
1403 issue(cache, bio);
c6b4fcba
JT
1404 break;
1405
1406 case POLICY_NEW:
1407 atomic_inc(&cache->stats.promotion);
1408 promote(cache, structs, block, lookup_result.cblock, new_ocell);
1409 release_cell = false;
1410 break;
1411
1412 case POLICY_REPLACE:
1413 cell_prealloc = prealloc_get_cell(structs);
1414 r = bio_detain(cache, lookup_result.old_oblock, bio, cell_prealloc,
1415 (cell_free_fn) prealloc_put_cell,
1416 structs, &old_ocell);
1417 if (r > 0) {
1418 /*
1419 * We have to be careful to avoid lock inversion of
1420 * the cells. So we back off, and wait for the
1421 * old_ocell to become free.
1422 */
1423 policy_force_mapping(cache->policy, block,
1424 lookup_result.old_oblock);
1425 atomic_inc(&cache->stats.cache_cell_clash);
1426 break;
1427 }
1428 atomic_inc(&cache->stats.demotion);
1429 atomic_inc(&cache->stats.promotion);
1430
1431 demote_then_promote(cache, structs, lookup_result.old_oblock,
1432 block, lookup_result.cblock,
1433 old_ocell, new_ocell);
1434 release_cell = false;
1435 break;
1436
1437 default:
1438 DMERR_LIMIT("%s: erroring bio, unknown policy op: %u", __func__,
1439 (unsigned) lookup_result.op);
1440 bio_io_error(bio);
1441 }
1442
1443 if (release_cell)
1444 cell_defer(cache, new_ocell, false);
1445}
1446
1447static int need_commit_due_to_time(struct cache *cache)
1448{
1449 return jiffies < cache->last_commit_jiffies ||
1450 jiffies > cache->last_commit_jiffies + COMMIT_PERIOD;
1451}
1452
1453static int commit_if_needed(struct cache *cache)
1454{
ffcbcb67
HM
1455 int r = 0;
1456
1457 if ((cache->commit_requested || need_commit_due_to_time(cache)) &&
1458 dm_cache_changed_this_transaction(cache->cmd)) {
c6b4fcba 1459 atomic_inc(&cache->stats.commit_count);
c6b4fcba 1460 cache->commit_requested = false;
ffcbcb67
HM
1461 r = dm_cache_commit(cache->cmd, false);
1462 cache->last_commit_jiffies = jiffies;
c6b4fcba
JT
1463 }
1464
ffcbcb67 1465 return r;
c6b4fcba
JT
1466}
1467
1468static void process_deferred_bios(struct cache *cache)
1469{
1470 unsigned long flags;
1471 struct bio_list bios;
1472 struct bio *bio;
1473 struct prealloc structs;
1474
1475 memset(&structs, 0, sizeof(structs));
1476 bio_list_init(&bios);
1477
1478 spin_lock_irqsave(&cache->lock, flags);
1479 bio_list_merge(&bios, &cache->deferred_bios);
1480 bio_list_init(&cache->deferred_bios);
1481 spin_unlock_irqrestore(&cache->lock, flags);
1482
1483 while (!bio_list_empty(&bios)) {
1484 /*
1485 * If we've got no free migration structs, and processing
1486 * this bio might require one, we pause until there are some
1487 * prepared mappings to process.
1488 */
1489 if (prealloc_data_structs(cache, &structs)) {
1490 spin_lock_irqsave(&cache->lock, flags);
1491 bio_list_merge(&cache->deferred_bios, &bios);
1492 spin_unlock_irqrestore(&cache->lock, flags);
1493 break;
1494 }
1495
1496 bio = bio_list_pop(&bios);
1497
1498 if (bio->bi_rw & REQ_FLUSH)
1499 process_flush_bio(cache, bio);
1500 else if (bio->bi_rw & REQ_DISCARD)
1501 process_discard_bio(cache, bio);
1502 else
1503 process_bio(cache, &structs, bio);
1504 }
1505
1506 prealloc_free_structs(cache, &structs);
1507}
1508
1509static void process_deferred_flush_bios(struct cache *cache, bool submit_bios)
1510{
1511 unsigned long flags;
1512 struct bio_list bios;
1513 struct bio *bio;
1514
1515 bio_list_init(&bios);
1516
1517 spin_lock_irqsave(&cache->lock, flags);
1518 bio_list_merge(&bios, &cache->deferred_flush_bios);
1519 bio_list_init(&cache->deferred_flush_bios);
1520 spin_unlock_irqrestore(&cache->lock, flags);
1521
1522 while ((bio = bio_list_pop(&bios)))
1523 submit_bios ? generic_make_request(bio) : bio_io_error(bio);
1524}
1525
e2e74d61
JT
1526static void process_deferred_writethrough_bios(struct cache *cache)
1527{
1528 unsigned long flags;
1529 struct bio_list bios;
1530 struct bio *bio;
1531
1532 bio_list_init(&bios);
1533
1534 spin_lock_irqsave(&cache->lock, flags);
1535 bio_list_merge(&bios, &cache->deferred_writethrough_bios);
1536 bio_list_init(&cache->deferred_writethrough_bios);
1537 spin_unlock_irqrestore(&cache->lock, flags);
1538
1539 while ((bio = bio_list_pop(&bios)))
1540 generic_make_request(bio);
1541}
1542
c6b4fcba
JT
1543static void writeback_some_dirty_blocks(struct cache *cache)
1544{
1545 int r = 0;
1546 dm_oblock_t oblock;
1547 dm_cblock_t cblock;
1548 struct prealloc structs;
1549 struct dm_bio_prison_cell *old_ocell;
1550
1551 memset(&structs, 0, sizeof(structs));
1552
1553 while (spare_migration_bandwidth(cache)) {
1554 if (prealloc_data_structs(cache, &structs))
1555 break;
1556
1557 r = policy_writeback_work(cache->policy, &oblock, &cblock);
1558 if (r)
1559 break;
1560
1561 r = get_cell(cache, oblock, &structs, &old_ocell);
1562 if (r) {
1563 policy_set_dirty(cache->policy, oblock);
1564 break;
1565 }
1566
1567 writeback(cache, &structs, oblock, cblock, old_ocell);
1568 }
1569
1570 prealloc_free_structs(cache, &structs);
1571}
1572
65790ff9
JT
1573/*----------------------------------------------------------------
1574 * Invalidations.
1575 * Dropping something from the cache *without* writing back.
1576 *--------------------------------------------------------------*/
1577
1578static void process_invalidation_request(struct cache *cache, struct invalidation_request *req)
1579{
1580 int r = 0;
1581 uint64_t begin = from_cblock(req->cblocks->begin);
1582 uint64_t end = from_cblock(req->cblocks->end);
1583
1584 while (begin != end) {
1585 r = policy_remove_cblock(cache->policy, to_cblock(begin));
1586 if (!r) {
1587 r = dm_cache_remove_mapping(cache->cmd, to_cblock(begin));
1588 if (r)
1589 break;
1590
1591 } else if (r == -ENODATA) {
1592 /* harmless, already unmapped */
1593 r = 0;
1594
1595 } else {
1596 DMERR("policy_remove_cblock failed");
1597 break;
1598 }
1599
1600 begin++;
1601 }
1602
1603 cache->commit_requested = true;
1604
1605 req->err = r;
1606 atomic_set(&req->complete, 1);
1607
1608 wake_up(&req->result_wait);
1609}
1610
1611static void process_invalidation_requests(struct cache *cache)
1612{
1613 struct list_head list;
1614 struct invalidation_request *req, *tmp;
1615
1616 INIT_LIST_HEAD(&list);
1617 spin_lock(&cache->invalidation_lock);
1618 list_splice_init(&cache->invalidation_requests, &list);
1619 spin_unlock(&cache->invalidation_lock);
1620
1621 list_for_each_entry_safe (req, tmp, &list, list)
1622 process_invalidation_request(cache, req);
1623}
1624
c6b4fcba
JT
1625/*----------------------------------------------------------------
1626 * Main worker loop
1627 *--------------------------------------------------------------*/
66cb1910 1628static bool is_quiescing(struct cache *cache)
c6b4fcba 1629{
238f8363 1630 return atomic_read(&cache->quiescing);
c6b4fcba
JT
1631}
1632
66cb1910
JT
1633static void ack_quiescing(struct cache *cache)
1634{
1635 if (is_quiescing(cache)) {
1636 atomic_inc(&cache->quiescing_ack);
1637 wake_up(&cache->quiescing_wait);
1638 }
1639}
1640
1641static void wait_for_quiescing_ack(struct cache *cache)
1642{
1643 wait_event(cache->quiescing_wait, atomic_read(&cache->quiescing_ack));
1644}
1645
1646static void start_quiescing(struct cache *cache)
c6b4fcba 1647{
238f8363 1648 atomic_inc(&cache->quiescing);
66cb1910 1649 wait_for_quiescing_ack(cache);
c6b4fcba
JT
1650}
1651
66cb1910 1652static void stop_quiescing(struct cache *cache)
c6b4fcba 1653{
238f8363 1654 atomic_set(&cache->quiescing, 0);
66cb1910 1655 atomic_set(&cache->quiescing_ack, 0);
c6b4fcba
JT
1656}
1657
1658static void wait_for_migrations(struct cache *cache)
1659{
1660 wait_event(cache->migration_wait, !atomic_read(&cache->nr_migrations));
1661}
1662
1663static void stop_worker(struct cache *cache)
1664{
1665 cancel_delayed_work(&cache->waker);
1666 flush_workqueue(cache->wq);
1667}
1668
1669static void requeue_deferred_io(struct cache *cache)
1670{
1671 struct bio *bio;
1672 struct bio_list bios;
1673
1674 bio_list_init(&bios);
1675 bio_list_merge(&bios, &cache->deferred_bios);
1676 bio_list_init(&cache->deferred_bios);
1677
1678 while ((bio = bio_list_pop(&bios)))
1679 bio_endio(bio, DM_ENDIO_REQUEUE);
1680}
1681
1682static int more_work(struct cache *cache)
1683{
1684 if (is_quiescing(cache))
1685 return !list_empty(&cache->quiesced_migrations) ||
1686 !list_empty(&cache->completed_migrations) ||
1687 !list_empty(&cache->need_commit_migrations);
1688 else
1689 return !bio_list_empty(&cache->deferred_bios) ||
1690 !bio_list_empty(&cache->deferred_flush_bios) ||
e2e74d61 1691 !bio_list_empty(&cache->deferred_writethrough_bios) ||
c6b4fcba
JT
1692 !list_empty(&cache->quiesced_migrations) ||
1693 !list_empty(&cache->completed_migrations) ||
65790ff9
JT
1694 !list_empty(&cache->need_commit_migrations) ||
1695 cache->invalidate;
c6b4fcba
JT
1696}
1697
1698static void do_worker(struct work_struct *ws)
1699{
1700 struct cache *cache = container_of(ws, struct cache, worker);
1701
1702 do {
66cb1910
JT
1703 if (!is_quiescing(cache)) {
1704 writeback_some_dirty_blocks(cache);
1705 process_deferred_writethrough_bios(cache);
c6b4fcba 1706 process_deferred_bios(cache);
65790ff9 1707 process_invalidation_requests(cache);
66cb1910 1708 }
c6b4fcba
JT
1709
1710 process_migrations(cache, &cache->quiesced_migrations, issue_copy);
1711 process_migrations(cache, &cache->completed_migrations, complete_migration);
1712
c6b4fcba
JT
1713 if (commit_if_needed(cache)) {
1714 process_deferred_flush_bios(cache, false);
1715
1716 /*
1717 * FIXME: rollback metadata or just go into a
1718 * failure mode and error everything
1719 */
1720 } else {
1721 process_deferred_flush_bios(cache, true);
1722 process_migrations(cache, &cache->need_commit_migrations,
1723 migration_success_post_commit);
1724 }
66cb1910
JT
1725
1726 ack_quiescing(cache);
1727
c6b4fcba
JT
1728 } while (more_work(cache));
1729}
1730
1731/*
1732 * We want to commit periodically so that not too much
1733 * unwritten metadata builds up.
1734 */
1735static void do_waker(struct work_struct *ws)
1736{
1737 struct cache *cache = container_of(to_delayed_work(ws), struct cache, waker);
f8350daf 1738 policy_tick(cache->policy);
c6b4fcba
JT
1739 wake_worker(cache);
1740 queue_delayed_work(cache->wq, &cache->waker, COMMIT_PERIOD);
1741}
1742
1743/*----------------------------------------------------------------*/
1744
1745static int is_congested(struct dm_dev *dev, int bdi_bits)
1746{
1747 struct request_queue *q = bdev_get_queue(dev->bdev);
1748 return bdi_congested(&q->backing_dev_info, bdi_bits);
1749}
1750
1751static int cache_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
1752{
1753 struct cache *cache = container_of(cb, struct cache, callbacks);
1754
1755 return is_congested(cache->origin_dev, bdi_bits) ||
1756 is_congested(cache->cache_dev, bdi_bits);
1757}
1758
1759/*----------------------------------------------------------------
1760 * Target methods
1761 *--------------------------------------------------------------*/
1762
1763/*
1764 * This function gets called on the error paths of the constructor, so we
1765 * have to cope with a partially initialised struct.
1766 */
1767static void destroy(struct cache *cache)
1768{
1769 unsigned i;
1770
1771 if (cache->next_migration)
1772 mempool_free(cache->next_migration, cache->migration_pool);
1773
1774 if (cache->migration_pool)
1775 mempool_destroy(cache->migration_pool);
1776
1777 if (cache->all_io_ds)
1778 dm_deferred_set_destroy(cache->all_io_ds);
1779
1780 if (cache->prison)
1781 dm_bio_prison_destroy(cache->prison);
1782
1783 if (cache->wq)
1784 destroy_workqueue(cache->wq);
1785
1786 if (cache->dirty_bitset)
1787 free_bitset(cache->dirty_bitset);
1788
1789 if (cache->discard_bitset)
1790 free_bitset(cache->discard_bitset);
1791
1792 if (cache->copier)
1793 dm_kcopyd_client_destroy(cache->copier);
1794
1795 if (cache->cmd)
1796 dm_cache_metadata_close(cache->cmd);
1797
1798 if (cache->metadata_dev)
1799 dm_put_device(cache->ti, cache->metadata_dev);
1800
1801 if (cache->origin_dev)
1802 dm_put_device(cache->ti, cache->origin_dev);
1803
1804 if (cache->cache_dev)
1805 dm_put_device(cache->ti, cache->cache_dev);
1806
1807 if (cache->policy)
1808 dm_cache_policy_destroy(cache->policy);
1809
1810 for (i = 0; i < cache->nr_ctr_args ; i++)
1811 kfree(cache->ctr_args[i]);
1812 kfree(cache->ctr_args);
1813
1814 kfree(cache);
1815}
1816
1817static void cache_dtr(struct dm_target *ti)
1818{
1819 struct cache *cache = ti->private;
1820
1821 destroy(cache);
1822}
1823
1824static sector_t get_dev_size(struct dm_dev *dev)
1825{
1826 return i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT;
1827}
1828
1829/*----------------------------------------------------------------*/
1830
1831/*
1832 * Construct a cache device mapping.
1833 *
1834 * cache <metadata dev> <cache dev> <origin dev> <block size>
1835 * <#feature args> [<feature arg>]*
1836 * <policy> <#policy args> [<policy arg>]*
1837 *
1838 * metadata dev : fast device holding the persistent metadata
1839 * cache dev : fast device holding cached data blocks
1840 * origin dev : slow device holding original data blocks
1841 * block size : cache unit size in sectors
1842 *
1843 * #feature args : number of feature arguments passed
1844 * feature args : writethrough. (The default is writeback.)
1845 *
1846 * policy : the replacement policy to use
1847 * #policy args : an even number of policy arguments corresponding
1848 * to key/value pairs passed to the policy
1849 * policy args : key/value pairs passed to the policy
1850 * E.g. 'sequential_threshold 1024'
1851 * See cache-policies.txt for details.
1852 *
1853 * Optional feature arguments are:
1854 * writethrough : write through caching that prohibits cache block
1855 * content from being different from origin block content.
1856 * Without this argument, the default behaviour is to write
1857 * back cache block contents later for performance reasons,
1858 * so they may differ from the corresponding origin blocks.
1859 */
1860struct cache_args {
1861 struct dm_target *ti;
1862
1863 struct dm_dev *metadata_dev;
1864
1865 struct dm_dev *cache_dev;
1866 sector_t cache_sectors;
1867
1868 struct dm_dev *origin_dev;
1869 sector_t origin_sectors;
1870
1871 uint32_t block_size;
1872
1873 const char *policy_name;
1874 int policy_argc;
1875 const char **policy_argv;
1876
1877 struct cache_features features;
1878};
1879
1880static void destroy_cache_args(struct cache_args *ca)
1881{
1882 if (ca->metadata_dev)
1883 dm_put_device(ca->ti, ca->metadata_dev);
1884
1885 if (ca->cache_dev)
1886 dm_put_device(ca->ti, ca->cache_dev);
1887
1888 if (ca->origin_dev)
1889 dm_put_device(ca->ti, ca->origin_dev);
1890
1891 kfree(ca);
1892}
1893
1894static bool at_least_one_arg(struct dm_arg_set *as, char **error)
1895{
1896 if (!as->argc) {
1897 *error = "Insufficient args";
1898 return false;
1899 }
1900
1901 return true;
1902}
1903
1904static int parse_metadata_dev(struct cache_args *ca, struct dm_arg_set *as,
1905 char **error)
1906{
1907 int r;
1908 sector_t metadata_dev_size;
1909 char b[BDEVNAME_SIZE];
1910
1911 if (!at_least_one_arg(as, error))
1912 return -EINVAL;
1913
1914 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1915 &ca->metadata_dev);
1916 if (r) {
1917 *error = "Error opening metadata device";
1918 return r;
1919 }
1920
1921 metadata_dev_size = get_dev_size(ca->metadata_dev);
1922 if (metadata_dev_size > DM_CACHE_METADATA_MAX_SECTORS_WARNING)
1923 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
1924 bdevname(ca->metadata_dev->bdev, b), THIN_METADATA_MAX_SECTORS);
1925
1926 return 0;
1927}
1928
1929static int parse_cache_dev(struct cache_args *ca, struct dm_arg_set *as,
1930 char **error)
1931{
1932 int r;
1933
1934 if (!at_least_one_arg(as, error))
1935 return -EINVAL;
1936
1937 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1938 &ca->cache_dev);
1939 if (r) {
1940 *error = "Error opening cache device";
1941 return r;
1942 }
1943 ca->cache_sectors = get_dev_size(ca->cache_dev);
1944
1945 return 0;
1946}
1947
1948static int parse_origin_dev(struct cache_args *ca, struct dm_arg_set *as,
1949 char **error)
1950{
1951 int r;
1952
1953 if (!at_least_one_arg(as, error))
1954 return -EINVAL;
1955
1956 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1957 &ca->origin_dev);
1958 if (r) {
1959 *error = "Error opening origin device";
1960 return r;
1961 }
1962
1963 ca->origin_sectors = get_dev_size(ca->origin_dev);
1964 if (ca->ti->len > ca->origin_sectors) {
1965 *error = "Device size larger than cached device";
1966 return -EINVAL;
1967 }
1968
1969 return 0;
1970}
1971
1972static int parse_block_size(struct cache_args *ca, struct dm_arg_set *as,
1973 char **error)
1974{
05473044 1975 unsigned long block_size;
c6b4fcba
JT
1976
1977 if (!at_least_one_arg(as, error))
1978 return -EINVAL;
1979
05473044
MS
1980 if (kstrtoul(dm_shift_arg(as), 10, &block_size) || !block_size ||
1981 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
1982 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
1983 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
c6b4fcba
JT
1984 *error = "Invalid data block size";
1985 return -EINVAL;
1986 }
1987
05473044 1988 if (block_size > ca->cache_sectors) {
c6b4fcba
JT
1989 *error = "Data block size is larger than the cache device";
1990 return -EINVAL;
1991 }
1992
05473044 1993 ca->block_size = block_size;
c6b4fcba
JT
1994
1995 return 0;
1996}
1997
1998static void init_features(struct cache_features *cf)
1999{
2000 cf->mode = CM_WRITE;
2ee57d58 2001 cf->io_mode = CM_IO_WRITEBACK;
c6b4fcba
JT
2002}
2003
2004static int parse_features(struct cache_args *ca, struct dm_arg_set *as,
2005 char **error)
2006{
2007 static struct dm_arg _args[] = {
2008 {0, 1, "Invalid number of cache feature arguments"},
2009 };
2010
2011 int r;
2012 unsigned argc;
2013 const char *arg;
2014 struct cache_features *cf = &ca->features;
2015
2016 init_features(cf);
2017
2018 r = dm_read_arg_group(_args, as, &argc, error);
2019 if (r)
2020 return -EINVAL;
2021
2022 while (argc--) {
2023 arg = dm_shift_arg(as);
2024
2025 if (!strcasecmp(arg, "writeback"))
2ee57d58 2026 cf->io_mode = CM_IO_WRITEBACK;
c6b4fcba
JT
2027
2028 else if (!strcasecmp(arg, "writethrough"))
2ee57d58
JT
2029 cf->io_mode = CM_IO_WRITETHROUGH;
2030
2031 else if (!strcasecmp(arg, "passthrough"))
2032 cf->io_mode = CM_IO_PASSTHROUGH;
c6b4fcba
JT
2033
2034 else {
2035 *error = "Unrecognised cache feature requested";
2036 return -EINVAL;
2037 }
2038 }
2039
2040 return 0;
2041}
2042
2043static int parse_policy(struct cache_args *ca, struct dm_arg_set *as,
2044 char **error)
2045{
2046 static struct dm_arg _args[] = {
2047 {0, 1024, "Invalid number of policy arguments"},
2048 };
2049
2050 int r;
2051
2052 if (!at_least_one_arg(as, error))
2053 return -EINVAL;
2054
2055 ca->policy_name = dm_shift_arg(as);
2056
2057 r = dm_read_arg_group(_args, as, &ca->policy_argc, error);
2058 if (r)
2059 return -EINVAL;
2060
2061 ca->policy_argv = (const char **)as->argv;
2062 dm_consume_args(as, ca->policy_argc);
2063
2064 return 0;
2065}
2066
2067static int parse_cache_args(struct cache_args *ca, int argc, char **argv,
2068 char **error)
2069{
2070 int r;
2071 struct dm_arg_set as;
2072
2073 as.argc = argc;
2074 as.argv = argv;
2075
2076 r = parse_metadata_dev(ca, &as, error);
2077 if (r)
2078 return r;
2079
2080 r = parse_cache_dev(ca, &as, error);
2081 if (r)
2082 return r;
2083
2084 r = parse_origin_dev(ca, &as, error);
2085 if (r)
2086 return r;
2087
2088 r = parse_block_size(ca, &as, error);
2089 if (r)
2090 return r;
2091
2092 r = parse_features(ca, &as, error);
2093 if (r)
2094 return r;
2095
2096 r = parse_policy(ca, &as, error);
2097 if (r)
2098 return r;
2099
2100 return 0;
2101}
2102
2103/*----------------------------------------------------------------*/
2104
2105static struct kmem_cache *migration_cache;
2106
2c73c471
AK
2107#define NOT_CORE_OPTION 1
2108
2f14f4b5 2109static int process_config_option(struct cache *cache, const char *key, const char *value)
2c73c471
AK
2110{
2111 unsigned long tmp;
2112
2f14f4b5
JT
2113 if (!strcasecmp(key, "migration_threshold")) {
2114 if (kstrtoul(value, 10, &tmp))
2c73c471
AK
2115 return -EINVAL;
2116
2117 cache->migration_threshold = tmp;
2118 return 0;
2119 }
2120
2121 return NOT_CORE_OPTION;
2122}
2123
2f14f4b5
JT
2124static int set_config_value(struct cache *cache, const char *key, const char *value)
2125{
2126 int r = process_config_option(cache, key, value);
2127
2128 if (r == NOT_CORE_OPTION)
2129 r = policy_set_config_value(cache->policy, key, value);
2130
2131 if (r)
2132 DMWARN("bad config value for %s: %s", key, value);
2133
2134 return r;
2135}
2136
2137static int set_config_values(struct cache *cache, int argc, const char **argv)
c6b4fcba
JT
2138{
2139 int r = 0;
2140
2141 if (argc & 1) {
2142 DMWARN("Odd number of policy arguments given but they should be <key> <value> pairs.");
2143 return -EINVAL;
2144 }
2145
2146 while (argc) {
2f14f4b5
JT
2147 r = set_config_value(cache, argv[0], argv[1]);
2148 if (r)
2149 break;
c6b4fcba
JT
2150
2151 argc -= 2;
2152 argv += 2;
2153 }
2154
2155 return r;
2156}
2157
2158static int create_cache_policy(struct cache *cache, struct cache_args *ca,
2159 char **error)
2160{
4cb3e1db
MP
2161 struct dm_cache_policy *p = dm_cache_policy_create(ca->policy_name,
2162 cache->cache_size,
2163 cache->origin_sectors,
2164 cache->sectors_per_block);
2165 if (IS_ERR(p)) {
c6b4fcba 2166 *error = "Error creating cache's policy";
4cb3e1db 2167 return PTR_ERR(p);
c6b4fcba 2168 }
4cb3e1db 2169 cache->policy = p;
c6b4fcba 2170
2f14f4b5 2171 return 0;
c6b4fcba
JT
2172}
2173
f8350daf 2174#define DEFAULT_MIGRATION_THRESHOLD 2048
c6b4fcba 2175
c6b4fcba
JT
2176static int cache_create(struct cache_args *ca, struct cache **result)
2177{
2178 int r = 0;
2179 char **error = &ca->ti->error;
2180 struct cache *cache;
2181 struct dm_target *ti = ca->ti;
2182 dm_block_t origin_blocks;
2183 struct dm_cache_metadata *cmd;
2184 bool may_format = ca->features.mode == CM_WRITE;
2185
2186 cache = kzalloc(sizeof(*cache), GFP_KERNEL);
2187 if (!cache)
2188 return -ENOMEM;
2189
2190 cache->ti = ca->ti;
2191 ti->private = cache;
c6b4fcba
JT
2192 ti->num_flush_bios = 2;
2193 ti->flush_supported = true;
2194
2195 ti->num_discard_bios = 1;
2196 ti->discards_supported = true;
2197 ti->discard_zeroes_data_unsupported = true;
2198
8c5008fa 2199 cache->features = ca->features;
19b0092e 2200 ti->per_bio_data_size = get_per_bio_data_size(cache);
c6b4fcba 2201
c6b4fcba
JT
2202 cache->callbacks.congested_fn = cache_is_congested;
2203 dm_table_add_target_callbacks(ti->table, &cache->callbacks);
2204
2205 cache->metadata_dev = ca->metadata_dev;
2206 cache->origin_dev = ca->origin_dev;
2207 cache->cache_dev = ca->cache_dev;
2208
2209 ca->metadata_dev = ca->origin_dev = ca->cache_dev = NULL;
2210
2211 /* FIXME: factor out this whole section */
2212 origin_blocks = cache->origin_sectors = ca->origin_sectors;
414dd67d 2213 origin_blocks = block_div(origin_blocks, ca->block_size);
c6b4fcba
JT
2214 cache->origin_blocks = to_oblock(origin_blocks);
2215
2216 cache->sectors_per_block = ca->block_size;
2217 if (dm_set_target_max_io_len(ti, cache->sectors_per_block)) {
2218 r = -EINVAL;
2219 goto bad;
2220 }
2221
2222 if (ca->block_size & (ca->block_size - 1)) {
2223 dm_block_t cache_size = ca->cache_sectors;
2224
2225 cache->sectors_per_block_shift = -1;
414dd67d 2226 cache_size = block_div(cache_size, ca->block_size);
c6b4fcba
JT
2227 cache->cache_size = to_cblock(cache_size);
2228 } else {
2229 cache->sectors_per_block_shift = __ffs(ca->block_size);
2230 cache->cache_size = to_cblock(ca->cache_sectors >> cache->sectors_per_block_shift);
2231 }
2232
2233 r = create_cache_policy(cache, ca, error);
2234 if (r)
2235 goto bad;
2f14f4b5 2236
c6b4fcba 2237 cache->policy_nr_args = ca->policy_argc;
2f14f4b5
JT
2238 cache->migration_threshold = DEFAULT_MIGRATION_THRESHOLD;
2239
2240 r = set_config_values(cache, ca->policy_argc, ca->policy_argv);
2241 if (r) {
2242 *error = "Error setting cache policy's config values";
2243 goto bad;
2244 }
c6b4fcba
JT
2245
2246 cmd = dm_cache_metadata_open(cache->metadata_dev->bdev,
2247 ca->block_size, may_format,
2248 dm_cache_policy_get_hint_size(cache->policy));
2249 if (IS_ERR(cmd)) {
2250 *error = "Error creating metadata object";
2251 r = PTR_ERR(cmd);
2252 goto bad;
2253 }
2254 cache->cmd = cmd;
2255
2ee57d58
JT
2256 if (passthrough_mode(&cache->features)) {
2257 bool all_clean;
2258
2259 r = dm_cache_metadata_all_clean(cache->cmd, &all_clean);
2260 if (r) {
2261 *error = "dm_cache_metadata_all_clean() failed";
2262 goto bad;
2263 }
2264
2265 if (!all_clean) {
2266 *error = "Cannot enter passthrough mode unless all blocks are clean";
2267 r = -EINVAL;
2268 goto bad;
2269 }
2270 }
2271
c6b4fcba
JT
2272 spin_lock_init(&cache->lock);
2273 bio_list_init(&cache->deferred_bios);
2274 bio_list_init(&cache->deferred_flush_bios);
e2e74d61 2275 bio_list_init(&cache->deferred_writethrough_bios);
c6b4fcba
JT
2276 INIT_LIST_HEAD(&cache->quiesced_migrations);
2277 INIT_LIST_HEAD(&cache->completed_migrations);
2278 INIT_LIST_HEAD(&cache->need_commit_migrations);
c6b4fcba
JT
2279 atomic_set(&cache->nr_migrations, 0);
2280 init_waitqueue_head(&cache->migration_wait);
2281
66cb1910 2282 init_waitqueue_head(&cache->quiescing_wait);
238f8363 2283 atomic_set(&cache->quiescing, 0);
66cb1910
JT
2284 atomic_set(&cache->quiescing_ack, 0);
2285
fa4d683a 2286 r = -ENOMEM;
c6b4fcba
JT
2287 cache->nr_dirty = 0;
2288 cache->dirty_bitset = alloc_bitset(from_cblock(cache->cache_size));
2289 if (!cache->dirty_bitset) {
2290 *error = "could not allocate dirty bitset";
2291 goto bad;
2292 }
2293 clear_bitset(cache->dirty_bitset, from_cblock(cache->cache_size));
2294
d132cc6d 2295 cache->discard_block_size = cache->sectors_per_block;
c6b4fcba
JT
2296 cache->discard_nr_blocks = oblock_to_dblock(cache, cache->origin_blocks);
2297 cache->discard_bitset = alloc_bitset(from_dblock(cache->discard_nr_blocks));
2298 if (!cache->discard_bitset) {
2299 *error = "could not allocate discard bitset";
2300 goto bad;
2301 }
2302 clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));
2303
2304 cache->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
2305 if (IS_ERR(cache->copier)) {
2306 *error = "could not create kcopyd client";
2307 r = PTR_ERR(cache->copier);
2308 goto bad;
2309 }
2310
2311 cache->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
2312 if (!cache->wq) {
2313 *error = "could not create workqueue for metadata object";
2314 goto bad;
2315 }
2316 INIT_WORK(&cache->worker, do_worker);
2317 INIT_DELAYED_WORK(&cache->waker, do_waker);
2318 cache->last_commit_jiffies = jiffies;
2319
2320 cache->prison = dm_bio_prison_create(PRISON_CELLS);
2321 if (!cache->prison) {
2322 *error = "could not create bio prison";
2323 goto bad;
2324 }
2325
2326 cache->all_io_ds = dm_deferred_set_create();
2327 if (!cache->all_io_ds) {
2328 *error = "could not create all_io deferred set";
2329 goto bad;
2330 }
2331
2332 cache->migration_pool = mempool_create_slab_pool(MIGRATION_POOL_SIZE,
2333 migration_cache);
2334 if (!cache->migration_pool) {
2335 *error = "Error creating cache's migration mempool";
2336 goto bad;
2337 }
2338
2339 cache->next_migration = NULL;
2340
2341 cache->need_tick_bio = true;
2342 cache->sized = false;
65790ff9 2343 cache->invalidate = false;
c6b4fcba
JT
2344 cache->commit_requested = false;
2345 cache->loaded_mappings = false;
2346 cache->loaded_discards = false;
2347
2348 load_stats(cache);
2349
2350 atomic_set(&cache->stats.demotion, 0);
2351 atomic_set(&cache->stats.promotion, 0);
2352 atomic_set(&cache->stats.copies_avoided, 0);
2353 atomic_set(&cache->stats.cache_cell_clash, 0);
2354 atomic_set(&cache->stats.commit_count, 0);
2355 atomic_set(&cache->stats.discard_count, 0);
2356
65790ff9
JT
2357 spin_lock_init(&cache->invalidation_lock);
2358 INIT_LIST_HEAD(&cache->invalidation_requests);
2359
c6b4fcba
JT
2360 *result = cache;
2361 return 0;
2362
2363bad:
2364 destroy(cache);
2365 return r;
2366}
2367
2368static int copy_ctr_args(struct cache *cache, int argc, const char **argv)
2369{
2370 unsigned i;
2371 const char **copy;
2372
2373 copy = kcalloc(argc, sizeof(*copy), GFP_KERNEL);
2374 if (!copy)
2375 return -ENOMEM;
2376 for (i = 0; i < argc; i++) {
2377 copy[i] = kstrdup(argv[i], GFP_KERNEL);
2378 if (!copy[i]) {
2379 while (i--)
2380 kfree(copy[i]);
2381 kfree(copy);
2382 return -ENOMEM;
2383 }
2384 }
2385
2386 cache->nr_ctr_args = argc;
2387 cache->ctr_args = copy;
2388
2389 return 0;
2390}
2391
2392static int cache_ctr(struct dm_target *ti, unsigned argc, char **argv)
2393{
2394 int r = -EINVAL;
2395 struct cache_args *ca;
2396 struct cache *cache = NULL;
2397
2398 ca = kzalloc(sizeof(*ca), GFP_KERNEL);
2399 if (!ca) {
2400 ti->error = "Error allocating memory for cache";
2401 return -ENOMEM;
2402 }
2403 ca->ti = ti;
2404
2405 r = parse_cache_args(ca, argc, argv, &ti->error);
2406 if (r)
2407 goto out;
2408
2409 r = cache_create(ca, &cache);
617a0b89
HM
2410 if (r)
2411 goto out;
c6b4fcba
JT
2412
2413 r = copy_ctr_args(cache, argc - 3, (const char **)argv + 3);
2414 if (r) {
2415 destroy(cache);
2416 goto out;
2417 }
2418
2419 ti->private = cache;
2420
2421out:
2422 destroy_cache_args(ca);
2423 return r;
2424}
2425
c6b4fcba
JT
2426static int cache_map(struct dm_target *ti, struct bio *bio)
2427{
2428 struct cache *cache = ti->private;
2429
2430 int r;
2431 dm_oblock_t block = get_bio_block(cache, bio);
19b0092e 2432 size_t pb_data_size = get_per_bio_data_size(cache);
c6b4fcba
JT
2433 bool can_migrate = false;
2434 bool discarded_block;
2435 struct dm_bio_prison_cell *cell;
2436 struct policy_result lookup_result;
e893fba9 2437 struct per_bio_data *pb = init_per_bio_data(bio, pb_data_size);
c6b4fcba 2438
e893fba9 2439 if (unlikely(from_oblock(block) >= from_oblock(cache->origin_blocks))) {
c6b4fcba
JT
2440 /*
2441 * This can only occur if the io goes to a partial block at
2442 * the end of the origin device. We don't cache these.
2443 * Just remap to the origin and carry on.
2444 */
e893fba9 2445 remap_to_origin(cache, bio);
c6b4fcba
JT
2446 return DM_MAPIO_REMAPPED;
2447 }
2448
c6b4fcba
JT
2449 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA | REQ_DISCARD)) {
2450 defer_bio(cache, bio);
2451 return DM_MAPIO_SUBMITTED;
2452 }
2453
2454 /*
2455 * Check to see if that block is currently migrating.
2456 */
2457 cell = alloc_prison_cell(cache);
2458 if (!cell) {
2459 defer_bio(cache, bio);
2460 return DM_MAPIO_SUBMITTED;
2461 }
2462
2463 r = bio_detain(cache, block, bio, cell,
2464 (cell_free_fn) free_prison_cell,
2465 cache, &cell);
2466 if (r) {
2467 if (r < 0)
2468 defer_bio(cache, bio);
2469
2470 return DM_MAPIO_SUBMITTED;
2471 }
2472
2473 discarded_block = is_discarded_oblock(cache, block);
2474
2475 r = policy_map(cache->policy, block, false, can_migrate, discarded_block,
2476 bio, &lookup_result);
2477 if (r == -EWOULDBLOCK) {
2478 cell_defer(cache, cell, true);
2479 return DM_MAPIO_SUBMITTED;
2480
2481 } else if (r) {
2482 DMERR_LIMIT("Unexpected return from cache replacement policy: %d", r);
2483 bio_io_error(bio);
2484 return DM_MAPIO_SUBMITTED;
2485 }
2486
2ee57d58 2487 r = DM_MAPIO_REMAPPED;
c6b4fcba
JT
2488 switch (lookup_result.op) {
2489 case POLICY_HIT:
2ee57d58
JT
2490 if (passthrough_mode(&cache->features)) {
2491 if (bio_data_dir(bio) == WRITE) {
2492 /*
2493 * We need to invalidate this block, so
2494 * defer for the worker thread.
2495 */
2496 cell_defer(cache, cell, true);
2497 r = DM_MAPIO_SUBMITTED;
2498
2499 } else {
2500 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
2501 inc_miss_counter(cache, bio);
2502 remap_to_origin_clear_discard(cache, bio, block);
2503
2504 cell_defer(cache, cell, false);
2505 }
c6b4fcba 2506
2ee57d58
JT
2507 } else {
2508 inc_hit_counter(cache, bio);
2509
2510 if (bio_data_dir(bio) == WRITE && writethrough_mode(&cache->features) &&
2511 !is_dirty(cache, lookup_result.cblock))
2512 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
2513 else
2514 remap_to_cache_dirty(cache, bio, block, lookup_result.cblock);
e2e74d61 2515
2ee57d58
JT
2516 cell_defer(cache, cell, false);
2517 }
c6b4fcba
JT
2518 break;
2519
2520 case POLICY_MISS:
2521 inc_miss_counter(cache, bio);
2522 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
2523
2524 if (pb->req_nr != 0) {
2525 /*
2526 * This is a duplicate writethrough io that is no
2527 * longer needed because the block has been demoted.
2528 */
2529 bio_endio(bio, 0);
2530 cell_defer(cache, cell, false);
2531 return DM_MAPIO_SUBMITTED;
2532 } else {
2533 remap_to_origin_clear_discard(cache, bio, block);
2534 cell_defer(cache, cell, false);
2535 }
2536 break;
2537
2538 default:
2539 DMERR_LIMIT("%s: erroring bio: unknown policy op: %u", __func__,
2540 (unsigned) lookup_result.op);
2541 bio_io_error(bio);
2ee57d58 2542 r = DM_MAPIO_SUBMITTED;
c6b4fcba
JT
2543 }
2544
2ee57d58 2545 return r;
c6b4fcba
JT
2546}
2547
2548static int cache_end_io(struct dm_target *ti, struct bio *bio, int error)
2549{
2550 struct cache *cache = ti->private;
2551 unsigned long flags;
19b0092e
MS
2552 size_t pb_data_size = get_per_bio_data_size(cache);
2553 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
c6b4fcba
JT
2554
2555 if (pb->tick) {
2556 policy_tick(cache->policy);
2557
2558 spin_lock_irqsave(&cache->lock, flags);
2559 cache->need_tick_bio = true;
2560 spin_unlock_irqrestore(&cache->lock, flags);
2561 }
2562
2563 check_for_quiesced_migrations(cache, pb);
2564
2565 return 0;
2566}
2567
2568static int write_dirty_bitset(struct cache *cache)
2569{
2570 unsigned i, r;
2571
2572 for (i = 0; i < from_cblock(cache->cache_size); i++) {
2573 r = dm_cache_set_dirty(cache->cmd, to_cblock(i),
2574 is_dirty(cache, to_cblock(i)));
2575 if (r)
2576 return r;
2577 }
2578
2579 return 0;
2580}
2581
2582static int write_discard_bitset(struct cache *cache)
2583{
2584 unsigned i, r;
2585
2586 r = dm_cache_discard_bitset_resize(cache->cmd, cache->discard_block_size,
2587 cache->discard_nr_blocks);
2588 if (r) {
2589 DMERR("could not resize on-disk discard bitset");
2590 return r;
2591 }
2592
2593 for (i = 0; i < from_dblock(cache->discard_nr_blocks); i++) {
2594 r = dm_cache_set_discard(cache->cmd, to_dblock(i),
2595 is_discarded(cache, to_dblock(i)));
2596 if (r)
2597 return r;
2598 }
2599
2600 return 0;
2601}
2602
2603static int save_hint(void *context, dm_cblock_t cblock, dm_oblock_t oblock,
2604 uint32_t hint)
2605{
2606 struct cache *cache = context;
2607 return dm_cache_save_hint(cache->cmd, cblock, hint);
2608}
2609
2610static int write_hints(struct cache *cache)
2611{
2612 int r;
2613
2614 r = dm_cache_begin_hints(cache->cmd, cache->policy);
2615 if (r) {
2616 DMERR("dm_cache_begin_hints failed");
2617 return r;
2618 }
2619
2620 r = policy_walk_mappings(cache->policy, save_hint, cache);
2621 if (r)
2622 DMERR("policy_walk_mappings failed");
2623
2624 return r;
2625}
2626
2627/*
2628 * returns true on success
2629 */
2630static bool sync_metadata(struct cache *cache)
2631{
2632 int r1, r2, r3, r4;
2633
2634 r1 = write_dirty_bitset(cache);
2635 if (r1)
2636 DMERR("could not write dirty bitset");
2637
2638 r2 = write_discard_bitset(cache);
2639 if (r2)
2640 DMERR("could not write discard bitset");
2641
2642 save_stats(cache);
2643
2644 r3 = write_hints(cache);
2645 if (r3)
2646 DMERR("could not write hints");
2647
2648 /*
2649 * If writing the above metadata failed, we still commit, but don't
2650 * set the clean shutdown flag. This will effectively force every
2651 * dirty bit to be set on reload.
2652 */
2653 r4 = dm_cache_commit(cache->cmd, !r1 && !r2 && !r3);
2654 if (r4)
2655 DMERR("could not write cache metadata. Data loss may occur.");
2656
2657 return !r1 && !r2 && !r3 && !r4;
2658}
2659
2660static void cache_postsuspend(struct dm_target *ti)
2661{
2662 struct cache *cache = ti->private;
2663
2664 start_quiescing(cache);
2665 wait_for_migrations(cache);
2666 stop_worker(cache);
2667 requeue_deferred_io(cache);
2668 stop_quiescing(cache);
2669
2670 (void) sync_metadata(cache);
2671}
2672
2673static int load_mapping(void *context, dm_oblock_t oblock, dm_cblock_t cblock,
2674 bool dirty, uint32_t hint, bool hint_valid)
2675{
2676 int r;
2677 struct cache *cache = context;
2678
2679 r = policy_load_mapping(cache->policy, oblock, cblock, hint, hint_valid);
2680 if (r)
2681 return r;
2682
2683 if (dirty)
2684 set_dirty(cache, oblock, cblock);
2685 else
2686 clear_dirty(cache, oblock, cblock);
2687
2688 return 0;
2689}
2690
2691static int load_discard(void *context, sector_t discard_block_size,
2692 dm_dblock_t dblock, bool discard)
2693{
2694 struct cache *cache = context;
2695
2696 /* FIXME: handle mis-matched block size */
2697
2698 if (discard)
2699 set_discard(cache, dblock);
2700 else
2701 clear_discard(cache, dblock);
2702
2703 return 0;
2704}
2705
f494a9c6
JT
2706static dm_cblock_t get_cache_dev_size(struct cache *cache)
2707{
2708 sector_t size = get_dev_size(cache->cache_dev);
2709 (void) sector_div(size, cache->sectors_per_block);
2710 return to_cblock(size);
2711}
2712
2713static bool can_resize(struct cache *cache, dm_cblock_t new_size)
2714{
2715 if (from_cblock(new_size) > from_cblock(cache->cache_size))
2716 return true;
2717
2718 /*
2719 * We can't drop a dirty block when shrinking the cache.
2720 */
2721 while (from_cblock(new_size) < from_cblock(cache->cache_size)) {
2722 new_size = to_cblock(from_cblock(new_size) + 1);
2723 if (is_dirty(cache, new_size)) {
2724 DMERR("unable to shrink cache; cache block %llu is dirty",
2725 (unsigned long long) from_cblock(new_size));
2726 return false;
2727 }
2728 }
2729
2730 return true;
2731}
2732
2733static int resize_cache_dev(struct cache *cache, dm_cblock_t new_size)
2734{
2735 int r;
2736
08844800 2737 r = dm_cache_resize(cache->cmd, new_size);
f494a9c6
JT
2738 if (r) {
2739 DMERR("could not resize cache metadata");
2740 return r;
2741 }
2742
2743 cache->cache_size = new_size;
2744
2745 return 0;
2746}
2747
c6b4fcba
JT
2748static int cache_preresume(struct dm_target *ti)
2749{
2750 int r = 0;
2751 struct cache *cache = ti->private;
f494a9c6 2752 dm_cblock_t csize = get_cache_dev_size(cache);
c6b4fcba
JT
2753
2754 /*
2755 * Check to see if the cache has resized.
2756 */
f494a9c6
JT
2757 if (!cache->sized) {
2758 r = resize_cache_dev(cache, csize);
2759 if (r)
c6b4fcba 2760 return r;
c6b4fcba
JT
2761
2762 cache->sized = true;
f494a9c6
JT
2763
2764 } else if (csize != cache->cache_size) {
2765 if (!can_resize(cache, csize))
2766 return -EINVAL;
2767
2768 r = resize_cache_dev(cache, csize);
2769 if (r)
2770 return r;
c6b4fcba
JT
2771 }
2772
2773 if (!cache->loaded_mappings) {
ea2dd8c1 2774 r = dm_cache_load_mappings(cache->cmd, cache->policy,
c6b4fcba
JT
2775 load_mapping, cache);
2776 if (r) {
2777 DMERR("could not load cache mappings");
2778 return r;
2779 }
2780
2781 cache->loaded_mappings = true;
2782 }
2783
2784 if (!cache->loaded_discards) {
2785 r = dm_cache_load_discards(cache->cmd, load_discard, cache);
2786 if (r) {
2787 DMERR("could not load origin discards");
2788 return r;
2789 }
2790
2791 cache->loaded_discards = true;
2792 }
2793
2794 return r;
2795}
2796
2797static void cache_resume(struct dm_target *ti)
2798{
2799 struct cache *cache = ti->private;
2800
2801 cache->need_tick_bio = true;
2802 do_waker(&cache->waker.work);
2803}
2804
2805/*
2806 * Status format:
2807 *
6a388618
MS
2808 * <metadata block size> <#used metadata blocks>/<#total metadata blocks>
2809 * <cache block size> <#used cache blocks>/<#total cache blocks>
c6b4fcba 2810 * <#read hits> <#read misses> <#write hits> <#write misses>
6a388618 2811 * <#demotions> <#promotions> <#dirty>
c6b4fcba
JT
2812 * <#features> <features>*
2813 * <#core args> <core args>
2e68c4e6 2814 * <policy name> <#policy args> <policy args>*
c6b4fcba
JT
2815 */
2816static void cache_status(struct dm_target *ti, status_type_t type,
2817 unsigned status_flags, char *result, unsigned maxlen)
2818{
2819 int r = 0;
2820 unsigned i;
2821 ssize_t sz = 0;
2822 dm_block_t nr_free_blocks_metadata = 0;
2823 dm_block_t nr_blocks_metadata = 0;
2824 char buf[BDEVNAME_SIZE];
2825 struct cache *cache = ti->private;
2826 dm_cblock_t residency;
2827
2828 switch (type) {
2829 case STATUSTYPE_INFO:
2830 /* Commit to ensure statistics aren't out-of-date */
2831 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti)) {
2832 r = dm_cache_commit(cache->cmd, false);
2833 if (r)
2834 DMERR("could not commit metadata for accurate status");
2835 }
2836
2837 r = dm_cache_get_free_metadata_block_count(cache->cmd,
2838 &nr_free_blocks_metadata);
2839 if (r) {
2840 DMERR("could not get metadata free block count");
2841 goto err;
2842 }
2843
2844 r = dm_cache_get_metadata_dev_size(cache->cmd, &nr_blocks_metadata);
2845 if (r) {
2846 DMERR("could not get metadata device size");
2847 goto err;
2848 }
2849
2850 residency = policy_residency(cache->policy);
2851
6a388618
MS
2852 DMEMIT("%u %llu/%llu %u %llu/%llu %u %u %u %u %u %u %llu ",
2853 (unsigned)(DM_CACHE_METADATA_BLOCK_SIZE >> SECTOR_SHIFT),
c6b4fcba
JT
2854 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
2855 (unsigned long long)nr_blocks_metadata,
6a388618
MS
2856 cache->sectors_per_block,
2857 (unsigned long long) from_cblock(residency),
2858 (unsigned long long) from_cblock(cache->cache_size),
c6b4fcba
JT
2859 (unsigned) atomic_read(&cache->stats.read_hit),
2860 (unsigned) atomic_read(&cache->stats.read_miss),
2861 (unsigned) atomic_read(&cache->stats.write_hit),
2862 (unsigned) atomic_read(&cache->stats.write_miss),
2863 (unsigned) atomic_read(&cache->stats.demotion),
2864 (unsigned) atomic_read(&cache->stats.promotion),
6a388618 2865 (unsigned long long) from_cblock(cache->nr_dirty));
c6b4fcba 2866
2ee57d58 2867 if (writethrough_mode(&cache->features))
c6b4fcba 2868 DMEMIT("1 writethrough ");
2ee57d58
JT
2869
2870 else if (passthrough_mode(&cache->features))
2871 DMEMIT("1 passthrough ");
2872
2873 else if (writeback_mode(&cache->features))
2874 DMEMIT("1 writeback ");
2875
2876 else {
2877 DMERR("internal error: unknown io mode: %d", (int) cache->features.io_mode);
2878 goto err;
2879 }
c6b4fcba
JT
2880
2881 DMEMIT("2 migration_threshold %llu ", (unsigned long long) cache->migration_threshold);
2e68c4e6
MS
2882
2883 DMEMIT("%s ", dm_cache_policy_get_name(cache->policy));
c6b4fcba
JT
2884 if (sz < maxlen) {
2885 r = policy_emit_config_values(cache->policy, result + sz, maxlen - sz);
2886 if (r)
2887 DMERR("policy_emit_config_values returned %d", r);
2888 }
2889
2890 break;
2891
2892 case STATUSTYPE_TABLE:
2893 format_dev_t(buf, cache->metadata_dev->bdev->bd_dev);
2894 DMEMIT("%s ", buf);
2895 format_dev_t(buf, cache->cache_dev->bdev->bd_dev);
2896 DMEMIT("%s ", buf);
2897 format_dev_t(buf, cache->origin_dev->bdev->bd_dev);
2898 DMEMIT("%s", buf);
2899
2900 for (i = 0; i < cache->nr_ctr_args - 1; i++)
2901 DMEMIT(" %s", cache->ctr_args[i]);
2902 if (cache->nr_ctr_args)
2903 DMEMIT(" %s", cache->ctr_args[cache->nr_ctr_args - 1]);
2904 }
2905
2906 return;
2907
2908err:
2909 DMEMIT("Error");
2910}
2911
c6b4fcba 2912/*
65790ff9
JT
2913 * A cache block range can take two forms:
2914 *
2915 * i) A single cblock, eg. '3456'
2916 * ii) A begin and end cblock with dots between, eg. 123-234
2917 */
2918static int parse_cblock_range(struct cache *cache, const char *str,
2919 struct cblock_range *result)
2920{
2921 char dummy;
2922 uint64_t b, e;
2923 int r;
2924
2925 /*
2926 * Try and parse form (ii) first.
2927 */
2928 r = sscanf(str, "%llu-%llu%c", &b, &e, &dummy);
2929 if (r < 0)
2930 return r;
2931
2932 if (r == 2) {
2933 result->begin = to_cblock(b);
2934 result->end = to_cblock(e);
2935 return 0;
2936 }
2937
2938 /*
2939 * That didn't work, try form (i).
2940 */
2941 r = sscanf(str, "%llu%c", &b, &dummy);
2942 if (r < 0)
2943 return r;
2944
2945 if (r == 1) {
2946 result->begin = to_cblock(b);
2947 result->end = to_cblock(from_cblock(result->begin) + 1u);
2948 return 0;
2949 }
2950
2951 DMERR("invalid cblock range '%s'", str);
2952 return -EINVAL;
2953}
2954
2955static int validate_cblock_range(struct cache *cache, struct cblock_range *range)
2956{
2957 uint64_t b = from_cblock(range->begin);
2958 uint64_t e = from_cblock(range->end);
2959 uint64_t n = from_cblock(cache->cache_size);
2960
2961 if (b >= n) {
2962 DMERR("begin cblock out of range: %llu >= %llu", b, n);
2963 return -EINVAL;
2964 }
2965
2966 if (e > n) {
2967 DMERR("end cblock out of range: %llu > %llu", e, n);
2968 return -EINVAL;
2969 }
2970
2971 if (b >= e) {
2972 DMERR("invalid cblock range: %llu >= %llu", b, e);
2973 return -EINVAL;
2974 }
2975
2976 return 0;
2977}
2978
2979static int request_invalidation(struct cache *cache, struct cblock_range *range)
2980{
2981 struct invalidation_request req;
2982
2983 INIT_LIST_HEAD(&req.list);
2984 req.cblocks = range;
2985 atomic_set(&req.complete, 0);
2986 req.err = 0;
2987 init_waitqueue_head(&req.result_wait);
2988
2989 spin_lock(&cache->invalidation_lock);
2990 list_add(&req.list, &cache->invalidation_requests);
2991 spin_unlock(&cache->invalidation_lock);
2992 wake_worker(cache);
2993
2994 wait_event(req.result_wait, atomic_read(&req.complete));
2995 return req.err;
2996}
2997
2998static int process_invalidate_cblocks_message(struct cache *cache, unsigned count,
2999 const char **cblock_ranges)
3000{
3001 int r = 0;
3002 unsigned i;
3003 struct cblock_range range;
3004
3005 if (!passthrough_mode(&cache->features)) {
3006 DMERR("cache has to be in passthrough mode for invalidation");
3007 return -EPERM;
3008 }
3009
3010 for (i = 0; i < count; i++) {
3011 r = parse_cblock_range(cache, cblock_ranges[i], &range);
3012 if (r)
3013 break;
3014
3015 r = validate_cblock_range(cache, &range);
3016 if (r)
3017 break;
3018
3019 /*
3020 * Pass begin and end origin blocks to the worker and wake it.
3021 */
3022 r = request_invalidation(cache, &range);
3023 if (r)
3024 break;
3025 }
3026
3027 return r;
3028}
3029
3030/*
3031 * Supports
3032 * "<key> <value>"
3033 * and
3034 * "invalidate_cblocks [(<begin>)|(<begin>-<end>)]*
c6b4fcba
JT
3035 *
3036 * The key migration_threshold is supported by the cache target core.
3037 */
3038static int cache_message(struct dm_target *ti, unsigned argc, char **argv)
3039{
c6b4fcba
JT
3040 struct cache *cache = ti->private;
3041
65790ff9
JT
3042 if (!argc)
3043 return -EINVAL;
3044
7b6b2bc9 3045 if (!strcasecmp(argv[0], "invalidate_cblocks"))
65790ff9
JT
3046 return process_invalidate_cblocks_message(cache, argc - 1, (const char **) argv + 1);
3047
c6b4fcba
JT
3048 if (argc != 2)
3049 return -EINVAL;
3050
2f14f4b5 3051 return set_config_value(cache, argv[0], argv[1]);
c6b4fcba
JT
3052}
3053
3054static int cache_iterate_devices(struct dm_target *ti,
3055 iterate_devices_callout_fn fn, void *data)
3056{
3057 int r = 0;
3058 struct cache *cache = ti->private;
3059
3060 r = fn(ti, cache->cache_dev, 0, get_dev_size(cache->cache_dev), data);
3061 if (!r)
3062 r = fn(ti, cache->origin_dev, 0, ti->len, data);
3063
3064 return r;
3065}
3066
3067/*
3068 * We assume I/O is going to the origin (which is the volume
3069 * more likely to have restrictions e.g. by being striped).
3070 * (Looking up the exact location of the data would be expensive
3071 * and could always be out of date by the time the bio is submitted.)
3072 */
3073static int cache_bvec_merge(struct dm_target *ti,
3074 struct bvec_merge_data *bvm,
3075 struct bio_vec *biovec, int max_size)
3076{
3077 struct cache *cache = ti->private;
3078 struct request_queue *q = bdev_get_queue(cache->origin_dev->bdev);
3079
3080 if (!q->merge_bvec_fn)
3081 return max_size;
3082
3083 bvm->bi_bdev = cache->origin_dev->bdev;
3084 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
3085}
3086
3087static void set_discard_limits(struct cache *cache, struct queue_limits *limits)
3088{
3089 /*
3090 * FIXME: these limits may be incompatible with the cache device
3091 */
d132cc6d 3092 limits->max_discard_sectors = cache->discard_block_size;
c6b4fcba
JT
3093 limits->discard_granularity = cache->discard_block_size << SECTOR_SHIFT;
3094}
3095
3096static void cache_io_hints(struct dm_target *ti, struct queue_limits *limits)
3097{
3098 struct cache *cache = ti->private;
f6109372 3099 uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
c6b4fcba 3100
f6109372
MS
3101 /*
3102 * If the system-determined stacked limits are compatible with the
3103 * cache's blocksize (io_opt is a factor) do not override them.
3104 */
3105 if (io_opt_sectors < cache->sectors_per_block ||
3106 do_div(io_opt_sectors, cache->sectors_per_block)) {
3107 blk_limits_io_min(limits, 0);
3108 blk_limits_io_opt(limits, cache->sectors_per_block << SECTOR_SHIFT);
3109 }
c6b4fcba
JT
3110 set_discard_limits(cache, limits);
3111}
3112
3113/*----------------------------------------------------------------*/
3114
3115static struct target_type cache_target = {
3116 .name = "cache",
6a388618 3117 .version = {1, 3, 0},
c6b4fcba
JT
3118 .module = THIS_MODULE,
3119 .ctr = cache_ctr,
3120 .dtr = cache_dtr,
3121 .map = cache_map,
3122 .end_io = cache_end_io,
3123 .postsuspend = cache_postsuspend,
3124 .preresume = cache_preresume,
3125 .resume = cache_resume,
3126 .status = cache_status,
3127 .message = cache_message,
3128 .iterate_devices = cache_iterate_devices,
3129 .merge = cache_bvec_merge,
3130 .io_hints = cache_io_hints,
3131};
3132
3133static int __init dm_cache_init(void)
3134{
3135 int r;
3136
3137 r = dm_register_target(&cache_target);
3138 if (r) {
3139 DMERR("cache target registration failed: %d", r);
3140 return r;
3141 }
3142
3143 migration_cache = KMEM_CACHE(dm_cache_migration, 0);
3144 if (!migration_cache) {
3145 dm_unregister_target(&cache_target);
3146 return -ENOMEM;
3147 }
3148
3149 return 0;
3150}
3151
3152static void __exit dm_cache_exit(void)
3153{
3154 dm_unregister_target(&cache_target);
3155 kmem_cache_destroy(migration_cache);
3156}
3157
3158module_init(dm_cache_init);
3159module_exit(dm_cache_exit);
3160
3161MODULE_DESCRIPTION(DM_NAME " cache target");
3162MODULE_AUTHOR("Joe Thornber <ejt@redhat.com>");
3163MODULE_LICENSE("GPL");
This page took 0.238116 seconds and 5 git commands to generate.