blob: 6f7086355691febd147a8850cea8e5f3fb5ab36d [file] [log] [blame]
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001/*
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"
Darrick J. Wongb844fe62013-04-05 15:36:32 +01009#include "dm-bio-record.h"
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000010#include "dm-cache-metadata.h"
11
12#include <linux/dm-io.h>
13#include <linux/dm-kcopyd.h>
14#include <linux/init.h>
15#include <linux/mempool.h>
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/vmalloc.h>
19
20#define DM_MSG_PREFIX "cache"
21
22DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(cache_copy_throttle,
23 "A percentage of time allocated for copying to and/or from cache");
24
25/*----------------------------------------------------------------*/
26
27/*
28 * Glossary:
29 *
30 * oblock: index of an origin block
31 * cblock: index of a cache block
32 * promotion: movement of a block from origin to cache
33 * demotion: movement of a block from cache to origin
34 * migration: movement of a block between the origin and cache device,
35 * either direction
36 */
37
38/*----------------------------------------------------------------*/
39
40static size_t bitset_size_in_bytes(unsigned nr_entries)
41{
42 return sizeof(unsigned long) * dm_div_up(nr_entries, BITS_PER_LONG);
43}
44
45static unsigned long *alloc_bitset(unsigned nr_entries)
46{
47 size_t s = bitset_size_in_bytes(nr_entries);
48 return vzalloc(s);
49}
50
51static void clear_bitset(void *bitset, unsigned nr_entries)
52{
53 size_t s = bitset_size_in_bytes(nr_entries);
54 memset(bitset, 0, s);
55}
56
57static void free_bitset(unsigned long *bits)
58{
59 vfree(bits);
60}
61
62/*----------------------------------------------------------------*/
63
Joe Thornberc9d28d52013-10-31 13:55:48 -040064/*
65 * There are a couple of places where we let a bio run, but want to do some
66 * work before calling its endio function. We do this by temporarily
67 * changing the endio fn.
68 */
69struct dm_hook_info {
70 bio_end_io_t *bi_end_io;
71 void *bi_private;
72};
73
74static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio,
75 bio_end_io_t *bi_end_io, void *bi_private)
76{
77 h->bi_end_io = bio->bi_end_io;
78 h->bi_private = bio->bi_private;
79
80 bio->bi_end_io = bi_end_io;
81 bio->bi_private = bi_private;
82}
83
84static void dm_unhook_bio(struct dm_hook_info *h, struct bio *bio)
85{
86 bio->bi_end_io = h->bi_end_io;
87 bio->bi_private = h->bi_private;
Mike Snitzer8d307262013-12-03 19:16:04 -070088
89 /*
90 * Must bump bi_remaining to allow bio to complete with
91 * restored bi_end_io.
92 */
93 atomic_inc(&bio->bi_remaining);
Joe Thornberc9d28d52013-10-31 13:55:48 -040094}
95
96/*----------------------------------------------------------------*/
97
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000098#define PRISON_CELLS 1024
99#define MIGRATION_POOL_SIZE 128
100#define COMMIT_PERIOD HZ
101#define MIGRATION_COUNT_WINDOW 10
102
103/*
Mike Snitzer05473042013-08-16 10:54:19 -0400104 * The block size of the device holding cache data must be
105 * between 32KB and 1GB.
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000106 */
107#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (32 * 1024 >> SECTOR_SHIFT)
Mike Snitzer05473042013-08-16 10:54:19 -0400108#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000109
110/*
111 * FIXME: the cache is read/write for the time being.
112 */
Joe Thornber2ee57d52013-10-24 14:10:29 -0400113enum cache_metadata_mode {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000114 CM_WRITE, /* metadata may be changed */
115 CM_READ_ONLY, /* metadata may not be changed */
116};
117
Joe Thornber2ee57d52013-10-24 14:10:29 -0400118enum cache_io_mode {
119 /*
120 * Data is written to cached blocks only. These blocks are marked
121 * dirty. If you lose the cache device you will lose data.
122 * Potential performance increase for both reads and writes.
123 */
124 CM_IO_WRITEBACK,
125
126 /*
127 * Data is written to both cache and origin. Blocks are never
128 * dirty. Potential performance benfit for reads only.
129 */
130 CM_IO_WRITETHROUGH,
131
132 /*
133 * A degraded mode useful for various cache coherency situations
134 * (eg, rolling back snapshots). Reads and writes always go to the
135 * origin. If a write goes to a cached oblock, then the cache
136 * block is invalidated.
137 */
138 CM_IO_PASSTHROUGH
139};
140
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000141struct cache_features {
Joe Thornber2ee57d52013-10-24 14:10:29 -0400142 enum cache_metadata_mode mode;
143 enum cache_io_mode io_mode;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000144};
145
146struct cache_stats {
147 atomic_t read_hit;
148 atomic_t read_miss;
149 atomic_t write_hit;
150 atomic_t write_miss;
151 atomic_t demotion;
152 atomic_t promotion;
153 atomic_t copies_avoided;
154 atomic_t cache_cell_clash;
155 atomic_t commit_count;
156 atomic_t discard_count;
157};
158
Joe Thornber65790ff2013-11-08 16:39:50 +0000159/*
160 * Defines a range of cblocks, begin to (end - 1) are in the range. end is
161 * the one-past-the-end value.
162 */
163struct cblock_range {
164 dm_cblock_t begin;
165 dm_cblock_t end;
166};
167
168struct invalidation_request {
169 struct list_head list;
170 struct cblock_range *cblocks;
171
172 atomic_t complete;
173 int err;
174
175 wait_queue_head_t result_wait;
176};
177
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000178struct cache {
179 struct dm_target *ti;
180 struct dm_target_callbacks callbacks;
181
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400182 struct dm_cache_metadata *cmd;
183
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000184 /*
185 * Metadata is written to this device.
186 */
187 struct dm_dev *metadata_dev;
188
189 /*
190 * The slower of the two data devices. Typically a spindle.
191 */
192 struct dm_dev *origin_dev;
193
194 /*
195 * The faster of the two data devices. Typically an SSD.
196 */
197 struct dm_dev *cache_dev;
198
199 /*
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000200 * Size of the origin device in _complete_ blocks and native sectors.
201 */
202 dm_oblock_t origin_blocks;
203 sector_t origin_sectors;
204
205 /*
206 * Size of the cache device in blocks.
207 */
208 dm_cblock_t cache_size;
209
210 /*
211 * Fields for converting from sectors to blocks.
212 */
213 uint32_t sectors_per_block;
214 int sectors_per_block_shift;
215
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000216 spinlock_t lock;
217 struct bio_list deferred_bios;
218 struct bio_list deferred_flush_bios;
Joe Thornbere2e74d62013-03-20 17:21:27 +0000219 struct bio_list deferred_writethrough_bios;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000220 struct list_head quiesced_migrations;
221 struct list_head completed_migrations;
222 struct list_head need_commit_migrations;
223 sector_t migration_threshold;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000224 wait_queue_head_t migration_wait;
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400225 atomic_t nr_migrations;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000226
Joe Thornber66cb1912013-10-30 17:11:58 +0000227 wait_queue_head_t quiescing_wait;
Joe Thornber238f8362013-10-30 17:29:30 +0000228 atomic_t quiescing;
Joe Thornber66cb1912013-10-30 17:11:58 +0000229 atomic_t quiescing_ack;
230
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000231 /*
232 * cache_size entries, dirty if set
233 */
Anssi Hannula44fa8162014-08-01 11:55:47 -0400234 atomic_t nr_dirty;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000235 unsigned long *dirty_bitset;
236
237 /*
238 * origin_blocks entries, discarded if set.
239 */
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400240 dm_oblock_t discard_nr_blocks;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000241 unsigned long *discard_bitset;
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400242
243 /*
244 * Rather than reconstructing the table line for the status we just
245 * save it and regurgitate.
246 */
247 unsigned nr_ctr_args;
248 const char **ctr_args;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000249
250 struct dm_kcopyd_client *copier;
251 struct workqueue_struct *wq;
252 struct work_struct worker;
253
254 struct delayed_work waker;
255 unsigned long last_commit_jiffies;
256
257 struct dm_bio_prison *prison;
258 struct dm_deferred_set *all_io_ds;
259
260 mempool_t *migration_pool;
261 struct dm_cache_migration *next_migration;
262
263 struct dm_cache_policy *policy;
264 unsigned policy_nr_args;
265
266 bool need_tick_bio:1;
267 bool sized:1;
Joe Thornber65790ff2013-11-08 16:39:50 +0000268 bool invalidate:1;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000269 bool commit_requested:1;
270 bool loaded_mappings:1;
271 bool loaded_discards:1;
272
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000273 /*
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400274 * Cache features such as write-through.
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000275 */
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400276 struct cache_features features;
277
278 struct cache_stats stats;
Joe Thornber65790ff2013-11-08 16:39:50 +0000279
280 /*
281 * Invalidation fields.
282 */
283 spinlock_t invalidation_lock;
284 struct list_head invalidation_requests;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000285};
286
287struct per_bio_data {
288 bool tick:1;
289 unsigned req_nr:2;
290 struct dm_deferred_entry *all_io_entry;
Mike Snitzerc6eda5e2014-01-31 14:11:54 -0500291 struct dm_hook_info hook_info;
Joe Thornbere2e74d62013-03-20 17:21:27 +0000292
Mike Snitzer19b00922013-04-05 15:36:34 +0100293 /*
294 * writethrough fields. These MUST remain at the end of this
295 * structure and the 'cache' member must be the first as it
Joe Thornberaeed1422013-05-10 14:37:18 +0100296 * is used to determine the offset of the writethrough fields.
Mike Snitzer19b00922013-04-05 15:36:34 +0100297 */
Joe Thornbere2e74d62013-03-20 17:21:27 +0000298 struct cache *cache;
299 dm_cblock_t cblock;
Darrick J. Wongb844fe62013-04-05 15:36:32 +0100300 struct dm_bio_details bio_details;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000301};
302
303struct dm_cache_migration {
304 struct list_head list;
305 struct cache *cache;
306
307 unsigned long start_jiffies;
308 dm_oblock_t old_oblock;
309 dm_oblock_t new_oblock;
310 dm_cblock_t cblock;
311
312 bool err:1;
313 bool writeback:1;
314 bool demote:1;
315 bool promote:1;
Joe Thornberc9d28d52013-10-31 13:55:48 -0400316 bool requeue_holder:1;
Joe Thornber65790ff2013-11-08 16:39:50 +0000317 bool invalidate:1;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000318
319 struct dm_bio_prison_cell *old_ocell;
320 struct dm_bio_prison_cell *new_ocell;
321};
322
323/*
324 * Processing a bio in the worker thread may require these memory
325 * allocations. We prealloc to avoid deadlocks (the same worker thread
326 * frees them back to the mempool).
327 */
328struct prealloc {
329 struct dm_cache_migration *mg;
330 struct dm_bio_prison_cell *cell1;
331 struct dm_bio_prison_cell *cell2;
332};
333
334static void wake_worker(struct cache *cache)
335{
336 queue_work(cache->wq, &cache->worker);
337}
338
339/*----------------------------------------------------------------*/
340
341static struct dm_bio_prison_cell *alloc_prison_cell(struct cache *cache)
342{
343 /* FIXME: change to use a local slab. */
344 return dm_bio_prison_alloc_cell(cache->prison, GFP_NOWAIT);
345}
346
347static void free_prison_cell(struct cache *cache, struct dm_bio_prison_cell *cell)
348{
349 dm_bio_prison_free_cell(cache->prison, cell);
350}
351
352static int prealloc_data_structs(struct cache *cache, struct prealloc *p)
353{
354 if (!p->mg) {
355 p->mg = mempool_alloc(cache->migration_pool, GFP_NOWAIT);
356 if (!p->mg)
357 return -ENOMEM;
358 }
359
360 if (!p->cell1) {
361 p->cell1 = alloc_prison_cell(cache);
362 if (!p->cell1)
363 return -ENOMEM;
364 }
365
366 if (!p->cell2) {
367 p->cell2 = alloc_prison_cell(cache);
368 if (!p->cell2)
369 return -ENOMEM;
370 }
371
372 return 0;
373}
374
375static void prealloc_free_structs(struct cache *cache, struct prealloc *p)
376{
377 if (p->cell2)
378 free_prison_cell(cache, p->cell2);
379
380 if (p->cell1)
381 free_prison_cell(cache, p->cell1);
382
383 if (p->mg)
384 mempool_free(p->mg, cache->migration_pool);
385}
386
387static struct dm_cache_migration *prealloc_get_migration(struct prealloc *p)
388{
389 struct dm_cache_migration *mg = p->mg;
390
391 BUG_ON(!mg);
392 p->mg = NULL;
393
394 return mg;
395}
396
397/*
398 * You must have a cell within the prealloc struct to return. If not this
399 * function will BUG() rather than returning NULL.
400 */
401static struct dm_bio_prison_cell *prealloc_get_cell(struct prealloc *p)
402{
403 struct dm_bio_prison_cell *r = NULL;
404
405 if (p->cell1) {
406 r = p->cell1;
407 p->cell1 = NULL;
408
409 } else if (p->cell2) {
410 r = p->cell2;
411 p->cell2 = NULL;
412 } else
413 BUG();
414
415 return r;
416}
417
418/*
419 * You can't have more than two cells in a prealloc struct. BUG() will be
420 * called if you try and overfill.
421 */
422static void prealloc_put_cell(struct prealloc *p, struct dm_bio_prison_cell *cell)
423{
424 if (!p->cell2)
425 p->cell2 = cell;
426
427 else if (!p->cell1)
428 p->cell1 = cell;
429
430 else
431 BUG();
432}
433
434/*----------------------------------------------------------------*/
435
436static void build_key(dm_oblock_t oblock, struct dm_cell_key *key)
437{
438 key->virtual = 0;
439 key->dev = 0;
440 key->block = from_oblock(oblock);
441}
442
443/*
444 * The caller hands in a preallocated cell, and a free function for it.
445 * The cell will be freed if there's an error, or if it wasn't used because
446 * a cell with that key already exists.
447 */
448typedef void (*cell_free_fn)(void *context, struct dm_bio_prison_cell *cell);
449
450static int bio_detain(struct cache *cache, dm_oblock_t oblock,
451 struct bio *bio, struct dm_bio_prison_cell *cell_prealloc,
452 cell_free_fn free_fn, void *free_context,
453 struct dm_bio_prison_cell **cell_result)
454{
455 int r;
456 struct dm_cell_key key;
457
458 build_key(oblock, &key);
459 r = dm_bio_detain(cache->prison, &key, bio, cell_prealloc, cell_result);
460 if (r)
461 free_fn(free_context, cell_prealloc);
462
463 return r;
464}
465
466static int get_cell(struct cache *cache,
467 dm_oblock_t oblock,
468 struct prealloc *structs,
469 struct dm_bio_prison_cell **cell_result)
470{
471 int r;
472 struct dm_cell_key key;
473 struct dm_bio_prison_cell *cell_prealloc;
474
475 cell_prealloc = prealloc_get_cell(structs);
476
477 build_key(oblock, &key);
478 r = dm_get_cell(cache->prison, &key, cell_prealloc, cell_result);
479 if (r)
480 prealloc_put_cell(structs, cell_prealloc);
481
482 return r;
483}
484
Joe Thornberaeed1422013-05-10 14:37:18 +0100485/*----------------------------------------------------------------*/
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000486
487static bool is_dirty(struct cache *cache, dm_cblock_t b)
488{
489 return test_bit(from_cblock(b), cache->dirty_bitset);
490}
491
492static void set_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
493{
494 if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset)) {
Anssi Hannula44fa8162014-08-01 11:55:47 -0400495 atomic_inc(&cache->nr_dirty);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000496 policy_set_dirty(cache->policy, oblock);
497 }
498}
499
500static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
501{
502 if (test_and_clear_bit(from_cblock(cblock), cache->dirty_bitset)) {
503 policy_clear_dirty(cache->policy, oblock);
Anssi Hannula44fa8162014-08-01 11:55:47 -0400504 if (atomic_dec_return(&cache->nr_dirty) == 0)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000505 dm_table_event(cache->ti->table);
506 }
507}
508
509/*----------------------------------------------------------------*/
Joe Thornberaeed1422013-05-10 14:37:18 +0100510
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000511static bool block_size_is_power_of_two(struct cache *cache)
512{
513 return cache->sectors_per_block_shift >= 0;
514}
515
Mikulas Patocka43aeaa22013-07-10 23:41:17 +0100516/* gcc on ARM generates spurious references to __udivdi3 and __umoddi3 */
517#if defined(CONFIG_ARM) && __GNUC__ == 4 && __GNUC_MINOR__ <= 6
518__always_inline
519#endif
Joe Thornber414dd672013-03-20 17:21:25 +0000520static dm_block_t block_div(dm_block_t b, uint32_t n)
521{
522 do_div(b, n);
523
524 return b;
525}
526
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400527static void set_discard(struct cache *cache, dm_oblock_t b)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000528{
529 unsigned long flags;
530
531 atomic_inc(&cache->stats.discard_count);
532
533 spin_lock_irqsave(&cache->lock, flags);
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400534 set_bit(from_oblock(b), cache->discard_bitset);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000535 spin_unlock_irqrestore(&cache->lock, flags);
536}
537
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400538static void clear_discard(struct cache *cache, dm_oblock_t b)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000539{
540 unsigned long flags;
541
542 spin_lock_irqsave(&cache->lock, flags);
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400543 clear_bit(from_oblock(b), cache->discard_bitset);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000544 spin_unlock_irqrestore(&cache->lock, flags);
545}
546
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400547static bool is_discarded(struct cache *cache, dm_oblock_t b)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000548{
549 int r;
550 unsigned long flags;
551
552 spin_lock_irqsave(&cache->lock, flags);
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400553 r = test_bit(from_oblock(b), cache->discard_bitset);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000554 spin_unlock_irqrestore(&cache->lock, flags);
555
556 return r;
557}
558
559static bool is_discarded_oblock(struct cache *cache, dm_oblock_t b)
560{
561 int r;
562 unsigned long flags;
563
564 spin_lock_irqsave(&cache->lock, flags);
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400565 r = test_bit(from_oblock(b), cache->discard_bitset);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000566 spin_unlock_irqrestore(&cache->lock, flags);
567
568 return r;
569}
570
571/*----------------------------------------------------------------*/
572
573static void load_stats(struct cache *cache)
574{
575 struct dm_cache_statistics stats;
576
577 dm_cache_metadata_get_stats(cache->cmd, &stats);
578 atomic_set(&cache->stats.read_hit, stats.read_hits);
579 atomic_set(&cache->stats.read_miss, stats.read_misses);
580 atomic_set(&cache->stats.write_hit, stats.write_hits);
581 atomic_set(&cache->stats.write_miss, stats.write_misses);
582}
583
584static void save_stats(struct cache *cache)
585{
586 struct dm_cache_statistics stats;
587
588 stats.read_hits = atomic_read(&cache->stats.read_hit);
589 stats.read_misses = atomic_read(&cache->stats.read_miss);
590 stats.write_hits = atomic_read(&cache->stats.write_hit);
591 stats.write_misses = atomic_read(&cache->stats.write_miss);
592
593 dm_cache_metadata_set_stats(cache->cmd, &stats);
594}
595
596/*----------------------------------------------------------------
597 * Per bio data
598 *--------------------------------------------------------------*/
Mike Snitzer19b00922013-04-05 15:36:34 +0100599
600/*
601 * If using writeback, leave out struct per_bio_data's writethrough fields.
602 */
603#define PB_DATA_SIZE_WB (offsetof(struct per_bio_data, cache))
604#define PB_DATA_SIZE_WT (sizeof(struct per_bio_data))
605
Joe Thornber2ee57d52013-10-24 14:10:29 -0400606static bool writethrough_mode(struct cache_features *f)
607{
608 return f->io_mode == CM_IO_WRITETHROUGH;
609}
610
611static bool writeback_mode(struct cache_features *f)
612{
613 return f->io_mode == CM_IO_WRITEBACK;
614}
615
616static bool passthrough_mode(struct cache_features *f)
617{
618 return f->io_mode == CM_IO_PASSTHROUGH;
619}
620
Mike Snitzer19b00922013-04-05 15:36:34 +0100621static size_t get_per_bio_data_size(struct cache *cache)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000622{
Joe Thornber2ee57d52013-10-24 14:10:29 -0400623 return writethrough_mode(&cache->features) ? PB_DATA_SIZE_WT : PB_DATA_SIZE_WB;
Mike Snitzer19b00922013-04-05 15:36:34 +0100624}
625
626static struct per_bio_data *get_per_bio_data(struct bio *bio, size_t data_size)
627{
628 struct per_bio_data *pb = dm_per_bio_data(bio, data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000629 BUG_ON(!pb);
630 return pb;
631}
632
Mike Snitzer19b00922013-04-05 15:36:34 +0100633static struct per_bio_data *init_per_bio_data(struct bio *bio, size_t data_size)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000634{
Mike Snitzer19b00922013-04-05 15:36:34 +0100635 struct per_bio_data *pb = get_per_bio_data(bio, data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000636
637 pb->tick = false;
638 pb->req_nr = dm_bio_get_target_bio_nr(bio);
639 pb->all_io_entry = NULL;
640
641 return pb;
642}
643
644/*----------------------------------------------------------------
645 * Remapping
646 *--------------------------------------------------------------*/
647static void remap_to_origin(struct cache *cache, struct bio *bio)
648{
649 bio->bi_bdev = cache->origin_dev->bdev;
650}
651
652static void remap_to_cache(struct cache *cache, struct bio *bio,
653 dm_cblock_t cblock)
654{
Kent Overstreet4f024f32013-10-11 15:44:27 -0700655 sector_t bi_sector = bio->bi_iter.bi_sector;
Heinz Mauelshagene0d849f2014-02-27 22:46:48 +0100656 sector_t block = from_cblock(cblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000657
658 bio->bi_bdev = cache->cache_dev->bdev;
659 if (!block_size_is_power_of_two(cache))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700660 bio->bi_iter.bi_sector =
Heinz Mauelshagene0d849f2014-02-27 22:46:48 +0100661 (block * cache->sectors_per_block) +
Kent Overstreet4f024f32013-10-11 15:44:27 -0700662 sector_div(bi_sector, cache->sectors_per_block);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000663 else
Kent Overstreet4f024f32013-10-11 15:44:27 -0700664 bio->bi_iter.bi_sector =
Heinz Mauelshagene0d849f2014-02-27 22:46:48 +0100665 (block << cache->sectors_per_block_shift) |
Kent Overstreet4f024f32013-10-11 15:44:27 -0700666 (bi_sector & (cache->sectors_per_block - 1));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000667}
668
669static void check_if_tick_bio_needed(struct cache *cache, struct bio *bio)
670{
671 unsigned long flags;
Mike Snitzer19b00922013-04-05 15:36:34 +0100672 size_t pb_data_size = get_per_bio_data_size(cache);
673 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000674
675 spin_lock_irqsave(&cache->lock, flags);
676 if (cache->need_tick_bio &&
677 !(bio->bi_rw & (REQ_FUA | REQ_FLUSH | REQ_DISCARD))) {
678 pb->tick = true;
679 cache->need_tick_bio = false;
680 }
681 spin_unlock_irqrestore(&cache->lock, flags);
682}
683
684static void remap_to_origin_clear_discard(struct cache *cache, struct bio *bio,
685 dm_oblock_t oblock)
686{
687 check_if_tick_bio_needed(cache, bio);
688 remap_to_origin(cache, bio);
689 if (bio_data_dir(bio) == WRITE)
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400690 clear_discard(cache, oblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000691}
692
693static void remap_to_cache_dirty(struct cache *cache, struct bio *bio,
694 dm_oblock_t oblock, dm_cblock_t cblock)
695{
Joe Thornberf8e5f012013-10-21 12:51:45 +0100696 check_if_tick_bio_needed(cache, bio);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000697 remap_to_cache(cache, bio, cblock);
698 if (bio_data_dir(bio) == WRITE) {
699 set_dirty(cache, oblock, cblock);
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -0400700 clear_discard(cache, oblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000701 }
702}
703
704static dm_oblock_t get_bio_block(struct cache *cache, struct bio *bio)
705{
Kent Overstreet4f024f32013-10-11 15:44:27 -0700706 sector_t block_nr = bio->bi_iter.bi_sector;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000707
708 if (!block_size_is_power_of_two(cache))
709 (void) sector_div(block_nr, cache->sectors_per_block);
710 else
711 block_nr >>= cache->sectors_per_block_shift;
712
713 return to_oblock(block_nr);
714}
715
716static int bio_triggers_commit(struct cache *cache, struct bio *bio)
717{
718 return bio->bi_rw & (REQ_FLUSH | REQ_FUA);
719}
720
Joe Thornber8c081b52014-05-13 16:18:38 +0100721/*
722 * You must increment the deferred set whilst the prison cell is held. To
723 * encourage this, we ask for 'cell' to be passed in.
724 */
725static void inc_ds(struct cache *cache, struct bio *bio,
726 struct dm_bio_prison_cell *cell)
727{
728 size_t pb_data_size = get_per_bio_data_size(cache);
729 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
730
731 BUG_ON(!cell);
732 BUG_ON(pb->all_io_entry);
733
734 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
735}
736
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000737static void issue(struct cache *cache, struct bio *bio)
738{
739 unsigned long flags;
740
741 if (!bio_triggers_commit(cache, bio)) {
742 generic_make_request(bio);
743 return;
744 }
745
746 /*
747 * Batch together any bios that trigger commits and then issue a
748 * single commit for them in do_worker().
749 */
750 spin_lock_irqsave(&cache->lock, flags);
751 cache->commit_requested = true;
752 bio_list_add(&cache->deferred_flush_bios, bio);
753 spin_unlock_irqrestore(&cache->lock, flags);
754}
755
Joe Thornber8c081b52014-05-13 16:18:38 +0100756static void inc_and_issue(struct cache *cache, struct bio *bio, struct dm_bio_prison_cell *cell)
757{
758 inc_ds(cache, bio, cell);
759 issue(cache, bio);
760}
761
Joe Thornbere2e74d62013-03-20 17:21:27 +0000762static void defer_writethrough_bio(struct cache *cache, struct bio *bio)
763{
764 unsigned long flags;
765
766 spin_lock_irqsave(&cache->lock, flags);
767 bio_list_add(&cache->deferred_writethrough_bios, bio);
768 spin_unlock_irqrestore(&cache->lock, flags);
769
770 wake_worker(cache);
771}
772
773static void writethrough_endio(struct bio *bio, int err)
774{
Mike Snitzer19b00922013-04-05 15:36:34 +0100775 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
Joe Thornberc9d28d52013-10-31 13:55:48 -0400776
777 dm_unhook_bio(&pb->hook_info, bio);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000778
779 if (err) {
780 bio_endio(bio, err);
781 return;
782 }
783
Darrick J. Wongb844fe62013-04-05 15:36:32 +0100784 dm_bio_restore(&pb->bio_details, bio);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000785 remap_to_cache(pb->cache, bio, pb->cblock);
786
787 /*
788 * We can't issue this bio directly, since we're in interrupt
Joe Thornberaeed1422013-05-10 14:37:18 +0100789 * context. So it gets put on a bio list for processing by the
Joe Thornbere2e74d62013-03-20 17:21:27 +0000790 * worker thread.
791 */
792 defer_writethrough_bio(pb->cache, bio);
793}
794
795/*
796 * When running in writethrough mode we need to send writes to clean blocks
797 * to both the cache and origin devices. In future we'd like to clone the
798 * bio and send them in parallel, but for now we're doing them in
799 * series as this is easier.
800 */
801static void remap_to_origin_then_cache(struct cache *cache, struct bio *bio,
802 dm_oblock_t oblock, dm_cblock_t cblock)
803{
Mike Snitzer19b00922013-04-05 15:36:34 +0100804 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000805
806 pb->cache = cache;
807 pb->cblock = cblock;
Joe Thornberc9d28d52013-10-31 13:55:48 -0400808 dm_hook_bio(&pb->hook_info, bio, writethrough_endio, NULL);
Darrick J. Wongb844fe62013-04-05 15:36:32 +0100809 dm_bio_record(&pb->bio_details, bio);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000810
811 remap_to_origin_clear_discard(pb->cache, bio, oblock);
812}
813
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000814/*----------------------------------------------------------------
815 * Migration processing
816 *
817 * Migration covers moving data from the origin device to the cache, or
818 * vice versa.
819 *--------------------------------------------------------------*/
820static void free_migration(struct dm_cache_migration *mg)
821{
822 mempool_free(mg, mg->cache->migration_pool);
823}
824
825static void inc_nr_migrations(struct cache *cache)
826{
827 atomic_inc(&cache->nr_migrations);
828}
829
830static void dec_nr_migrations(struct cache *cache)
831{
832 atomic_dec(&cache->nr_migrations);
833
834 /*
835 * Wake the worker in case we're suspending the target.
836 */
837 wake_up(&cache->migration_wait);
838}
839
840static void __cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell,
841 bool holder)
842{
843 (holder ? dm_cell_release : dm_cell_release_no_holder)
844 (cache->prison, cell, &cache->deferred_bios);
845 free_prison_cell(cache, cell);
846}
847
848static void cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell,
849 bool holder)
850{
851 unsigned long flags;
852
853 spin_lock_irqsave(&cache->lock, flags);
854 __cell_defer(cache, cell, holder);
855 spin_unlock_irqrestore(&cache->lock, flags);
856
857 wake_worker(cache);
858}
859
860static void cleanup_migration(struct dm_cache_migration *mg)
861{
Joe Thornber66cb1912013-10-30 17:11:58 +0000862 struct cache *cache = mg->cache;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000863 free_migration(mg);
Joe Thornber66cb1912013-10-30 17:11:58 +0000864 dec_nr_migrations(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000865}
866
867static void migration_failure(struct dm_cache_migration *mg)
868{
869 struct cache *cache = mg->cache;
870
871 if (mg->writeback) {
872 DMWARN_LIMIT("writeback failed; couldn't copy block");
873 set_dirty(cache, mg->old_oblock, mg->cblock);
874 cell_defer(cache, mg->old_ocell, false);
875
876 } else if (mg->demote) {
877 DMWARN_LIMIT("demotion failed; couldn't copy block");
878 policy_force_mapping(cache->policy, mg->new_oblock, mg->old_oblock);
879
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200880 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000881 if (mg->promote)
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200882 cell_defer(cache, mg->new_ocell, true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000883 } else {
884 DMWARN_LIMIT("promotion failed; couldn't copy block");
885 policy_remove_mapping(cache->policy, mg->new_oblock);
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200886 cell_defer(cache, mg->new_ocell, true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000887 }
888
889 cleanup_migration(mg);
890}
891
892static void migration_success_pre_commit(struct dm_cache_migration *mg)
893{
894 unsigned long flags;
895 struct cache *cache = mg->cache;
896
897 if (mg->writeback) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000898 clear_dirty(cache, mg->old_oblock, mg->cblock);
Anssi Hannula40aa9782014-09-05 03:11:28 +0300899 cell_defer(cache, mg->old_ocell, false);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000900 cleanup_migration(mg);
901 return;
902
903 } else if (mg->demote) {
904 if (dm_cache_remove_mapping(cache->cmd, mg->cblock)) {
905 DMWARN_LIMIT("demotion failed; couldn't update on disk metadata");
906 policy_force_mapping(cache->policy, mg->new_oblock,
907 mg->old_oblock);
908 if (mg->promote)
909 cell_defer(cache, mg->new_ocell, true);
910 cleanup_migration(mg);
911 return;
912 }
913 } else {
914 if (dm_cache_insert_mapping(cache->cmd, mg->cblock, mg->new_oblock)) {
915 DMWARN_LIMIT("promotion failed; couldn't update on disk metadata");
916 policy_remove_mapping(cache->policy, mg->new_oblock);
917 cleanup_migration(mg);
918 return;
919 }
920 }
921
922 spin_lock_irqsave(&cache->lock, flags);
923 list_add_tail(&mg->list, &cache->need_commit_migrations);
924 cache->commit_requested = true;
925 spin_unlock_irqrestore(&cache->lock, flags);
926}
927
928static void migration_success_post_commit(struct dm_cache_migration *mg)
929{
930 unsigned long flags;
931 struct cache *cache = mg->cache;
932
933 if (mg->writeback) {
934 DMWARN("writeback unexpectedly triggered commit");
935 return;
936
937 } else if (mg->demote) {
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200938 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000939
940 if (mg->promote) {
941 mg->demote = false;
942
943 spin_lock_irqsave(&cache->lock, flags);
944 list_add_tail(&mg->list, &cache->quiesced_migrations);
945 spin_unlock_irqrestore(&cache->lock, flags);
946
Joe Thornber65790ff2013-11-08 16:39:50 +0000947 } else {
948 if (mg->invalidate)
949 policy_remove_mapping(cache->policy, mg->old_oblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000950 cleanup_migration(mg);
Joe Thornber65790ff2013-11-08 16:39:50 +0000951 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000952
953 } else {
Anssi Hannula40aa9782014-09-05 03:11:28 +0300954 clear_dirty(cache, mg->new_oblock, mg->cblock);
Joe Thornberc9d28d52013-10-31 13:55:48 -0400955 if (mg->requeue_holder)
956 cell_defer(cache, mg->new_ocell, true);
957 else {
958 bio_endio(mg->new_ocell->holder, 0);
959 cell_defer(cache, mg->new_ocell, false);
960 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000961 cleanup_migration(mg);
962 }
963}
964
965static void copy_complete(int read_err, unsigned long write_err, void *context)
966{
967 unsigned long flags;
968 struct dm_cache_migration *mg = (struct dm_cache_migration *) context;
969 struct cache *cache = mg->cache;
970
971 if (read_err || write_err)
972 mg->err = true;
973
974 spin_lock_irqsave(&cache->lock, flags);
975 list_add_tail(&mg->list, &cache->completed_migrations);
976 spin_unlock_irqrestore(&cache->lock, flags);
977
978 wake_worker(cache);
979}
980
981static void issue_copy_real(struct dm_cache_migration *mg)
982{
983 int r;
984 struct dm_io_region o_region, c_region;
985 struct cache *cache = mg->cache;
Heinz Mauelshagen8b9d9662014-03-12 00:40:05 +0100986 sector_t cblock = from_cblock(mg->cblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000987
988 o_region.bdev = cache->origin_dev->bdev;
989 o_region.count = cache->sectors_per_block;
990
991 c_region.bdev = cache->cache_dev->bdev;
Heinz Mauelshagen8b9d9662014-03-12 00:40:05 +0100992 c_region.sector = cblock * cache->sectors_per_block;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000993 c_region.count = cache->sectors_per_block;
994
995 if (mg->writeback || mg->demote) {
996 /* demote */
997 o_region.sector = from_oblock(mg->old_oblock) * cache->sectors_per_block;
998 r = dm_kcopyd_copy(cache->copier, &c_region, 1, &o_region, 0, copy_complete, mg);
999 } else {
1000 /* promote */
1001 o_region.sector = from_oblock(mg->new_oblock) * cache->sectors_per_block;
1002 r = dm_kcopyd_copy(cache->copier, &o_region, 1, &c_region, 0, copy_complete, mg);
1003 }
1004
Heinz Mauelshagen2c2263c2013-10-14 17:14:45 +02001005 if (r < 0) {
1006 DMERR_LIMIT("issuing migration failed");
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001007 migration_failure(mg);
Heinz Mauelshagen2c2263c2013-10-14 17:14:45 +02001008 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001009}
1010
Joe Thornberc9d28d52013-10-31 13:55:48 -04001011static void overwrite_endio(struct bio *bio, int err)
1012{
1013 struct dm_cache_migration *mg = bio->bi_private;
1014 struct cache *cache = mg->cache;
1015 size_t pb_data_size = get_per_bio_data_size(cache);
1016 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
1017 unsigned long flags;
1018
Mike Snitzer80ae49a2014-01-31 14:30:37 -05001019 dm_unhook_bio(&pb->hook_info, bio);
1020
Joe Thornberc9d28d52013-10-31 13:55:48 -04001021 if (err)
1022 mg->err = true;
1023
Mike Snitzer80ae49a2014-01-31 14:30:37 -05001024 mg->requeue_holder = false;
1025
Joe Thornberc9d28d52013-10-31 13:55:48 -04001026 spin_lock_irqsave(&cache->lock, flags);
1027 list_add_tail(&mg->list, &cache->completed_migrations);
Joe Thornberc9d28d52013-10-31 13:55:48 -04001028 spin_unlock_irqrestore(&cache->lock, flags);
1029
1030 wake_worker(cache);
1031}
1032
1033static void issue_overwrite(struct dm_cache_migration *mg, struct bio *bio)
1034{
1035 size_t pb_data_size = get_per_bio_data_size(mg->cache);
1036 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
1037
1038 dm_hook_bio(&pb->hook_info, bio, overwrite_endio, mg);
1039 remap_to_cache_dirty(mg->cache, bio, mg->new_oblock, mg->cblock);
Joe Thornber8c081b52014-05-13 16:18:38 +01001040
1041 /*
1042 * No need to inc_ds() here, since the cell will be held for the
1043 * duration of the io.
1044 */
Joe Thornberc9d28d52013-10-31 13:55:48 -04001045 generic_make_request(bio);
1046}
1047
1048static bool bio_writes_complete_block(struct cache *cache, struct bio *bio)
1049{
1050 return (bio_data_dir(bio) == WRITE) &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07001051 (bio->bi_iter.bi_size == (cache->sectors_per_block << SECTOR_SHIFT));
Joe Thornberc9d28d52013-10-31 13:55:48 -04001052}
1053
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001054static void avoid_copy(struct dm_cache_migration *mg)
1055{
1056 atomic_inc(&mg->cache->stats.copies_avoided);
1057 migration_success_pre_commit(mg);
1058}
1059
1060static void issue_copy(struct dm_cache_migration *mg)
1061{
1062 bool avoid;
1063 struct cache *cache = mg->cache;
1064
1065 if (mg->writeback || mg->demote)
1066 avoid = !is_dirty(cache, mg->cblock) ||
1067 is_discarded_oblock(cache, mg->old_oblock);
Joe Thornberc9d28d52013-10-31 13:55:48 -04001068 else {
1069 struct bio *bio = mg->new_ocell->holder;
1070
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001071 avoid = is_discarded_oblock(cache, mg->new_oblock);
1072
Joe Thornber4df99e32014-11-27 12:21:08 +00001073 if (writeback_mode(&cache->features) &&
1074 !avoid && bio_writes_complete_block(cache, bio)) {
Joe Thornberc9d28d52013-10-31 13:55:48 -04001075 issue_overwrite(mg, bio);
1076 return;
1077 }
1078 }
1079
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001080 avoid ? avoid_copy(mg) : issue_copy_real(mg);
1081}
1082
1083static void complete_migration(struct dm_cache_migration *mg)
1084{
1085 if (mg->err)
1086 migration_failure(mg);
1087 else
1088 migration_success_pre_commit(mg);
1089}
1090
1091static void process_migrations(struct cache *cache, struct list_head *head,
1092 void (*fn)(struct dm_cache_migration *))
1093{
1094 unsigned long flags;
1095 struct list_head list;
1096 struct dm_cache_migration *mg, *tmp;
1097
1098 INIT_LIST_HEAD(&list);
1099 spin_lock_irqsave(&cache->lock, flags);
1100 list_splice_init(head, &list);
1101 spin_unlock_irqrestore(&cache->lock, flags);
1102
1103 list_for_each_entry_safe(mg, tmp, &list, list)
1104 fn(mg);
1105}
1106
1107static void __queue_quiesced_migration(struct dm_cache_migration *mg)
1108{
1109 list_add_tail(&mg->list, &mg->cache->quiesced_migrations);
1110}
1111
1112static void queue_quiesced_migration(struct dm_cache_migration *mg)
1113{
1114 unsigned long flags;
1115 struct cache *cache = mg->cache;
1116
1117 spin_lock_irqsave(&cache->lock, flags);
1118 __queue_quiesced_migration(mg);
1119 spin_unlock_irqrestore(&cache->lock, flags);
1120
1121 wake_worker(cache);
1122}
1123
1124static void queue_quiesced_migrations(struct cache *cache, struct list_head *work)
1125{
1126 unsigned long flags;
1127 struct dm_cache_migration *mg, *tmp;
1128
1129 spin_lock_irqsave(&cache->lock, flags);
1130 list_for_each_entry_safe(mg, tmp, work, list)
1131 __queue_quiesced_migration(mg);
1132 spin_unlock_irqrestore(&cache->lock, flags);
1133
1134 wake_worker(cache);
1135}
1136
1137static void check_for_quiesced_migrations(struct cache *cache,
1138 struct per_bio_data *pb)
1139{
1140 struct list_head work;
1141
1142 if (!pb->all_io_entry)
1143 return;
1144
1145 INIT_LIST_HEAD(&work);
Joe Thornber8c081b52014-05-13 16:18:38 +01001146 dm_deferred_entry_dec(pb->all_io_entry, &work);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001147
1148 if (!list_empty(&work))
1149 queue_quiesced_migrations(cache, &work);
1150}
1151
1152static void quiesce_migration(struct dm_cache_migration *mg)
1153{
1154 if (!dm_deferred_set_add_work(mg->cache->all_io_ds, &mg->list))
1155 queue_quiesced_migration(mg);
1156}
1157
1158static void promote(struct cache *cache, struct prealloc *structs,
1159 dm_oblock_t oblock, dm_cblock_t cblock,
1160 struct dm_bio_prison_cell *cell)
1161{
1162 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1163
1164 mg->err = false;
1165 mg->writeback = false;
1166 mg->demote = false;
1167 mg->promote = true;
Joe Thornberc9d28d52013-10-31 13:55:48 -04001168 mg->requeue_holder = true;
Joe Thornber65790ff2013-11-08 16:39:50 +00001169 mg->invalidate = false;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001170 mg->cache = cache;
1171 mg->new_oblock = oblock;
1172 mg->cblock = cblock;
1173 mg->old_ocell = NULL;
1174 mg->new_ocell = cell;
1175 mg->start_jiffies = jiffies;
1176
1177 inc_nr_migrations(cache);
1178 quiesce_migration(mg);
1179}
1180
1181static void writeback(struct cache *cache, struct prealloc *structs,
1182 dm_oblock_t oblock, dm_cblock_t cblock,
1183 struct dm_bio_prison_cell *cell)
1184{
1185 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1186
1187 mg->err = false;
1188 mg->writeback = true;
1189 mg->demote = false;
1190 mg->promote = false;
Joe Thornberc9d28d52013-10-31 13:55:48 -04001191 mg->requeue_holder = true;
Joe Thornber65790ff2013-11-08 16:39:50 +00001192 mg->invalidate = false;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001193 mg->cache = cache;
1194 mg->old_oblock = oblock;
1195 mg->cblock = cblock;
1196 mg->old_ocell = cell;
1197 mg->new_ocell = NULL;
1198 mg->start_jiffies = jiffies;
1199
1200 inc_nr_migrations(cache);
1201 quiesce_migration(mg);
1202}
1203
1204static void demote_then_promote(struct cache *cache, struct prealloc *structs,
1205 dm_oblock_t old_oblock, dm_oblock_t new_oblock,
1206 dm_cblock_t cblock,
1207 struct dm_bio_prison_cell *old_ocell,
1208 struct dm_bio_prison_cell *new_ocell)
1209{
1210 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1211
1212 mg->err = false;
1213 mg->writeback = false;
1214 mg->demote = true;
1215 mg->promote = true;
Joe Thornberc9d28d52013-10-31 13:55:48 -04001216 mg->requeue_holder = true;
Joe Thornber65790ff2013-11-08 16:39:50 +00001217 mg->invalidate = false;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001218 mg->cache = cache;
1219 mg->old_oblock = old_oblock;
1220 mg->new_oblock = new_oblock;
1221 mg->cblock = cblock;
1222 mg->old_ocell = old_ocell;
1223 mg->new_ocell = new_ocell;
1224 mg->start_jiffies = jiffies;
1225
1226 inc_nr_migrations(cache);
1227 quiesce_migration(mg);
1228}
1229
Joe Thornber2ee57d52013-10-24 14:10:29 -04001230/*
1231 * Invalidate a cache entry. No writeback occurs; any changes in the cache
1232 * block are thrown away.
1233 */
1234static void invalidate(struct cache *cache, struct prealloc *structs,
1235 dm_oblock_t oblock, dm_cblock_t cblock,
1236 struct dm_bio_prison_cell *cell)
1237{
1238 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1239
1240 mg->err = false;
1241 mg->writeback = false;
1242 mg->demote = true;
1243 mg->promote = false;
1244 mg->requeue_holder = true;
Joe Thornber65790ff2013-11-08 16:39:50 +00001245 mg->invalidate = true;
Joe Thornber2ee57d52013-10-24 14:10:29 -04001246 mg->cache = cache;
1247 mg->old_oblock = oblock;
1248 mg->cblock = cblock;
1249 mg->old_ocell = cell;
1250 mg->new_ocell = NULL;
1251 mg->start_jiffies = jiffies;
1252
1253 inc_nr_migrations(cache);
1254 quiesce_migration(mg);
1255}
1256
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001257/*----------------------------------------------------------------
1258 * bio processing
1259 *--------------------------------------------------------------*/
1260static void defer_bio(struct cache *cache, struct bio *bio)
1261{
1262 unsigned long flags;
1263
1264 spin_lock_irqsave(&cache->lock, flags);
1265 bio_list_add(&cache->deferred_bios, bio);
1266 spin_unlock_irqrestore(&cache->lock, flags);
1267
1268 wake_worker(cache);
1269}
1270
1271static void process_flush_bio(struct cache *cache, struct bio *bio)
1272{
Mike Snitzer19b00922013-04-05 15:36:34 +01001273 size_t pb_data_size = get_per_bio_data_size(cache);
1274 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001275
Kent Overstreet4f024f32013-10-11 15:44:27 -07001276 BUG_ON(bio->bi_iter.bi_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001277 if (!pb->req_nr)
1278 remap_to_origin(cache, bio);
1279 else
1280 remap_to_cache(cache, bio, 0);
1281
Joe Thornber8c081b52014-05-13 16:18:38 +01001282 /*
1283 * REQ_FLUSH is not directed at any particular block so we don't
1284 * need to inc_ds(). REQ_FUA's are split into a write + REQ_FLUSH
1285 * by dm-core.
1286 */
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001287 issue(cache, bio);
1288}
1289
1290/*
1291 * People generally discard large parts of a device, eg, the whole device
1292 * when formatting. Splitting these large discards up into cache block
1293 * sized ios and then quiescing (always neccessary for discard) takes too
1294 * long.
1295 *
1296 * We keep it simple, and allow any size of discard to come in, and just
1297 * mark off blocks on the discard bitset. No passdown occurs!
1298 *
1299 * To implement passdown we need to change the bio_prison such that a cell
1300 * can have a key that spans many blocks.
1301 */
1302static void process_discard_bio(struct cache *cache, struct bio *bio)
1303{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001304 dm_block_t start_block = dm_sector_div_up(bio->bi_iter.bi_sector,
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04001305 cache->sectors_per_block);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001306 dm_block_t end_block = bio_end_sector(bio);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001307 dm_block_t b;
1308
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04001309 end_block = block_div(end_block, cache->sectors_per_block);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001310
1311 for (b = start_block; b < end_block; b++)
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04001312 set_discard(cache, to_oblock(b));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001313
1314 bio_endio(bio, 0);
1315}
1316
1317static bool spare_migration_bandwidth(struct cache *cache)
1318{
1319 sector_t current_volume = (atomic_read(&cache->nr_migrations) + 1) *
1320 cache->sectors_per_block;
1321 return current_volume < cache->migration_threshold;
1322}
1323
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001324static void inc_hit_counter(struct cache *cache, struct bio *bio)
1325{
1326 atomic_inc(bio_data_dir(bio) == READ ?
1327 &cache->stats.read_hit : &cache->stats.write_hit);
1328}
1329
1330static void inc_miss_counter(struct cache *cache, struct bio *bio)
1331{
1332 atomic_inc(bio_data_dir(bio) == READ ?
1333 &cache->stats.read_miss : &cache->stats.write_miss);
1334}
1335
1336static void process_bio(struct cache *cache, struct prealloc *structs,
1337 struct bio *bio)
1338{
1339 int r;
1340 bool release_cell = true;
1341 dm_oblock_t block = get_bio_block(cache, bio);
1342 struct dm_bio_prison_cell *cell_prealloc, *old_ocell, *new_ocell;
1343 struct policy_result lookup_result;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001344 bool discarded_block = is_discarded_oblock(cache, block);
Joe Thornber2ee57d52013-10-24 14:10:29 -04001345 bool passthrough = passthrough_mode(&cache->features);
1346 bool can_migrate = !passthrough && (discarded_block || spare_migration_bandwidth(cache));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001347
1348 /*
1349 * Check to see if that block is currently migrating.
1350 */
1351 cell_prealloc = prealloc_get_cell(structs);
1352 r = bio_detain(cache, block, bio, cell_prealloc,
1353 (cell_free_fn) prealloc_put_cell,
1354 structs, &new_ocell);
1355 if (r > 0)
1356 return;
1357
1358 r = policy_map(cache->policy, block, true, can_migrate, discarded_block,
1359 bio, &lookup_result);
1360
1361 if (r == -EWOULDBLOCK)
1362 /* migration has been denied */
1363 lookup_result.op = POLICY_MISS;
1364
1365 switch (lookup_result.op) {
1366 case POLICY_HIT:
Joe Thornber2ee57d52013-10-24 14:10:29 -04001367 if (passthrough) {
1368 inc_miss_counter(cache, bio);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001369
Joe Thornber2ee57d52013-10-24 14:10:29 -04001370 /*
1371 * Passthrough always maps to the origin,
1372 * invalidating any cache blocks that are written
1373 * to.
1374 */
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001375
Joe Thornber2ee57d52013-10-24 14:10:29 -04001376 if (bio_data_dir(bio) == WRITE) {
1377 atomic_inc(&cache->stats.demotion);
1378 invalidate(cache, structs, block, lookup_result.cblock, new_ocell);
1379 release_cell = false;
1380
1381 } else {
1382 /* FIXME: factor out issue_origin() */
Joe Thornber2ee57d52013-10-24 14:10:29 -04001383 remap_to_origin_clear_discard(cache, bio, block);
Joe Thornber8c081b52014-05-13 16:18:38 +01001384 inc_and_issue(cache, bio, new_ocell);
Joe Thornber2ee57d52013-10-24 14:10:29 -04001385 }
1386 } else {
1387 inc_hit_counter(cache, bio);
1388
1389 if (bio_data_dir(bio) == WRITE &&
1390 writethrough_mode(&cache->features) &&
1391 !is_dirty(cache, lookup_result.cblock)) {
Joe Thornber2ee57d52013-10-24 14:10:29 -04001392 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
Joe Thornber8c081b52014-05-13 16:18:38 +01001393 inc_and_issue(cache, bio, new_ocell);
1394
1395 } else {
1396 remap_to_cache_dirty(cache, bio, block, lookup_result.cblock);
1397 inc_and_issue(cache, bio, new_ocell);
1398 }
Joe Thornber2ee57d52013-10-24 14:10:29 -04001399 }
1400
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001401 break;
1402
1403 case POLICY_MISS:
1404 inc_miss_counter(cache, bio);
Joe Thornbere2e74d62013-03-20 17:21:27 +00001405 remap_to_origin_clear_discard(cache, bio, block);
Joe Thornber8c081b52014-05-13 16:18:38 +01001406 inc_and_issue(cache, bio, new_ocell);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001407 break;
1408
1409 case POLICY_NEW:
1410 atomic_inc(&cache->stats.promotion);
1411 promote(cache, structs, block, lookup_result.cblock, new_ocell);
1412 release_cell = false;
1413 break;
1414
1415 case POLICY_REPLACE:
1416 cell_prealloc = prealloc_get_cell(structs);
1417 r = bio_detain(cache, lookup_result.old_oblock, bio, cell_prealloc,
1418 (cell_free_fn) prealloc_put_cell,
1419 structs, &old_ocell);
1420 if (r > 0) {
1421 /*
1422 * We have to be careful to avoid lock inversion of
1423 * the cells. So we back off, and wait for the
1424 * old_ocell to become free.
1425 */
1426 policy_force_mapping(cache->policy, block,
1427 lookup_result.old_oblock);
1428 atomic_inc(&cache->stats.cache_cell_clash);
1429 break;
1430 }
1431 atomic_inc(&cache->stats.demotion);
1432 atomic_inc(&cache->stats.promotion);
1433
1434 demote_then_promote(cache, structs, lookup_result.old_oblock,
1435 block, lookup_result.cblock,
1436 old_ocell, new_ocell);
1437 release_cell = false;
1438 break;
1439
1440 default:
1441 DMERR_LIMIT("%s: erroring bio, unknown policy op: %u", __func__,
1442 (unsigned) lookup_result.op);
1443 bio_io_error(bio);
1444 }
1445
1446 if (release_cell)
1447 cell_defer(cache, new_ocell, false);
1448}
1449
1450static int need_commit_due_to_time(struct cache *cache)
1451{
1452 return jiffies < cache->last_commit_jiffies ||
1453 jiffies > cache->last_commit_jiffies + COMMIT_PERIOD;
1454}
1455
1456static int commit_if_needed(struct cache *cache)
1457{
Heinz Mauelshagenffcbcb62013-10-14 17:24:43 +02001458 int r = 0;
1459
1460 if ((cache->commit_requested || need_commit_due_to_time(cache)) &&
1461 dm_cache_changed_this_transaction(cache->cmd)) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001462 atomic_inc(&cache->stats.commit_count);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001463 cache->commit_requested = false;
Heinz Mauelshagenffcbcb62013-10-14 17:24:43 +02001464 r = dm_cache_commit(cache->cmd, false);
1465 cache->last_commit_jiffies = jiffies;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001466 }
1467
Heinz Mauelshagenffcbcb62013-10-14 17:24:43 +02001468 return r;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001469}
1470
1471static void process_deferred_bios(struct cache *cache)
1472{
1473 unsigned long flags;
1474 struct bio_list bios;
1475 struct bio *bio;
1476 struct prealloc structs;
1477
1478 memset(&structs, 0, sizeof(structs));
1479 bio_list_init(&bios);
1480
1481 spin_lock_irqsave(&cache->lock, flags);
1482 bio_list_merge(&bios, &cache->deferred_bios);
1483 bio_list_init(&cache->deferred_bios);
1484 spin_unlock_irqrestore(&cache->lock, flags);
1485
1486 while (!bio_list_empty(&bios)) {
1487 /*
1488 * If we've got no free migration structs, and processing
1489 * this bio might require one, we pause until there are some
1490 * prepared mappings to process.
1491 */
1492 if (prealloc_data_structs(cache, &structs)) {
1493 spin_lock_irqsave(&cache->lock, flags);
1494 bio_list_merge(&cache->deferred_bios, &bios);
1495 spin_unlock_irqrestore(&cache->lock, flags);
1496 break;
1497 }
1498
1499 bio = bio_list_pop(&bios);
1500
1501 if (bio->bi_rw & REQ_FLUSH)
1502 process_flush_bio(cache, bio);
1503 else if (bio->bi_rw & REQ_DISCARD)
1504 process_discard_bio(cache, bio);
1505 else
1506 process_bio(cache, &structs, bio);
1507 }
1508
1509 prealloc_free_structs(cache, &structs);
1510}
1511
1512static void process_deferred_flush_bios(struct cache *cache, bool submit_bios)
1513{
1514 unsigned long flags;
1515 struct bio_list bios;
1516 struct bio *bio;
1517
1518 bio_list_init(&bios);
1519
1520 spin_lock_irqsave(&cache->lock, flags);
1521 bio_list_merge(&bios, &cache->deferred_flush_bios);
1522 bio_list_init(&cache->deferred_flush_bios);
1523 spin_unlock_irqrestore(&cache->lock, flags);
1524
Joe Thornber8c081b52014-05-13 16:18:38 +01001525 /*
1526 * These bios have already been through inc_ds()
1527 */
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001528 while ((bio = bio_list_pop(&bios)))
1529 submit_bios ? generic_make_request(bio) : bio_io_error(bio);
1530}
1531
Joe Thornbere2e74d62013-03-20 17:21:27 +00001532static void process_deferred_writethrough_bios(struct cache *cache)
1533{
1534 unsigned long flags;
1535 struct bio_list bios;
1536 struct bio *bio;
1537
1538 bio_list_init(&bios);
1539
1540 spin_lock_irqsave(&cache->lock, flags);
1541 bio_list_merge(&bios, &cache->deferred_writethrough_bios);
1542 bio_list_init(&cache->deferred_writethrough_bios);
1543 spin_unlock_irqrestore(&cache->lock, flags);
1544
Joe Thornber8c081b52014-05-13 16:18:38 +01001545 /*
1546 * These bios have already been through inc_ds()
1547 */
Joe Thornbere2e74d62013-03-20 17:21:27 +00001548 while ((bio = bio_list_pop(&bios)))
1549 generic_make_request(bio);
1550}
1551
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001552static void writeback_some_dirty_blocks(struct cache *cache)
1553{
1554 int r = 0;
1555 dm_oblock_t oblock;
1556 dm_cblock_t cblock;
1557 struct prealloc structs;
1558 struct dm_bio_prison_cell *old_ocell;
1559
1560 memset(&structs, 0, sizeof(structs));
1561
1562 while (spare_migration_bandwidth(cache)) {
1563 if (prealloc_data_structs(cache, &structs))
1564 break;
1565
1566 r = policy_writeback_work(cache->policy, &oblock, &cblock);
1567 if (r)
1568 break;
1569
1570 r = get_cell(cache, oblock, &structs, &old_ocell);
1571 if (r) {
1572 policy_set_dirty(cache->policy, oblock);
1573 break;
1574 }
1575
1576 writeback(cache, &structs, oblock, cblock, old_ocell);
1577 }
1578
1579 prealloc_free_structs(cache, &structs);
1580}
1581
1582/*----------------------------------------------------------------
Joe Thornber65790ff2013-11-08 16:39:50 +00001583 * Invalidations.
1584 * Dropping something from the cache *without* writing back.
1585 *--------------------------------------------------------------*/
1586
1587static void process_invalidation_request(struct cache *cache, struct invalidation_request *req)
1588{
1589 int r = 0;
1590 uint64_t begin = from_cblock(req->cblocks->begin);
1591 uint64_t end = from_cblock(req->cblocks->end);
1592
1593 while (begin != end) {
1594 r = policy_remove_cblock(cache->policy, to_cblock(begin));
1595 if (!r) {
1596 r = dm_cache_remove_mapping(cache->cmd, to_cblock(begin));
1597 if (r)
1598 break;
1599
1600 } else if (r == -ENODATA) {
1601 /* harmless, already unmapped */
1602 r = 0;
1603
1604 } else {
1605 DMERR("policy_remove_cblock failed");
1606 break;
1607 }
1608
1609 begin++;
1610 }
1611
1612 cache->commit_requested = true;
1613
1614 req->err = r;
1615 atomic_set(&req->complete, 1);
1616
1617 wake_up(&req->result_wait);
1618}
1619
1620static void process_invalidation_requests(struct cache *cache)
1621{
1622 struct list_head list;
1623 struct invalidation_request *req, *tmp;
1624
1625 INIT_LIST_HEAD(&list);
1626 spin_lock(&cache->invalidation_lock);
1627 list_splice_init(&cache->invalidation_requests, &list);
1628 spin_unlock(&cache->invalidation_lock);
1629
1630 list_for_each_entry_safe (req, tmp, &list, list)
1631 process_invalidation_request(cache, req);
1632}
1633
1634/*----------------------------------------------------------------
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001635 * Main worker loop
1636 *--------------------------------------------------------------*/
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001637static bool is_quiescing(struct cache *cache)
1638{
Joe Thornber238f8362013-10-30 17:29:30 +00001639 return atomic_read(&cache->quiescing);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001640}
1641
Joe Thornber66cb1912013-10-30 17:11:58 +00001642static void ack_quiescing(struct cache *cache)
1643{
1644 if (is_quiescing(cache)) {
1645 atomic_inc(&cache->quiescing_ack);
1646 wake_up(&cache->quiescing_wait);
1647 }
1648}
1649
1650static void wait_for_quiescing_ack(struct cache *cache)
1651{
1652 wait_event(cache->quiescing_wait, atomic_read(&cache->quiescing_ack));
1653}
1654
1655static void start_quiescing(struct cache *cache)
1656{
Joe Thornber238f8362013-10-30 17:29:30 +00001657 atomic_inc(&cache->quiescing);
Joe Thornber66cb1912013-10-30 17:11:58 +00001658 wait_for_quiescing_ack(cache);
1659}
1660
1661static void stop_quiescing(struct cache *cache)
1662{
Joe Thornber238f8362013-10-30 17:29:30 +00001663 atomic_set(&cache->quiescing, 0);
Joe Thornber66cb1912013-10-30 17:11:58 +00001664 atomic_set(&cache->quiescing_ack, 0);
1665}
1666
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001667static void wait_for_migrations(struct cache *cache)
1668{
1669 wait_event(cache->migration_wait, !atomic_read(&cache->nr_migrations));
1670}
1671
1672static void stop_worker(struct cache *cache)
1673{
1674 cancel_delayed_work(&cache->waker);
1675 flush_workqueue(cache->wq);
1676}
1677
1678static void requeue_deferred_io(struct cache *cache)
1679{
1680 struct bio *bio;
1681 struct bio_list bios;
1682
1683 bio_list_init(&bios);
1684 bio_list_merge(&bios, &cache->deferred_bios);
1685 bio_list_init(&cache->deferred_bios);
1686
1687 while ((bio = bio_list_pop(&bios)))
1688 bio_endio(bio, DM_ENDIO_REQUEUE);
1689}
1690
1691static int more_work(struct cache *cache)
1692{
1693 if (is_quiescing(cache))
1694 return !list_empty(&cache->quiesced_migrations) ||
1695 !list_empty(&cache->completed_migrations) ||
1696 !list_empty(&cache->need_commit_migrations);
1697 else
1698 return !bio_list_empty(&cache->deferred_bios) ||
1699 !bio_list_empty(&cache->deferred_flush_bios) ||
Joe Thornbere2e74d62013-03-20 17:21:27 +00001700 !bio_list_empty(&cache->deferred_writethrough_bios) ||
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001701 !list_empty(&cache->quiesced_migrations) ||
1702 !list_empty(&cache->completed_migrations) ||
Joe Thornber65790ff2013-11-08 16:39:50 +00001703 !list_empty(&cache->need_commit_migrations) ||
1704 cache->invalidate;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001705}
1706
1707static void do_worker(struct work_struct *ws)
1708{
1709 struct cache *cache = container_of(ws, struct cache, worker);
1710
1711 do {
Joe Thornber66cb1912013-10-30 17:11:58 +00001712 if (!is_quiescing(cache)) {
1713 writeback_some_dirty_blocks(cache);
1714 process_deferred_writethrough_bios(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001715 process_deferred_bios(cache);
Joe Thornber65790ff2013-11-08 16:39:50 +00001716 process_invalidation_requests(cache);
Joe Thornber66cb1912013-10-30 17:11:58 +00001717 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001718
1719 process_migrations(cache, &cache->quiesced_migrations, issue_copy);
1720 process_migrations(cache, &cache->completed_migrations, complete_migration);
1721
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001722 if (commit_if_needed(cache)) {
1723 process_deferred_flush_bios(cache, false);
Joe Thornber304affa2014-06-24 15:36:58 -04001724 process_migrations(cache, &cache->need_commit_migrations, migration_failure);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001725
1726 /*
1727 * FIXME: rollback metadata or just go into a
1728 * failure mode and error everything
1729 */
1730 } else {
1731 process_deferred_flush_bios(cache, true);
1732 process_migrations(cache, &cache->need_commit_migrations,
1733 migration_success_post_commit);
1734 }
Joe Thornber66cb1912013-10-30 17:11:58 +00001735
1736 ack_quiescing(cache);
1737
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001738 } while (more_work(cache));
1739}
1740
1741/*
1742 * We want to commit periodically so that not too much
1743 * unwritten metadata builds up.
1744 */
1745static void do_waker(struct work_struct *ws)
1746{
1747 struct cache *cache = container_of(to_delayed_work(ws), struct cache, waker);
Joe Thornberf8350da2013-05-10 14:37:16 +01001748 policy_tick(cache->policy);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001749 wake_worker(cache);
1750 queue_delayed_work(cache->wq, &cache->waker, COMMIT_PERIOD);
1751}
1752
1753/*----------------------------------------------------------------*/
1754
1755static int is_congested(struct dm_dev *dev, int bdi_bits)
1756{
1757 struct request_queue *q = bdev_get_queue(dev->bdev);
1758 return bdi_congested(&q->backing_dev_info, bdi_bits);
1759}
1760
1761static int cache_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
1762{
1763 struct cache *cache = container_of(cb, struct cache, callbacks);
1764
1765 return is_congested(cache->origin_dev, bdi_bits) ||
1766 is_congested(cache->cache_dev, bdi_bits);
1767}
1768
1769/*----------------------------------------------------------------
1770 * Target methods
1771 *--------------------------------------------------------------*/
1772
1773/*
1774 * This function gets called on the error paths of the constructor, so we
1775 * have to cope with a partially initialised struct.
1776 */
1777static void destroy(struct cache *cache)
1778{
1779 unsigned i;
1780
1781 if (cache->next_migration)
1782 mempool_free(cache->next_migration, cache->migration_pool);
1783
1784 if (cache->migration_pool)
1785 mempool_destroy(cache->migration_pool);
1786
1787 if (cache->all_io_ds)
1788 dm_deferred_set_destroy(cache->all_io_ds);
1789
1790 if (cache->prison)
1791 dm_bio_prison_destroy(cache->prison);
1792
1793 if (cache->wq)
1794 destroy_workqueue(cache->wq);
1795
1796 if (cache->dirty_bitset)
1797 free_bitset(cache->dirty_bitset);
1798
1799 if (cache->discard_bitset)
1800 free_bitset(cache->discard_bitset);
1801
1802 if (cache->copier)
1803 dm_kcopyd_client_destroy(cache->copier);
1804
1805 if (cache->cmd)
1806 dm_cache_metadata_close(cache->cmd);
1807
1808 if (cache->metadata_dev)
1809 dm_put_device(cache->ti, cache->metadata_dev);
1810
1811 if (cache->origin_dev)
1812 dm_put_device(cache->ti, cache->origin_dev);
1813
1814 if (cache->cache_dev)
1815 dm_put_device(cache->ti, cache->cache_dev);
1816
1817 if (cache->policy)
1818 dm_cache_policy_destroy(cache->policy);
1819
1820 for (i = 0; i < cache->nr_ctr_args ; i++)
1821 kfree(cache->ctr_args[i]);
1822 kfree(cache->ctr_args);
1823
1824 kfree(cache);
1825}
1826
1827static void cache_dtr(struct dm_target *ti)
1828{
1829 struct cache *cache = ti->private;
1830
1831 destroy(cache);
1832}
1833
1834static sector_t get_dev_size(struct dm_dev *dev)
1835{
1836 return i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT;
1837}
1838
1839/*----------------------------------------------------------------*/
1840
1841/*
1842 * Construct a cache device mapping.
1843 *
1844 * cache <metadata dev> <cache dev> <origin dev> <block size>
1845 * <#feature args> [<feature arg>]*
1846 * <policy> <#policy args> [<policy arg>]*
1847 *
1848 * metadata dev : fast device holding the persistent metadata
1849 * cache dev : fast device holding cached data blocks
1850 * origin dev : slow device holding original data blocks
1851 * block size : cache unit size in sectors
1852 *
1853 * #feature args : number of feature arguments passed
1854 * feature args : writethrough. (The default is writeback.)
1855 *
1856 * policy : the replacement policy to use
1857 * #policy args : an even number of policy arguments corresponding
1858 * to key/value pairs passed to the policy
1859 * policy args : key/value pairs passed to the policy
1860 * E.g. 'sequential_threshold 1024'
1861 * See cache-policies.txt for details.
1862 *
1863 * Optional feature arguments are:
1864 * writethrough : write through caching that prohibits cache block
1865 * content from being different from origin block content.
1866 * Without this argument, the default behaviour is to write
1867 * back cache block contents later for performance reasons,
1868 * so they may differ from the corresponding origin blocks.
1869 */
1870struct cache_args {
1871 struct dm_target *ti;
1872
1873 struct dm_dev *metadata_dev;
1874
1875 struct dm_dev *cache_dev;
1876 sector_t cache_sectors;
1877
1878 struct dm_dev *origin_dev;
1879 sector_t origin_sectors;
1880
1881 uint32_t block_size;
1882
1883 const char *policy_name;
1884 int policy_argc;
1885 const char **policy_argv;
1886
1887 struct cache_features features;
1888};
1889
1890static void destroy_cache_args(struct cache_args *ca)
1891{
1892 if (ca->metadata_dev)
1893 dm_put_device(ca->ti, ca->metadata_dev);
1894
1895 if (ca->cache_dev)
1896 dm_put_device(ca->ti, ca->cache_dev);
1897
1898 if (ca->origin_dev)
1899 dm_put_device(ca->ti, ca->origin_dev);
1900
1901 kfree(ca);
1902}
1903
1904static bool at_least_one_arg(struct dm_arg_set *as, char **error)
1905{
1906 if (!as->argc) {
1907 *error = "Insufficient args";
1908 return false;
1909 }
1910
1911 return true;
1912}
1913
1914static int parse_metadata_dev(struct cache_args *ca, struct dm_arg_set *as,
1915 char **error)
1916{
1917 int r;
1918 sector_t metadata_dev_size;
1919 char b[BDEVNAME_SIZE];
1920
1921 if (!at_least_one_arg(as, error))
1922 return -EINVAL;
1923
1924 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1925 &ca->metadata_dev);
1926 if (r) {
1927 *error = "Error opening metadata device";
1928 return r;
1929 }
1930
1931 metadata_dev_size = get_dev_size(ca->metadata_dev);
1932 if (metadata_dev_size > DM_CACHE_METADATA_MAX_SECTORS_WARNING)
1933 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
1934 bdevname(ca->metadata_dev->bdev, b), THIN_METADATA_MAX_SECTORS);
1935
1936 return 0;
1937}
1938
1939static int parse_cache_dev(struct cache_args *ca, struct dm_arg_set *as,
1940 char **error)
1941{
1942 int r;
1943
1944 if (!at_least_one_arg(as, error))
1945 return -EINVAL;
1946
1947 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1948 &ca->cache_dev);
1949 if (r) {
1950 *error = "Error opening cache device";
1951 return r;
1952 }
1953 ca->cache_sectors = get_dev_size(ca->cache_dev);
1954
1955 return 0;
1956}
1957
1958static int parse_origin_dev(struct cache_args *ca, struct dm_arg_set *as,
1959 char **error)
1960{
1961 int r;
1962
1963 if (!at_least_one_arg(as, error))
1964 return -EINVAL;
1965
1966 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1967 &ca->origin_dev);
1968 if (r) {
1969 *error = "Error opening origin device";
1970 return r;
1971 }
1972
1973 ca->origin_sectors = get_dev_size(ca->origin_dev);
1974 if (ca->ti->len > ca->origin_sectors) {
1975 *error = "Device size larger than cached device";
1976 return -EINVAL;
1977 }
1978
1979 return 0;
1980}
1981
1982static int parse_block_size(struct cache_args *ca, struct dm_arg_set *as,
1983 char **error)
1984{
Mike Snitzer05473042013-08-16 10:54:19 -04001985 unsigned long block_size;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001986
1987 if (!at_least_one_arg(as, error))
1988 return -EINVAL;
1989
Mike Snitzer05473042013-08-16 10:54:19 -04001990 if (kstrtoul(dm_shift_arg(as), 10, &block_size) || !block_size ||
1991 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
1992 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
1993 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001994 *error = "Invalid data block size";
1995 return -EINVAL;
1996 }
1997
Mike Snitzer05473042013-08-16 10:54:19 -04001998 if (block_size > ca->cache_sectors) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001999 *error = "Data block size is larger than the cache device";
2000 return -EINVAL;
2001 }
2002
Mike Snitzer05473042013-08-16 10:54:19 -04002003 ca->block_size = block_size;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002004
2005 return 0;
2006}
2007
2008static void init_features(struct cache_features *cf)
2009{
2010 cf->mode = CM_WRITE;
Joe Thornber2ee57d52013-10-24 14:10:29 -04002011 cf->io_mode = CM_IO_WRITEBACK;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002012}
2013
2014static int parse_features(struct cache_args *ca, struct dm_arg_set *as,
2015 char **error)
2016{
2017 static struct dm_arg _args[] = {
2018 {0, 1, "Invalid number of cache feature arguments"},
2019 };
2020
2021 int r;
2022 unsigned argc;
2023 const char *arg;
2024 struct cache_features *cf = &ca->features;
2025
2026 init_features(cf);
2027
2028 r = dm_read_arg_group(_args, as, &argc, error);
2029 if (r)
2030 return -EINVAL;
2031
2032 while (argc--) {
2033 arg = dm_shift_arg(as);
2034
2035 if (!strcasecmp(arg, "writeback"))
Joe Thornber2ee57d52013-10-24 14:10:29 -04002036 cf->io_mode = CM_IO_WRITEBACK;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002037
2038 else if (!strcasecmp(arg, "writethrough"))
Joe Thornber2ee57d52013-10-24 14:10:29 -04002039 cf->io_mode = CM_IO_WRITETHROUGH;
2040
2041 else if (!strcasecmp(arg, "passthrough"))
2042 cf->io_mode = CM_IO_PASSTHROUGH;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002043
2044 else {
2045 *error = "Unrecognised cache feature requested";
2046 return -EINVAL;
2047 }
2048 }
2049
2050 return 0;
2051}
2052
2053static int parse_policy(struct cache_args *ca, struct dm_arg_set *as,
2054 char **error)
2055{
2056 static struct dm_arg _args[] = {
2057 {0, 1024, "Invalid number of policy arguments"},
2058 };
2059
2060 int r;
2061
2062 if (!at_least_one_arg(as, error))
2063 return -EINVAL;
2064
2065 ca->policy_name = dm_shift_arg(as);
2066
2067 r = dm_read_arg_group(_args, as, &ca->policy_argc, error);
2068 if (r)
2069 return -EINVAL;
2070
2071 ca->policy_argv = (const char **)as->argv;
2072 dm_consume_args(as, ca->policy_argc);
2073
2074 return 0;
2075}
2076
2077static int parse_cache_args(struct cache_args *ca, int argc, char **argv,
2078 char **error)
2079{
2080 int r;
2081 struct dm_arg_set as;
2082
2083 as.argc = argc;
2084 as.argv = argv;
2085
2086 r = parse_metadata_dev(ca, &as, error);
2087 if (r)
2088 return r;
2089
2090 r = parse_cache_dev(ca, &as, error);
2091 if (r)
2092 return r;
2093
2094 r = parse_origin_dev(ca, &as, error);
2095 if (r)
2096 return r;
2097
2098 r = parse_block_size(ca, &as, error);
2099 if (r)
2100 return r;
2101
2102 r = parse_features(ca, &as, error);
2103 if (r)
2104 return r;
2105
2106 r = parse_policy(ca, &as, error);
2107 if (r)
2108 return r;
2109
2110 return 0;
2111}
2112
2113/*----------------------------------------------------------------*/
2114
2115static struct kmem_cache *migration_cache;
2116
Alasdair G Kergon2c73c472013-05-10 14:37:21 +01002117#define NOT_CORE_OPTION 1
2118
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002119static int process_config_option(struct cache *cache, const char *key, const char *value)
Alasdair G Kergon2c73c472013-05-10 14:37:21 +01002120{
2121 unsigned long tmp;
2122
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002123 if (!strcasecmp(key, "migration_threshold")) {
2124 if (kstrtoul(value, 10, &tmp))
Alasdair G Kergon2c73c472013-05-10 14:37:21 +01002125 return -EINVAL;
2126
2127 cache->migration_threshold = tmp;
2128 return 0;
2129 }
2130
2131 return NOT_CORE_OPTION;
2132}
2133
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002134static int set_config_value(struct cache *cache, const char *key, const char *value)
2135{
2136 int r = process_config_option(cache, key, value);
2137
2138 if (r == NOT_CORE_OPTION)
2139 r = policy_set_config_value(cache->policy, key, value);
2140
2141 if (r)
2142 DMWARN("bad config value for %s: %s", key, value);
2143
2144 return r;
2145}
2146
2147static int set_config_values(struct cache *cache, int argc, const char **argv)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002148{
2149 int r = 0;
2150
2151 if (argc & 1) {
2152 DMWARN("Odd number of policy arguments given but they should be <key> <value> pairs.");
2153 return -EINVAL;
2154 }
2155
2156 while (argc) {
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002157 r = set_config_value(cache, argv[0], argv[1]);
2158 if (r)
2159 break;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002160
2161 argc -= 2;
2162 argv += 2;
2163 }
2164
2165 return r;
2166}
2167
2168static int create_cache_policy(struct cache *cache, struct cache_args *ca,
2169 char **error)
2170{
Mikulas Patocka4cb3e1d2013-10-01 18:35:39 -04002171 struct dm_cache_policy *p = dm_cache_policy_create(ca->policy_name,
2172 cache->cache_size,
2173 cache->origin_sectors,
2174 cache->sectors_per_block);
2175 if (IS_ERR(p)) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002176 *error = "Error creating cache's policy";
Mikulas Patocka4cb3e1d2013-10-01 18:35:39 -04002177 return PTR_ERR(p);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002178 }
Mikulas Patocka4cb3e1d2013-10-01 18:35:39 -04002179 cache->policy = p;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002180
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002181 return 0;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002182}
2183
Joe Thornberf8350da2013-05-10 14:37:16 +01002184#define DEFAULT_MIGRATION_THRESHOLD 2048
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002185
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002186static int cache_create(struct cache_args *ca, struct cache **result)
2187{
2188 int r = 0;
2189 char **error = &ca->ti->error;
2190 struct cache *cache;
2191 struct dm_target *ti = ca->ti;
2192 dm_block_t origin_blocks;
2193 struct dm_cache_metadata *cmd;
2194 bool may_format = ca->features.mode == CM_WRITE;
2195
2196 cache = kzalloc(sizeof(*cache), GFP_KERNEL);
2197 if (!cache)
2198 return -ENOMEM;
2199
2200 cache->ti = ca->ti;
2201 ti->private = cache;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002202 ti->num_flush_bios = 2;
2203 ti->flush_supported = true;
2204
2205 ti->num_discard_bios = 1;
2206 ti->discards_supported = true;
2207 ti->discard_zeroes_data_unsupported = true;
Heinz Mauelshagenf1daa8382014-05-23 14:10:01 -04002208 /* Discard bios must be split on a block boundary */
2209 ti->split_discard_bios = true;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002210
Joe Thornber8c5008f2013-05-10 14:37:18 +01002211 cache->features = ca->features;
Mike Snitzer19b00922013-04-05 15:36:34 +01002212 ti->per_bio_data_size = get_per_bio_data_size(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002213
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002214 cache->callbacks.congested_fn = cache_is_congested;
2215 dm_table_add_target_callbacks(ti->table, &cache->callbacks);
2216
2217 cache->metadata_dev = ca->metadata_dev;
2218 cache->origin_dev = ca->origin_dev;
2219 cache->cache_dev = ca->cache_dev;
2220
2221 ca->metadata_dev = ca->origin_dev = ca->cache_dev = NULL;
2222
2223 /* FIXME: factor out this whole section */
2224 origin_blocks = cache->origin_sectors = ca->origin_sectors;
Joe Thornber414dd672013-03-20 17:21:25 +00002225 origin_blocks = block_div(origin_blocks, ca->block_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002226 cache->origin_blocks = to_oblock(origin_blocks);
2227
2228 cache->sectors_per_block = ca->block_size;
2229 if (dm_set_target_max_io_len(ti, cache->sectors_per_block)) {
2230 r = -EINVAL;
2231 goto bad;
2232 }
2233
2234 if (ca->block_size & (ca->block_size - 1)) {
2235 dm_block_t cache_size = ca->cache_sectors;
2236
2237 cache->sectors_per_block_shift = -1;
Joe Thornber414dd672013-03-20 17:21:25 +00002238 cache_size = block_div(cache_size, ca->block_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002239 cache->cache_size = to_cblock(cache_size);
2240 } else {
2241 cache->sectors_per_block_shift = __ffs(ca->block_size);
2242 cache->cache_size = to_cblock(ca->cache_sectors >> cache->sectors_per_block_shift);
2243 }
2244
2245 r = create_cache_policy(cache, ca, error);
2246 if (r)
2247 goto bad;
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002248
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002249 cache->policy_nr_args = ca->policy_argc;
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002250 cache->migration_threshold = DEFAULT_MIGRATION_THRESHOLD;
2251
2252 r = set_config_values(cache, ca->policy_argc, ca->policy_argv);
2253 if (r) {
2254 *error = "Error setting cache policy's config values";
2255 goto bad;
2256 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002257
2258 cmd = dm_cache_metadata_open(cache->metadata_dev->bdev,
2259 ca->block_size, may_format,
2260 dm_cache_policy_get_hint_size(cache->policy));
2261 if (IS_ERR(cmd)) {
2262 *error = "Error creating metadata object";
2263 r = PTR_ERR(cmd);
2264 goto bad;
2265 }
2266 cache->cmd = cmd;
2267
Joe Thornber2ee57d52013-10-24 14:10:29 -04002268 if (passthrough_mode(&cache->features)) {
2269 bool all_clean;
2270
2271 r = dm_cache_metadata_all_clean(cache->cmd, &all_clean);
2272 if (r) {
2273 *error = "dm_cache_metadata_all_clean() failed";
2274 goto bad;
2275 }
2276
2277 if (!all_clean) {
2278 *error = "Cannot enter passthrough mode unless all blocks are clean";
2279 r = -EINVAL;
2280 goto bad;
2281 }
2282 }
2283
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002284 spin_lock_init(&cache->lock);
2285 bio_list_init(&cache->deferred_bios);
2286 bio_list_init(&cache->deferred_flush_bios);
Joe Thornbere2e74d62013-03-20 17:21:27 +00002287 bio_list_init(&cache->deferred_writethrough_bios);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002288 INIT_LIST_HEAD(&cache->quiesced_migrations);
2289 INIT_LIST_HEAD(&cache->completed_migrations);
2290 INIT_LIST_HEAD(&cache->need_commit_migrations);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002291 atomic_set(&cache->nr_migrations, 0);
2292 init_waitqueue_head(&cache->migration_wait);
2293
Joe Thornber66cb1912013-10-30 17:11:58 +00002294 init_waitqueue_head(&cache->quiescing_wait);
Joe Thornber238f8362013-10-30 17:29:30 +00002295 atomic_set(&cache->quiescing, 0);
Joe Thornber66cb1912013-10-30 17:11:58 +00002296 atomic_set(&cache->quiescing_ack, 0);
2297
Wei Yongjunfa4d6832013-05-10 14:37:14 +01002298 r = -ENOMEM;
Anssi Hannula44fa8162014-08-01 11:55:47 -04002299 atomic_set(&cache->nr_dirty, 0);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002300 cache->dirty_bitset = alloc_bitset(from_cblock(cache->cache_size));
2301 if (!cache->dirty_bitset) {
2302 *error = "could not allocate dirty bitset";
2303 goto bad;
2304 }
2305 clear_bitset(cache->dirty_bitset, from_cblock(cache->cache_size));
2306
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04002307 cache->discard_nr_blocks = cache->origin_blocks;
2308 cache->discard_bitset = alloc_bitset(from_oblock(cache->discard_nr_blocks));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002309 if (!cache->discard_bitset) {
2310 *error = "could not allocate discard bitset";
2311 goto bad;
2312 }
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04002313 clear_bitset(cache->discard_bitset, from_oblock(cache->discard_nr_blocks));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002314
2315 cache->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
2316 if (IS_ERR(cache->copier)) {
2317 *error = "could not create kcopyd client";
2318 r = PTR_ERR(cache->copier);
2319 goto bad;
2320 }
2321
2322 cache->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
2323 if (!cache->wq) {
2324 *error = "could not create workqueue for metadata object";
2325 goto bad;
2326 }
2327 INIT_WORK(&cache->worker, do_worker);
2328 INIT_DELAYED_WORK(&cache->waker, do_waker);
2329 cache->last_commit_jiffies = jiffies;
2330
2331 cache->prison = dm_bio_prison_create(PRISON_CELLS);
2332 if (!cache->prison) {
2333 *error = "could not create bio prison";
2334 goto bad;
2335 }
2336
2337 cache->all_io_ds = dm_deferred_set_create();
2338 if (!cache->all_io_ds) {
2339 *error = "could not create all_io deferred set";
2340 goto bad;
2341 }
2342
2343 cache->migration_pool = mempool_create_slab_pool(MIGRATION_POOL_SIZE,
2344 migration_cache);
2345 if (!cache->migration_pool) {
2346 *error = "Error creating cache's migration mempool";
2347 goto bad;
2348 }
2349
2350 cache->next_migration = NULL;
2351
2352 cache->need_tick_bio = true;
2353 cache->sized = false;
Joe Thornber65790ff2013-11-08 16:39:50 +00002354 cache->invalidate = false;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002355 cache->commit_requested = false;
2356 cache->loaded_mappings = false;
2357 cache->loaded_discards = false;
2358
2359 load_stats(cache);
2360
2361 atomic_set(&cache->stats.demotion, 0);
2362 atomic_set(&cache->stats.promotion, 0);
2363 atomic_set(&cache->stats.copies_avoided, 0);
2364 atomic_set(&cache->stats.cache_cell_clash, 0);
2365 atomic_set(&cache->stats.commit_count, 0);
2366 atomic_set(&cache->stats.discard_count, 0);
2367
Joe Thornber65790ff2013-11-08 16:39:50 +00002368 spin_lock_init(&cache->invalidation_lock);
2369 INIT_LIST_HEAD(&cache->invalidation_requests);
2370
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002371 *result = cache;
2372 return 0;
2373
2374bad:
2375 destroy(cache);
2376 return r;
2377}
2378
2379static int copy_ctr_args(struct cache *cache, int argc, const char **argv)
2380{
2381 unsigned i;
2382 const char **copy;
2383
2384 copy = kcalloc(argc, sizeof(*copy), GFP_KERNEL);
2385 if (!copy)
2386 return -ENOMEM;
2387 for (i = 0; i < argc; i++) {
2388 copy[i] = kstrdup(argv[i], GFP_KERNEL);
2389 if (!copy[i]) {
2390 while (i--)
2391 kfree(copy[i]);
2392 kfree(copy);
2393 return -ENOMEM;
2394 }
2395 }
2396
2397 cache->nr_ctr_args = argc;
2398 cache->ctr_args = copy;
2399
2400 return 0;
2401}
2402
2403static int cache_ctr(struct dm_target *ti, unsigned argc, char **argv)
2404{
2405 int r = -EINVAL;
2406 struct cache_args *ca;
2407 struct cache *cache = NULL;
2408
2409 ca = kzalloc(sizeof(*ca), GFP_KERNEL);
2410 if (!ca) {
2411 ti->error = "Error allocating memory for cache";
2412 return -ENOMEM;
2413 }
2414 ca->ti = ti;
2415
2416 r = parse_cache_args(ca, argc, argv, &ti->error);
2417 if (r)
2418 goto out;
2419
2420 r = cache_create(ca, &cache);
Heinz Mauelshagen617a0b82013-03-20 17:21:26 +00002421 if (r)
2422 goto out;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002423
2424 r = copy_ctr_args(cache, argc - 3, (const char **)argv + 3);
2425 if (r) {
2426 destroy(cache);
2427 goto out;
2428 }
2429
2430 ti->private = cache;
2431
2432out:
2433 destroy_cache_args(ca);
2434 return r;
2435}
2436
Joe Thornber8c081b52014-05-13 16:18:38 +01002437static int __cache_map(struct cache *cache, struct bio *bio, struct dm_bio_prison_cell **cell)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002438{
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002439 int r;
2440 dm_oblock_t block = get_bio_block(cache, bio);
Mike Snitzer19b00922013-04-05 15:36:34 +01002441 size_t pb_data_size = get_per_bio_data_size(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002442 bool can_migrate = false;
2443 bool discarded_block;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002444 struct policy_result lookup_result;
Heinz Mauelshagene893fba2014-03-12 16:13:39 +01002445 struct per_bio_data *pb = init_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002446
Heinz Mauelshagene893fba2014-03-12 16:13:39 +01002447 if (unlikely(from_oblock(block) >= from_oblock(cache->origin_blocks))) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002448 /*
2449 * This can only occur if the io goes to a partial block at
2450 * the end of the origin device. We don't cache these.
2451 * Just remap to the origin and carry on.
2452 */
Heinz Mauelshagene893fba2014-03-12 16:13:39 +01002453 remap_to_origin(cache, bio);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002454 return DM_MAPIO_REMAPPED;
2455 }
2456
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002457 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA | REQ_DISCARD)) {
2458 defer_bio(cache, bio);
2459 return DM_MAPIO_SUBMITTED;
2460 }
2461
2462 /*
2463 * Check to see if that block is currently migrating.
2464 */
Joe Thornber8c081b52014-05-13 16:18:38 +01002465 *cell = alloc_prison_cell(cache);
2466 if (!*cell) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002467 defer_bio(cache, bio);
2468 return DM_MAPIO_SUBMITTED;
2469 }
2470
Joe Thornber8c081b52014-05-13 16:18:38 +01002471 r = bio_detain(cache, block, bio, *cell,
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002472 (cell_free_fn) free_prison_cell,
Joe Thornber8c081b52014-05-13 16:18:38 +01002473 cache, cell);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002474 if (r) {
2475 if (r < 0)
2476 defer_bio(cache, bio);
2477
2478 return DM_MAPIO_SUBMITTED;
2479 }
2480
2481 discarded_block = is_discarded_oblock(cache, block);
2482
2483 r = policy_map(cache->policy, block, false, can_migrate, discarded_block,
2484 bio, &lookup_result);
2485 if (r == -EWOULDBLOCK) {
Joe Thornber8c081b52014-05-13 16:18:38 +01002486 cell_defer(cache, *cell, true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002487 return DM_MAPIO_SUBMITTED;
2488
2489 } else if (r) {
2490 DMERR_LIMIT("Unexpected return from cache replacement policy: %d", r);
Joe Thornber8c081b52014-05-13 16:18:38 +01002491 cell_defer(cache, *cell, false);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002492 bio_io_error(bio);
2493 return DM_MAPIO_SUBMITTED;
2494 }
2495
Joe Thornber2ee57d52013-10-24 14:10:29 -04002496 r = DM_MAPIO_REMAPPED;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002497 switch (lookup_result.op) {
2498 case POLICY_HIT:
Joe Thornber2ee57d52013-10-24 14:10:29 -04002499 if (passthrough_mode(&cache->features)) {
2500 if (bio_data_dir(bio) == WRITE) {
2501 /*
2502 * We need to invalidate this block, so
2503 * defer for the worker thread.
2504 */
Joe Thornber8c081b52014-05-13 16:18:38 +01002505 cell_defer(cache, *cell, true);
Joe Thornber2ee57d52013-10-24 14:10:29 -04002506 r = DM_MAPIO_SUBMITTED;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002507
Joe Thornber2ee57d52013-10-24 14:10:29 -04002508 } else {
Joe Thornber2ee57d52013-10-24 14:10:29 -04002509 inc_miss_counter(cache, bio);
2510 remap_to_origin_clear_discard(cache, bio, block);
Joe Thornber2ee57d52013-10-24 14:10:29 -04002511 }
2512
2513 } else {
2514 inc_hit_counter(cache, bio);
Joe Thornber2ee57d52013-10-24 14:10:29 -04002515 if (bio_data_dir(bio) == WRITE && writethrough_mode(&cache->features) &&
2516 !is_dirty(cache, lookup_result.cblock))
2517 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
2518 else
2519 remap_to_cache_dirty(cache, bio, block, lookup_result.cblock);
Joe Thornber2ee57d52013-10-24 14:10:29 -04002520 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002521 break;
2522
2523 case POLICY_MISS:
2524 inc_miss_counter(cache, bio);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002525 if (pb->req_nr != 0) {
2526 /*
2527 * This is a duplicate writethrough io that is no
2528 * longer needed because the block has been demoted.
2529 */
2530 bio_endio(bio, 0);
Joe Thornber8c081b52014-05-13 16:18:38 +01002531 cell_defer(cache, *cell, false);
2532 r = DM_MAPIO_SUBMITTED;
2533
2534 } else
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002535 remap_to_origin_clear_discard(cache, bio, block);
Joe Thornber8c081b52014-05-13 16:18:38 +01002536
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002537 break;
2538
2539 default:
2540 DMERR_LIMIT("%s: erroring bio: unknown policy op: %u", __func__,
2541 (unsigned) lookup_result.op);
Joe Thornber8c081b52014-05-13 16:18:38 +01002542 cell_defer(cache, *cell, false);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002543 bio_io_error(bio);
Joe Thornber2ee57d52013-10-24 14:10:29 -04002544 r = DM_MAPIO_SUBMITTED;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002545 }
2546
Joe Thornber2ee57d52013-10-24 14:10:29 -04002547 return r;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002548}
2549
Joe Thornber8c081b52014-05-13 16:18:38 +01002550static int cache_map(struct dm_target *ti, struct bio *bio)
2551{
2552 int r;
2553 struct dm_bio_prison_cell *cell;
2554 struct cache *cache = ti->private;
2555
2556 r = __cache_map(cache, bio, &cell);
2557 if (r == DM_MAPIO_REMAPPED) {
2558 inc_ds(cache, bio, cell);
2559 cell_defer(cache, cell, false);
2560 }
2561
2562 return r;
2563}
2564
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002565static int cache_end_io(struct dm_target *ti, struct bio *bio, int error)
2566{
2567 struct cache *cache = ti->private;
2568 unsigned long flags;
Mike Snitzer19b00922013-04-05 15:36:34 +01002569 size_t pb_data_size = get_per_bio_data_size(cache);
2570 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002571
2572 if (pb->tick) {
2573 policy_tick(cache->policy);
2574
2575 spin_lock_irqsave(&cache->lock, flags);
2576 cache->need_tick_bio = true;
2577 spin_unlock_irqrestore(&cache->lock, flags);
2578 }
2579
2580 check_for_quiesced_migrations(cache, pb);
2581
2582 return 0;
2583}
2584
2585static int write_dirty_bitset(struct cache *cache)
2586{
2587 unsigned i, r;
2588
2589 for (i = 0; i < from_cblock(cache->cache_size); i++) {
2590 r = dm_cache_set_dirty(cache->cmd, to_cblock(i),
2591 is_dirty(cache, to_cblock(i)));
2592 if (r)
2593 return r;
2594 }
2595
2596 return 0;
2597}
2598
2599static int write_discard_bitset(struct cache *cache)
2600{
2601 unsigned i, r;
2602
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04002603 r = dm_cache_discard_bitset_resize(cache->cmd, cache->sectors_per_block,
2604 cache->origin_blocks);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002605 if (r) {
2606 DMERR("could not resize on-disk discard bitset");
2607 return r;
2608 }
2609
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04002610 for (i = 0; i < from_oblock(cache->discard_nr_blocks); i++) {
2611 r = dm_cache_set_discard(cache->cmd, to_oblock(i),
2612 is_discarded(cache, to_oblock(i)));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002613 if (r)
2614 return r;
2615 }
2616
2617 return 0;
2618}
2619
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002620/*
2621 * returns true on success
2622 */
2623static bool sync_metadata(struct cache *cache)
2624{
2625 int r1, r2, r3, r4;
2626
2627 r1 = write_dirty_bitset(cache);
2628 if (r1)
2629 DMERR("could not write dirty bitset");
2630
2631 r2 = write_discard_bitset(cache);
2632 if (r2)
2633 DMERR("could not write discard bitset");
2634
2635 save_stats(cache);
2636
Joe Thornber05966612014-04-03 16:16:44 +01002637 r3 = dm_cache_write_hints(cache->cmd, cache->policy);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002638 if (r3)
2639 DMERR("could not write hints");
2640
2641 /*
2642 * If writing the above metadata failed, we still commit, but don't
2643 * set the clean shutdown flag. This will effectively force every
2644 * dirty bit to be set on reload.
2645 */
2646 r4 = dm_cache_commit(cache->cmd, !r1 && !r2 && !r3);
2647 if (r4)
2648 DMERR("could not write cache metadata. Data loss may occur.");
2649
2650 return !r1 && !r2 && !r3 && !r4;
2651}
2652
2653static void cache_postsuspend(struct dm_target *ti)
2654{
2655 struct cache *cache = ti->private;
2656
2657 start_quiescing(cache);
2658 wait_for_migrations(cache);
2659 stop_worker(cache);
2660 requeue_deferred_io(cache);
2661 stop_quiescing(cache);
2662
2663 (void) sync_metadata(cache);
2664}
2665
2666static int load_mapping(void *context, dm_oblock_t oblock, dm_cblock_t cblock,
2667 bool dirty, uint32_t hint, bool hint_valid)
2668{
2669 int r;
2670 struct cache *cache = context;
2671
2672 r = policy_load_mapping(cache->policy, oblock, cblock, hint, hint_valid);
2673 if (r)
2674 return r;
2675
2676 if (dirty)
2677 set_dirty(cache, oblock, cblock);
2678 else
2679 clear_dirty(cache, oblock, cblock);
2680
2681 return 0;
2682}
2683
2684static int load_discard(void *context, sector_t discard_block_size,
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04002685 dm_oblock_t oblock, bool discard)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002686{
2687 struct cache *cache = context;
2688
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002689 if (discard)
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04002690 set_discard(cache, oblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002691 else
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04002692 clear_discard(cache, oblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002693
2694 return 0;
2695}
2696
Joe Thornberf494a9c2013-10-31 13:55:49 -04002697static dm_cblock_t get_cache_dev_size(struct cache *cache)
2698{
2699 sector_t size = get_dev_size(cache->cache_dev);
2700 (void) sector_div(size, cache->sectors_per_block);
2701 return to_cblock(size);
2702}
2703
2704static bool can_resize(struct cache *cache, dm_cblock_t new_size)
2705{
2706 if (from_cblock(new_size) > from_cblock(cache->cache_size))
2707 return true;
2708
2709 /*
2710 * We can't drop a dirty block when shrinking the cache.
2711 */
2712 while (from_cblock(new_size) < from_cblock(cache->cache_size)) {
2713 new_size = to_cblock(from_cblock(new_size) + 1);
2714 if (is_dirty(cache, new_size)) {
2715 DMERR("unable to shrink cache; cache block %llu is dirty",
2716 (unsigned long long) from_cblock(new_size));
2717 return false;
2718 }
2719 }
2720
2721 return true;
2722}
2723
2724static int resize_cache_dev(struct cache *cache, dm_cblock_t new_size)
2725{
2726 int r;
2727
Vincent Pelletier08844802013-11-30 12:58:42 +01002728 r = dm_cache_resize(cache->cmd, new_size);
Joe Thornberf494a9c2013-10-31 13:55:49 -04002729 if (r) {
2730 DMERR("could not resize cache metadata");
2731 return r;
2732 }
2733
2734 cache->cache_size = new_size;
2735
2736 return 0;
2737}
2738
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002739static int cache_preresume(struct dm_target *ti)
2740{
2741 int r = 0;
2742 struct cache *cache = ti->private;
Joe Thornberf494a9c2013-10-31 13:55:49 -04002743 dm_cblock_t csize = get_cache_dev_size(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002744
2745 /*
2746 * Check to see if the cache has resized.
2747 */
Joe Thornberf494a9c2013-10-31 13:55:49 -04002748 if (!cache->sized) {
2749 r = resize_cache_dev(cache, csize);
2750 if (r)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002751 return r;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002752
2753 cache->sized = true;
Joe Thornberf494a9c2013-10-31 13:55:49 -04002754
2755 } else if (csize != cache->cache_size) {
2756 if (!can_resize(cache, csize))
2757 return -EINVAL;
2758
2759 r = resize_cache_dev(cache, csize);
2760 if (r)
2761 return r;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002762 }
2763
2764 if (!cache->loaded_mappings) {
Mike Snitzerea2dd8c2013-03-20 17:21:28 +00002765 r = dm_cache_load_mappings(cache->cmd, cache->policy,
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002766 load_mapping, cache);
2767 if (r) {
2768 DMERR("could not load cache mappings");
2769 return r;
2770 }
2771
2772 cache->loaded_mappings = true;
2773 }
2774
2775 if (!cache->loaded_discards) {
2776 r = dm_cache_load_discards(cache->cmd, load_discard, cache);
2777 if (r) {
2778 DMERR("could not load origin discards");
2779 return r;
2780 }
2781
2782 cache->loaded_discards = true;
2783 }
2784
2785 return r;
2786}
2787
2788static void cache_resume(struct dm_target *ti)
2789{
2790 struct cache *cache = ti->private;
2791
2792 cache->need_tick_bio = true;
2793 do_waker(&cache->waker.work);
2794}
2795
2796/*
2797 * Status format:
2798 *
Mike Snitzer6a388612014-01-09 16:04:12 -05002799 * <metadata block size> <#used metadata blocks>/<#total metadata blocks>
2800 * <cache block size> <#used cache blocks>/<#total cache blocks>
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002801 * <#read hits> <#read misses> <#write hits> <#write misses>
Mike Snitzer6a388612014-01-09 16:04:12 -05002802 * <#demotions> <#promotions> <#dirty>
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002803 * <#features> <features>*
2804 * <#core args> <core args>
Mike Snitzer2e68c4e2014-01-15 21:06:55 -05002805 * <policy name> <#policy args> <policy args>*
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002806 */
2807static void cache_status(struct dm_target *ti, status_type_t type,
2808 unsigned status_flags, char *result, unsigned maxlen)
2809{
2810 int r = 0;
2811 unsigned i;
2812 ssize_t sz = 0;
2813 dm_block_t nr_free_blocks_metadata = 0;
2814 dm_block_t nr_blocks_metadata = 0;
2815 char buf[BDEVNAME_SIZE];
2816 struct cache *cache = ti->private;
2817 dm_cblock_t residency;
2818
2819 switch (type) {
2820 case STATUSTYPE_INFO:
2821 /* Commit to ensure statistics aren't out-of-date */
2822 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti)) {
2823 r = dm_cache_commit(cache->cmd, false);
2824 if (r)
2825 DMERR("could not commit metadata for accurate status");
2826 }
2827
2828 r = dm_cache_get_free_metadata_block_count(cache->cmd,
2829 &nr_free_blocks_metadata);
2830 if (r) {
2831 DMERR("could not get metadata free block count");
2832 goto err;
2833 }
2834
2835 r = dm_cache_get_metadata_dev_size(cache->cmd, &nr_blocks_metadata);
2836 if (r) {
2837 DMERR("could not get metadata device size");
2838 goto err;
2839 }
2840
2841 residency = policy_residency(cache->policy);
2842
Anssi Hannula44fa8162014-08-01 11:55:47 -04002843 DMEMIT("%u %llu/%llu %u %llu/%llu %u %u %u %u %u %u %lu ",
Mike Snitzer895b47d2014-07-14 15:37:18 -04002844 (unsigned)DM_CACHE_METADATA_BLOCK_SIZE,
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002845 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
2846 (unsigned long long)nr_blocks_metadata,
Mike Snitzer6a388612014-01-09 16:04:12 -05002847 cache->sectors_per_block,
2848 (unsigned long long) from_cblock(residency),
2849 (unsigned long long) from_cblock(cache->cache_size),
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002850 (unsigned) atomic_read(&cache->stats.read_hit),
2851 (unsigned) atomic_read(&cache->stats.read_miss),
2852 (unsigned) atomic_read(&cache->stats.write_hit),
2853 (unsigned) atomic_read(&cache->stats.write_miss),
2854 (unsigned) atomic_read(&cache->stats.demotion),
2855 (unsigned) atomic_read(&cache->stats.promotion),
Anssi Hannula44fa8162014-08-01 11:55:47 -04002856 (unsigned long) atomic_read(&cache->nr_dirty));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002857
Joe Thornber2ee57d52013-10-24 14:10:29 -04002858 if (writethrough_mode(&cache->features))
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002859 DMEMIT("1 writethrough ");
Joe Thornber2ee57d52013-10-24 14:10:29 -04002860
2861 else if (passthrough_mode(&cache->features))
2862 DMEMIT("1 passthrough ");
2863
2864 else if (writeback_mode(&cache->features))
2865 DMEMIT("1 writeback ");
2866
2867 else {
2868 DMERR("internal error: unknown io mode: %d", (int) cache->features.io_mode);
2869 goto err;
2870 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002871
2872 DMEMIT("2 migration_threshold %llu ", (unsigned long long) cache->migration_threshold);
Mike Snitzer2e68c4e2014-01-15 21:06:55 -05002873
2874 DMEMIT("%s ", dm_cache_policy_get_name(cache->policy));
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002875 if (sz < maxlen) {
2876 r = policy_emit_config_values(cache->policy, result + sz, maxlen - sz);
2877 if (r)
2878 DMERR("policy_emit_config_values returned %d", r);
2879 }
2880
2881 break;
2882
2883 case STATUSTYPE_TABLE:
2884 format_dev_t(buf, cache->metadata_dev->bdev->bd_dev);
2885 DMEMIT("%s ", buf);
2886 format_dev_t(buf, cache->cache_dev->bdev->bd_dev);
2887 DMEMIT("%s ", buf);
2888 format_dev_t(buf, cache->origin_dev->bdev->bd_dev);
2889 DMEMIT("%s", buf);
2890
2891 for (i = 0; i < cache->nr_ctr_args - 1; i++)
2892 DMEMIT(" %s", cache->ctr_args[i]);
2893 if (cache->nr_ctr_args)
2894 DMEMIT(" %s", cache->ctr_args[cache->nr_ctr_args - 1]);
2895 }
2896
2897 return;
2898
2899err:
2900 DMEMIT("Error");
2901}
2902
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002903/*
Joe Thornber65790ff2013-11-08 16:39:50 +00002904 * A cache block range can take two forms:
2905 *
2906 * i) A single cblock, eg. '3456'
2907 * ii) A begin and end cblock with dots between, eg. 123-234
2908 */
2909static int parse_cblock_range(struct cache *cache, const char *str,
2910 struct cblock_range *result)
2911{
2912 char dummy;
2913 uint64_t b, e;
2914 int r;
2915
2916 /*
2917 * Try and parse form (ii) first.
2918 */
2919 r = sscanf(str, "%llu-%llu%c", &b, &e, &dummy);
2920 if (r < 0)
2921 return r;
2922
2923 if (r == 2) {
2924 result->begin = to_cblock(b);
2925 result->end = to_cblock(e);
2926 return 0;
2927 }
2928
2929 /*
2930 * That didn't work, try form (i).
2931 */
2932 r = sscanf(str, "%llu%c", &b, &dummy);
2933 if (r < 0)
2934 return r;
2935
2936 if (r == 1) {
2937 result->begin = to_cblock(b);
2938 result->end = to_cblock(from_cblock(result->begin) + 1u);
2939 return 0;
2940 }
2941
2942 DMERR("invalid cblock range '%s'", str);
2943 return -EINVAL;
2944}
2945
2946static int validate_cblock_range(struct cache *cache, struct cblock_range *range)
2947{
2948 uint64_t b = from_cblock(range->begin);
2949 uint64_t e = from_cblock(range->end);
2950 uint64_t n = from_cblock(cache->cache_size);
2951
2952 if (b >= n) {
2953 DMERR("begin cblock out of range: %llu >= %llu", b, n);
2954 return -EINVAL;
2955 }
2956
2957 if (e > n) {
2958 DMERR("end cblock out of range: %llu > %llu", e, n);
2959 return -EINVAL;
2960 }
2961
2962 if (b >= e) {
2963 DMERR("invalid cblock range: %llu >= %llu", b, e);
2964 return -EINVAL;
2965 }
2966
2967 return 0;
2968}
2969
2970static int request_invalidation(struct cache *cache, struct cblock_range *range)
2971{
2972 struct invalidation_request req;
2973
2974 INIT_LIST_HEAD(&req.list);
2975 req.cblocks = range;
2976 atomic_set(&req.complete, 0);
2977 req.err = 0;
2978 init_waitqueue_head(&req.result_wait);
2979
2980 spin_lock(&cache->invalidation_lock);
2981 list_add(&req.list, &cache->invalidation_requests);
2982 spin_unlock(&cache->invalidation_lock);
2983 wake_worker(cache);
2984
2985 wait_event(req.result_wait, atomic_read(&req.complete));
2986 return req.err;
2987}
2988
2989static int process_invalidate_cblocks_message(struct cache *cache, unsigned count,
2990 const char **cblock_ranges)
2991{
2992 int r = 0;
2993 unsigned i;
2994 struct cblock_range range;
2995
2996 if (!passthrough_mode(&cache->features)) {
2997 DMERR("cache has to be in passthrough mode for invalidation");
2998 return -EPERM;
2999 }
3000
3001 for (i = 0; i < count; i++) {
3002 r = parse_cblock_range(cache, cblock_ranges[i], &range);
3003 if (r)
3004 break;
3005
3006 r = validate_cblock_range(cache, &range);
3007 if (r)
3008 break;
3009
3010 /*
3011 * Pass begin and end origin blocks to the worker and wake it.
3012 */
3013 r = request_invalidation(cache, &range);
3014 if (r)
3015 break;
3016 }
3017
3018 return r;
3019}
3020
3021/*
3022 * Supports
3023 * "<key> <value>"
3024 * and
3025 * "invalidate_cblocks [(<begin>)|(<begin>-<end>)]*
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003026 *
3027 * The key migration_threshold is supported by the cache target core.
3028 */
3029static int cache_message(struct dm_target *ti, unsigned argc, char **argv)
3030{
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003031 struct cache *cache = ti->private;
3032
Joe Thornber65790ff2013-11-08 16:39:50 +00003033 if (!argc)
3034 return -EINVAL;
3035
Mike Snitzer7b6b2bc2013-11-12 12:17:43 -05003036 if (!strcasecmp(argv[0], "invalidate_cblocks"))
Joe Thornber65790ff2013-11-08 16:39:50 +00003037 return process_invalidate_cblocks_message(cache, argc - 1, (const char **) argv + 1);
3038
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003039 if (argc != 2)
3040 return -EINVAL;
3041
Joe Thornber2f14f4b2013-05-10 14:37:21 +01003042 return set_config_value(cache, argv[0], argv[1]);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003043}
3044
3045static int cache_iterate_devices(struct dm_target *ti,
3046 iterate_devices_callout_fn fn, void *data)
3047{
3048 int r = 0;
3049 struct cache *cache = ti->private;
3050
3051 r = fn(ti, cache->cache_dev, 0, get_dev_size(cache->cache_dev), data);
3052 if (!r)
3053 r = fn(ti, cache->origin_dev, 0, ti->len, data);
3054
3055 return r;
3056}
3057
3058/*
3059 * We assume I/O is going to the origin (which is the volume
3060 * more likely to have restrictions e.g. by being striped).
3061 * (Looking up the exact location of the data would be expensive
3062 * and could always be out of date by the time the bio is submitted.)
3063 */
3064static int cache_bvec_merge(struct dm_target *ti,
3065 struct bvec_merge_data *bvm,
3066 struct bio_vec *biovec, int max_size)
3067{
3068 struct cache *cache = ti->private;
3069 struct request_queue *q = bdev_get_queue(cache->origin_dev->bdev);
3070
3071 if (!q->merge_bvec_fn)
3072 return max_size;
3073
3074 bvm->bi_bdev = cache->origin_dev->bdev;
3075 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
3076}
3077
3078static void set_discard_limits(struct cache *cache, struct queue_limits *limits)
3079{
3080 /*
3081 * FIXME: these limits may be incompatible with the cache device
3082 */
Heinz Mauelshagen64ab3462014-03-27 15:14:10 -04003083 limits->max_discard_sectors = cache->sectors_per_block;
3084 limits->discard_granularity = cache->sectors_per_block << SECTOR_SHIFT;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003085}
3086
3087static void cache_io_hints(struct dm_target *ti, struct queue_limits *limits)
3088{
3089 struct cache *cache = ti->private;
Mike Snitzerf6109372013-08-20 15:02:41 -04003090 uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003091
Mike Snitzerf6109372013-08-20 15:02:41 -04003092 /*
3093 * If the system-determined stacked limits are compatible with the
3094 * cache's blocksize (io_opt is a factor) do not override them.
3095 */
3096 if (io_opt_sectors < cache->sectors_per_block ||
3097 do_div(io_opt_sectors, cache->sectors_per_block)) {
Mike Snitzerb0246532014-07-19 13:25:46 -04003098 blk_limits_io_min(limits, cache->sectors_per_block << SECTOR_SHIFT);
Mike Snitzerf6109372013-08-20 15:02:41 -04003099 blk_limits_io_opt(limits, cache->sectors_per_block << SECTOR_SHIFT);
3100 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003101 set_discard_limits(cache, limits);
3102}
3103
3104/*----------------------------------------------------------------*/
3105
3106static struct target_type cache_target = {
3107 .name = "cache",
Joe Thornber8c081b52014-05-13 16:18:38 +01003108 .version = {1, 5, 0},
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00003109 .module = THIS_MODULE,
3110 .ctr = cache_ctr,
3111 .dtr = cache_dtr,
3112 .map = cache_map,
3113 .end_io = cache_end_io,
3114 .postsuspend = cache_postsuspend,
3115 .preresume = cache_preresume,
3116 .resume = cache_resume,
3117 .status = cache_status,
3118 .message = cache_message,
3119 .iterate_devices = cache_iterate_devices,
3120 .merge = cache_bvec_merge,
3121 .io_hints = cache_io_hints,
3122};
3123
3124static int __init dm_cache_init(void)
3125{
3126 int r;
3127
3128 r = dm_register_target(&cache_target);
3129 if (r) {
3130 DMERR("cache target registration failed: %d", r);
3131 return r;
3132 }
3133
3134 migration_cache = KMEM_CACHE(dm_cache_migration, 0);
3135 if (!migration_cache) {
3136 dm_unregister_target(&cache_target);
3137 return -ENOMEM;
3138 }
3139
3140 return 0;
3141}
3142
3143static void __exit dm_cache_exit(void)
3144{
3145 dm_unregister_target(&cache_target);
3146 kmem_cache_destroy(migration_cache);
3147}
3148
3149module_init(dm_cache_init);
3150module_exit(dm_cache_exit);
3151
3152MODULE_DESCRIPTION(DM_NAME " cache target");
3153MODULE_AUTHOR("Joe Thornber <ejt@redhat.com>");
3154MODULE_LICENSE("GPL");