]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/md/dm-cache-target.c
block: add a op_is_flush helper
[mirror_ubuntu-artful-kernel.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>
0f30af98 14#include <linux/jiffies.h>
c6b4fcba
JT
15#include <linux/init.h>
16#include <linux/mempool.h>
17#include <linux/module.h>
18#include <linux/slab.h>
19#include <linux/vmalloc.h>
20
21#define DM_MSG_PREFIX "cache"
22
23DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(cache_copy_throttle,
24 "A percentage of time allocated for copying to and/or from cache");
25
26/*----------------------------------------------------------------*/
27
77289d32
JT
28#define IOT_RESOLUTION 4
29
30struct io_tracker {
31 spinlock_t lock;
32
33 /*
34 * Sectors of in-flight IO.
35 */
36 sector_t in_flight;
37
38 /*
39 * The time, in jiffies, when this device became idle (if it is
40 * indeed idle).
41 */
42 unsigned long idle_time;
43 unsigned long last_update_time;
44};
45
46static void iot_init(struct io_tracker *iot)
47{
48 spin_lock_init(&iot->lock);
49 iot->in_flight = 0ul;
50 iot->idle_time = 0ul;
51 iot->last_update_time = jiffies;
52}
53
54static bool __iot_idle_for(struct io_tracker *iot, unsigned long jifs)
55{
56 if (iot->in_flight)
57 return false;
58
59 return time_after(jiffies, iot->idle_time + jifs);
60}
61
62static bool iot_idle_for(struct io_tracker *iot, unsigned long jifs)
63{
64 bool r;
65 unsigned long flags;
66
67 spin_lock_irqsave(&iot->lock, flags);
68 r = __iot_idle_for(iot, jifs);
69 spin_unlock_irqrestore(&iot->lock, flags);
70
71 return r;
72}
73
74static void iot_io_begin(struct io_tracker *iot, sector_t len)
75{
76 unsigned long flags;
77
78 spin_lock_irqsave(&iot->lock, flags);
79 iot->in_flight += len;
80 spin_unlock_irqrestore(&iot->lock, flags);
81}
82
83static void __iot_io_end(struct io_tracker *iot, sector_t len)
84{
85 iot->in_flight -= len;
86 if (!iot->in_flight)
87 iot->idle_time = jiffies;
88}
89
90static void iot_io_end(struct io_tracker *iot, sector_t len)
91{
92 unsigned long flags;
93
94 spin_lock_irqsave(&iot->lock, flags);
95 __iot_io_end(iot, len);
96 spin_unlock_irqrestore(&iot->lock, flags);
97}
98
99/*----------------------------------------------------------------*/
100
c6b4fcba
JT
101/*
102 * Glossary:
103 *
104 * oblock: index of an origin block
105 * cblock: index of a cache block
106 * promotion: movement of a block from origin to cache
107 * demotion: movement of a block from cache to origin
108 * migration: movement of a block between the origin and cache device,
109 * either direction
110 */
111
112/*----------------------------------------------------------------*/
113
c9d28d5d
JT
114/*
115 * There are a couple of places where we let a bio run, but want to do some
116 * work before calling its endio function. We do this by temporarily
117 * changing the endio fn.
118 */
119struct dm_hook_info {
120 bio_end_io_t *bi_end_io;
c9d28d5d
JT
121};
122
123static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio,
124 bio_end_io_t *bi_end_io, void *bi_private)
125{
126 h->bi_end_io = bio->bi_end_io;
c9d28d5d
JT
127
128 bio->bi_end_io = bi_end_io;
129 bio->bi_private = bi_private;
130}
131
132static void dm_unhook_bio(struct dm_hook_info *h, struct bio *bio)
133{
134 bio->bi_end_io = h->bi_end_io;
c9d28d5d
JT
135}
136
137/*----------------------------------------------------------------*/
138
c6b4fcba
JT
139#define MIGRATION_POOL_SIZE 128
140#define COMMIT_PERIOD HZ
141#define MIGRATION_COUNT_WINDOW 10
142
143/*
05473044
MS
144 * The block size of the device holding cache data must be
145 * between 32KB and 1GB.
c6b4fcba
JT
146 */
147#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (32 * 1024 >> SECTOR_SHIFT)
05473044 148#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
c6b4fcba 149
2ee57d58 150enum cache_metadata_mode {
c6b4fcba
JT
151 CM_WRITE, /* metadata may be changed */
152 CM_READ_ONLY, /* metadata may not be changed */
028ae9f7 153 CM_FAIL
c6b4fcba
JT
154};
155
2ee57d58
JT
156enum cache_io_mode {
157 /*
158 * Data is written to cached blocks only. These blocks are marked
159 * dirty. If you lose the cache device you will lose data.
160 * Potential performance increase for both reads and writes.
161 */
162 CM_IO_WRITEBACK,
163
164 /*
165 * Data is written to both cache and origin. Blocks are never
166 * dirty. Potential performance benfit for reads only.
167 */
168 CM_IO_WRITETHROUGH,
169
170 /*
171 * A degraded mode useful for various cache coherency situations
172 * (eg, rolling back snapshots). Reads and writes always go to the
173 * origin. If a write goes to a cached oblock, then the cache
174 * block is invalidated.
175 */
176 CM_IO_PASSTHROUGH
177};
178
c6b4fcba 179struct cache_features {
2ee57d58
JT
180 enum cache_metadata_mode mode;
181 enum cache_io_mode io_mode;
c6b4fcba
JT
182};
183
184struct cache_stats {
185 atomic_t read_hit;
186 atomic_t read_miss;
187 atomic_t write_hit;
188 atomic_t write_miss;
189 atomic_t demotion;
190 atomic_t promotion;
191 atomic_t copies_avoided;
192 atomic_t cache_cell_clash;
193 atomic_t commit_count;
194 atomic_t discard_count;
195};
196
65790ff9
JT
197/*
198 * Defines a range of cblocks, begin to (end - 1) are in the range. end is
199 * the one-past-the-end value.
200 */
201struct cblock_range {
202 dm_cblock_t begin;
203 dm_cblock_t end;
204};
205
206struct invalidation_request {
207 struct list_head list;
208 struct cblock_range *cblocks;
209
210 atomic_t complete;
211 int err;
212
213 wait_queue_head_t result_wait;
214};
215
c6b4fcba
JT
216struct cache {
217 struct dm_target *ti;
218 struct dm_target_callbacks callbacks;
219
c9ec5d7c
MS
220 struct dm_cache_metadata *cmd;
221
c6b4fcba
JT
222 /*
223 * Metadata is written to this device.
224 */
225 struct dm_dev *metadata_dev;
226
227 /*
228 * The slower of the two data devices. Typically a spindle.
229 */
230 struct dm_dev *origin_dev;
231
232 /*
233 * The faster of the two data devices. Typically an SSD.
234 */
235 struct dm_dev *cache_dev;
236
c6b4fcba
JT
237 /*
238 * Size of the origin device in _complete_ blocks and native sectors.
239 */
240 dm_oblock_t origin_blocks;
241 sector_t origin_sectors;
242
243 /*
244 * Size of the cache device in blocks.
245 */
246 dm_cblock_t cache_size;
247
248 /*
249 * Fields for converting from sectors to blocks.
250 */
251 uint32_t sectors_per_block;
252 int sectors_per_block_shift;
253
c6b4fcba 254 spinlock_t lock;
651f5fa2 255 struct list_head deferred_cells;
c6b4fcba
JT
256 struct bio_list deferred_bios;
257 struct bio_list deferred_flush_bios;
e2e74d61 258 struct bio_list deferred_writethrough_bios;
c6b4fcba
JT
259 struct list_head quiesced_migrations;
260 struct list_head completed_migrations;
261 struct list_head need_commit_migrations;
262 sector_t migration_threshold;
c6b4fcba 263 wait_queue_head_t migration_wait;
a59db676
JT
264 atomic_t nr_allocated_migrations;
265
266 /*
267 * The number of in flight migrations that are performing
268 * background io. eg, promotion, writeback.
269 */
270 atomic_t nr_io_migrations;
c6b4fcba 271
66cb1910 272 wait_queue_head_t quiescing_wait;
238f8363 273 atomic_t quiescing;
66cb1910
JT
274 atomic_t quiescing_ack;
275
c6b4fcba
JT
276 /*
277 * cache_size entries, dirty if set
278 */
44fa816b 279 atomic_t nr_dirty;
c6b4fcba
JT
280 unsigned long *dirty_bitset;
281
282 /*
283 * origin_blocks entries, discarded if set.
284 */
1bad9bc4 285 dm_dblock_t discard_nr_blocks;
c6b4fcba 286 unsigned long *discard_bitset;
08b18451 287 uint32_t discard_block_size; /* a power of 2 times sectors per block */
c9ec5d7c
MS
288
289 /*
290 * Rather than reconstructing the table line for the status we just
291 * save it and regurgitate.
292 */
293 unsigned nr_ctr_args;
294 const char **ctr_args;
c6b4fcba
JT
295
296 struct dm_kcopyd_client *copier;
297 struct workqueue_struct *wq;
298 struct work_struct worker;
299
300 struct delayed_work waker;
301 unsigned long last_commit_jiffies;
302
303 struct dm_bio_prison *prison;
304 struct dm_deferred_set *all_io_ds;
305
306 mempool_t *migration_pool;
c6b4fcba
JT
307
308 struct dm_cache_policy *policy;
309 unsigned policy_nr_args;
310
311 bool need_tick_bio:1;
312 bool sized:1;
65790ff9 313 bool invalidate:1;
c6b4fcba
JT
314 bool commit_requested:1;
315 bool loaded_mappings:1;
316 bool loaded_discards:1;
317
c6b4fcba 318 /*
c9ec5d7c 319 * Cache features such as write-through.
c6b4fcba 320 */
c9ec5d7c
MS
321 struct cache_features features;
322
323 struct cache_stats stats;
65790ff9
JT
324
325 /*
326 * Invalidation fields.
327 */
328 spinlock_t invalidation_lock;
329 struct list_head invalidation_requests;
066dbaa3
JT
330
331 struct io_tracker origin_tracker;
c6b4fcba
JT
332};
333
334struct per_bio_data {
335 bool tick:1;
336 unsigned req_nr:2;
337 struct dm_deferred_entry *all_io_entry;
c6eda5e8 338 struct dm_hook_info hook_info;
066dbaa3 339 sector_t len;
e2e74d61 340
19b0092e
MS
341 /*
342 * writethrough fields. These MUST remain at the end of this
343 * structure and the 'cache' member must be the first as it
aeed1420 344 * is used to determine the offset of the writethrough fields.
19b0092e 345 */
e2e74d61
JT
346 struct cache *cache;
347 dm_cblock_t cblock;
b844fe69 348 struct dm_bio_details bio_details;
c6b4fcba
JT
349};
350
351struct dm_cache_migration {
352 struct list_head list;
353 struct cache *cache;
354
355 unsigned long start_jiffies;
356 dm_oblock_t old_oblock;
357 dm_oblock_t new_oblock;
358 dm_cblock_t cblock;
359
360 bool err:1;
7ae34e77 361 bool discard:1;
c6b4fcba
JT
362 bool writeback:1;
363 bool demote:1;
364 bool promote:1;
c9d28d5d 365 bool requeue_holder:1;
65790ff9 366 bool invalidate:1;
c6b4fcba
JT
367
368 struct dm_bio_prison_cell *old_ocell;
369 struct dm_bio_prison_cell *new_ocell;
370};
371
372/*
373 * Processing a bio in the worker thread may require these memory
374 * allocations. We prealloc to avoid deadlocks (the same worker thread
375 * frees them back to the mempool).
376 */
377struct prealloc {
378 struct dm_cache_migration *mg;
379 struct dm_bio_prison_cell *cell1;
380 struct dm_bio_prison_cell *cell2;
381};
382
028ae9f7
JT
383static enum cache_metadata_mode get_cache_mode(struct cache *cache);
384
c6b4fcba
JT
385static void wake_worker(struct cache *cache)
386{
387 queue_work(cache->wq, &cache->worker);
388}
389
390/*----------------------------------------------------------------*/
391
392static struct dm_bio_prison_cell *alloc_prison_cell(struct cache *cache)
393{
394 /* FIXME: change to use a local slab. */
395 return dm_bio_prison_alloc_cell(cache->prison, GFP_NOWAIT);
396}
397
398static void free_prison_cell(struct cache *cache, struct dm_bio_prison_cell *cell)
399{
400 dm_bio_prison_free_cell(cache->prison, cell);
401}
402
a59db676
JT
403static struct dm_cache_migration *alloc_migration(struct cache *cache)
404{
405 struct dm_cache_migration *mg;
406
407 mg = mempool_alloc(cache->migration_pool, GFP_NOWAIT);
408 if (mg) {
409 mg->cache = cache;
410 atomic_inc(&mg->cache->nr_allocated_migrations);
411 }
412
413 return mg;
414}
415
416static void free_migration(struct dm_cache_migration *mg)
417{
88bf5184 418 struct cache *cache = mg->cache;
a59db676 419
88bf5184
JT
420 if (atomic_dec_and_test(&cache->nr_allocated_migrations))
421 wake_up(&cache->migration_wait);
422
423 mempool_free(mg, cache->migration_pool);
a59db676
JT
424}
425
c6b4fcba
JT
426static int prealloc_data_structs(struct cache *cache, struct prealloc *p)
427{
428 if (!p->mg) {
a59db676 429 p->mg = alloc_migration(cache);
c6b4fcba
JT
430 if (!p->mg)
431 return -ENOMEM;
432 }
433
434 if (!p->cell1) {
435 p->cell1 = alloc_prison_cell(cache);
436 if (!p->cell1)
437 return -ENOMEM;
438 }
439
440 if (!p->cell2) {
441 p->cell2 = alloc_prison_cell(cache);
442 if (!p->cell2)
443 return -ENOMEM;
444 }
445
446 return 0;
447}
448
449static void prealloc_free_structs(struct cache *cache, struct prealloc *p)
450{
451 if (p->cell2)
452 free_prison_cell(cache, p->cell2);
453
454 if (p->cell1)
455 free_prison_cell(cache, p->cell1);
456
457 if (p->mg)
a59db676 458 free_migration(p->mg);
c6b4fcba
JT
459}
460
461static struct dm_cache_migration *prealloc_get_migration(struct prealloc *p)
462{
463 struct dm_cache_migration *mg = p->mg;
464
465 BUG_ON(!mg);
466 p->mg = NULL;
467
468 return mg;
469}
470
471/*
472 * You must have a cell within the prealloc struct to return. If not this
473 * function will BUG() rather than returning NULL.
474 */
475static struct dm_bio_prison_cell *prealloc_get_cell(struct prealloc *p)
476{
477 struct dm_bio_prison_cell *r = NULL;
478
479 if (p->cell1) {
480 r = p->cell1;
481 p->cell1 = NULL;
482
483 } else if (p->cell2) {
484 r = p->cell2;
485 p->cell2 = NULL;
486 } else
487 BUG();
488
489 return r;
490}
491
492/*
493 * You can't have more than two cells in a prealloc struct. BUG() will be
494 * called if you try and overfill.
495 */
496static void prealloc_put_cell(struct prealloc *p, struct dm_bio_prison_cell *cell)
497{
498 if (!p->cell2)
499 p->cell2 = cell;
500
501 else if (!p->cell1)
502 p->cell1 = cell;
503
504 else
505 BUG();
506}
507
508/*----------------------------------------------------------------*/
509
7ae34e77 510static void build_key(dm_oblock_t begin, dm_oblock_t end, struct dm_cell_key *key)
c6b4fcba
JT
511{
512 key->virtual = 0;
513 key->dev = 0;
7ae34e77
JT
514 key->block_begin = from_oblock(begin);
515 key->block_end = from_oblock(end);
c6b4fcba
JT
516}
517
518/*
519 * The caller hands in a preallocated cell, and a free function for it.
520 * The cell will be freed if there's an error, or if it wasn't used because
521 * a cell with that key already exists.
522 */
523typedef void (*cell_free_fn)(void *context, struct dm_bio_prison_cell *cell);
524
7ae34e77
JT
525static int bio_detain_range(struct cache *cache, dm_oblock_t oblock_begin, dm_oblock_t oblock_end,
526 struct bio *bio, struct dm_bio_prison_cell *cell_prealloc,
527 cell_free_fn free_fn, void *free_context,
528 struct dm_bio_prison_cell **cell_result)
c6b4fcba
JT
529{
530 int r;
531 struct dm_cell_key key;
532
7ae34e77 533 build_key(oblock_begin, oblock_end, &key);
c6b4fcba
JT
534 r = dm_bio_detain(cache->prison, &key, bio, cell_prealloc, cell_result);
535 if (r)
536 free_fn(free_context, cell_prealloc);
537
538 return r;
539}
540
7ae34e77
JT
541static int bio_detain(struct cache *cache, dm_oblock_t oblock,
542 struct bio *bio, struct dm_bio_prison_cell *cell_prealloc,
543 cell_free_fn free_fn, void *free_context,
544 struct dm_bio_prison_cell **cell_result)
545{
546 dm_oblock_t end = to_oblock(from_oblock(oblock) + 1ULL);
547 return bio_detain_range(cache, oblock, end, bio,
548 cell_prealloc, free_fn, free_context, cell_result);
549}
550
c6b4fcba
JT
551static int get_cell(struct cache *cache,
552 dm_oblock_t oblock,
553 struct prealloc *structs,
554 struct dm_bio_prison_cell **cell_result)
555{
556 int r;
557 struct dm_cell_key key;
558 struct dm_bio_prison_cell *cell_prealloc;
559
560 cell_prealloc = prealloc_get_cell(structs);
561
7ae34e77 562 build_key(oblock, to_oblock(from_oblock(oblock) + 1ULL), &key);
c6b4fcba
JT
563 r = dm_get_cell(cache->prison, &key, cell_prealloc, cell_result);
564 if (r)
565 prealloc_put_cell(structs, cell_prealloc);
566
567 return r;
568}
569
aeed1420 570/*----------------------------------------------------------------*/
c6b4fcba
JT
571
572static bool is_dirty(struct cache *cache, dm_cblock_t b)
573{
574 return test_bit(from_cblock(b), cache->dirty_bitset);
575}
576
577static void set_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
578{
579 if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset)) {
44fa816b 580 atomic_inc(&cache->nr_dirty);
c6b4fcba
JT
581 policy_set_dirty(cache->policy, oblock);
582 }
583}
584
585static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
586{
587 if (test_and_clear_bit(from_cblock(cblock), cache->dirty_bitset)) {
588 policy_clear_dirty(cache->policy, oblock);
44fa816b 589 if (atomic_dec_return(&cache->nr_dirty) == 0)
c6b4fcba
JT
590 dm_table_event(cache->ti->table);
591 }
592}
593
594/*----------------------------------------------------------------*/
aeed1420 595
c6b4fcba
JT
596static bool block_size_is_power_of_two(struct cache *cache)
597{
598 return cache->sectors_per_block_shift >= 0;
599}
600
43aeaa29
MP
601/* gcc on ARM generates spurious references to __udivdi3 and __umoddi3 */
602#if defined(CONFIG_ARM) && __GNUC__ == 4 && __GNUC_MINOR__ <= 6
603__always_inline
604#endif
414dd67d
JT
605static dm_block_t block_div(dm_block_t b, uint32_t n)
606{
607 do_div(b, n);
608
609 return b;
610}
611
7ae34e77 612static dm_block_t oblocks_per_dblock(struct cache *cache)
1bad9bc4 613{
7ae34e77 614 dm_block_t oblocks = cache->discard_block_size;
1bad9bc4 615
7ae34e77
JT
616 if (block_size_is_power_of_two(cache))
617 oblocks >>= cache->sectors_per_block_shift;
1bad9bc4 618 else
7ae34e77 619 oblocks = block_div(oblocks, cache->sectors_per_block);
1bad9bc4 620
7ae34e77
JT
621 return oblocks;
622}
623
624static dm_dblock_t oblock_to_dblock(struct cache *cache, dm_oblock_t oblock)
625{
626 return to_dblock(block_div(from_oblock(oblock),
627 oblocks_per_dblock(cache)));
628}
1bad9bc4 629
7ae34e77
JT
630static dm_oblock_t dblock_to_oblock(struct cache *cache, dm_dblock_t dblock)
631{
632 return to_oblock(from_dblock(dblock) * oblocks_per_dblock(cache));
1bad9bc4
JT
633}
634
635static void set_discard(struct cache *cache, dm_dblock_t b)
c6b4fcba
JT
636{
637 unsigned long flags;
638
7ae34e77 639 BUG_ON(from_dblock(b) >= from_dblock(cache->discard_nr_blocks));
c6b4fcba
JT
640 atomic_inc(&cache->stats.discard_count);
641
642 spin_lock_irqsave(&cache->lock, flags);
1bad9bc4 643 set_bit(from_dblock(b), cache->discard_bitset);
c6b4fcba
JT
644 spin_unlock_irqrestore(&cache->lock, flags);
645}
646
1bad9bc4 647static void clear_discard(struct cache *cache, dm_dblock_t b)
c6b4fcba
JT
648{
649 unsigned long flags;
650
651 spin_lock_irqsave(&cache->lock, flags);
1bad9bc4 652 clear_bit(from_dblock(b), cache->discard_bitset);
c6b4fcba
JT
653 spin_unlock_irqrestore(&cache->lock, flags);
654}
655
1bad9bc4 656static bool is_discarded(struct cache *cache, dm_dblock_t b)
c6b4fcba
JT
657{
658 int r;
659 unsigned long flags;
660
661 spin_lock_irqsave(&cache->lock, flags);
1bad9bc4 662 r = test_bit(from_dblock(b), cache->discard_bitset);
c6b4fcba
JT
663 spin_unlock_irqrestore(&cache->lock, flags);
664
665 return r;
666}
667
668static bool is_discarded_oblock(struct cache *cache, dm_oblock_t b)
669{
670 int r;
671 unsigned long flags;
672
673 spin_lock_irqsave(&cache->lock, flags);
1bad9bc4
JT
674 r = test_bit(from_dblock(oblock_to_dblock(cache, b)),
675 cache->discard_bitset);
c6b4fcba
JT
676 spin_unlock_irqrestore(&cache->lock, flags);
677
678 return r;
679}
680
681/*----------------------------------------------------------------*/
682
683static void load_stats(struct cache *cache)
684{
685 struct dm_cache_statistics stats;
686
687 dm_cache_metadata_get_stats(cache->cmd, &stats);
688 atomic_set(&cache->stats.read_hit, stats.read_hits);
689 atomic_set(&cache->stats.read_miss, stats.read_misses);
690 atomic_set(&cache->stats.write_hit, stats.write_hits);
691 atomic_set(&cache->stats.write_miss, stats.write_misses);
692}
693
694static void save_stats(struct cache *cache)
695{
696 struct dm_cache_statistics stats;
697
028ae9f7
JT
698 if (get_cache_mode(cache) >= CM_READ_ONLY)
699 return;
700
c6b4fcba
JT
701 stats.read_hits = atomic_read(&cache->stats.read_hit);
702 stats.read_misses = atomic_read(&cache->stats.read_miss);
703 stats.write_hits = atomic_read(&cache->stats.write_hit);
704 stats.write_misses = atomic_read(&cache->stats.write_miss);
705
706 dm_cache_metadata_set_stats(cache->cmd, &stats);
707}
708
709/*----------------------------------------------------------------
710 * Per bio data
711 *--------------------------------------------------------------*/
19b0092e
MS
712
713/*
714 * If using writeback, leave out struct per_bio_data's writethrough fields.
715 */
716#define PB_DATA_SIZE_WB (offsetof(struct per_bio_data, cache))
717#define PB_DATA_SIZE_WT (sizeof(struct per_bio_data))
718
2ee57d58
JT
719static bool writethrough_mode(struct cache_features *f)
720{
721 return f->io_mode == CM_IO_WRITETHROUGH;
722}
723
724static bool writeback_mode(struct cache_features *f)
725{
726 return f->io_mode == CM_IO_WRITEBACK;
727}
728
729static bool passthrough_mode(struct cache_features *f)
730{
731 return f->io_mode == CM_IO_PASSTHROUGH;
732}
733
19b0092e
MS
734static size_t get_per_bio_data_size(struct cache *cache)
735{
2ee57d58 736 return writethrough_mode(&cache->features) ? PB_DATA_SIZE_WT : PB_DATA_SIZE_WB;
19b0092e
MS
737}
738
739static struct per_bio_data *get_per_bio_data(struct bio *bio, size_t data_size)
c6b4fcba 740{
19b0092e 741 struct per_bio_data *pb = dm_per_bio_data(bio, data_size);
c6b4fcba
JT
742 BUG_ON(!pb);
743 return pb;
744}
745
19b0092e 746static struct per_bio_data *init_per_bio_data(struct bio *bio, size_t data_size)
c6b4fcba 747{
19b0092e 748 struct per_bio_data *pb = get_per_bio_data(bio, data_size);
c6b4fcba
JT
749
750 pb->tick = false;
751 pb->req_nr = dm_bio_get_target_bio_nr(bio);
752 pb->all_io_entry = NULL;
066dbaa3 753 pb->len = 0;
c6b4fcba
JT
754
755 return pb;
756}
757
758/*----------------------------------------------------------------
759 * Remapping
760 *--------------------------------------------------------------*/
761static void remap_to_origin(struct cache *cache, struct bio *bio)
762{
763 bio->bi_bdev = cache->origin_dev->bdev;
764}
765
766static void remap_to_cache(struct cache *cache, struct bio *bio,
767 dm_cblock_t cblock)
768{
4f024f37 769 sector_t bi_sector = bio->bi_iter.bi_sector;
e0d849fa 770 sector_t block = from_cblock(cblock);
c6b4fcba
JT
771
772 bio->bi_bdev = cache->cache_dev->bdev;
773 if (!block_size_is_power_of_two(cache))
4f024f37 774 bio->bi_iter.bi_sector =
e0d849fa 775 (block * cache->sectors_per_block) +
4f024f37 776 sector_div(bi_sector, cache->sectors_per_block);
c6b4fcba 777 else
4f024f37 778 bio->bi_iter.bi_sector =
e0d849fa 779 (block << cache->sectors_per_block_shift) |
4f024f37 780 (bi_sector & (cache->sectors_per_block - 1));
c6b4fcba
JT
781}
782
783static void check_if_tick_bio_needed(struct cache *cache, struct bio *bio)
784{
785 unsigned long flags;
19b0092e
MS
786 size_t pb_data_size = get_per_bio_data_size(cache);
787 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
c6b4fcba
JT
788
789 spin_lock_irqsave(&cache->lock, flags);
f73f44eb 790 if (cache->need_tick_bio && !op_is_flush(bio->bi_opf) &&
e6047149 791 bio_op(bio) != REQ_OP_DISCARD) {
c6b4fcba
JT
792 pb->tick = true;
793 cache->need_tick_bio = false;
794 }
795 spin_unlock_irqrestore(&cache->lock, flags);
796}
797
798static void remap_to_origin_clear_discard(struct cache *cache, struct bio *bio,
799 dm_oblock_t oblock)
800{
801 check_if_tick_bio_needed(cache, bio);
802 remap_to_origin(cache, bio);
803 if (bio_data_dir(bio) == WRITE)
1bad9bc4 804 clear_discard(cache, oblock_to_dblock(cache, oblock));
c6b4fcba
JT
805}
806
807static void remap_to_cache_dirty(struct cache *cache, struct bio *bio,
808 dm_oblock_t oblock, dm_cblock_t cblock)
809{
f8e5f01a 810 check_if_tick_bio_needed(cache, bio);
c6b4fcba
JT
811 remap_to_cache(cache, bio, cblock);
812 if (bio_data_dir(bio) == WRITE) {
813 set_dirty(cache, oblock, cblock);
1bad9bc4 814 clear_discard(cache, oblock_to_dblock(cache, oblock));
c6b4fcba
JT
815 }
816}
817
818static dm_oblock_t get_bio_block(struct cache *cache, struct bio *bio)
819{
4f024f37 820 sector_t block_nr = bio->bi_iter.bi_sector;
c6b4fcba
JT
821
822 if (!block_size_is_power_of_two(cache))
823 (void) sector_div(block_nr, cache->sectors_per_block);
824 else
825 block_nr >>= cache->sectors_per_block_shift;
826
827 return to_oblock(block_nr);
828}
829
8c081b52
JT
830/*
831 * You must increment the deferred set whilst the prison cell is held. To
832 * encourage this, we ask for 'cell' to be passed in.
833 */
834static void inc_ds(struct cache *cache, struct bio *bio,
835 struct dm_bio_prison_cell *cell)
836{
837 size_t pb_data_size = get_per_bio_data_size(cache);
838 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
839
840 BUG_ON(!cell);
841 BUG_ON(pb->all_io_entry);
842
843 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
844}
845
066dbaa3
JT
846static bool accountable_bio(struct cache *cache, struct bio *bio)
847{
848 return ((bio->bi_bdev == cache->origin_dev->bdev) &&
e6047149 849 bio_op(bio) != REQ_OP_DISCARD);
066dbaa3
JT
850}
851
852static void accounted_begin(struct cache *cache, struct bio *bio)
853{
854 size_t pb_data_size = get_per_bio_data_size(cache);
855 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
856
857 if (accountable_bio(cache, bio)) {
858 pb->len = bio_sectors(bio);
859 iot_io_begin(&cache->origin_tracker, pb->len);
860 }
861}
862
863static void accounted_complete(struct cache *cache, struct bio *bio)
864{
865 size_t pb_data_size = get_per_bio_data_size(cache);
866 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
867
868 iot_io_end(&cache->origin_tracker, pb->len);
869}
870
871static void accounted_request(struct cache *cache, struct bio *bio)
872{
873 accounted_begin(cache, bio);
874 generic_make_request(bio);
875}
876
c6b4fcba
JT
877static void issue(struct cache *cache, struct bio *bio)
878{
879 unsigned long flags;
880
f73f44eb 881 if (!op_is_flush(bio->bi_opf)) {
066dbaa3 882 accounted_request(cache, bio);
c6b4fcba
JT
883 return;
884 }
885
886 /*
887 * Batch together any bios that trigger commits and then issue a
888 * single commit for them in do_worker().
889 */
890 spin_lock_irqsave(&cache->lock, flags);
891 cache->commit_requested = true;
892 bio_list_add(&cache->deferred_flush_bios, bio);
893 spin_unlock_irqrestore(&cache->lock, flags);
894}
895
8c081b52
JT
896static void inc_and_issue(struct cache *cache, struct bio *bio, struct dm_bio_prison_cell *cell)
897{
898 inc_ds(cache, bio, cell);
899 issue(cache, bio);
900}
901
e2e74d61
JT
902static void defer_writethrough_bio(struct cache *cache, struct bio *bio)
903{
904 unsigned long flags;
905
906 spin_lock_irqsave(&cache->lock, flags);
907 bio_list_add(&cache->deferred_writethrough_bios, bio);
908 spin_unlock_irqrestore(&cache->lock, flags);
909
910 wake_worker(cache);
911}
912
4246a0b6 913static void writethrough_endio(struct bio *bio)
e2e74d61 914{
19b0092e 915 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
c9d28d5d
JT
916
917 dm_unhook_bio(&pb->hook_info, bio);
e2e74d61 918
4246a0b6
CH
919 if (bio->bi_error) {
920 bio_endio(bio);
e2e74d61
JT
921 return;
922 }
923
b844fe69 924 dm_bio_restore(&pb->bio_details, bio);
e2e74d61
JT
925 remap_to_cache(pb->cache, bio, pb->cblock);
926
927 /*
928 * We can't issue this bio directly, since we're in interrupt
aeed1420 929 * context. So it gets put on a bio list for processing by the
e2e74d61
JT
930 * worker thread.
931 */
932 defer_writethrough_bio(pb->cache, bio);
933}
934
935/*
936 * When running in writethrough mode we need to send writes to clean blocks
937 * to both the cache and origin devices. In future we'd like to clone the
938 * bio and send them in parallel, but for now we're doing them in
939 * series as this is easier.
940 */
941static void remap_to_origin_then_cache(struct cache *cache, struct bio *bio,
942 dm_oblock_t oblock, dm_cblock_t cblock)
943{
19b0092e 944 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
e2e74d61
JT
945
946 pb->cache = cache;
947 pb->cblock = cblock;
c9d28d5d 948 dm_hook_bio(&pb->hook_info, bio, writethrough_endio, NULL);
b844fe69 949 dm_bio_record(&pb->bio_details, bio);
e2e74d61
JT
950
951 remap_to_origin_clear_discard(pb->cache, bio, oblock);
952}
953
028ae9f7
JT
954/*----------------------------------------------------------------
955 * Failure modes
956 *--------------------------------------------------------------*/
957static enum cache_metadata_mode get_cache_mode(struct cache *cache)
958{
959 return cache->features.mode;
960}
961
b61d9509
MS
962static const char *cache_device_name(struct cache *cache)
963{
964 return dm_device_name(dm_table_get_md(cache->ti->table));
965}
966
028ae9f7
JT
967static void notify_mode_switch(struct cache *cache, enum cache_metadata_mode mode)
968{
969 const char *descs[] = {
970 "write",
971 "read-only",
972 "fail"
973 };
974
975 dm_table_event(cache->ti->table);
b61d9509
MS
976 DMINFO("%s: switching cache to %s mode",
977 cache_device_name(cache), descs[(int)mode]);
028ae9f7
JT
978}
979
980static void set_cache_mode(struct cache *cache, enum cache_metadata_mode new_mode)
981{
d14fcf3d 982 bool needs_check;
028ae9f7
JT
983 enum cache_metadata_mode old_mode = get_cache_mode(cache);
984
d14fcf3d 985 if (dm_cache_metadata_needs_check(cache->cmd, &needs_check)) {
23cab26d
MS
986 DMERR("%s: unable to read needs_check flag, setting failure mode.",
987 cache_device_name(cache));
d14fcf3d
JT
988 new_mode = CM_FAIL;
989 }
990
028ae9f7 991 if (new_mode == CM_WRITE && needs_check) {
b61d9509
MS
992 DMERR("%s: unable to switch cache to write mode until repaired.",
993 cache_device_name(cache));
028ae9f7
JT
994 if (old_mode != new_mode)
995 new_mode = old_mode;
996 else
997 new_mode = CM_READ_ONLY;
998 }
999
1000 /* Never move out of fail mode */
1001 if (old_mode == CM_FAIL)
1002 new_mode = CM_FAIL;
1003
1004 switch (new_mode) {
1005 case CM_FAIL:
1006 case CM_READ_ONLY:
1007 dm_cache_metadata_set_read_only(cache->cmd);
1008 break;
1009
1010 case CM_WRITE:
1011 dm_cache_metadata_set_read_write(cache->cmd);
1012 break;
1013 }
1014
1015 cache->features.mode = new_mode;
1016
1017 if (new_mode != old_mode)
1018 notify_mode_switch(cache, new_mode);
1019}
1020
1021static void abort_transaction(struct cache *cache)
1022{
b61d9509
MS
1023 const char *dev_name = cache_device_name(cache);
1024
028ae9f7
JT
1025 if (get_cache_mode(cache) >= CM_READ_ONLY)
1026 return;
1027
1028 if (dm_cache_metadata_set_needs_check(cache->cmd)) {
b61d9509 1029 DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
028ae9f7
JT
1030 set_cache_mode(cache, CM_FAIL);
1031 }
1032
b61d9509 1033 DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
028ae9f7 1034 if (dm_cache_metadata_abort(cache->cmd)) {
b61d9509 1035 DMERR("%s: failed to abort metadata transaction", dev_name);
028ae9f7
JT
1036 set_cache_mode(cache, CM_FAIL);
1037 }
1038}
1039
1040static void metadata_operation_failed(struct cache *cache, const char *op, int r)
1041{
b61d9509
MS
1042 DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
1043 cache_device_name(cache), op, r);
028ae9f7
JT
1044 abort_transaction(cache);
1045 set_cache_mode(cache, CM_READ_ONLY);
1046}
1047
c6b4fcba
JT
1048/*----------------------------------------------------------------
1049 * Migration processing
1050 *
1051 * Migration covers moving data from the origin device to the cache, or
1052 * vice versa.
1053 *--------------------------------------------------------------*/
a59db676 1054static void inc_io_migrations(struct cache *cache)
c6b4fcba 1055{
a59db676 1056 atomic_inc(&cache->nr_io_migrations);
c6b4fcba
JT
1057}
1058
a59db676 1059static void dec_io_migrations(struct cache *cache)
c6b4fcba 1060{
a59db676 1061 atomic_dec(&cache->nr_io_migrations);
c6b4fcba
JT
1062}
1063
651f5fa2
JT
1064static bool discard_or_flush(struct bio *bio)
1065{
f73f44eb 1066 return bio_op(bio) == REQ_OP_DISCARD || op_is_flush(bio->bi_opf);
651f5fa2
JT
1067}
1068
1069static void __cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell)
1070{
dc9cee5d 1071 if (discard_or_flush(cell->holder)) {
651f5fa2 1072 /*
dc9cee5d 1073 * We have to handle these bios individually.
651f5fa2 1074 */
dc9cee5d
MS
1075 dm_cell_release(cache->prison, cell, &cache->deferred_bios);
1076 free_prison_cell(cache, cell);
1077 } else
651f5fa2
JT
1078 list_add_tail(&cell->user_list, &cache->deferred_cells);
1079}
1080
1081static void cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell, bool holder)
c6b4fcba
JT
1082{
1083 unsigned long flags;
1084
651f5fa2
JT
1085 if (!holder && dm_cell_promote_or_release(cache->prison, cell)) {
1086 /*
1087 * There was no prisoner to promote to holder, the
1088 * cell has been released.
1089 */
1090 free_prison_cell(cache, cell);
1091 return;
1092 }
1093
c6b4fcba 1094 spin_lock_irqsave(&cache->lock, flags);
651f5fa2 1095 __cell_defer(cache, cell);
c6b4fcba
JT
1096 spin_unlock_irqrestore(&cache->lock, flags);
1097
1098 wake_worker(cache);
1099}
1100
651f5fa2
JT
1101static void cell_error_with_code(struct cache *cache, struct dm_bio_prison_cell *cell, int err)
1102{
1103 dm_cell_error(cache->prison, cell, err);
dc9cee5d 1104 free_prison_cell(cache, cell);
651f5fa2
JT
1105}
1106
1107static void cell_requeue(struct cache *cache, struct dm_bio_prison_cell *cell)
1108{
1109 cell_error_with_code(cache, cell, DM_ENDIO_REQUEUE);
1110}
1111
a59db676 1112static void free_io_migration(struct dm_cache_migration *mg)
c6b4fcba 1113{
cc7da0ba
JT
1114 struct cache *cache = mg->cache;
1115
1116 dec_io_migrations(cache);
c6b4fcba 1117 free_migration(mg);
cc7da0ba 1118 wake_worker(cache);
c6b4fcba
JT
1119}
1120
1121static void migration_failure(struct dm_cache_migration *mg)
1122{
1123 struct cache *cache = mg->cache;
b61d9509 1124 const char *dev_name = cache_device_name(cache);
c6b4fcba
JT
1125
1126 if (mg->writeback) {
b61d9509 1127 DMERR_LIMIT("%s: writeback failed; couldn't copy block", dev_name);
c6b4fcba
JT
1128 set_dirty(cache, mg->old_oblock, mg->cblock);
1129 cell_defer(cache, mg->old_ocell, false);
1130
1131 } else if (mg->demote) {
b61d9509 1132 DMERR_LIMIT("%s: demotion failed; couldn't copy block", dev_name);
c6b4fcba
JT
1133 policy_force_mapping(cache->policy, mg->new_oblock, mg->old_oblock);
1134
80f659f3 1135 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
c6b4fcba 1136 if (mg->promote)
80f659f3 1137 cell_defer(cache, mg->new_ocell, true);
c6b4fcba 1138 } else {
b61d9509 1139 DMERR_LIMIT("%s: promotion failed; couldn't copy block", dev_name);
c6b4fcba 1140 policy_remove_mapping(cache->policy, mg->new_oblock);
80f659f3 1141 cell_defer(cache, mg->new_ocell, true);
c6b4fcba
JT
1142 }
1143
a59db676 1144 free_io_migration(mg);
c6b4fcba
JT
1145}
1146
1147static void migration_success_pre_commit(struct dm_cache_migration *mg)
1148{
028ae9f7 1149 int r;
c6b4fcba
JT
1150 unsigned long flags;
1151 struct cache *cache = mg->cache;
1152
1153 if (mg->writeback) {
c6b4fcba 1154 clear_dirty(cache, mg->old_oblock, mg->cblock);
40aa978e 1155 cell_defer(cache, mg->old_ocell, false);
a59db676 1156 free_io_migration(mg);
c6b4fcba
JT
1157 return;
1158
1159 } else if (mg->demote) {
028ae9f7
JT
1160 r = dm_cache_remove_mapping(cache->cmd, mg->cblock);
1161 if (r) {
b61d9509
MS
1162 DMERR_LIMIT("%s: demotion failed; couldn't update on disk metadata",
1163 cache_device_name(cache));
028ae9f7 1164 metadata_operation_failed(cache, "dm_cache_remove_mapping", r);
c6b4fcba
JT
1165 policy_force_mapping(cache->policy, mg->new_oblock,
1166 mg->old_oblock);
1167 if (mg->promote)
1168 cell_defer(cache, mg->new_ocell, true);
a59db676 1169 free_io_migration(mg);
c6b4fcba
JT
1170 return;
1171 }
1172 } else {
028ae9f7
JT
1173 r = dm_cache_insert_mapping(cache->cmd, mg->cblock, mg->new_oblock);
1174 if (r) {
b61d9509
MS
1175 DMERR_LIMIT("%s: promotion failed; couldn't update on disk metadata",
1176 cache_device_name(cache));
028ae9f7 1177 metadata_operation_failed(cache, "dm_cache_insert_mapping", r);
c6b4fcba 1178 policy_remove_mapping(cache->policy, mg->new_oblock);
a59db676 1179 free_io_migration(mg);
c6b4fcba
JT
1180 return;
1181 }
1182 }
1183
1184 spin_lock_irqsave(&cache->lock, flags);
1185 list_add_tail(&mg->list, &cache->need_commit_migrations);
1186 cache->commit_requested = true;
1187 spin_unlock_irqrestore(&cache->lock, flags);
1188}
1189
1190static void migration_success_post_commit(struct dm_cache_migration *mg)
1191{
1192 unsigned long flags;
1193 struct cache *cache = mg->cache;
1194
1195 if (mg->writeback) {
b61d9509
MS
1196 DMWARN_LIMIT("%s: writeback unexpectedly triggered commit",
1197 cache_device_name(cache));
c6b4fcba
JT
1198 return;
1199
1200 } else if (mg->demote) {
80f659f3 1201 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
c6b4fcba
JT
1202
1203 if (mg->promote) {
1204 mg->demote = false;
1205
1206 spin_lock_irqsave(&cache->lock, flags);
1207 list_add_tail(&mg->list, &cache->quiesced_migrations);
1208 spin_unlock_irqrestore(&cache->lock, flags);
1209
65790ff9
JT
1210 } else {
1211 if (mg->invalidate)
1212 policy_remove_mapping(cache->policy, mg->old_oblock);
a59db676 1213 free_io_migration(mg);
65790ff9 1214 }
c6b4fcba
JT
1215
1216 } else {
1e32134a
JT
1217 if (mg->requeue_holder) {
1218 clear_dirty(cache, mg->new_oblock, mg->cblock);
c9d28d5d 1219 cell_defer(cache, mg->new_ocell, true);
1e32134a
JT
1220 } else {
1221 /*
1222 * The block was promoted via an overwrite, so it's dirty.
1223 */
1224 set_dirty(cache, mg->new_oblock, mg->cblock);
4246a0b6 1225 bio_endio(mg->new_ocell->holder);
c9d28d5d
JT
1226 cell_defer(cache, mg->new_ocell, false);
1227 }
a59db676 1228 free_io_migration(mg);
c6b4fcba
JT
1229 }
1230}
1231
1232static void copy_complete(int read_err, unsigned long write_err, void *context)
1233{
1234 unsigned long flags;
1235 struct dm_cache_migration *mg = (struct dm_cache_migration *) context;
1236 struct cache *cache = mg->cache;
1237
1238 if (read_err || write_err)
1239 mg->err = true;
1240
1241 spin_lock_irqsave(&cache->lock, flags);
1242 list_add_tail(&mg->list, &cache->completed_migrations);
1243 spin_unlock_irqrestore(&cache->lock, flags);
1244
1245 wake_worker(cache);
1246}
1247
7ae34e77 1248static void issue_copy(struct dm_cache_migration *mg)
c6b4fcba
JT
1249{
1250 int r;
1251 struct dm_io_region o_region, c_region;
1252 struct cache *cache = mg->cache;
8b9d9666 1253 sector_t cblock = from_cblock(mg->cblock);
c6b4fcba
JT
1254
1255 o_region.bdev = cache->origin_dev->bdev;
1256 o_region.count = cache->sectors_per_block;
1257
1258 c_region.bdev = cache->cache_dev->bdev;
8b9d9666 1259 c_region.sector = cblock * cache->sectors_per_block;
c6b4fcba
JT
1260 c_region.count = cache->sectors_per_block;
1261
1262 if (mg->writeback || mg->demote) {
1263 /* demote */
1264 o_region.sector = from_oblock(mg->old_oblock) * cache->sectors_per_block;
1265 r = dm_kcopyd_copy(cache->copier, &c_region, 1, &o_region, 0, copy_complete, mg);
1266 } else {
1267 /* promote */
1268 o_region.sector = from_oblock(mg->new_oblock) * cache->sectors_per_block;
1269 r = dm_kcopyd_copy(cache->copier, &o_region, 1, &c_region, 0, copy_complete, mg);
1270 }
1271
2c2263c9 1272 if (r < 0) {
b61d9509 1273 DMERR_LIMIT("%s: issuing migration failed", cache_device_name(cache));
c6b4fcba 1274 migration_failure(mg);
2c2263c9 1275 }
c6b4fcba
JT
1276}
1277
4246a0b6 1278static void overwrite_endio(struct bio *bio)
c9d28d5d
JT
1279{
1280 struct dm_cache_migration *mg = bio->bi_private;
1281 struct cache *cache = mg->cache;
1282 size_t pb_data_size = get_per_bio_data_size(cache);
1283 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
1284 unsigned long flags;
1285
80ae49aa
MS
1286 dm_unhook_bio(&pb->hook_info, bio);
1287
4246a0b6 1288 if (bio->bi_error)
c9d28d5d
JT
1289 mg->err = true;
1290
80ae49aa
MS
1291 mg->requeue_holder = false;
1292
c9d28d5d
JT
1293 spin_lock_irqsave(&cache->lock, flags);
1294 list_add_tail(&mg->list, &cache->completed_migrations);
c9d28d5d
JT
1295 spin_unlock_irqrestore(&cache->lock, flags);
1296
1297 wake_worker(cache);
1298}
1299
1300static void issue_overwrite(struct dm_cache_migration *mg, struct bio *bio)
1301{
1302 size_t pb_data_size = get_per_bio_data_size(mg->cache);
1303 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
1304
1305 dm_hook_bio(&pb->hook_info, bio, overwrite_endio, mg);
1306 remap_to_cache_dirty(mg->cache, bio, mg->new_oblock, mg->cblock);
8c081b52
JT
1307
1308 /*
1309 * No need to inc_ds() here, since the cell will be held for the
1310 * duration of the io.
1311 */
066dbaa3 1312 accounted_request(mg->cache, bio);
c9d28d5d
JT
1313}
1314
1315static bool bio_writes_complete_block(struct cache *cache, struct bio *bio)
1316{
1317 return (bio_data_dir(bio) == WRITE) &&
4f024f37 1318 (bio->bi_iter.bi_size == (cache->sectors_per_block << SECTOR_SHIFT));
c9d28d5d
JT
1319}
1320
c6b4fcba
JT
1321static void avoid_copy(struct dm_cache_migration *mg)
1322{
1323 atomic_inc(&mg->cache->stats.copies_avoided);
1324 migration_success_pre_commit(mg);
1325}
1326
7ae34e77
JT
1327static void calc_discard_block_range(struct cache *cache, struct bio *bio,
1328 dm_dblock_t *b, dm_dblock_t *e)
1329{
1330 sector_t sb = bio->bi_iter.bi_sector;
1331 sector_t se = bio_end_sector(bio);
1332
1333 *b = to_dblock(dm_sector_div_up(sb, cache->discard_block_size));
1334
1335 if (se - sb < cache->discard_block_size)
1336 *e = *b;
1337 else
1338 *e = to_dblock(block_div(se, cache->discard_block_size));
1339}
1340
1341static void issue_discard(struct dm_cache_migration *mg)
1342{
1343 dm_dblock_t b, e;
1344 struct bio *bio = mg->new_ocell->holder;
cc7da0ba 1345 struct cache *cache = mg->cache;
7ae34e77 1346
cc7da0ba 1347 calc_discard_block_range(cache, bio, &b, &e);
7ae34e77 1348 while (b != e) {
cc7da0ba 1349 set_discard(cache, b);
7ae34e77
JT
1350 b = to_dblock(from_dblock(b) + 1);
1351 }
1352
4246a0b6 1353 bio_endio(bio);
cc7da0ba 1354 cell_defer(cache, mg->new_ocell, false);
7ae34e77 1355 free_migration(mg);
cc7da0ba 1356 wake_worker(cache);
7ae34e77
JT
1357}
1358
1359static void issue_copy_or_discard(struct dm_cache_migration *mg)
c6b4fcba
JT
1360{
1361 bool avoid;
1362 struct cache *cache = mg->cache;
1363
7ae34e77
JT
1364 if (mg->discard) {
1365 issue_discard(mg);
1366 return;
1367 }
1368
c6b4fcba
JT
1369 if (mg->writeback || mg->demote)
1370 avoid = !is_dirty(cache, mg->cblock) ||
1371 is_discarded_oblock(cache, mg->old_oblock);
c9d28d5d
JT
1372 else {
1373 struct bio *bio = mg->new_ocell->holder;
1374
c6b4fcba
JT
1375 avoid = is_discarded_oblock(cache, mg->new_oblock);
1376
f29a3147
JT
1377 if (writeback_mode(&cache->features) &&
1378 !avoid && bio_writes_complete_block(cache, bio)) {
c9d28d5d
JT
1379 issue_overwrite(mg, bio);
1380 return;
1381 }
1382 }
1383
7ae34e77 1384 avoid ? avoid_copy(mg) : issue_copy(mg);
c6b4fcba
JT
1385}
1386
1387static void complete_migration(struct dm_cache_migration *mg)
1388{
1389 if (mg->err)
1390 migration_failure(mg);
1391 else
1392 migration_success_pre_commit(mg);
1393}
1394
1395static void process_migrations(struct cache *cache, struct list_head *head,
1396 void (*fn)(struct dm_cache_migration *))
1397{
1398 unsigned long flags;
1399 struct list_head list;
1400 struct dm_cache_migration *mg, *tmp;
1401
1402 INIT_LIST_HEAD(&list);
1403 spin_lock_irqsave(&cache->lock, flags);
1404 list_splice_init(head, &list);
1405 spin_unlock_irqrestore(&cache->lock, flags);
1406
1407 list_for_each_entry_safe(mg, tmp, &list, list)
1408 fn(mg);
1409}
1410
1411static void __queue_quiesced_migration(struct dm_cache_migration *mg)
1412{
1413 list_add_tail(&mg->list, &mg->cache->quiesced_migrations);
1414}
1415
1416static void queue_quiesced_migration(struct dm_cache_migration *mg)
1417{
1418 unsigned long flags;
1419 struct cache *cache = mg->cache;
1420
1421 spin_lock_irqsave(&cache->lock, flags);
1422 __queue_quiesced_migration(mg);
1423 spin_unlock_irqrestore(&cache->lock, flags);
1424
1425 wake_worker(cache);
1426}
1427
1428static void queue_quiesced_migrations(struct cache *cache, struct list_head *work)
1429{
1430 unsigned long flags;
1431 struct dm_cache_migration *mg, *tmp;
1432
1433 spin_lock_irqsave(&cache->lock, flags);
1434 list_for_each_entry_safe(mg, tmp, work, list)
1435 __queue_quiesced_migration(mg);
1436 spin_unlock_irqrestore(&cache->lock, flags);
1437
1438 wake_worker(cache);
1439}
1440
1441static void check_for_quiesced_migrations(struct cache *cache,
1442 struct per_bio_data *pb)
1443{
1444 struct list_head work;
1445
1446 if (!pb->all_io_entry)
1447 return;
1448
1449 INIT_LIST_HEAD(&work);
8c081b52 1450 dm_deferred_entry_dec(pb->all_io_entry, &work);
c6b4fcba
JT
1451
1452 if (!list_empty(&work))
1453 queue_quiesced_migrations(cache, &work);
1454}
1455
1456static void quiesce_migration(struct dm_cache_migration *mg)
1457{
1458 if (!dm_deferred_set_add_work(mg->cache->all_io_ds, &mg->list))
1459 queue_quiesced_migration(mg);
1460}
1461
1462static void promote(struct cache *cache, struct prealloc *structs,
1463 dm_oblock_t oblock, dm_cblock_t cblock,
1464 struct dm_bio_prison_cell *cell)
1465{
1466 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1467
1468 mg->err = false;
7ae34e77 1469 mg->discard = false;
c6b4fcba
JT
1470 mg->writeback = false;
1471 mg->demote = false;
1472 mg->promote = true;
c9d28d5d 1473 mg->requeue_holder = true;
65790ff9 1474 mg->invalidate = false;
c6b4fcba
JT
1475 mg->cache = cache;
1476 mg->new_oblock = oblock;
1477 mg->cblock = cblock;
1478 mg->old_ocell = NULL;
1479 mg->new_ocell = cell;
1480 mg->start_jiffies = jiffies;
1481
a59db676 1482 inc_io_migrations(cache);
c6b4fcba
JT
1483 quiesce_migration(mg);
1484}
1485
1486static void writeback(struct cache *cache, struct prealloc *structs,
1487 dm_oblock_t oblock, dm_cblock_t cblock,
1488 struct dm_bio_prison_cell *cell)
1489{
1490 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1491
1492 mg->err = false;
7ae34e77 1493 mg->discard = false;
c6b4fcba
JT
1494 mg->writeback = true;
1495 mg->demote = false;
1496 mg->promote = false;
c9d28d5d 1497 mg->requeue_holder = true;
65790ff9 1498 mg->invalidate = false;
c6b4fcba
JT
1499 mg->cache = cache;
1500 mg->old_oblock = oblock;
1501 mg->cblock = cblock;
1502 mg->old_ocell = cell;
1503 mg->new_ocell = NULL;
1504 mg->start_jiffies = jiffies;
1505
a59db676 1506 inc_io_migrations(cache);
c6b4fcba
JT
1507 quiesce_migration(mg);
1508}
1509
1510static void demote_then_promote(struct cache *cache, struct prealloc *structs,
1511 dm_oblock_t old_oblock, dm_oblock_t new_oblock,
1512 dm_cblock_t cblock,
1513 struct dm_bio_prison_cell *old_ocell,
1514 struct dm_bio_prison_cell *new_ocell)
1515{
1516 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1517
1518 mg->err = false;
7ae34e77 1519 mg->discard = false;
c6b4fcba
JT
1520 mg->writeback = false;
1521 mg->demote = true;
1522 mg->promote = true;
c9d28d5d 1523 mg->requeue_holder = true;
65790ff9 1524 mg->invalidate = false;
c6b4fcba
JT
1525 mg->cache = cache;
1526 mg->old_oblock = old_oblock;
1527 mg->new_oblock = new_oblock;
1528 mg->cblock = cblock;
1529 mg->old_ocell = old_ocell;
1530 mg->new_ocell = new_ocell;
1531 mg->start_jiffies = jiffies;
1532
a59db676 1533 inc_io_migrations(cache);
c6b4fcba
JT
1534 quiesce_migration(mg);
1535}
1536
2ee57d58
JT
1537/*
1538 * Invalidate a cache entry. No writeback occurs; any changes in the cache
1539 * block are thrown away.
1540 */
1541static void invalidate(struct cache *cache, struct prealloc *structs,
1542 dm_oblock_t oblock, dm_cblock_t cblock,
1543 struct dm_bio_prison_cell *cell)
1544{
1545 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1546
1547 mg->err = false;
7ae34e77 1548 mg->discard = false;
2ee57d58
JT
1549 mg->writeback = false;
1550 mg->demote = true;
1551 mg->promote = false;
1552 mg->requeue_holder = true;
65790ff9 1553 mg->invalidate = true;
2ee57d58
JT
1554 mg->cache = cache;
1555 mg->old_oblock = oblock;
1556 mg->cblock = cblock;
1557 mg->old_ocell = cell;
1558 mg->new_ocell = NULL;
1559 mg->start_jiffies = jiffies;
1560
a59db676 1561 inc_io_migrations(cache);
2ee57d58
JT
1562 quiesce_migration(mg);
1563}
1564
7ae34e77
JT
1565static void discard(struct cache *cache, struct prealloc *structs,
1566 struct dm_bio_prison_cell *cell)
1567{
1568 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1569
1570 mg->err = false;
1571 mg->discard = true;
1572 mg->writeback = false;
1573 mg->demote = false;
1574 mg->promote = false;
1575 mg->requeue_holder = false;
1576 mg->invalidate = false;
1577 mg->cache = cache;
1578 mg->old_ocell = NULL;
1579 mg->new_ocell = cell;
1580 mg->start_jiffies = jiffies;
1581
1582 quiesce_migration(mg);
1583}
1584
c6b4fcba
JT
1585/*----------------------------------------------------------------
1586 * bio processing
1587 *--------------------------------------------------------------*/
1588static void defer_bio(struct cache *cache, struct bio *bio)
1589{
1590 unsigned long flags;
1591
1592 spin_lock_irqsave(&cache->lock, flags);
1593 bio_list_add(&cache->deferred_bios, bio);
1594 spin_unlock_irqrestore(&cache->lock, flags);
1595
1596 wake_worker(cache);
1597}
1598
1599static void process_flush_bio(struct cache *cache, struct bio *bio)
1600{
19b0092e
MS
1601 size_t pb_data_size = get_per_bio_data_size(cache);
1602 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
c6b4fcba 1603
4f024f37 1604 BUG_ON(bio->bi_iter.bi_size);
c6b4fcba
JT
1605 if (!pb->req_nr)
1606 remap_to_origin(cache, bio);
1607 else
1608 remap_to_cache(cache, bio, 0);
1609
8c081b52 1610 /*
28a8f0d3
MC
1611 * REQ_PREFLUSH is not directed at any particular block so we don't
1612 * need to inc_ds(). REQ_FUA's are split into a write + REQ_PREFLUSH
8c081b52
JT
1613 * by dm-core.
1614 */
c6b4fcba
JT
1615 issue(cache, bio);
1616}
1617
7ae34e77
JT
1618static void process_discard_bio(struct cache *cache, struct prealloc *structs,
1619 struct bio *bio)
c6b4fcba 1620{
7ae34e77
JT
1621 int r;
1622 dm_dblock_t b, e;
1623 struct dm_bio_prison_cell *cell_prealloc, *new_ocell;
c6b4fcba 1624
7ae34e77
JT
1625 calc_discard_block_range(cache, bio, &b, &e);
1626 if (b == e) {
4246a0b6 1627 bio_endio(bio);
7ae34e77
JT
1628 return;
1629 }
c6b4fcba 1630
7ae34e77
JT
1631 cell_prealloc = prealloc_get_cell(structs);
1632 r = bio_detain_range(cache, dblock_to_oblock(cache, b), dblock_to_oblock(cache, e), bio, cell_prealloc,
1633 (cell_free_fn) prealloc_put_cell,
1634 structs, &new_ocell);
1635 if (r > 0)
1636 return;
c6b4fcba 1637
7ae34e77 1638 discard(cache, structs, new_ocell);
c6b4fcba
JT
1639}
1640
1641static bool spare_migration_bandwidth(struct cache *cache)
1642{
a59db676 1643 sector_t current_volume = (atomic_read(&cache->nr_io_migrations) + 1) *
c6b4fcba
JT
1644 cache->sectors_per_block;
1645 return current_volume < cache->migration_threshold;
1646}
1647
c6b4fcba
JT
1648static void inc_hit_counter(struct cache *cache, struct bio *bio)
1649{
1650 atomic_inc(bio_data_dir(bio) == READ ?
1651 &cache->stats.read_hit : &cache->stats.write_hit);
1652}
1653
1654static void inc_miss_counter(struct cache *cache, struct bio *bio)
1655{
1656 atomic_inc(bio_data_dir(bio) == READ ?
1657 &cache->stats.read_miss : &cache->stats.write_miss);
1658}
1659
fb4100ae
JT
1660/*----------------------------------------------------------------*/
1661
651f5fa2
JT
1662struct inc_detail {
1663 struct cache *cache;
1664 struct bio_list bios_for_issue;
1665 struct bio_list unhandled_bios;
1666 bool any_writes;
1667};
1668
1669static void inc_fn(void *context, struct dm_bio_prison_cell *cell)
1670{
1671 struct bio *bio;
1672 struct inc_detail *detail = context;
1673 struct cache *cache = detail->cache;
1674
1675 inc_ds(cache, cell->holder, cell);
1676 if (bio_data_dir(cell->holder) == WRITE)
1677 detail->any_writes = true;
1678
1679 while ((bio = bio_list_pop(&cell->bios))) {
1680 if (discard_or_flush(bio)) {
1681 bio_list_add(&detail->unhandled_bios, bio);
1682 continue;
1683 }
1684
1685 if (bio_data_dir(bio) == WRITE)
1686 detail->any_writes = true;
1687
1688 bio_list_add(&detail->bios_for_issue, bio);
1689 inc_ds(cache, bio, cell);
1690 }
1691}
1692
1693// FIXME: refactor these two
1694static void remap_cell_to_origin_clear_discard(struct cache *cache,
1695 struct dm_bio_prison_cell *cell,
1696 dm_oblock_t oblock, bool issue_holder)
1697{
1698 struct bio *bio;
1699 unsigned long flags;
1700 struct inc_detail detail;
1701
1702 detail.cache = cache;
1703 bio_list_init(&detail.bios_for_issue);
1704 bio_list_init(&detail.unhandled_bios);
1705 detail.any_writes = false;
1706
1707 spin_lock_irqsave(&cache->lock, flags);
1708 dm_cell_visit_release(cache->prison, inc_fn, &detail, cell);
1709 bio_list_merge(&cache->deferred_bios, &detail.unhandled_bios);
1710 spin_unlock_irqrestore(&cache->lock, flags);
1711
1712 remap_to_origin(cache, cell->holder);
1713 if (issue_holder)
1714 issue(cache, cell->holder);
1715 else
1716 accounted_begin(cache, cell->holder);
1717
1718 if (detail.any_writes)
1719 clear_discard(cache, oblock_to_dblock(cache, oblock));
1720
1721 while ((bio = bio_list_pop(&detail.bios_for_issue))) {
1722 remap_to_origin(cache, bio);
1723 issue(cache, bio);
1724 }
9153df74
JT
1725
1726 free_prison_cell(cache, cell);
651f5fa2
JT
1727}
1728
1729static void remap_cell_to_cache_dirty(struct cache *cache, struct dm_bio_prison_cell *cell,
1730 dm_oblock_t oblock, dm_cblock_t cblock, bool issue_holder)
1731{
1732 struct bio *bio;
1733 unsigned long flags;
1734 struct inc_detail detail;
1735
1736 detail.cache = cache;
1737 bio_list_init(&detail.bios_for_issue);
1738 bio_list_init(&detail.unhandled_bios);
1739 detail.any_writes = false;
1740
1741 spin_lock_irqsave(&cache->lock, flags);
1742 dm_cell_visit_release(cache->prison, inc_fn, &detail, cell);
1743 bio_list_merge(&cache->deferred_bios, &detail.unhandled_bios);
1744 spin_unlock_irqrestore(&cache->lock, flags);
1745
1746 remap_to_cache(cache, cell->holder, cblock);
1747 if (issue_holder)
1748 issue(cache, cell->holder);
1749 else
1750 accounted_begin(cache, cell->holder);
1751
1752 if (detail.any_writes) {
1753 set_dirty(cache, oblock, cblock);
1754 clear_discard(cache, oblock_to_dblock(cache, oblock));
1755 }
1756
1757 while ((bio = bio_list_pop(&detail.bios_for_issue))) {
1758 remap_to_cache(cache, bio, cblock);
1759 issue(cache, bio);
1760 }
9153df74
JT
1761
1762 free_prison_cell(cache, cell);
651f5fa2
JT
1763}
1764
1765/*----------------------------------------------------------------*/
1766
fb4100ae
JT
1767struct old_oblock_lock {
1768 struct policy_locker locker;
1769 struct cache *cache;
1770 struct prealloc *structs;
1771 struct dm_bio_prison_cell *cell;
1772};
1773
1774static int null_locker(struct policy_locker *locker, dm_oblock_t b)
1775{
1776 /* This should never be called */
1777 BUG();
1778 return 0;
1779}
1780
1781static int cell_locker(struct policy_locker *locker, dm_oblock_t b)
1782{
1783 struct old_oblock_lock *l = container_of(locker, struct old_oblock_lock, locker);
1784 struct dm_bio_prison_cell *cell_prealloc = prealloc_get_cell(l->structs);
1785
1786 return bio_detain(l->cache, b, NULL, cell_prealloc,
1787 (cell_free_fn) prealloc_put_cell,
1788 l->structs, &l->cell);
1789}
1790
651f5fa2
JT
1791static void process_cell(struct cache *cache, struct prealloc *structs,
1792 struct dm_bio_prison_cell *new_ocell)
c6b4fcba
JT
1793{
1794 int r;
1795 bool release_cell = true;
651f5fa2 1796 struct bio *bio = new_ocell->holder;
c6b4fcba 1797 dm_oblock_t block = get_bio_block(cache, bio);
c6b4fcba 1798 struct policy_result lookup_result;
2ee57d58 1799 bool passthrough = passthrough_mode(&cache->features);
40775257 1800 bool fast_promotion, can_migrate;
fb4100ae 1801 struct old_oblock_lock ool;
c6b4fcba 1802
40775257
JT
1803 fast_promotion = is_discarded_oblock(cache, block) || bio_writes_complete_block(cache, bio);
1804 can_migrate = !passthrough && (fast_promotion || spare_migration_bandwidth(cache));
43c32bf2 1805
fb4100ae
JT
1806 ool.locker.fn = cell_locker;
1807 ool.cache = cache;
1808 ool.structs = structs;
1809 ool.cell = NULL;
40775257 1810 r = policy_map(cache->policy, block, true, can_migrate, fast_promotion,
fb4100ae 1811 bio, &ool.locker, &lookup_result);
c6b4fcba
JT
1812
1813 if (r == -EWOULDBLOCK)
1814 /* migration has been denied */
1815 lookup_result.op = POLICY_MISS;
1816
1817 switch (lookup_result.op) {
1818 case POLICY_HIT:
2ee57d58
JT
1819 if (passthrough) {
1820 inc_miss_counter(cache, bio);
c6b4fcba 1821
2ee57d58
JT
1822 /*
1823 * Passthrough always maps to the origin,
1824 * invalidating any cache blocks that are written
1825 * to.
1826 */
1827
1828 if (bio_data_dir(bio) == WRITE) {
1829 atomic_inc(&cache->stats.demotion);
1830 invalidate(cache, structs, block, lookup_result.cblock, new_ocell);
1831 release_cell = false;
1832
1833 } else {
1834 /* FIXME: factor out issue_origin() */
2ee57d58 1835 remap_to_origin_clear_discard(cache, bio, block);
8c081b52 1836 inc_and_issue(cache, bio, new_ocell);
2ee57d58
JT
1837 }
1838 } else {
1839 inc_hit_counter(cache, bio);
1840
1841 if (bio_data_dir(bio) == WRITE &&
1842 writethrough_mode(&cache->features) &&
1843 !is_dirty(cache, lookup_result.cblock)) {
2ee57d58 1844 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
8c081b52
JT
1845 inc_and_issue(cache, bio, new_ocell);
1846
651f5fa2
JT
1847 } else {
1848 remap_cell_to_cache_dirty(cache, new_ocell, block, lookup_result.cblock, true);
1849 release_cell = false;
8c081b52 1850 }
2ee57d58 1851 }
c6b4fcba 1852
c6b4fcba
JT
1853 break;
1854
1855 case POLICY_MISS:
1856 inc_miss_counter(cache, bio);
651f5fa2
JT
1857 remap_cell_to_origin_clear_discard(cache, new_ocell, block, true);
1858 release_cell = false;
c6b4fcba
JT
1859 break;
1860
1861 case POLICY_NEW:
1862 atomic_inc(&cache->stats.promotion);
1863 promote(cache, structs, block, lookup_result.cblock, new_ocell);
1864 release_cell = false;
1865 break;
1866
1867 case POLICY_REPLACE:
c6b4fcba
JT
1868 atomic_inc(&cache->stats.demotion);
1869 atomic_inc(&cache->stats.promotion);
c6b4fcba
JT
1870 demote_then_promote(cache, structs, lookup_result.old_oblock,
1871 block, lookup_result.cblock,
fb4100ae 1872 ool.cell, new_ocell);
c6b4fcba
JT
1873 release_cell = false;
1874 break;
1875
1876 default:
b61d9509
MS
1877 DMERR_LIMIT("%s: %s: erroring bio, unknown policy op: %u",
1878 cache_device_name(cache), __func__,
c6b4fcba
JT
1879 (unsigned) lookup_result.op);
1880 bio_io_error(bio);
1881 }
1882
1883 if (release_cell)
1884 cell_defer(cache, new_ocell, false);
1885}
1886
651f5fa2
JT
1887static void process_bio(struct cache *cache, struct prealloc *structs,
1888 struct bio *bio)
1889{
1890 int r;
1891 dm_oblock_t block = get_bio_block(cache, bio);
1892 struct dm_bio_prison_cell *cell_prealloc, *new_ocell;
1893
1894 /*
1895 * Check to see if that block is currently migrating.
1896 */
1897 cell_prealloc = prealloc_get_cell(structs);
1898 r = bio_detain(cache, block, bio, cell_prealloc,
1899 (cell_free_fn) prealloc_put_cell,
1900 structs, &new_ocell);
1901 if (r > 0)
1902 return;
1903
1904 process_cell(cache, structs, new_ocell);
1905}
1906
c6b4fcba
JT
1907static int need_commit_due_to_time(struct cache *cache)
1908{
651f5fa2
JT
1909 return jiffies < cache->last_commit_jiffies ||
1910 jiffies > cache->last_commit_jiffies + COMMIT_PERIOD;
c6b4fcba
JT
1911}
1912
028ae9f7
JT
1913/*
1914 * A non-zero return indicates read_only or fail_io mode.
1915 */
1916static int commit(struct cache *cache, bool clean_shutdown)
1917{
1918 int r;
1919
1920 if (get_cache_mode(cache) >= CM_READ_ONLY)
1921 return -EINVAL;
1922
1923 atomic_inc(&cache->stats.commit_count);
1924 r = dm_cache_commit(cache->cmd, clean_shutdown);
1925 if (r)
1926 metadata_operation_failed(cache, "dm_cache_commit", r);
1927
1928 return r;
1929}
1930
c6b4fcba
JT
1931static int commit_if_needed(struct cache *cache)
1932{
ffcbcb67
HM
1933 int r = 0;
1934
1935 if ((cache->commit_requested || need_commit_due_to_time(cache)) &&
1936 dm_cache_changed_this_transaction(cache->cmd)) {
028ae9f7 1937 r = commit(cache, false);
c6b4fcba 1938 cache->commit_requested = false;
ffcbcb67 1939 cache->last_commit_jiffies = jiffies;
c6b4fcba
JT
1940 }
1941
ffcbcb67 1942 return r;
c6b4fcba
JT
1943}
1944
1945static void process_deferred_bios(struct cache *cache)
1946{
665022d7 1947 bool prealloc_used = false;
c6b4fcba
JT
1948 unsigned long flags;
1949 struct bio_list bios;
1950 struct bio *bio;
1951 struct prealloc structs;
1952
1953 memset(&structs, 0, sizeof(structs));
1954 bio_list_init(&bios);
1955
1956 spin_lock_irqsave(&cache->lock, flags);
1957 bio_list_merge(&bios, &cache->deferred_bios);
1958 bio_list_init(&cache->deferred_bios);
1959 spin_unlock_irqrestore(&cache->lock, flags);
1960
1961 while (!bio_list_empty(&bios)) {
1962 /*
1963 * If we've got no free migration structs, and processing
1964 * this bio might require one, we pause until there are some
1965 * prepared mappings to process.
1966 */
795e633a 1967 prealloc_used = true;
c6b4fcba
JT
1968 if (prealloc_data_structs(cache, &structs)) {
1969 spin_lock_irqsave(&cache->lock, flags);
1970 bio_list_merge(&cache->deferred_bios, &bios);
1971 spin_unlock_irqrestore(&cache->lock, flags);
1972 break;
1973 }
1974
1975 bio = bio_list_pop(&bios);
1976
1eff9d32 1977 if (bio->bi_opf & REQ_PREFLUSH)
c6b4fcba 1978 process_flush_bio(cache, bio);
e6047149 1979 else if (bio_op(bio) == REQ_OP_DISCARD)
7ae34e77 1980 process_discard_bio(cache, &structs, bio);
c6b4fcba
JT
1981 else
1982 process_bio(cache, &structs, bio);
1983 }
1984
665022d7
MS
1985 if (prealloc_used)
1986 prealloc_free_structs(cache, &structs);
c6b4fcba
JT
1987}
1988
651f5fa2
JT
1989static void process_deferred_cells(struct cache *cache)
1990{
665022d7 1991 bool prealloc_used = false;
651f5fa2
JT
1992 unsigned long flags;
1993 struct dm_bio_prison_cell *cell, *tmp;
1994 struct list_head cells;
1995 struct prealloc structs;
1996
1997 memset(&structs, 0, sizeof(structs));
1998
1999 INIT_LIST_HEAD(&cells);
2000
2001 spin_lock_irqsave(&cache->lock, flags);
2002 list_splice_init(&cache->deferred_cells, &cells);
2003 spin_unlock_irqrestore(&cache->lock, flags);
2004
2005 list_for_each_entry_safe(cell, tmp, &cells, user_list) {
2006 /*
2007 * If we've got no free migration structs, and processing
2008 * this bio might require one, we pause until there are some
2009 * prepared mappings to process.
2010 */
795e633a 2011 prealloc_used = true;
651f5fa2
JT
2012 if (prealloc_data_structs(cache, &structs)) {
2013 spin_lock_irqsave(&cache->lock, flags);
2014 list_splice(&cells, &cache->deferred_cells);
2015 spin_unlock_irqrestore(&cache->lock, flags);
2016 break;
2017 }
2018
2019 process_cell(cache, &structs, cell);
2020 }
2021
665022d7
MS
2022 if (prealloc_used)
2023 prealloc_free_structs(cache, &structs);
651f5fa2
JT
2024}
2025
c6b4fcba
JT
2026static void process_deferred_flush_bios(struct cache *cache, bool submit_bios)
2027{
2028 unsigned long flags;
2029 struct bio_list bios;
2030 struct bio *bio;
2031
2032 bio_list_init(&bios);
2033
2034 spin_lock_irqsave(&cache->lock, flags);
2035 bio_list_merge(&bios, &cache->deferred_flush_bios);
2036 bio_list_init(&cache->deferred_flush_bios);
2037 spin_unlock_irqrestore(&cache->lock, flags);
2038
8c081b52
JT
2039 /*
2040 * These bios have already been through inc_ds()
2041 */
c6b4fcba 2042 while ((bio = bio_list_pop(&bios)))
066dbaa3 2043 submit_bios ? accounted_request(cache, bio) : bio_io_error(bio);
c6b4fcba
JT
2044}
2045
e2e74d61
JT
2046static void process_deferred_writethrough_bios(struct cache *cache)
2047{
2048 unsigned long flags;
2049 struct bio_list bios;
2050 struct bio *bio;
2051
2052 bio_list_init(&bios);
2053
2054 spin_lock_irqsave(&cache->lock, flags);
2055 bio_list_merge(&bios, &cache->deferred_writethrough_bios);
2056 bio_list_init(&cache->deferred_writethrough_bios);
2057 spin_unlock_irqrestore(&cache->lock, flags);
2058
8c081b52
JT
2059 /*
2060 * These bios have already been through inc_ds()
2061 */
e2e74d61 2062 while ((bio = bio_list_pop(&bios)))
066dbaa3 2063 accounted_request(cache, bio);
e2e74d61
JT
2064}
2065
c6b4fcba
JT
2066static void writeback_some_dirty_blocks(struct cache *cache)
2067{
665022d7 2068 bool prealloc_used = false;
c6b4fcba
JT
2069 dm_oblock_t oblock;
2070 dm_cblock_t cblock;
2071 struct prealloc structs;
2072 struct dm_bio_prison_cell *old_ocell;
20f6814b 2073 bool busy = !iot_idle_for(&cache->origin_tracker, HZ);
c6b4fcba
JT
2074
2075 memset(&structs, 0, sizeof(structs));
2076
2077 while (spare_migration_bandwidth(cache)) {
e782eff5
MS
2078 if (policy_writeback_work(cache->policy, &oblock, &cblock, busy))
2079 break; /* no work to do */
c6b4fcba 2080
795e633a 2081 prealloc_used = true;
e782eff5
MS
2082 if (prealloc_data_structs(cache, &structs) ||
2083 get_cell(cache, oblock, &structs, &old_ocell)) {
c6b4fcba
JT
2084 policy_set_dirty(cache->policy, oblock);
2085 break;
2086 }
2087
2088 writeback(cache, &structs, oblock, cblock, old_ocell);
2089 }
2090
665022d7
MS
2091 if (prealloc_used)
2092 prealloc_free_structs(cache, &structs);
c6b4fcba
JT
2093}
2094
65790ff9
JT
2095/*----------------------------------------------------------------
2096 * Invalidations.
2097 * Dropping something from the cache *without* writing back.
2098 *--------------------------------------------------------------*/
2099
2100static void process_invalidation_request(struct cache *cache, struct invalidation_request *req)
2101{
2102 int r = 0;
2103 uint64_t begin = from_cblock(req->cblocks->begin);
2104 uint64_t end = from_cblock(req->cblocks->end);
2105
2106 while (begin != end) {
2107 r = policy_remove_cblock(cache->policy, to_cblock(begin));
2108 if (!r) {
2109 r = dm_cache_remove_mapping(cache->cmd, to_cblock(begin));
028ae9f7
JT
2110 if (r) {
2111 metadata_operation_failed(cache, "dm_cache_remove_mapping", r);
65790ff9 2112 break;
028ae9f7 2113 }
65790ff9
JT
2114
2115 } else if (r == -ENODATA) {
2116 /* harmless, already unmapped */
2117 r = 0;
2118
2119 } else {
b61d9509 2120 DMERR("%s: policy_remove_cblock failed", cache_device_name(cache));
65790ff9
JT
2121 break;
2122 }
2123
2124 begin++;
2125 }
2126
2127 cache->commit_requested = true;
2128
2129 req->err = r;
2130 atomic_set(&req->complete, 1);
2131
2132 wake_up(&req->result_wait);
2133}
2134
2135static void process_invalidation_requests(struct cache *cache)
2136{
2137 struct list_head list;
2138 struct invalidation_request *req, *tmp;
2139
2140 INIT_LIST_HEAD(&list);
2141 spin_lock(&cache->invalidation_lock);
2142 list_splice_init(&cache->invalidation_requests, &list);
2143 spin_unlock(&cache->invalidation_lock);
2144
2145 list_for_each_entry_safe (req, tmp, &list, list)
2146 process_invalidation_request(cache, req);
2147}
2148
c6b4fcba
JT
2149/*----------------------------------------------------------------
2150 * Main worker loop
2151 *--------------------------------------------------------------*/
66cb1910 2152static bool is_quiescing(struct cache *cache)
c6b4fcba 2153{
238f8363 2154 return atomic_read(&cache->quiescing);
c6b4fcba
JT
2155}
2156
66cb1910
JT
2157static void ack_quiescing(struct cache *cache)
2158{
2159 if (is_quiescing(cache)) {
2160 atomic_inc(&cache->quiescing_ack);
2161 wake_up(&cache->quiescing_wait);
2162 }
2163}
2164
2165static void wait_for_quiescing_ack(struct cache *cache)
2166{
2167 wait_event(cache->quiescing_wait, atomic_read(&cache->quiescing_ack));
2168}
2169
2170static void start_quiescing(struct cache *cache)
c6b4fcba 2171{
238f8363 2172 atomic_inc(&cache->quiescing);
66cb1910 2173 wait_for_quiescing_ack(cache);
c6b4fcba
JT
2174}
2175
66cb1910 2176static void stop_quiescing(struct cache *cache)
c6b4fcba 2177{
238f8363 2178 atomic_set(&cache->quiescing, 0);
66cb1910 2179 atomic_set(&cache->quiescing_ack, 0);
c6b4fcba
JT
2180}
2181
2182static void wait_for_migrations(struct cache *cache)
2183{
a59db676 2184 wait_event(cache->migration_wait, !atomic_read(&cache->nr_allocated_migrations));
c6b4fcba
JT
2185}
2186
2187static void stop_worker(struct cache *cache)
2188{
2189 cancel_delayed_work(&cache->waker);
2190 flush_workqueue(cache->wq);
2191}
2192
651f5fa2
JT
2193static void requeue_deferred_cells(struct cache *cache)
2194{
2195 unsigned long flags;
2196 struct list_head cells;
2197 struct dm_bio_prison_cell *cell, *tmp;
2198
2199 INIT_LIST_HEAD(&cells);
2200 spin_lock_irqsave(&cache->lock, flags);
2201 list_splice_init(&cache->deferred_cells, &cells);
2202 spin_unlock_irqrestore(&cache->lock, flags);
2203
2204 list_for_each_entry_safe(cell, tmp, &cells, user_list)
2205 cell_requeue(cache, cell);
2206}
2207
2208static void requeue_deferred_bios(struct cache *cache)
c6b4fcba
JT
2209{
2210 struct bio *bio;
2211 struct bio_list bios;
2212
2213 bio_list_init(&bios);
2214 bio_list_merge(&bios, &cache->deferred_bios);
2215 bio_list_init(&cache->deferred_bios);
2216
4246a0b6
CH
2217 while ((bio = bio_list_pop(&bios))) {
2218 bio->bi_error = DM_ENDIO_REQUEUE;
2219 bio_endio(bio);
2220 }
c6b4fcba
JT
2221}
2222
2223static int more_work(struct cache *cache)
2224{
2225 if (is_quiescing(cache))
2226 return !list_empty(&cache->quiesced_migrations) ||
2227 !list_empty(&cache->completed_migrations) ||
2228 !list_empty(&cache->need_commit_migrations);
2229 else
2230 return !bio_list_empty(&cache->deferred_bios) ||
651f5fa2 2231 !list_empty(&cache->deferred_cells) ||
c6b4fcba 2232 !bio_list_empty(&cache->deferred_flush_bios) ||
e2e74d61 2233 !bio_list_empty(&cache->deferred_writethrough_bios) ||
c6b4fcba
JT
2234 !list_empty(&cache->quiesced_migrations) ||
2235 !list_empty(&cache->completed_migrations) ||
65790ff9
JT
2236 !list_empty(&cache->need_commit_migrations) ||
2237 cache->invalidate;
c6b4fcba
JT
2238}
2239
2240static void do_worker(struct work_struct *ws)
2241{
2242 struct cache *cache = container_of(ws, struct cache, worker);
2243
2244 do {
66cb1910
JT
2245 if (!is_quiescing(cache)) {
2246 writeback_some_dirty_blocks(cache);
2247 process_deferred_writethrough_bios(cache);
c6b4fcba 2248 process_deferred_bios(cache);
651f5fa2 2249 process_deferred_cells(cache);
65790ff9 2250 process_invalidation_requests(cache);
66cb1910 2251 }
c6b4fcba 2252
7ae34e77 2253 process_migrations(cache, &cache->quiesced_migrations, issue_copy_or_discard);
c6b4fcba
JT
2254 process_migrations(cache, &cache->completed_migrations, complete_migration);
2255
c6b4fcba
JT
2256 if (commit_if_needed(cache)) {
2257 process_deferred_flush_bios(cache, false);
304affaa 2258 process_migrations(cache, &cache->need_commit_migrations, migration_failure);
c6b4fcba
JT
2259 } else {
2260 process_deferred_flush_bios(cache, true);
2261 process_migrations(cache, &cache->need_commit_migrations,
2262 migration_success_post_commit);
2263 }
66cb1910
JT
2264
2265 ack_quiescing(cache);
2266
c6b4fcba
JT
2267 } while (more_work(cache));
2268}
2269
2270/*
2271 * We want to commit periodically so that not too much
2272 * unwritten metadata builds up.
2273 */
2274static void do_waker(struct work_struct *ws)
2275{
2276 struct cache *cache = container_of(to_delayed_work(ws), struct cache, waker);
fba10109 2277 policy_tick(cache->policy, true);
c6b4fcba
JT
2278 wake_worker(cache);
2279 queue_delayed_work(cache->wq, &cache->waker, COMMIT_PERIOD);
2280}
2281
2282/*----------------------------------------------------------------*/
2283
2284static int is_congested(struct dm_dev *dev, int bdi_bits)
2285{
2286 struct request_queue *q = bdev_get_queue(dev->bdev);
2287 return bdi_congested(&q->backing_dev_info, bdi_bits);
2288}
2289
2290static int cache_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
2291{
2292 struct cache *cache = container_of(cb, struct cache, callbacks);
2293
2294 return is_congested(cache->origin_dev, bdi_bits) ||
2295 is_congested(cache->cache_dev, bdi_bits);
2296}
2297
2298/*----------------------------------------------------------------
2299 * Target methods
2300 *--------------------------------------------------------------*/
2301
2302/*
2303 * This function gets called on the error paths of the constructor, so we
2304 * have to cope with a partially initialised struct.
2305 */
2306static void destroy(struct cache *cache)
2307{
2308 unsigned i;
2309
6f65985e 2310 mempool_destroy(cache->migration_pool);
c6b4fcba
JT
2311
2312 if (cache->all_io_ds)
2313 dm_deferred_set_destroy(cache->all_io_ds);
2314
2315 if (cache->prison)
2316 dm_bio_prison_destroy(cache->prison);
2317
2318 if (cache->wq)
2319 destroy_workqueue(cache->wq);
2320
2321 if (cache->dirty_bitset)
2322 free_bitset(cache->dirty_bitset);
2323
2324 if (cache->discard_bitset)
2325 free_bitset(cache->discard_bitset);
2326
2327 if (cache->copier)
2328 dm_kcopyd_client_destroy(cache->copier);
2329
2330 if (cache->cmd)
2331 dm_cache_metadata_close(cache->cmd);
2332
2333 if (cache->metadata_dev)
2334 dm_put_device(cache->ti, cache->metadata_dev);
2335
2336 if (cache->origin_dev)
2337 dm_put_device(cache->ti, cache->origin_dev);
2338
2339 if (cache->cache_dev)
2340 dm_put_device(cache->ti, cache->cache_dev);
2341
2342 if (cache->policy)
2343 dm_cache_policy_destroy(cache->policy);
2344
2345 for (i = 0; i < cache->nr_ctr_args ; i++)
2346 kfree(cache->ctr_args[i]);
2347 kfree(cache->ctr_args);
2348
2349 kfree(cache);
2350}
2351
2352static void cache_dtr(struct dm_target *ti)
2353{
2354 struct cache *cache = ti->private;
2355
2356 destroy(cache);
2357}
2358
2359static sector_t get_dev_size(struct dm_dev *dev)
2360{
2361 return i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT;
2362}
2363
2364/*----------------------------------------------------------------*/
2365
2366/*
2367 * Construct a cache device mapping.
2368 *
2369 * cache <metadata dev> <cache dev> <origin dev> <block size>
2370 * <#feature args> [<feature arg>]*
2371 * <policy> <#policy args> [<policy arg>]*
2372 *
2373 * metadata dev : fast device holding the persistent metadata
2374 * cache dev : fast device holding cached data blocks
2375 * origin dev : slow device holding original data blocks
2376 * block size : cache unit size in sectors
2377 *
2378 * #feature args : number of feature arguments passed
2379 * feature args : writethrough. (The default is writeback.)
2380 *
2381 * policy : the replacement policy to use
2382 * #policy args : an even number of policy arguments corresponding
2383 * to key/value pairs passed to the policy
2384 * policy args : key/value pairs passed to the policy
2385 * E.g. 'sequential_threshold 1024'
2386 * See cache-policies.txt for details.
2387 *
2388 * Optional feature arguments are:
2389 * writethrough : write through caching that prohibits cache block
2390 * content from being different from origin block content.
2391 * Without this argument, the default behaviour is to write
2392 * back cache block contents later for performance reasons,
2393 * so they may differ from the corresponding origin blocks.
2394 */
2395struct cache_args {
2396 struct dm_target *ti;
2397
2398 struct dm_dev *metadata_dev;
2399
2400 struct dm_dev *cache_dev;
2401 sector_t cache_sectors;
2402
2403 struct dm_dev *origin_dev;
2404 sector_t origin_sectors;
2405
2406 uint32_t block_size;
2407
2408 const char *policy_name;
2409 int policy_argc;
2410 const char **policy_argv;
2411
2412 struct cache_features features;
2413};
2414
2415static void destroy_cache_args(struct cache_args *ca)
2416{
2417 if (ca->metadata_dev)
2418 dm_put_device(ca->ti, ca->metadata_dev);
2419
2420 if (ca->cache_dev)
2421 dm_put_device(ca->ti, ca->cache_dev);
2422
2423 if (ca->origin_dev)
2424 dm_put_device(ca->ti, ca->origin_dev);
2425
2426 kfree(ca);
2427}
2428
2429static bool at_least_one_arg(struct dm_arg_set *as, char **error)
2430{
2431 if (!as->argc) {
2432 *error = "Insufficient args";
2433 return false;
2434 }
2435
2436 return true;
2437}
2438
2439static int parse_metadata_dev(struct cache_args *ca, struct dm_arg_set *as,
2440 char **error)
2441{
2442 int r;
2443 sector_t metadata_dev_size;
2444 char b[BDEVNAME_SIZE];
2445
2446 if (!at_least_one_arg(as, error))
2447 return -EINVAL;
2448
2449 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
2450 &ca->metadata_dev);
2451 if (r) {
2452 *error = "Error opening metadata device";
2453 return r;
2454 }
2455
2456 metadata_dev_size = get_dev_size(ca->metadata_dev);
2457 if (metadata_dev_size > DM_CACHE_METADATA_MAX_SECTORS_WARNING)
2458 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
2459 bdevname(ca->metadata_dev->bdev, b), THIN_METADATA_MAX_SECTORS);
2460
2461 return 0;
2462}
2463
2464static int parse_cache_dev(struct cache_args *ca, struct dm_arg_set *as,
2465 char **error)
2466{
2467 int r;
2468
2469 if (!at_least_one_arg(as, error))
2470 return -EINVAL;
2471
2472 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
2473 &ca->cache_dev);
2474 if (r) {
2475 *error = "Error opening cache device";
2476 return r;
2477 }
2478 ca->cache_sectors = get_dev_size(ca->cache_dev);
2479
2480 return 0;
2481}
2482
2483static int parse_origin_dev(struct cache_args *ca, struct dm_arg_set *as,
2484 char **error)
2485{
2486 int r;
2487
2488 if (!at_least_one_arg(as, error))
2489 return -EINVAL;
2490
2491 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
2492 &ca->origin_dev);
2493 if (r) {
2494 *error = "Error opening origin device";
2495 return r;
2496 }
2497
2498 ca->origin_sectors = get_dev_size(ca->origin_dev);
2499 if (ca->ti->len > ca->origin_sectors) {
2500 *error = "Device size larger than cached device";
2501 return -EINVAL;
2502 }
2503
2504 return 0;
2505}
2506
2507static int parse_block_size(struct cache_args *ca, struct dm_arg_set *as,
2508 char **error)
2509{
05473044 2510 unsigned long block_size;
c6b4fcba
JT
2511
2512 if (!at_least_one_arg(as, error))
2513 return -EINVAL;
2514
05473044
MS
2515 if (kstrtoul(dm_shift_arg(as), 10, &block_size) || !block_size ||
2516 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
2517 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
2518 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
c6b4fcba
JT
2519 *error = "Invalid data block size";
2520 return -EINVAL;
2521 }
2522
05473044 2523 if (block_size > ca->cache_sectors) {
c6b4fcba
JT
2524 *error = "Data block size is larger than the cache device";
2525 return -EINVAL;
2526 }
2527
05473044 2528 ca->block_size = block_size;
c6b4fcba
JT
2529
2530 return 0;
2531}
2532
2533static void init_features(struct cache_features *cf)
2534{
2535 cf->mode = CM_WRITE;
2ee57d58 2536 cf->io_mode = CM_IO_WRITEBACK;
c6b4fcba
JT
2537}
2538
2539static int parse_features(struct cache_args *ca, struct dm_arg_set *as,
2540 char **error)
2541{
2542 static struct dm_arg _args[] = {
2543 {0, 1, "Invalid number of cache feature arguments"},
2544 };
2545
2546 int r;
2547 unsigned argc;
2548 const char *arg;
2549 struct cache_features *cf = &ca->features;
2550
2551 init_features(cf);
2552
2553 r = dm_read_arg_group(_args, as, &argc, error);
2554 if (r)
2555 return -EINVAL;
2556
2557 while (argc--) {
2558 arg = dm_shift_arg(as);
2559
2560 if (!strcasecmp(arg, "writeback"))
2ee57d58 2561 cf->io_mode = CM_IO_WRITEBACK;
c6b4fcba
JT
2562
2563 else if (!strcasecmp(arg, "writethrough"))
2ee57d58
JT
2564 cf->io_mode = CM_IO_WRITETHROUGH;
2565
2566 else if (!strcasecmp(arg, "passthrough"))
2567 cf->io_mode = CM_IO_PASSTHROUGH;
c6b4fcba
JT
2568
2569 else {
2570 *error = "Unrecognised cache feature requested";
2571 return -EINVAL;
2572 }
2573 }
2574
2575 return 0;
2576}
2577
2578static int parse_policy(struct cache_args *ca, struct dm_arg_set *as,
2579 char **error)
2580{
2581 static struct dm_arg _args[] = {
2582 {0, 1024, "Invalid number of policy arguments"},
2583 };
2584
2585 int r;
2586
2587 if (!at_least_one_arg(as, error))
2588 return -EINVAL;
2589
2590 ca->policy_name = dm_shift_arg(as);
2591
2592 r = dm_read_arg_group(_args, as, &ca->policy_argc, error);
2593 if (r)
2594 return -EINVAL;
2595
2596 ca->policy_argv = (const char **)as->argv;
2597 dm_consume_args(as, ca->policy_argc);
2598
2599 return 0;
2600}
2601
2602static int parse_cache_args(struct cache_args *ca, int argc, char **argv,
2603 char **error)
2604{
2605 int r;
2606 struct dm_arg_set as;
2607
2608 as.argc = argc;
2609 as.argv = argv;
2610
2611 r = parse_metadata_dev(ca, &as, error);
2612 if (r)
2613 return r;
2614
2615 r = parse_cache_dev(ca, &as, error);
2616 if (r)
2617 return r;
2618
2619 r = parse_origin_dev(ca, &as, error);
2620 if (r)
2621 return r;
2622
2623 r = parse_block_size(ca, &as, error);
2624 if (r)
2625 return r;
2626
2627 r = parse_features(ca, &as, error);
2628 if (r)
2629 return r;
2630
2631 r = parse_policy(ca, &as, error);
2632 if (r)
2633 return r;
2634
2635 return 0;
2636}
2637
2638/*----------------------------------------------------------------*/
2639
2640static struct kmem_cache *migration_cache;
2641
2c73c471
AK
2642#define NOT_CORE_OPTION 1
2643
2f14f4b5 2644static int process_config_option(struct cache *cache, const char *key, const char *value)
2c73c471
AK
2645{
2646 unsigned long tmp;
2647
2f14f4b5
JT
2648 if (!strcasecmp(key, "migration_threshold")) {
2649 if (kstrtoul(value, 10, &tmp))
2c73c471
AK
2650 return -EINVAL;
2651
2652 cache->migration_threshold = tmp;
2653 return 0;
2654 }
2655
2656 return NOT_CORE_OPTION;
2657}
2658
2f14f4b5
JT
2659static int set_config_value(struct cache *cache, const char *key, const char *value)
2660{
2661 int r = process_config_option(cache, key, value);
2662
2663 if (r == NOT_CORE_OPTION)
2664 r = policy_set_config_value(cache->policy, key, value);
2665
2666 if (r)
2667 DMWARN("bad config value for %s: %s", key, value);
2668
2669 return r;
2670}
2671
2672static int set_config_values(struct cache *cache, int argc, const char **argv)
c6b4fcba
JT
2673{
2674 int r = 0;
2675
2676 if (argc & 1) {
2677 DMWARN("Odd number of policy arguments given but they should be <key> <value> pairs.");
2678 return -EINVAL;
2679 }
2680
2681 while (argc) {
2f14f4b5
JT
2682 r = set_config_value(cache, argv[0], argv[1]);
2683 if (r)
2684 break;
c6b4fcba
JT
2685
2686 argc -= 2;
2687 argv += 2;
2688 }
2689
2690 return r;
2691}
2692
2693static int create_cache_policy(struct cache *cache, struct cache_args *ca,
2694 char **error)
2695{
4cb3e1db
MP
2696 struct dm_cache_policy *p = dm_cache_policy_create(ca->policy_name,
2697 cache->cache_size,
2698 cache->origin_sectors,
2699 cache->sectors_per_block);
2700 if (IS_ERR(p)) {
c6b4fcba 2701 *error = "Error creating cache's policy";
4cb3e1db 2702 return PTR_ERR(p);
c6b4fcba 2703 }
4cb3e1db 2704 cache->policy = p;
c6b4fcba 2705
2f14f4b5 2706 return 0;
c6b4fcba
JT
2707}
2708
08b18451 2709/*
2bb812df
JT
2710 * We want the discard block size to be at least the size of the cache
2711 * block size and have no more than 2^14 discard blocks across the origin.
08b18451
JT
2712 */
2713#define MAX_DISCARD_BLOCKS (1 << 14)
2714
2715static bool too_many_discard_blocks(sector_t discard_block_size,
2716 sector_t origin_size)
2717{
2718 (void) sector_div(origin_size, discard_block_size);
2719
2720 return origin_size > MAX_DISCARD_BLOCKS;
2721}
2722
2723static sector_t calculate_discard_block_size(sector_t cache_block_size,
2724 sector_t origin_size)
2725{
2bb812df 2726 sector_t discard_block_size = cache_block_size;
08b18451
JT
2727
2728 if (origin_size)
2729 while (too_many_discard_blocks(discard_block_size, origin_size))
2730 discard_block_size *= 2;
2731
2732 return discard_block_size;
2733}
2734
d1d9220c
JT
2735static void set_cache_size(struct cache *cache, dm_cblock_t size)
2736{
2737 dm_block_t nr_blocks = from_cblock(size);
2738
2739 if (nr_blocks > (1 << 20) && cache->cache_size != size)
2740 DMWARN_LIMIT("You have created a cache device with a lot of individual cache blocks (%llu)\n"
2741 "All these mappings can consume a lot of kernel memory, and take some time to read/write.\n"
2742 "Please consider increasing the cache block size to reduce the overall cache block count.",
2743 (unsigned long long) nr_blocks);
2744
2745 cache->cache_size = size;
2746}
2747
f8350daf 2748#define DEFAULT_MIGRATION_THRESHOLD 2048
c6b4fcba 2749
c6b4fcba
JT
2750static int cache_create(struct cache_args *ca, struct cache **result)
2751{
2752 int r = 0;
2753 char **error = &ca->ti->error;
2754 struct cache *cache;
2755 struct dm_target *ti = ca->ti;
2756 dm_block_t origin_blocks;
2757 struct dm_cache_metadata *cmd;
2758 bool may_format = ca->features.mode == CM_WRITE;
2759
2760 cache = kzalloc(sizeof(*cache), GFP_KERNEL);
2761 if (!cache)
2762 return -ENOMEM;
2763
2764 cache->ti = ca->ti;
2765 ti->private = cache;
c6b4fcba
JT
2766 ti->num_flush_bios = 2;
2767 ti->flush_supported = true;
2768
2769 ti->num_discard_bios = 1;
2770 ti->discards_supported = true;
2771 ti->discard_zeroes_data_unsupported = true;
2572629a 2772 ti->split_discard_bios = false;
c6b4fcba 2773
8c5008fa 2774 cache->features = ca->features;
30187e1d 2775 ti->per_io_data_size = get_per_bio_data_size(cache);
c6b4fcba 2776
c6b4fcba
JT
2777 cache->callbacks.congested_fn = cache_is_congested;
2778 dm_table_add_target_callbacks(ti->table, &cache->callbacks);
2779
2780 cache->metadata_dev = ca->metadata_dev;
2781 cache->origin_dev = ca->origin_dev;
2782 cache->cache_dev = ca->cache_dev;
2783
2784 ca->metadata_dev = ca->origin_dev = ca->cache_dev = NULL;
2785
2786 /* FIXME: factor out this whole section */
2787 origin_blocks = cache->origin_sectors = ca->origin_sectors;
414dd67d 2788 origin_blocks = block_div(origin_blocks, ca->block_size);
c6b4fcba
JT
2789 cache->origin_blocks = to_oblock(origin_blocks);
2790
2791 cache->sectors_per_block = ca->block_size;
2792 if (dm_set_target_max_io_len(ti, cache->sectors_per_block)) {
2793 r = -EINVAL;
2794 goto bad;
2795 }
2796
2797 if (ca->block_size & (ca->block_size - 1)) {
2798 dm_block_t cache_size = ca->cache_sectors;
2799
2800 cache->sectors_per_block_shift = -1;
414dd67d 2801 cache_size = block_div(cache_size, ca->block_size);
d1d9220c 2802 set_cache_size(cache, to_cblock(cache_size));
c6b4fcba
JT
2803 } else {
2804 cache->sectors_per_block_shift = __ffs(ca->block_size);
d1d9220c 2805 set_cache_size(cache, to_cblock(ca->cache_sectors >> cache->sectors_per_block_shift));
c6b4fcba
JT
2806 }
2807
2808 r = create_cache_policy(cache, ca, error);
2809 if (r)
2810 goto bad;
2f14f4b5 2811
c6b4fcba 2812 cache->policy_nr_args = ca->policy_argc;
2f14f4b5
JT
2813 cache->migration_threshold = DEFAULT_MIGRATION_THRESHOLD;
2814
2815 r = set_config_values(cache, ca->policy_argc, ca->policy_argv);
2816 if (r) {
2817 *error = "Error setting cache policy's config values";
2818 goto bad;
2819 }
c6b4fcba
JT
2820
2821 cmd = dm_cache_metadata_open(cache->metadata_dev->bdev,
2822 ca->block_size, may_format,
2823 dm_cache_policy_get_hint_size(cache->policy));
2824 if (IS_ERR(cmd)) {
2825 *error = "Error creating metadata object";
2826 r = PTR_ERR(cmd);
2827 goto bad;
2828 }
2829 cache->cmd = cmd;
028ae9f7
JT
2830 set_cache_mode(cache, CM_WRITE);
2831 if (get_cache_mode(cache) != CM_WRITE) {
2832 *error = "Unable to get write access to metadata, please check/repair metadata.";
2833 r = -EINVAL;
2834 goto bad;
2835 }
c6b4fcba 2836
2ee57d58
JT
2837 if (passthrough_mode(&cache->features)) {
2838 bool all_clean;
2839
2840 r = dm_cache_metadata_all_clean(cache->cmd, &all_clean);
2841 if (r) {
2842 *error = "dm_cache_metadata_all_clean() failed";
2843 goto bad;
2844 }
2845
2846 if (!all_clean) {
2847 *error = "Cannot enter passthrough mode unless all blocks are clean";
2848 r = -EINVAL;
2849 goto bad;
2850 }
2851 }
2852
c6b4fcba 2853 spin_lock_init(&cache->lock);
651f5fa2 2854 INIT_LIST_HEAD(&cache->deferred_cells);
c6b4fcba
JT
2855 bio_list_init(&cache->deferred_bios);
2856 bio_list_init(&cache->deferred_flush_bios);
e2e74d61 2857 bio_list_init(&cache->deferred_writethrough_bios);
c6b4fcba
JT
2858 INIT_LIST_HEAD(&cache->quiesced_migrations);
2859 INIT_LIST_HEAD(&cache->completed_migrations);
2860 INIT_LIST_HEAD(&cache->need_commit_migrations);
a59db676
JT
2861 atomic_set(&cache->nr_allocated_migrations, 0);
2862 atomic_set(&cache->nr_io_migrations, 0);
c6b4fcba
JT
2863 init_waitqueue_head(&cache->migration_wait);
2864
66cb1910 2865 init_waitqueue_head(&cache->quiescing_wait);
238f8363 2866 atomic_set(&cache->quiescing, 0);
66cb1910
JT
2867 atomic_set(&cache->quiescing_ack, 0);
2868
fa4d683a 2869 r = -ENOMEM;
44fa816b 2870 atomic_set(&cache->nr_dirty, 0);
c6b4fcba
JT
2871 cache->dirty_bitset = alloc_bitset(from_cblock(cache->cache_size));
2872 if (!cache->dirty_bitset) {
2873 *error = "could not allocate dirty bitset";
2874 goto bad;
2875 }
2876 clear_bitset(cache->dirty_bitset, from_cblock(cache->cache_size));
2877
08b18451
JT
2878 cache->discard_block_size =
2879 calculate_discard_block_size(cache->sectors_per_block,
2880 cache->origin_sectors);
2572629a
JT
2881 cache->discard_nr_blocks = to_dblock(dm_sector_div_up(cache->origin_sectors,
2882 cache->discard_block_size));
1bad9bc4 2883 cache->discard_bitset = alloc_bitset(from_dblock(cache->discard_nr_blocks));
c6b4fcba
JT
2884 if (!cache->discard_bitset) {
2885 *error = "could not allocate discard bitset";
2886 goto bad;
2887 }
1bad9bc4 2888 clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));
c6b4fcba
JT
2889
2890 cache->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
2891 if (IS_ERR(cache->copier)) {
2892 *error = "could not create kcopyd client";
2893 r = PTR_ERR(cache->copier);
2894 goto bad;
2895 }
2896
2897 cache->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
2898 if (!cache->wq) {
2899 *error = "could not create workqueue for metadata object";
2900 goto bad;
2901 }
2902 INIT_WORK(&cache->worker, do_worker);
2903 INIT_DELAYED_WORK(&cache->waker, do_waker);
2904 cache->last_commit_jiffies = jiffies;
2905
a195db2d 2906 cache->prison = dm_bio_prison_create();
c6b4fcba
JT
2907 if (!cache->prison) {
2908 *error = "could not create bio prison";
2909 goto bad;
2910 }
2911
2912 cache->all_io_ds = dm_deferred_set_create();
2913 if (!cache->all_io_ds) {
2914 *error = "could not create all_io deferred set";
2915 goto bad;
2916 }
2917
2918 cache->migration_pool = mempool_create_slab_pool(MIGRATION_POOL_SIZE,
2919 migration_cache);
2920 if (!cache->migration_pool) {
2921 *error = "Error creating cache's migration mempool";
2922 goto bad;
2923 }
2924
c6b4fcba
JT
2925 cache->need_tick_bio = true;
2926 cache->sized = false;
65790ff9 2927 cache->invalidate = false;
c6b4fcba
JT
2928 cache->commit_requested = false;
2929 cache->loaded_mappings = false;
2930 cache->loaded_discards = false;
2931
2932 load_stats(cache);
2933
2934 atomic_set(&cache->stats.demotion, 0);
2935 atomic_set(&cache->stats.promotion, 0);
2936 atomic_set(&cache->stats.copies_avoided, 0);
2937 atomic_set(&cache->stats.cache_cell_clash, 0);
2938 atomic_set(&cache->stats.commit_count, 0);
2939 atomic_set(&cache->stats.discard_count, 0);
2940
65790ff9
JT
2941 spin_lock_init(&cache->invalidation_lock);
2942 INIT_LIST_HEAD(&cache->invalidation_requests);
2943
066dbaa3
JT
2944 iot_init(&cache->origin_tracker);
2945
c6b4fcba
JT
2946 *result = cache;
2947 return 0;
2948
2949bad:
2950 destroy(cache);
2951 return r;
2952}
2953
2954static int copy_ctr_args(struct cache *cache, int argc, const char **argv)
2955{
2956 unsigned i;
2957 const char **copy;
2958
2959 copy = kcalloc(argc, sizeof(*copy), GFP_KERNEL);
2960 if (!copy)
2961 return -ENOMEM;
2962 for (i = 0; i < argc; i++) {
2963 copy[i] = kstrdup(argv[i], GFP_KERNEL);
2964 if (!copy[i]) {
2965 while (i--)
2966 kfree(copy[i]);
2967 kfree(copy);
2968 return -ENOMEM;
2969 }
2970 }
2971
2972 cache->nr_ctr_args = argc;
2973 cache->ctr_args = copy;
2974
2975 return 0;
2976}
2977
2978static int cache_ctr(struct dm_target *ti, unsigned argc, char **argv)
2979{
2980 int r = -EINVAL;
2981 struct cache_args *ca;
2982 struct cache *cache = NULL;
2983
2984 ca = kzalloc(sizeof(*ca), GFP_KERNEL);
2985 if (!ca) {
2986 ti->error = "Error allocating memory for cache";
2987 return -ENOMEM;
2988 }
2989 ca->ti = ti;
2990
2991 r = parse_cache_args(ca, argc, argv, &ti->error);
2992 if (r)
2993 goto out;
2994
2995 r = cache_create(ca, &cache);
617a0b89
HM
2996 if (r)
2997 goto out;
c6b4fcba
JT
2998
2999 r = copy_ctr_args(cache, argc - 3, (const char **)argv + 3);
3000 if (r) {
3001 destroy(cache);
3002 goto out;
3003 }
3004
3005 ti->private = cache;
3006
3007out:
3008 destroy_cache_args(ca);
3009 return r;
3010}
3011
651f5fa2
JT
3012/*----------------------------------------------------------------*/
3013
3014static int cache_map(struct dm_target *ti, struct bio *bio)
c6b4fcba 3015{
651f5fa2
JT
3016 struct cache *cache = ti->private;
3017
c6b4fcba 3018 int r;
651f5fa2 3019 struct dm_bio_prison_cell *cell = NULL;
c6b4fcba 3020 dm_oblock_t block = get_bio_block(cache, bio);
19b0092e 3021 size_t pb_data_size = get_per_bio_data_size(cache);
c6b4fcba 3022 bool can_migrate = false;
40775257 3023 bool fast_promotion;
c6b4fcba 3024 struct policy_result lookup_result;
e893fba9 3025 struct per_bio_data *pb = init_per_bio_data(bio, pb_data_size);
fb4100ae
JT
3026 struct old_oblock_lock ool;
3027
3028 ool.locker.fn = null_locker;
c6b4fcba 3029
e893fba9 3030 if (unlikely(from_oblock(block) >= from_oblock(cache->origin_blocks))) {
c6b4fcba
JT
3031 /*
3032 * This can only occur if the io goes to a partial block at
3033 * the end of the origin device. We don't cache these.
3034 * Just remap to the origin and carry on.
3035 */
e893fba9 3036 remap_to_origin(cache, bio);
651f5fa2 3037 accounted_begin(cache, bio);
c6b4fcba
JT
3038 return DM_MAPIO_REMAPPED;
3039 }
3040
651f5fa2 3041 if (discard_or_flush(bio)) {
c6b4fcba
JT
3042 defer_bio(cache, bio);
3043 return DM_MAPIO_SUBMITTED;
3044 }
3045
3046 /*
3047 * Check to see if that block is currently migrating.
3048 */
651f5fa2
JT
3049 cell = alloc_prison_cell(cache);
3050 if (!cell) {
c6b4fcba
JT
3051 defer_bio(cache, bio);
3052 return DM_MAPIO_SUBMITTED;
3053 }
3054
651f5fa2 3055 r = bio_detain(cache, block, bio, cell,
c6b4fcba 3056 (cell_free_fn) free_prison_cell,
651f5fa2 3057 cache, &cell);
c6b4fcba
JT
3058 if (r) {
3059 if (r < 0)
3060 defer_bio(cache, bio);
3061
3062 return DM_MAPIO_SUBMITTED;
3063 }
3064
40775257 3065 fast_promotion = is_discarded_oblock(cache, block) || bio_writes_complete_block(cache, bio);
c6b4fcba 3066
40775257 3067 r = policy_map(cache->policy, block, false, can_migrate, fast_promotion,
fb4100ae 3068 bio, &ool.locker, &lookup_result);
c6b4fcba 3069 if (r == -EWOULDBLOCK) {
651f5fa2 3070 cell_defer(cache, cell, true);
c6b4fcba
JT
3071 return DM_MAPIO_SUBMITTED;
3072
3073 } else if (r) {
b61d9509
MS
3074 DMERR_LIMIT("%s: Unexpected return from cache replacement policy: %d",
3075 cache_device_name(cache), r);
651f5fa2 3076 cell_defer(cache, cell, false);
c6b4fcba
JT
3077 bio_io_error(bio);
3078 return DM_MAPIO_SUBMITTED;
3079 }
3080
2ee57d58 3081 r = DM_MAPIO_REMAPPED;
c6b4fcba
JT
3082 switch (lookup_result.op) {
3083 case POLICY_HIT:
2ee57d58
JT
3084 if (passthrough_mode(&cache->features)) {
3085 if (bio_data_dir(bio) == WRITE) {
3086 /*
3087 * We need to invalidate this block, so
3088 * defer for the worker thread.
3089 */
651f5fa2 3090 cell_defer(cache, cell, true);
2ee57d58
JT
3091 r = DM_MAPIO_SUBMITTED;
3092
3093 } else {
2ee57d58
JT
3094 inc_miss_counter(cache, bio);
3095 remap_to_origin_clear_discard(cache, bio, block);
651f5fa2
JT
3096 accounted_begin(cache, bio);
3097 inc_ds(cache, bio, cell);
3098 // FIXME: we want to remap hits or misses straight
3099 // away rather than passing over to the worker.
3100 cell_defer(cache, cell, false);
2ee57d58 3101 }
c6b4fcba 3102
2ee57d58
JT
3103 } else {
3104 inc_hit_counter(cache, bio);
2ee57d58 3105 if (bio_data_dir(bio) == WRITE && writethrough_mode(&cache->features) &&
651f5fa2 3106 !is_dirty(cache, lookup_result.cblock)) {
2ee57d58 3107 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
651f5fa2
JT
3108 accounted_begin(cache, bio);
3109 inc_ds(cache, bio, cell);
3110 cell_defer(cache, cell, false);
3111
3112 } else
3113 remap_cell_to_cache_dirty(cache, cell, block, lookup_result.cblock, false);
2ee57d58 3114 }
c6b4fcba
JT
3115 break;
3116
3117 case POLICY_MISS:
3118 inc_miss_counter(cache, bio);
c6b4fcba
JT
3119 if (pb->req_nr != 0) {
3120 /*
3121 * This is a duplicate writethrough io that is no
3122 * longer needed because the block has been demoted.
3123 */
4246a0b6 3124 bio_endio(bio);
651f5fa2
JT
3125 // FIXME: remap everything as a miss
3126 cell_defer(cache, cell, false);
8c081b52
JT
3127 r = DM_MAPIO_SUBMITTED;
3128
3129 } else
651f5fa2 3130 remap_cell_to_origin_clear_discard(cache, cell, block, false);
c6b4fcba
JT
3131 break;
3132
3133 default:
b61d9509
MS
3134 DMERR_LIMIT("%s: %s: erroring bio: unknown policy op: %u",
3135 cache_device_name(cache), __func__,
c6b4fcba 3136 (unsigned) lookup_result.op);
651f5fa2 3137 cell_defer(cache, cell, false);
c6b4fcba 3138 bio_io_error(bio);
2ee57d58 3139 r = DM_MAPIO_SUBMITTED;
c6b4fcba
JT
3140 }
3141
2ee57d58 3142 return r;
c6b4fcba
JT
3143}
3144
3145static int cache_end_io(struct dm_target *ti, struct bio *bio, int error)
3146{
3147 struct cache *cache = ti->private;
3148 unsigned long flags;
19b0092e
MS
3149 size_t pb_data_size = get_per_bio_data_size(cache);
3150 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
c6b4fcba
JT
3151
3152 if (pb->tick) {
fba10109 3153 policy_tick(cache->policy, false);
c6b4fcba
JT
3154
3155 spin_lock_irqsave(&cache->lock, flags);
3156 cache->need_tick_bio = true;
3157 spin_unlock_irqrestore(&cache->lock, flags);
3158 }
3159
3160 check_for_quiesced_migrations(cache, pb);
066dbaa3 3161 accounted_complete(cache, bio);
c6b4fcba
JT
3162
3163 return 0;
3164}
3165
3166static int write_dirty_bitset(struct cache *cache)
3167{
3168 unsigned i, r;
3169
028ae9f7
JT
3170 if (get_cache_mode(cache) >= CM_READ_ONLY)
3171 return -EINVAL;
3172
c6b4fcba
JT
3173 for (i = 0; i < from_cblock(cache->cache_size); i++) {
3174 r = dm_cache_set_dirty(cache->cmd, to_cblock(i),
3175 is_dirty(cache, to_cblock(i)));
028ae9f7
JT
3176 if (r) {
3177 metadata_operation_failed(cache, "dm_cache_set_dirty", r);
c6b4fcba 3178 return r;
028ae9f7 3179 }
c6b4fcba
JT
3180 }
3181
3182 return 0;
3183}
3184
3185static int write_discard_bitset(struct cache *cache)
3186{
3187 unsigned i, r;
3188
028ae9f7
JT
3189 if (get_cache_mode(cache) >= CM_READ_ONLY)
3190 return -EINVAL;
3191
1bad9bc4
JT
3192 r = dm_cache_discard_bitset_resize(cache->cmd, cache->discard_block_size,
3193 cache->discard_nr_blocks);
c6b4fcba 3194 if (r) {
b61d9509 3195 DMERR("%s: could not resize on-disk discard bitset", cache_device_name(cache));
028ae9f7 3196 metadata_operation_failed(cache, "dm_cache_discard_bitset_resize", r);
c6b4fcba
JT
3197 return r;
3198 }
3199
1bad9bc4
JT
3200 for (i = 0; i < from_dblock(cache->discard_nr_blocks); i++) {
3201 r = dm_cache_set_discard(cache->cmd, to_dblock(i),
3202 is_discarded(cache, to_dblock(i)));
028ae9f7
JT
3203 if (r) {
3204 metadata_operation_failed(cache, "dm_cache_set_discard", r);
c6b4fcba 3205 return r;
028ae9f7
JT
3206 }
3207 }
3208
3209 return 0;
3210}
3211
3212static int write_hints(struct cache *cache)
3213{
3214 int r;
3215
3216 if (get_cache_mode(cache) >= CM_READ_ONLY)
3217 return -EINVAL;
3218
3219 r = dm_cache_write_hints(cache->cmd, cache->policy);
3220 if (r) {
3221 metadata_operation_failed(cache, "dm_cache_write_hints", r);
3222 return r;
c6b4fcba
JT
3223 }
3224
3225 return 0;
3226}
3227
c6b4fcba
JT
3228/*
3229 * returns true on success
3230 */
3231static bool sync_metadata(struct cache *cache)
3232{
3233 int r1, r2, r3, r4;
3234
3235 r1 = write_dirty_bitset(cache);
3236 if (r1)
b61d9509 3237 DMERR("%s: could not write dirty bitset", cache_device_name(cache));
c6b4fcba
JT
3238
3239 r2 = write_discard_bitset(cache);
3240 if (r2)
b61d9509 3241 DMERR("%s: could not write discard bitset", cache_device_name(cache));
c6b4fcba
JT
3242
3243 save_stats(cache);
3244
028ae9f7 3245 r3 = write_hints(cache);
c6b4fcba 3246 if (r3)
b61d9509 3247 DMERR("%s: could not write hints", cache_device_name(cache));
c6b4fcba
JT
3248
3249 /*
3250 * If writing the above metadata failed, we still commit, but don't
3251 * set the clean shutdown flag. This will effectively force every
3252 * dirty bit to be set on reload.
3253 */
028ae9f7 3254 r4 = commit(cache, !r1 && !r2 && !r3);
c6b4fcba 3255 if (r4)
b61d9509 3256 DMERR("%s: could not write cache metadata", cache_device_name(cache));
c6b4fcba
JT
3257
3258 return !r1 && !r2 && !r3 && !r4;
3259}
3260
3261static void cache_postsuspend(struct dm_target *ti)
3262{
3263 struct cache *cache = ti->private;
3264
3265 start_quiescing(cache);
3266 wait_for_migrations(cache);
3267 stop_worker(cache);
651f5fa2
JT
3268 requeue_deferred_bios(cache);
3269 requeue_deferred_cells(cache);
c6b4fcba
JT
3270 stop_quiescing(cache);
3271
028ae9f7
JT
3272 if (get_cache_mode(cache) == CM_WRITE)
3273 (void) sync_metadata(cache);
c6b4fcba
JT
3274}
3275
3276static int load_mapping(void *context, dm_oblock_t oblock, dm_cblock_t cblock,
3277 bool dirty, uint32_t hint, bool hint_valid)
3278{
3279 int r;
3280 struct cache *cache = context;
3281
3282 r = policy_load_mapping(cache->policy, oblock, cblock, hint, hint_valid);
3283 if (r)
3284 return r;
3285
3286 if (dirty)
3287 set_dirty(cache, oblock, cblock);
3288 else
3289 clear_dirty(cache, oblock, cblock);
3290
3291 return 0;
3292}
3293
3e2e1c30
JT
3294/*
3295 * The discard block size in the on disk metadata is not
3296 * neccessarily the same as we're currently using. So we have to
3297 * be careful to only set the discarded attribute if we know it
3298 * covers a complete block of the new size.
3299 */
3300struct discard_load_info {
3301 struct cache *cache;
3302
3303 /*
3304 * These blocks are sized using the on disk dblock size, rather
3305 * than the current one.
3306 */
3307 dm_block_t block_size;
3308 dm_block_t discard_begin, discard_end;
3309};
3310
3311static void discard_load_info_init(struct cache *cache,
3312 struct discard_load_info *li)
3313{
3314 li->cache = cache;
3315 li->discard_begin = li->discard_end = 0;
3316}
3317
3318static void set_discard_range(struct discard_load_info *li)
3319{
3320 sector_t b, e;
3321
3322 if (li->discard_begin == li->discard_end)
3323 return;
3324
3325 /*
3326 * Convert to sectors.
3327 */
3328 b = li->discard_begin * li->block_size;
3329 e = li->discard_end * li->block_size;
3330
3331 /*
3332 * Then convert back to the current dblock size.
3333 */
3334 b = dm_sector_div_up(b, li->cache->discard_block_size);
3335 sector_div(e, li->cache->discard_block_size);
3336
3337 /*
3338 * The origin may have shrunk, so we need to check we're still in
3339 * bounds.
3340 */
3341 if (e > from_dblock(li->cache->discard_nr_blocks))
3342 e = from_dblock(li->cache->discard_nr_blocks);
3343
3344 for (; b < e; b++)
3345 set_discard(li->cache, to_dblock(b));
3346}
3347
c6b4fcba 3348static int load_discard(void *context, sector_t discard_block_size,
1bad9bc4 3349 dm_dblock_t dblock, bool discard)
c6b4fcba 3350{
3e2e1c30 3351 struct discard_load_info *li = context;
c6b4fcba 3352
3e2e1c30 3353 li->block_size = discard_block_size;
1bad9bc4 3354
3e2e1c30
JT
3355 if (discard) {
3356 if (from_dblock(dblock) == li->discard_end)
3357 /*
3358 * We're already in a discard range, just extend it.
3359 */
3360 li->discard_end = li->discard_end + 1ULL;
3361
3362 else {
3363 /*
3364 * Emit the old range and start a new one.
3365 */
3366 set_discard_range(li);
3367 li->discard_begin = from_dblock(dblock);
3368 li->discard_end = li->discard_begin + 1ULL;
3369 }
3370 } else {
3371 set_discard_range(li);
3372 li->discard_begin = li->discard_end = 0;
3373 }
c6b4fcba
JT
3374
3375 return 0;
3376}
3377
f494a9c6
JT
3378static dm_cblock_t get_cache_dev_size(struct cache *cache)
3379{
3380 sector_t size = get_dev_size(cache->cache_dev);
3381 (void) sector_div(size, cache->sectors_per_block);
3382 return to_cblock(size);
3383}
3384
3385static bool can_resize(struct cache *cache, dm_cblock_t new_size)
3386{
3387 if (from_cblock(new_size) > from_cblock(cache->cache_size))
3388 return true;
3389
3390 /*
3391 * We can't drop a dirty block when shrinking the cache.
3392 */
3393 while (from_cblock(new_size) < from_cblock(cache->cache_size)) {
3394 new_size = to_cblock(from_cblock(new_size) + 1);
3395 if (is_dirty(cache, new_size)) {
b61d9509
MS
3396 DMERR("%s: unable to shrink cache; cache block %llu is dirty",
3397 cache_device_name(cache),
f494a9c6
JT
3398 (unsigned long long) from_cblock(new_size));
3399 return false;
3400 }
3401 }
3402
3403 return true;
3404}
3405
3406static int resize_cache_dev(struct cache *cache, dm_cblock_t new_size)
3407{
3408 int r;
3409
08844800 3410 r = dm_cache_resize(cache->cmd, new_size);
f494a9c6 3411 if (r) {
b61d9509 3412 DMERR("%s: could not resize cache metadata", cache_device_name(cache));
028ae9f7 3413 metadata_operation_failed(cache, "dm_cache_resize", r);
f494a9c6
JT
3414 return r;
3415 }
3416
d1d9220c 3417 set_cache_size(cache, new_size);
f494a9c6
JT
3418
3419 return 0;
3420}
3421
c6b4fcba
JT
3422static int cache_preresume(struct dm_target *ti)
3423{
3424 int r = 0;
3425 struct cache *cache = ti->private;
f494a9c6 3426 dm_cblock_t csize = get_cache_dev_size(cache);
c6b4fcba
JT
3427
3428 /*
3429 * Check to see if the cache has resized.
3430 */
f494a9c6
JT
3431 if (!cache->sized) {
3432 r = resize_cache_dev(cache, csize);
3433 if (r)
c6b4fcba 3434 return r;
c6b4fcba
JT
3435
3436 cache->sized = true;
f494a9c6
JT
3437
3438 } else if (csize != cache->cache_size) {
3439 if (!can_resize(cache, csize))
3440 return -EINVAL;
3441
3442 r = resize_cache_dev(cache, csize);
3443 if (r)
3444 return r;
c6b4fcba
JT
3445 }
3446
3447 if (!cache->loaded_mappings) {
ea2dd8c1 3448 r = dm_cache_load_mappings(cache->cmd, cache->policy,
c6b4fcba
JT
3449 load_mapping, cache);
3450 if (r) {
b61d9509 3451 DMERR("%s: could not load cache mappings", cache_device_name(cache));
028ae9f7 3452 metadata_operation_failed(cache, "dm_cache_load_mappings", r);
c6b4fcba
JT
3453 return r;
3454 }
3455
3456 cache->loaded_mappings = true;
3457 }
3458
3459 if (!cache->loaded_discards) {
3e2e1c30
JT
3460 struct discard_load_info li;
3461
3462 /*
3463 * The discard bitset could have been resized, or the
3464 * discard block size changed. To be safe we start by
3465 * setting every dblock to not discarded.
3466 */
3467 clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));
3468
3469 discard_load_info_init(cache, &li);
3470 r = dm_cache_load_discards(cache->cmd, load_discard, &li);
c6b4fcba 3471 if (r) {
b61d9509 3472 DMERR("%s: could not load origin discards", cache_device_name(cache));
028ae9f7 3473 metadata_operation_failed(cache, "dm_cache_load_discards", r);
c6b4fcba
JT
3474 return r;
3475 }
3e2e1c30 3476 set_discard_range(&li);
c6b4fcba
JT
3477
3478 cache->loaded_discards = true;
3479 }
3480
3481 return r;
3482}
3483
3484static void cache_resume(struct dm_target *ti)
3485{
3486 struct cache *cache = ti->private;
3487
3488 cache->need_tick_bio = true;
3489 do_waker(&cache->waker.work);
3490}
3491
3492/*
3493 * Status format:
3494 *
6a388618
MS
3495 * <metadata block size> <#used metadata blocks>/<#total metadata blocks>
3496 * <cache block size> <#used cache blocks>/<#total cache blocks>
c6b4fcba 3497 * <#read hits> <#read misses> <#write hits> <#write misses>
6a388618 3498 * <#demotions> <#promotions> <#dirty>
c6b4fcba
JT
3499 * <#features> <features>*
3500 * <#core args> <core args>
255eac20 3501 * <policy name> <#policy args> <policy args>* <cache metadata mode> <needs_check>
c6b4fcba
JT
3502 */
3503static void cache_status(struct dm_target *ti, status_type_t type,
3504 unsigned status_flags, char *result, unsigned maxlen)
3505{
3506 int r = 0;
3507 unsigned i;
3508 ssize_t sz = 0;
3509 dm_block_t nr_free_blocks_metadata = 0;
3510 dm_block_t nr_blocks_metadata = 0;
3511 char buf[BDEVNAME_SIZE];
3512 struct cache *cache = ti->private;
3513 dm_cblock_t residency;
d14fcf3d 3514 bool needs_check;
c6b4fcba
JT
3515
3516 switch (type) {
3517 case STATUSTYPE_INFO:
028ae9f7
JT
3518 if (get_cache_mode(cache) == CM_FAIL) {
3519 DMEMIT("Fail");
3520 break;
c6b4fcba
JT
3521 }
3522
028ae9f7
JT
3523 /* Commit to ensure statistics aren't out-of-date */
3524 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
3525 (void) commit(cache, false);
3526
b61d9509 3527 r = dm_cache_get_free_metadata_block_count(cache->cmd, &nr_free_blocks_metadata);
c6b4fcba 3528 if (r) {
b61d9509
MS
3529 DMERR("%s: dm_cache_get_free_metadata_block_count returned %d",
3530 cache_device_name(cache), r);
c6b4fcba
JT
3531 goto err;
3532 }
3533
3534 r = dm_cache_get_metadata_dev_size(cache->cmd, &nr_blocks_metadata);
3535 if (r) {
b61d9509
MS
3536 DMERR("%s: dm_cache_get_metadata_dev_size returned %d",
3537 cache_device_name(cache), r);
c6b4fcba
JT
3538 goto err;
3539 }
3540
3541 residency = policy_residency(cache->policy);
3542
44fa816b 3543 DMEMIT("%u %llu/%llu %u %llu/%llu %u %u %u %u %u %u %lu ",
895b47d7 3544 (unsigned)DM_CACHE_METADATA_BLOCK_SIZE,
c6b4fcba
JT
3545 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
3546 (unsigned long long)nr_blocks_metadata,
6a388618
MS
3547 cache->sectors_per_block,
3548 (unsigned long long) from_cblock(residency),
3549 (unsigned long long) from_cblock(cache->cache_size),
c6b4fcba
JT
3550 (unsigned) atomic_read(&cache->stats.read_hit),
3551 (unsigned) atomic_read(&cache->stats.read_miss),
3552 (unsigned) atomic_read(&cache->stats.write_hit),
3553 (unsigned) atomic_read(&cache->stats.write_miss),
3554 (unsigned) atomic_read(&cache->stats.demotion),
3555 (unsigned) atomic_read(&cache->stats.promotion),
44fa816b 3556 (unsigned long) atomic_read(&cache->nr_dirty));
c6b4fcba 3557
2ee57d58 3558 if (writethrough_mode(&cache->features))
c6b4fcba 3559 DMEMIT("1 writethrough ");
2ee57d58
JT
3560
3561 else if (passthrough_mode(&cache->features))
3562 DMEMIT("1 passthrough ");
3563
3564 else if (writeback_mode(&cache->features))
3565 DMEMIT("1 writeback ");
3566
3567 else {
b61d9509
MS
3568 DMERR("%s: internal error: unknown io mode: %d",
3569 cache_device_name(cache), (int) cache->features.io_mode);
2ee57d58
JT
3570 goto err;
3571 }
c6b4fcba
JT
3572
3573 DMEMIT("2 migration_threshold %llu ", (unsigned long long) cache->migration_threshold);
2e68c4e6
MS
3574
3575 DMEMIT("%s ", dm_cache_policy_get_name(cache->policy));
c6b4fcba 3576 if (sz < maxlen) {
028ae9f7 3577 r = policy_emit_config_values(cache->policy, result, maxlen, &sz);
c6b4fcba 3578 if (r)
b61d9509
MS
3579 DMERR("%s: policy_emit_config_values returned %d",
3580 cache_device_name(cache), r);
c6b4fcba
JT
3581 }
3582
028ae9f7
JT
3583 if (get_cache_mode(cache) == CM_READ_ONLY)
3584 DMEMIT("ro ");
3585 else
3586 DMEMIT("rw ");
3587
d14fcf3d
JT
3588 r = dm_cache_metadata_needs_check(cache->cmd, &needs_check);
3589
3590 if (r || needs_check)
255eac20
MS
3591 DMEMIT("needs_check ");
3592 else
3593 DMEMIT("- ");
3594
c6b4fcba
JT
3595 break;
3596
3597 case STATUSTYPE_TABLE:
3598 format_dev_t(buf, cache->metadata_dev->bdev->bd_dev);
3599 DMEMIT("%s ", buf);
3600 format_dev_t(buf, cache->cache_dev->bdev->bd_dev);
3601 DMEMIT("%s ", buf);
3602 format_dev_t(buf, cache->origin_dev->bdev->bd_dev);
3603 DMEMIT("%s", buf);
3604
3605 for (i = 0; i < cache->nr_ctr_args - 1; i++)
3606 DMEMIT(" %s", cache->ctr_args[i]);
3607 if (cache->nr_ctr_args)
3608 DMEMIT(" %s", cache->ctr_args[cache->nr_ctr_args - 1]);
3609 }
3610
3611 return;
3612
3613err:
3614 DMEMIT("Error");
3615}
3616
c6b4fcba 3617/*
65790ff9
JT
3618 * A cache block range can take two forms:
3619 *
3620 * i) A single cblock, eg. '3456'
3621 * ii) A begin and end cblock with dots between, eg. 123-234
3622 */
3623static int parse_cblock_range(struct cache *cache, const char *str,
3624 struct cblock_range *result)
3625{
3626 char dummy;
3627 uint64_t b, e;
3628 int r;
3629
3630 /*
3631 * Try and parse form (ii) first.
3632 */
3633 r = sscanf(str, "%llu-%llu%c", &b, &e, &dummy);
3634 if (r < 0)
3635 return r;
3636
3637 if (r == 2) {
3638 result->begin = to_cblock(b);
3639 result->end = to_cblock(e);
3640 return 0;
3641 }
3642
3643 /*
3644 * That didn't work, try form (i).
3645 */
3646 r = sscanf(str, "%llu%c", &b, &dummy);
3647 if (r < 0)
3648 return r;
3649
3650 if (r == 1) {
3651 result->begin = to_cblock(b);
3652 result->end = to_cblock(from_cblock(result->begin) + 1u);
3653 return 0;
3654 }
3655
b61d9509 3656 DMERR("%s: invalid cblock range '%s'", cache_device_name(cache), str);
65790ff9
JT
3657 return -EINVAL;
3658}
3659
3660static int validate_cblock_range(struct cache *cache, struct cblock_range *range)
3661{
3662 uint64_t b = from_cblock(range->begin);
3663 uint64_t e = from_cblock(range->end);
3664 uint64_t n = from_cblock(cache->cache_size);
3665
3666 if (b >= n) {
b61d9509
MS
3667 DMERR("%s: begin cblock out of range: %llu >= %llu",
3668 cache_device_name(cache), b, n);
65790ff9
JT
3669 return -EINVAL;
3670 }
3671
3672 if (e > n) {
b61d9509
MS
3673 DMERR("%s: end cblock out of range: %llu > %llu",
3674 cache_device_name(cache), e, n);
65790ff9
JT
3675 return -EINVAL;
3676 }
3677
3678 if (b >= e) {
b61d9509
MS
3679 DMERR("%s: invalid cblock range: %llu >= %llu",
3680 cache_device_name(cache), b, e);
65790ff9
JT
3681 return -EINVAL;
3682 }
3683
3684 return 0;
3685}
3686
3687static int request_invalidation(struct cache *cache, struct cblock_range *range)
3688{
3689 struct invalidation_request req;
3690
3691 INIT_LIST_HEAD(&req.list);
3692 req.cblocks = range;
3693 atomic_set(&req.complete, 0);
3694 req.err = 0;
3695 init_waitqueue_head(&req.result_wait);
3696
3697 spin_lock(&cache->invalidation_lock);
3698 list_add(&req.list, &cache->invalidation_requests);
3699 spin_unlock(&cache->invalidation_lock);
3700 wake_worker(cache);
3701
3702 wait_event(req.result_wait, atomic_read(&req.complete));
3703 return req.err;
3704}
3705
3706static int process_invalidate_cblocks_message(struct cache *cache, unsigned count,
3707 const char **cblock_ranges)
3708{
3709 int r = 0;
3710 unsigned i;
3711 struct cblock_range range;
3712
3713 if (!passthrough_mode(&cache->features)) {
b61d9509
MS
3714 DMERR("%s: cache has to be in passthrough mode for invalidation",
3715 cache_device_name(cache));
65790ff9
JT
3716 return -EPERM;
3717 }
3718
3719 for (i = 0; i < count; i++) {
3720 r = parse_cblock_range(cache, cblock_ranges[i], &range);
3721 if (r)
3722 break;
3723
3724 r = validate_cblock_range(cache, &range);
3725 if (r)
3726 break;
3727
3728 /*
3729 * Pass begin and end origin blocks to the worker and wake it.
3730 */
3731 r = request_invalidation(cache, &range);
3732 if (r)
3733 break;
3734 }
3735
3736 return r;
3737}
3738
3739/*
3740 * Supports
3741 * "<key> <value>"
3742 * and
3743 * "invalidate_cblocks [(<begin>)|(<begin>-<end>)]*
c6b4fcba
JT
3744 *
3745 * The key migration_threshold is supported by the cache target core.
3746 */
3747static int cache_message(struct dm_target *ti, unsigned argc, char **argv)
3748{
c6b4fcba
JT
3749 struct cache *cache = ti->private;
3750
65790ff9
JT
3751 if (!argc)
3752 return -EINVAL;
3753
028ae9f7 3754 if (get_cache_mode(cache) >= CM_READ_ONLY) {
b61d9509
MS
3755 DMERR("%s: unable to service cache target messages in READ_ONLY or FAIL mode",
3756 cache_device_name(cache));
028ae9f7
JT
3757 return -EOPNOTSUPP;
3758 }
3759
7b6b2bc9 3760 if (!strcasecmp(argv[0], "invalidate_cblocks"))
65790ff9
JT
3761 return process_invalidate_cblocks_message(cache, argc - 1, (const char **) argv + 1);
3762
c6b4fcba
JT
3763 if (argc != 2)
3764 return -EINVAL;
3765
2f14f4b5 3766 return set_config_value(cache, argv[0], argv[1]);
c6b4fcba
JT
3767}
3768
3769static int cache_iterate_devices(struct dm_target *ti,
3770 iterate_devices_callout_fn fn, void *data)
3771{
3772 int r = 0;
3773 struct cache *cache = ti->private;
3774
3775 r = fn(ti, cache->cache_dev, 0, get_dev_size(cache->cache_dev), data);
3776 if (!r)
3777 r = fn(ti, cache->origin_dev, 0, ti->len, data);
3778
3779 return r;
3780}
3781
c6b4fcba
JT
3782static void set_discard_limits(struct cache *cache, struct queue_limits *limits)
3783{
3784 /*
3785 * FIXME: these limits may be incompatible with the cache device
3786 */
7ae34e77
JT
3787 limits->max_discard_sectors = min_t(sector_t, cache->discard_block_size * 1024,
3788 cache->origin_sectors);
1bad9bc4 3789 limits->discard_granularity = cache->discard_block_size << SECTOR_SHIFT;
c6b4fcba
JT
3790}
3791
3792static void cache_io_hints(struct dm_target *ti, struct queue_limits *limits)
3793{
3794 struct cache *cache = ti->private;
f6109372 3795 uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
c6b4fcba 3796
f6109372
MS
3797 /*
3798 * If the system-determined stacked limits are compatible with the
3799 * cache's blocksize (io_opt is a factor) do not override them.
3800 */
3801 if (io_opt_sectors < cache->sectors_per_block ||
3802 do_div(io_opt_sectors, cache->sectors_per_block)) {
b0246530 3803 blk_limits_io_min(limits, cache->sectors_per_block << SECTOR_SHIFT);
f6109372
MS
3804 blk_limits_io_opt(limits, cache->sectors_per_block << SECTOR_SHIFT);
3805 }
c6b4fcba
JT
3806 set_discard_limits(cache, limits);
3807}
3808
3809/*----------------------------------------------------------------*/
3810
3811static struct target_type cache_target = {
3812 .name = "cache",
843f0f2e 3813 .version = {1, 9, 0},
c6b4fcba
JT
3814 .module = THIS_MODULE,
3815 .ctr = cache_ctr,
3816 .dtr = cache_dtr,
3817 .map = cache_map,
3818 .end_io = cache_end_io,
3819 .postsuspend = cache_postsuspend,
3820 .preresume = cache_preresume,
3821 .resume = cache_resume,
3822 .status = cache_status,
3823 .message = cache_message,
3824 .iterate_devices = cache_iterate_devices,
c6b4fcba
JT
3825 .io_hints = cache_io_hints,
3826};
3827
3828static int __init dm_cache_init(void)
3829{
3830 int r;
3831
3832 r = dm_register_target(&cache_target);
3833 if (r) {
3834 DMERR("cache target registration failed: %d", r);
3835 return r;
3836 }
3837
3838 migration_cache = KMEM_CACHE(dm_cache_migration, 0);
3839 if (!migration_cache) {
3840 dm_unregister_target(&cache_target);
3841 return -ENOMEM;
3842 }
3843
3844 return 0;
3845}
3846
3847static void __exit dm_cache_exit(void)
3848{
3849 dm_unregister_target(&cache_target);
3850 kmem_cache_destroy(migration_cache);
3851}
3852
3853module_init(dm_cache_init);
3854module_exit(dm_cache_exit);
3855
3856MODULE_DESCRIPTION(DM_NAME " cache target");
3857MODULE_AUTHOR("Joe Thornber <ejt@redhat.com>");
3858MODULE_LICENSE("GPL");