blob: c151cbf80b10cdf963f2be5775e0fd7199134098 [file] [log] [blame]
Joe Thornber991d9fa2011-10-31 20:21:18 +00001/*
Joe Thornbere49e5822012-07-27 15:08:16 +01002 * Copyright (C) 2011-2012 Red Hat UK.
Joe Thornber991d9fa2011-10-31 20:21:18 +00003 *
4 * This file is released under the GPL.
5 */
6
7#include "dm-thin-metadata.h"
Mike Snitzer4f81a412012-10-12 21:02:13 +01008#include "dm-bio-prison.h"
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01009#include "dm.h"
Joe Thornber991d9fa2011-10-31 20:21:18 +000010
11#include <linux/device-mapper.h>
12#include <linux/dm-io.h>
13#include <linux/dm-kcopyd.h>
14#include <linux/list.h>
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/slab.h>
18
19#define DM_MSG_PREFIX "thin"
20
21/*
22 * Tunable constants
23 */
Alasdair G Kergon7768ed32012-07-27 15:07:57 +010024#define ENDIO_HOOK_POOL_SIZE 1024
Joe Thornber991d9fa2011-10-31 20:21:18 +000025#define MAPPING_POOL_SIZE 1024
26#define PRISON_CELLS 1024
Joe Thornber905e51b2012-03-28 18:41:27 +010027#define COMMIT_PERIOD HZ
Joe Thornber991d9fa2011-10-31 20:21:18 +000028
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000029DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle,
30 "A percentage of time allocated for copy on write");
31
Joe Thornber991d9fa2011-10-31 20:21:18 +000032/*
33 * The block size of the device holding pool data must be
34 * between 64KB and 1GB.
35 */
36#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (64 * 1024 >> SECTOR_SHIFT)
37#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
38
39/*
Joe Thornber991d9fa2011-10-31 20:21:18 +000040 * Device id is restricted to 24 bits.
41 */
42#define MAX_DEV_ID ((1 << 24) - 1)
43
44/*
45 * How do we handle breaking sharing of data blocks?
46 * =================================================
47 *
48 * We use a standard copy-on-write btree to store the mappings for the
49 * devices (note I'm talking about copy-on-write of the metadata here, not
50 * the data). When you take an internal snapshot you clone the root node
51 * of the origin btree. After this there is no concept of an origin or a
52 * snapshot. They are just two device trees that happen to point to the
53 * same data blocks.
54 *
55 * When we get a write in we decide if it's to a shared data block using
56 * some timestamp magic. If it is, we have to break sharing.
57 *
58 * Let's say we write to a shared block in what was the origin. The
59 * steps are:
60 *
61 * i) plug io further to this physical block. (see bio_prison code).
62 *
63 * ii) quiesce any read io to that shared data block. Obviously
Mike Snitzer44feb382012-10-12 21:02:10 +010064 * including all devices that share this block. (see dm_deferred_set code)
Joe Thornber991d9fa2011-10-31 20:21:18 +000065 *
66 * iii) copy the data block to a newly allocate block. This step can be
67 * missed out if the io covers the block. (schedule_copy).
68 *
69 * iv) insert the new mapping into the origin's btree
Joe Thornberfe878f32012-03-28 18:41:24 +010070 * (process_prepared_mapping). This act of inserting breaks some
Joe Thornber991d9fa2011-10-31 20:21:18 +000071 * sharing of btree nodes between the two devices. Breaking sharing only
72 * effects the btree of that specific device. Btrees for the other
73 * devices that share the block never change. The btree for the origin
74 * device as it was after the last commit is untouched, ie. we're using
75 * persistent data structures in the functional programming sense.
76 *
77 * v) unplug io to this physical block, including the io that triggered
78 * the breaking of sharing.
79 *
80 * Steps (ii) and (iii) occur in parallel.
81 *
82 * The metadata _doesn't_ need to be committed before the io continues. We
83 * get away with this because the io is always written to a _new_ block.
84 * If there's a crash, then:
85 *
86 * - The origin mapping will point to the old origin block (the shared
87 * one). This will contain the data as it was before the io that triggered
88 * the breaking of sharing came in.
89 *
90 * - The snap mapping still points to the old block. As it would after
91 * the commit.
92 *
93 * The downside of this scheme is the timestamp magic isn't perfect, and
94 * will continue to think that data block in the snapshot device is shared
95 * even after the write to the origin has broken sharing. I suspect data
96 * blocks will typically be shared by many different devices, so we're
97 * breaking sharing n + 1 times, rather than n, where n is the number of
98 * devices that reference this data block. At the moment I think the
99 * benefits far, far outweigh the disadvantages.
100 */
101
102/*----------------------------------------------------------------*/
103
104/*
Joe Thornber991d9fa2011-10-31 20:21:18 +0000105 * Key building.
106 */
107static void build_data_key(struct dm_thin_device *td,
Mike Snitzer44feb382012-10-12 21:02:10 +0100108 dm_block_t b, struct dm_cell_key *key)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000109{
110 key->virtual = 0;
111 key->dev = dm_thin_dev_id(td);
112 key->block = b;
113}
114
115static void build_virtual_key(struct dm_thin_device *td, dm_block_t b,
Mike Snitzer44feb382012-10-12 21:02:10 +0100116 struct dm_cell_key *key)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000117{
118 key->virtual = 1;
119 key->dev = dm_thin_dev_id(td);
120 key->block = b;
121}
122
123/*----------------------------------------------------------------*/
124
125/*
126 * A pool device ties together a metadata device and a data device. It
127 * also provides the interface for creating and destroying internal
128 * devices.
129 */
Mike Snitzera24c2562012-06-03 00:30:00 +0100130struct dm_thin_new_mapping;
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100131
Joe Thornbere49e5822012-07-27 15:08:16 +0100132/*
133 * The pool runs in 3 modes. Ordered in degraded order for comparisons.
134 */
135enum pool_mode {
136 PM_WRITE, /* metadata may be changed */
137 PM_READ_ONLY, /* metadata may not be changed */
138 PM_FAIL, /* all I/O fails */
139};
140
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100141struct pool_features {
Joe Thornbere49e5822012-07-27 15:08:16 +0100142 enum pool_mode mode;
143
Mike Snitzer9bc142d2012-09-26 23:45:46 +0100144 bool zero_new_blocks:1;
145 bool discard_enabled:1;
146 bool discard_passdown:1;
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100147};
148
Joe Thornbere49e5822012-07-27 15:08:16 +0100149struct thin_c;
150typedef void (*process_bio_fn)(struct thin_c *tc, struct bio *bio);
151typedef void (*process_mapping_fn)(struct dm_thin_new_mapping *m);
152
Joe Thornber991d9fa2011-10-31 20:21:18 +0000153struct pool {
154 struct list_head list;
155 struct dm_target *ti; /* Only set if a pool target is bound */
156
157 struct mapped_device *pool_md;
158 struct block_device *md_dev;
159 struct dm_pool_metadata *pmd;
160
Joe Thornber991d9fa2011-10-31 20:21:18 +0000161 dm_block_t low_water_blocks;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100162 uint32_t sectors_per_block;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100163 int sectors_per_block_shift;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000164
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100165 struct pool_features pf;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000166 unsigned low_water_triggered:1; /* A dm event has been sent */
167 unsigned no_free_space:1; /* A -ENOSPC warning has been issued */
168
Mike Snitzer44feb382012-10-12 21:02:10 +0100169 struct dm_bio_prison *prison;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000170 struct dm_kcopyd_client *copier;
171
172 struct workqueue_struct *wq;
173 struct work_struct worker;
Joe Thornber905e51b2012-03-28 18:41:27 +0100174 struct delayed_work waker;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000175
Joe Thornber905e51b2012-03-28 18:41:27 +0100176 unsigned long last_commit_jiffies;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100177 unsigned ref_count;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000178
179 spinlock_t lock;
180 struct bio_list deferred_bios;
181 struct bio_list deferred_flush_bios;
182 struct list_head prepared_mappings;
Joe Thornber104655f2012-03-28 18:41:28 +0100183 struct list_head prepared_discards;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000184
185 struct bio_list retry_on_resume_list;
186
Mike Snitzer44feb382012-10-12 21:02:10 +0100187 struct dm_deferred_set *shared_read_ds;
188 struct dm_deferred_set *all_io_ds;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000189
Mike Snitzera24c2562012-06-03 00:30:00 +0100190 struct dm_thin_new_mapping *next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000191 mempool_t *mapping_pool;
Joe Thornbere49e5822012-07-27 15:08:16 +0100192
193 process_bio_fn process_bio;
194 process_bio_fn process_discard;
195
196 process_mapping_fn process_prepared_mapping;
197 process_mapping_fn process_prepared_discard;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000198};
199
Joe Thornbere49e5822012-07-27 15:08:16 +0100200static enum pool_mode get_pool_mode(struct pool *pool);
201static void set_pool_mode(struct pool *pool, enum pool_mode mode);
202
Joe Thornber991d9fa2011-10-31 20:21:18 +0000203/*
204 * Target context for a pool.
205 */
206struct pool_c {
207 struct dm_target *ti;
208 struct pool *pool;
209 struct dm_dev *data_dev;
210 struct dm_dev *metadata_dev;
211 struct dm_target_callbacks callbacks;
212
213 dm_block_t low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +0100214 struct pool_features requested_pf; /* Features requested during table load */
215 struct pool_features adjusted_pf; /* Features used after adjusting for constituent devices */
Joe Thornber991d9fa2011-10-31 20:21:18 +0000216};
217
218/*
219 * Target context for a thin.
220 */
221struct thin_c {
222 struct dm_dev *pool_dev;
Joe Thornber2dd9c252012-03-28 18:41:28 +0100223 struct dm_dev *origin_dev;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000224 dm_thin_id dev_id;
225
226 struct pool *pool;
227 struct dm_thin_device *td;
228};
229
230/*----------------------------------------------------------------*/
231
Joe Thornber025b9682013-03-01 22:45:50 +0000232/*
233 * wake_worker() is used when new work is queued and when pool_resume is
234 * ready to continue deferred IO processing.
235 */
236static void wake_worker(struct pool *pool)
237{
238 queue_work(pool->wq, &pool->worker);
239}
240
241/*----------------------------------------------------------------*/
242
Joe Thornber6beca5e2013-03-01 22:45:50 +0000243static int bio_detain(struct pool *pool, struct dm_cell_key *key, struct bio *bio,
244 struct dm_bio_prison_cell **cell_result)
245{
246 int r;
247 struct dm_bio_prison_cell *cell_prealloc;
248
249 /*
250 * Allocate a cell from the prison's mempool.
251 * This might block but it can't fail.
252 */
253 cell_prealloc = dm_bio_prison_alloc_cell(pool->prison, GFP_NOIO);
254
255 r = dm_bio_detain(pool->prison, key, bio, cell_prealloc, cell_result);
256 if (r)
257 /*
258 * We reused an old cell; we can get rid of
259 * the new one.
260 */
261 dm_bio_prison_free_cell(pool->prison, cell_prealloc);
262
263 return r;
264}
265
266static void cell_release(struct pool *pool,
267 struct dm_bio_prison_cell *cell,
268 struct bio_list *bios)
269{
270 dm_cell_release(pool->prison, cell, bios);
271 dm_bio_prison_free_cell(pool->prison, cell);
272}
273
274static void cell_release_no_holder(struct pool *pool,
275 struct dm_bio_prison_cell *cell,
276 struct bio_list *bios)
277{
278 dm_cell_release_no_holder(pool->prison, cell, bios);
279 dm_bio_prison_free_cell(pool->prison, cell);
280}
281
Joe Thornber025b9682013-03-01 22:45:50 +0000282static void cell_defer_no_holder_no_free(struct thin_c *tc,
283 struct dm_bio_prison_cell *cell)
284{
285 struct pool *pool = tc->pool;
286 unsigned long flags;
287
288 spin_lock_irqsave(&pool->lock, flags);
289 dm_cell_release_no_holder(pool->prison, cell, &pool->deferred_bios);
290 spin_unlock_irqrestore(&pool->lock, flags);
291
292 wake_worker(pool);
293}
294
Joe Thornber6beca5e2013-03-01 22:45:50 +0000295static void cell_error(struct pool *pool,
296 struct dm_bio_prison_cell *cell)
297{
298 dm_cell_error(pool->prison, cell);
299 dm_bio_prison_free_cell(pool->prison, cell);
300}
301
302/*----------------------------------------------------------------*/
303
Joe Thornber991d9fa2011-10-31 20:21:18 +0000304/*
305 * A global list of pools that uses a struct mapped_device as a key.
306 */
307static struct dm_thin_pool_table {
308 struct mutex mutex;
309 struct list_head pools;
310} dm_thin_pool_table;
311
312static void pool_table_init(void)
313{
314 mutex_init(&dm_thin_pool_table.mutex);
315 INIT_LIST_HEAD(&dm_thin_pool_table.pools);
316}
317
318static void __pool_table_insert(struct pool *pool)
319{
320 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
321 list_add(&pool->list, &dm_thin_pool_table.pools);
322}
323
324static void __pool_table_remove(struct pool *pool)
325{
326 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
327 list_del(&pool->list);
328}
329
330static struct pool *__pool_table_lookup(struct mapped_device *md)
331{
332 struct pool *pool = NULL, *tmp;
333
334 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
335
336 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
337 if (tmp->pool_md == md) {
338 pool = tmp;
339 break;
340 }
341 }
342
343 return pool;
344}
345
346static struct pool *__pool_table_lookup_metadata_dev(struct block_device *md_dev)
347{
348 struct pool *pool = NULL, *tmp;
349
350 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
351
352 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
353 if (tmp->md_dev == md_dev) {
354 pool = tmp;
355 break;
356 }
357 }
358
359 return pool;
360}
361
362/*----------------------------------------------------------------*/
363
Mike Snitzera24c2562012-06-03 00:30:00 +0100364struct dm_thin_endio_hook {
Joe Thornbereb2aa482012-03-28 18:41:28 +0100365 struct thin_c *tc;
Mike Snitzer44feb382012-10-12 21:02:10 +0100366 struct dm_deferred_entry *shared_read_entry;
367 struct dm_deferred_entry *all_io_entry;
Mike Snitzera24c2562012-06-03 00:30:00 +0100368 struct dm_thin_new_mapping *overwrite_mapping;
Joe Thornbereb2aa482012-03-28 18:41:28 +0100369};
370
Joe Thornber991d9fa2011-10-31 20:21:18 +0000371static void __requeue_bio_list(struct thin_c *tc, struct bio_list *master)
372{
373 struct bio *bio;
374 struct bio_list bios;
375
376 bio_list_init(&bios);
377 bio_list_merge(&bios, master);
378 bio_list_init(master);
379
380 while ((bio = bio_list_pop(&bios))) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000381 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100382
Joe Thornbereb2aa482012-03-28 18:41:28 +0100383 if (h->tc == tc)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000384 bio_endio(bio, DM_ENDIO_REQUEUE);
385 else
386 bio_list_add(master, bio);
387 }
388}
389
390static void requeue_io(struct thin_c *tc)
391{
392 struct pool *pool = tc->pool;
393 unsigned long flags;
394
395 spin_lock_irqsave(&pool->lock, flags);
396 __requeue_bio_list(tc, &pool->deferred_bios);
397 __requeue_bio_list(tc, &pool->retry_on_resume_list);
398 spin_unlock_irqrestore(&pool->lock, flags);
399}
400
401/*
402 * This section of code contains the logic for processing a thin device's IO.
403 * Much of the code depends on pool object resources (lists, workqueues, etc)
404 * but most is exclusively called from the thin target rather than the thin-pool
405 * target.
406 */
407
Mike Snitzer58f77a22013-03-01 22:45:45 +0000408static bool block_size_is_power_of_two(struct pool *pool)
409{
410 return pool->sectors_per_block_shift >= 0;
411}
412
Joe Thornber991d9fa2011-10-31 20:21:18 +0000413static dm_block_t get_bio_block(struct thin_c *tc, struct bio *bio)
414{
Mike Snitzer58f77a22013-03-01 22:45:45 +0000415 struct pool *pool = tc->pool;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100416 sector_t block_nr = bio->bi_sector;
417
Mike Snitzer58f77a22013-03-01 22:45:45 +0000418 if (block_size_is_power_of_two(pool))
419 block_nr >>= pool->sectors_per_block_shift;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100420 else
Mike Snitzer58f77a22013-03-01 22:45:45 +0000421 (void) sector_div(block_nr, pool->sectors_per_block);
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100422
423 return block_nr;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000424}
425
426static void remap(struct thin_c *tc, struct bio *bio, dm_block_t block)
427{
428 struct pool *pool = tc->pool;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100429 sector_t bi_sector = bio->bi_sector;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000430
431 bio->bi_bdev = tc->pool_dev->bdev;
Mike Snitzer58f77a22013-03-01 22:45:45 +0000432 if (block_size_is_power_of_two(pool))
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100433 bio->bi_sector = (block << pool->sectors_per_block_shift) |
434 (bi_sector & (pool->sectors_per_block - 1));
Mike Snitzer58f77a22013-03-01 22:45:45 +0000435 else
436 bio->bi_sector = (block * pool->sectors_per_block) +
437 sector_div(bi_sector, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000438}
439
Joe Thornber2dd9c252012-03-28 18:41:28 +0100440static void remap_to_origin(struct thin_c *tc, struct bio *bio)
441{
442 bio->bi_bdev = tc->origin_dev->bdev;
443}
444
Joe Thornber4afdd682012-07-27 15:08:14 +0100445static int bio_triggers_commit(struct thin_c *tc, struct bio *bio)
446{
447 return (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) &&
448 dm_thin_changed_this_transaction(tc->td);
449}
450
Joe Thornbere8088072012-12-21 20:23:31 +0000451static void inc_all_io_entry(struct pool *pool, struct bio *bio)
452{
453 struct dm_thin_endio_hook *h;
454
455 if (bio->bi_rw & REQ_DISCARD)
456 return;
457
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000458 h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbere8088072012-12-21 20:23:31 +0000459 h->all_io_entry = dm_deferred_entry_inc(pool->all_io_ds);
460}
461
Joe Thornber2dd9c252012-03-28 18:41:28 +0100462static void issue(struct thin_c *tc, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000463{
464 struct pool *pool = tc->pool;
465 unsigned long flags;
466
Joe Thornbere49e5822012-07-27 15:08:16 +0100467 if (!bio_triggers_commit(tc, bio)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000468 generic_make_request(bio);
Joe Thornbere49e5822012-07-27 15:08:16 +0100469 return;
470 }
471
472 /*
473 * Complete bio with an error if earlier I/O caused changes to
474 * the metadata that can't be committed e.g, due to I/O errors
475 * on the metadata device.
476 */
477 if (dm_thin_aborted_changes(tc->td)) {
478 bio_io_error(bio);
479 return;
480 }
481
482 /*
483 * Batch together any bios that trigger commits and then issue a
484 * single commit for them in process_deferred_bios().
485 */
486 spin_lock_irqsave(&pool->lock, flags);
487 bio_list_add(&pool->deferred_flush_bios, bio);
488 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000489}
490
Joe Thornber2dd9c252012-03-28 18:41:28 +0100491static void remap_to_origin_and_issue(struct thin_c *tc, struct bio *bio)
492{
493 remap_to_origin(tc, bio);
494 issue(tc, bio);
495}
496
497static void remap_and_issue(struct thin_c *tc, struct bio *bio,
498 dm_block_t block)
499{
500 remap(tc, bio, block);
501 issue(tc, bio);
502}
503
Joe Thornber991d9fa2011-10-31 20:21:18 +0000504/*----------------------------------------------------------------*/
505
506/*
507 * Bio endio functions.
508 */
Mike Snitzera24c2562012-06-03 00:30:00 +0100509struct dm_thin_new_mapping {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000510 struct list_head list;
511
Joe Thornbereb2aa482012-03-28 18:41:28 +0100512 unsigned quiesced:1;
513 unsigned prepared:1;
Joe Thornber104655f2012-03-28 18:41:28 +0100514 unsigned pass_discard:1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000515
516 struct thin_c *tc;
517 dm_block_t virt_block;
518 dm_block_t data_block;
Mike Snitzera24c2562012-06-03 00:30:00 +0100519 struct dm_bio_prison_cell *cell, *cell2;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000520 int err;
521
522 /*
523 * If the bio covers the whole area of a block then we can avoid
524 * zeroing or copying. Instead this bio is hooked. The bio will
525 * still be in the cell, so care has to be taken to avoid issuing
526 * the bio twice.
527 */
528 struct bio *bio;
529 bio_end_io_t *saved_bi_end_io;
530};
531
Mike Snitzera24c2562012-06-03 00:30:00 +0100532static void __maybe_add_mapping(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000533{
534 struct pool *pool = m->tc->pool;
535
Joe Thornbereb2aa482012-03-28 18:41:28 +0100536 if (m->quiesced && m->prepared) {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000537 list_add(&m->list, &pool->prepared_mappings);
538 wake_worker(pool);
539 }
540}
541
542static void copy_complete(int read_err, unsigned long write_err, void *context)
543{
544 unsigned long flags;
Mike Snitzera24c2562012-06-03 00:30:00 +0100545 struct dm_thin_new_mapping *m = context;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000546 struct pool *pool = m->tc->pool;
547
548 m->err = read_err || write_err ? -EIO : 0;
549
550 spin_lock_irqsave(&pool->lock, flags);
551 m->prepared = 1;
552 __maybe_add_mapping(m);
553 spin_unlock_irqrestore(&pool->lock, flags);
554}
555
556static void overwrite_endio(struct bio *bio, int err)
557{
558 unsigned long flags;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000559 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100560 struct dm_thin_new_mapping *m = h->overwrite_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000561 struct pool *pool = m->tc->pool;
562
563 m->err = err;
564
565 spin_lock_irqsave(&pool->lock, flags);
566 m->prepared = 1;
567 __maybe_add_mapping(m);
568 spin_unlock_irqrestore(&pool->lock, flags);
569}
570
Joe Thornber991d9fa2011-10-31 20:21:18 +0000571/*----------------------------------------------------------------*/
572
573/*
574 * Workqueue.
575 */
576
577/*
578 * Prepared mapping jobs.
579 */
580
581/*
582 * This sends the bios in the cell back to the deferred_bios list.
583 */
Joe Thornber2aab3852012-12-21 20:23:33 +0000584static void cell_defer(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000585{
586 struct pool *pool = tc->pool;
587 unsigned long flags;
588
589 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000590 cell_release(pool, cell, &pool->deferred_bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000591 spin_unlock_irqrestore(&tc->pool->lock, flags);
592
593 wake_worker(pool);
594}
595
596/*
Joe Thornber6beca5e2013-03-01 22:45:50 +0000597 * Same as cell_defer above, except it omits the original holder of the cell.
Joe Thornber991d9fa2011-10-31 20:21:18 +0000598 */
Joe Thornberf286ba02012-12-21 20:23:33 +0000599static void cell_defer_no_holder(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000600{
Joe Thornber991d9fa2011-10-31 20:21:18 +0000601 struct pool *pool = tc->pool;
602 unsigned long flags;
603
Joe Thornber991d9fa2011-10-31 20:21:18 +0000604 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000605 cell_release_no_holder(pool, cell, &pool->deferred_bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000606 spin_unlock_irqrestore(&pool->lock, flags);
607
608 wake_worker(pool);
609}
610
Joe Thornbere49e5822012-07-27 15:08:16 +0100611static void process_prepared_mapping_fail(struct dm_thin_new_mapping *m)
612{
613 if (m->bio)
614 m->bio->bi_end_io = m->saved_bi_end_io;
Joe Thornber6beca5e2013-03-01 22:45:50 +0000615 cell_error(m->tc->pool, m->cell);
Joe Thornbere49e5822012-07-27 15:08:16 +0100616 list_del(&m->list);
617 mempool_free(m, m->tc->pool->mapping_pool);
618}
Joe Thornber025b9682013-03-01 22:45:50 +0000619
Mike Snitzera24c2562012-06-03 00:30:00 +0100620static void process_prepared_mapping(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000621{
622 struct thin_c *tc = m->tc;
Joe Thornber6beca5e2013-03-01 22:45:50 +0000623 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000624 struct bio *bio;
625 int r;
626
627 bio = m->bio;
628 if (bio)
629 bio->bi_end_io = m->saved_bi_end_io;
630
631 if (m->err) {
Joe Thornber6beca5e2013-03-01 22:45:50 +0000632 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100633 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000634 }
635
636 /*
637 * Commit the prepared block into the mapping btree.
638 * Any I/O for this block arriving after this point will get
639 * remapped to it directly.
640 */
641 r = dm_thin_insert_block(tc->td, m->virt_block, m->data_block);
642 if (r) {
Mike Snitzerc3977412012-12-21 20:23:34 +0000643 DMERR_LIMIT("dm_thin_insert_block() failed");
Joe Thornber6beca5e2013-03-01 22:45:50 +0000644 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100645 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000646 }
647
648 /*
649 * Release any bios held while the block was being provisioned.
650 * If we are processing a write bio that completely covers the block,
651 * we already processed it so can ignore it now when processing
652 * the bios in the cell.
653 */
654 if (bio) {
Joe Thornberf286ba02012-12-21 20:23:33 +0000655 cell_defer_no_holder(tc, m->cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000656 bio_endio(bio, 0);
657 } else
Joe Thornber2aab3852012-12-21 20:23:33 +0000658 cell_defer(tc, m->cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000659
Joe Thornber905386f2012-07-27 15:08:05 +0100660out:
Joe Thornber991d9fa2011-10-31 20:21:18 +0000661 list_del(&m->list);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000662 mempool_free(m, pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000663}
664
Joe Thornbere49e5822012-07-27 15:08:16 +0100665static void process_prepared_discard_fail(struct dm_thin_new_mapping *m)
Joe Thornber104655f2012-03-28 18:41:28 +0100666{
Joe Thornber104655f2012-03-28 18:41:28 +0100667 struct thin_c *tc = m->tc;
668
Joe Thornbere49e5822012-07-27 15:08:16 +0100669 bio_io_error(m->bio);
Joe Thornberf286ba02012-12-21 20:23:33 +0000670 cell_defer_no_holder(tc, m->cell);
671 cell_defer_no_holder(tc, m->cell2);
Joe Thornbere49e5822012-07-27 15:08:16 +0100672 mempool_free(m, tc->pool->mapping_pool);
673}
Joe Thornber104655f2012-03-28 18:41:28 +0100674
Joe Thornbere49e5822012-07-27 15:08:16 +0100675static void process_prepared_discard_passdown(struct dm_thin_new_mapping *m)
676{
677 struct thin_c *tc = m->tc;
678
Joe Thornbere8088072012-12-21 20:23:31 +0000679 inc_all_io_entry(tc->pool, m->bio);
Joe Thornberf286ba02012-12-21 20:23:33 +0000680 cell_defer_no_holder(tc, m->cell);
681 cell_defer_no_holder(tc, m->cell2);
Joe Thornbere8088072012-12-21 20:23:31 +0000682
Joe Thornber104655f2012-03-28 18:41:28 +0100683 if (m->pass_discard)
684 remap_and_issue(tc, m->bio, m->data_block);
685 else
686 bio_endio(m->bio, 0);
687
Joe Thornber104655f2012-03-28 18:41:28 +0100688 mempool_free(m, tc->pool->mapping_pool);
689}
690
Joe Thornbere49e5822012-07-27 15:08:16 +0100691static void process_prepared_discard(struct dm_thin_new_mapping *m)
692{
693 int r;
694 struct thin_c *tc = m->tc;
695
696 r = dm_thin_remove_block(tc->td, m->virt_block);
697 if (r)
Mike Snitzerc3977412012-12-21 20:23:34 +0000698 DMERR_LIMIT("dm_thin_remove_block() failed");
Joe Thornbere49e5822012-07-27 15:08:16 +0100699
700 process_prepared_discard_passdown(m);
701}
702
Joe Thornber104655f2012-03-28 18:41:28 +0100703static void process_prepared(struct pool *pool, struct list_head *head,
Joe Thornbere49e5822012-07-27 15:08:16 +0100704 process_mapping_fn *fn)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000705{
706 unsigned long flags;
707 struct list_head maps;
Mike Snitzera24c2562012-06-03 00:30:00 +0100708 struct dm_thin_new_mapping *m, *tmp;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000709
710 INIT_LIST_HEAD(&maps);
711 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +0100712 list_splice_init(head, &maps);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000713 spin_unlock_irqrestore(&pool->lock, flags);
714
715 list_for_each_entry_safe(m, tmp, &maps, list)
Joe Thornbere49e5822012-07-27 15:08:16 +0100716 (*fn)(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000717}
718
719/*
720 * Deferred bio jobs.
721 */
Joe Thornber104655f2012-03-28 18:41:28 +0100722static int io_overlaps_block(struct pool *pool, struct bio *bio)
723{
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100724 return bio->bi_size == (pool->sectors_per_block << SECTOR_SHIFT);
Joe Thornber104655f2012-03-28 18:41:28 +0100725}
726
Joe Thornber991d9fa2011-10-31 20:21:18 +0000727static int io_overwrites_block(struct pool *pool, struct bio *bio)
728{
Joe Thornber104655f2012-03-28 18:41:28 +0100729 return (bio_data_dir(bio) == WRITE) &&
730 io_overlaps_block(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000731}
732
733static void save_and_set_endio(struct bio *bio, bio_end_io_t **save,
734 bio_end_io_t *fn)
735{
736 *save = bio->bi_end_io;
737 bio->bi_end_io = fn;
738}
739
740static int ensure_next_mapping(struct pool *pool)
741{
742 if (pool->next_mapping)
743 return 0;
744
745 pool->next_mapping = mempool_alloc(pool->mapping_pool, GFP_ATOMIC);
746
747 return pool->next_mapping ? 0 : -ENOMEM;
748}
749
Mike Snitzera24c2562012-06-03 00:30:00 +0100750static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000751{
Mike Snitzera24c2562012-06-03 00:30:00 +0100752 struct dm_thin_new_mapping *r = pool->next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000753
754 BUG_ON(!pool->next_mapping);
755
756 pool->next_mapping = NULL;
757
758 return r;
759}
760
761static void schedule_copy(struct thin_c *tc, dm_block_t virt_block,
Joe Thornber2dd9c252012-03-28 18:41:28 +0100762 struct dm_dev *origin, dm_block_t data_origin,
763 dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +0100764 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000765{
766 int r;
767 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +0100768 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000769
770 INIT_LIST_HEAD(&m->list);
Joe Thornbereb2aa482012-03-28 18:41:28 +0100771 m->quiesced = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000772 m->prepared = 0;
773 m->tc = tc;
774 m->virt_block = virt_block;
775 m->data_block = data_dest;
776 m->cell = cell;
777 m->err = 0;
778 m->bio = NULL;
779
Mike Snitzer44feb382012-10-12 21:02:10 +0100780 if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list))
Joe Thornbereb2aa482012-03-28 18:41:28 +0100781 m->quiesced = 1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000782
783 /*
784 * IO to pool_dev remaps to the pool target's data_dev.
785 *
786 * If the whole block of data is being overwritten, we can issue the
787 * bio immediately. Otherwise we use kcopyd to clone the data first.
788 */
789 if (io_overwrites_block(pool, bio)) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000790 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100791
Joe Thornbereb2aa482012-03-28 18:41:28 +0100792 h->overwrite_mapping = m;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000793 m->bio = bio;
794 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
Joe Thornbere8088072012-12-21 20:23:31 +0000795 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000796 remap_and_issue(tc, bio, data_dest);
797 } else {
798 struct dm_io_region from, to;
799
Joe Thornber2dd9c252012-03-28 18:41:28 +0100800 from.bdev = origin->bdev;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000801 from.sector = data_origin * pool->sectors_per_block;
802 from.count = pool->sectors_per_block;
803
804 to.bdev = tc->pool_dev->bdev;
805 to.sector = data_dest * pool->sectors_per_block;
806 to.count = pool->sectors_per_block;
807
808 r = dm_kcopyd_copy(pool->copier, &from, 1, &to,
809 0, copy_complete, m);
810 if (r < 0) {
811 mempool_free(m, pool->mapping_pool);
Mike Snitzerc3977412012-12-21 20:23:34 +0000812 DMERR_LIMIT("dm_kcopyd_copy() failed");
Joe Thornber6beca5e2013-03-01 22:45:50 +0000813 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000814 }
815 }
816}
817
Joe Thornber2dd9c252012-03-28 18:41:28 +0100818static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block,
819 dm_block_t data_origin, dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +0100820 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber2dd9c252012-03-28 18:41:28 +0100821{
822 schedule_copy(tc, virt_block, tc->pool_dev,
823 data_origin, data_dest, cell, bio);
824}
825
826static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
827 dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +0100828 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber2dd9c252012-03-28 18:41:28 +0100829{
830 schedule_copy(tc, virt_block, tc->origin_dev,
831 virt_block, data_dest, cell, bio);
832}
833
Joe Thornber991d9fa2011-10-31 20:21:18 +0000834static void schedule_zero(struct thin_c *tc, dm_block_t virt_block,
Mike Snitzera24c2562012-06-03 00:30:00 +0100835 dm_block_t data_block, struct dm_bio_prison_cell *cell,
Joe Thornber991d9fa2011-10-31 20:21:18 +0000836 struct bio *bio)
837{
838 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +0100839 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000840
841 INIT_LIST_HEAD(&m->list);
Joe Thornbereb2aa482012-03-28 18:41:28 +0100842 m->quiesced = 1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000843 m->prepared = 0;
844 m->tc = tc;
845 m->virt_block = virt_block;
846 m->data_block = data_block;
847 m->cell = cell;
848 m->err = 0;
849 m->bio = NULL;
850
851 /*
852 * If the whole block of data is being overwritten or we are not
853 * zeroing pre-existing data, we can issue the bio immediately.
854 * Otherwise we use kcopyd to zero the data first.
855 */
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100856 if (!pool->pf.zero_new_blocks)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000857 process_prepared_mapping(m);
858
859 else if (io_overwrites_block(pool, bio)) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000860 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100861
Joe Thornbereb2aa482012-03-28 18:41:28 +0100862 h->overwrite_mapping = m;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000863 m->bio = bio;
864 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
Joe Thornbere8088072012-12-21 20:23:31 +0000865 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000866 remap_and_issue(tc, bio, data_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000867 } else {
868 int r;
869 struct dm_io_region to;
870
871 to.bdev = tc->pool_dev->bdev;
872 to.sector = data_block * pool->sectors_per_block;
873 to.count = pool->sectors_per_block;
874
875 r = dm_kcopyd_zero(pool->copier, 1, &to, 0, copy_complete, m);
876 if (r < 0) {
877 mempool_free(m, pool->mapping_pool);
Mike Snitzerc3977412012-12-21 20:23:34 +0000878 DMERR_LIMIT("dm_kcopyd_zero() failed");
Joe Thornber6beca5e2013-03-01 22:45:50 +0000879 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000880 }
881 }
882}
883
Joe Thornbere49e5822012-07-27 15:08:16 +0100884static int commit(struct pool *pool)
885{
886 int r;
887
888 r = dm_pool_commit_metadata(pool->pmd);
889 if (r)
Mike Snitzer4fa59712013-08-21 17:30:40 -0400890 DMERR_LIMIT("%s: commit failed: error = %d",
891 dm_device_name(pool->pool_md), r);
Joe Thornbere49e5822012-07-27 15:08:16 +0100892
893 return r;
894}
895
896/*
897 * A non-zero return indicates read_only or fail_io mode.
898 * Many callers don't care about the return value.
899 */
900static int commit_or_fallback(struct pool *pool)
901{
902 int r;
903
904 if (get_pool_mode(pool) != PM_WRITE)
905 return -EINVAL;
906
907 r = commit(pool);
908 if (r)
909 set_pool_mode(pool, PM_READ_ONLY);
910
911 return r;
912}
913
Joe Thornber991d9fa2011-10-31 20:21:18 +0000914static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
915{
916 int r;
917 dm_block_t free_blocks;
918 unsigned long flags;
919 struct pool *pool = tc->pool;
920
921 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
922 if (r)
923 return r;
924
925 if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
Joe Thornberb17446d2013-05-10 14:37:18 +0100926 DMWARN("%s: reached low water mark for data device: sending event.",
Joe Thornber991d9fa2011-10-31 20:21:18 +0000927 dm_device_name(pool->pool_md));
928 spin_lock_irqsave(&pool->lock, flags);
929 pool->low_water_triggered = 1;
930 spin_unlock_irqrestore(&pool->lock, flags);
931 dm_table_event(pool->ti->table);
932 }
933
934 if (!free_blocks) {
935 if (pool->no_free_space)
936 return -ENOSPC;
937 else {
938 /*
939 * Try to commit to see if that will free up some
940 * more space.
941 */
Joe Thornbere49e5822012-07-27 15:08:16 +0100942 (void) commit_or_fallback(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000943
944 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
945 if (r)
946 return r;
947
948 /*
949 * If we still have no space we set a flag to avoid
950 * doing all this checking and return -ENOSPC.
951 */
952 if (!free_blocks) {
953 DMWARN("%s: no free space available.",
954 dm_device_name(pool->pool_md));
955 spin_lock_irqsave(&pool->lock, flags);
956 pool->no_free_space = 1;
957 spin_unlock_irqrestore(&pool->lock, flags);
958 return -ENOSPC;
959 }
960 }
961 }
962
963 r = dm_pool_alloc_data_block(pool->pmd, result);
964 if (r)
965 return r;
966
967 return 0;
968}
969
970/*
971 * If we have run out of space, queue bios until the device is
972 * resumed, presumably after having been reloaded with more space.
973 */
974static void retry_on_resume(struct bio *bio)
975{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000976 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +0100977 struct thin_c *tc = h->tc;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000978 struct pool *pool = tc->pool;
979 unsigned long flags;
980
981 spin_lock_irqsave(&pool->lock, flags);
982 bio_list_add(&pool->retry_on_resume_list, bio);
983 spin_unlock_irqrestore(&pool->lock, flags);
984}
985
Joe Thornber6beca5e2013-03-01 22:45:50 +0000986static void no_space(struct pool *pool, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000987{
988 struct bio *bio;
989 struct bio_list bios;
990
991 bio_list_init(&bios);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000992 cell_release(pool, cell, &bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000993
994 while ((bio = bio_list_pop(&bios)))
995 retry_on_resume(bio);
996}
997
Joe Thornber104655f2012-03-28 18:41:28 +0100998static void process_discard(struct thin_c *tc, struct bio *bio)
999{
1000 int r;
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001001 unsigned long flags;
Joe Thornber104655f2012-03-28 18:41:28 +01001002 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001003 struct dm_bio_prison_cell *cell, *cell2;
Mike Snitzer44feb382012-10-12 21:02:10 +01001004 struct dm_cell_key key, key2;
Joe Thornber104655f2012-03-28 18:41:28 +01001005 dm_block_t block = get_bio_block(tc, bio);
1006 struct dm_thin_lookup_result lookup_result;
Mike Snitzera24c2562012-06-03 00:30:00 +01001007 struct dm_thin_new_mapping *m;
Joe Thornber104655f2012-03-28 18:41:28 +01001008
1009 build_virtual_key(tc->td, block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001010 if (bio_detain(tc->pool, &key, bio, &cell))
Joe Thornber104655f2012-03-28 18:41:28 +01001011 return;
1012
1013 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1014 switch (r) {
1015 case 0:
1016 /*
1017 * Check nobody is fiddling with this pool block. This can
1018 * happen if someone's in the process of breaking sharing
1019 * on this block.
1020 */
1021 build_data_key(tc->td, lookup_result.block, &key2);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001022 if (bio_detain(tc->pool, &key2, bio, &cell2)) {
Joe Thornberf286ba02012-12-21 20:23:33 +00001023 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001024 break;
1025 }
1026
1027 if (io_overlaps_block(pool, bio)) {
1028 /*
1029 * IO may still be going to the destination block. We must
1030 * quiesce before we can do the removal.
1031 */
1032 m = get_next_mapping(pool);
1033 m->tc = tc;
Mike Snitzer17b7d632012-07-27 15:07:57 +01001034 m->pass_discard = (!lookup_result.shared) && pool->pf.discard_passdown;
Joe Thornber104655f2012-03-28 18:41:28 +01001035 m->virt_block = block;
1036 m->data_block = lookup_result.block;
1037 m->cell = cell;
1038 m->cell2 = cell2;
1039 m->err = 0;
1040 m->bio = bio;
1041
Mike Snitzer44feb382012-10-12 21:02:10 +01001042 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list)) {
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001043 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001044 list_add(&m->list, &pool->prepared_discards);
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001045 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001046 wake_worker(pool);
1047 }
1048 } else {
Joe Thornbere8088072012-12-21 20:23:31 +00001049 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001050 cell_defer_no_holder(tc, cell);
1051 cell_defer_no_holder(tc, cell2);
Joe Thornbere8088072012-12-21 20:23:31 +00001052
Joe Thornber104655f2012-03-28 18:41:28 +01001053 /*
Mikulas Patocka49296302012-07-27 15:08:03 +01001054 * The DM core makes sure that the discard doesn't span
1055 * a block boundary. So we submit the discard of a
1056 * partial block appropriately.
Joe Thornber104655f2012-03-28 18:41:28 +01001057 */
Mikulas Patocka650d2a02012-07-20 14:25:05 +01001058 if ((!lookup_result.shared) && pool->pf.discard_passdown)
1059 remap_and_issue(tc, bio, lookup_result.block);
1060 else
1061 bio_endio(bio, 0);
Joe Thornber104655f2012-03-28 18:41:28 +01001062 }
1063 break;
1064
1065 case -ENODATA:
1066 /*
1067 * It isn't provisioned, just forget it.
1068 */
Joe Thornberf286ba02012-12-21 20:23:33 +00001069 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001070 bio_endio(bio, 0);
1071 break;
1072
1073 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001074 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1075 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001076 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001077 bio_io_error(bio);
1078 break;
1079 }
1080}
1081
Joe Thornber991d9fa2011-10-31 20:21:18 +00001082static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzer44feb382012-10-12 21:02:10 +01001083 struct dm_cell_key *key,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001084 struct dm_thin_lookup_result *lookup_result,
Mike Snitzera24c2562012-06-03 00:30:00 +01001085 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001086{
1087 int r;
1088 dm_block_t data_block;
1089
1090 r = alloc_data_block(tc, &data_block);
1091 switch (r) {
1092 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001093 schedule_internal_copy(tc, block, lookup_result->block,
1094 data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001095 break;
1096
1097 case -ENOSPC:
Joe Thornber6beca5e2013-03-01 22:45:50 +00001098 no_space(tc->pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001099 break;
1100
1101 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001102 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1103 __func__, r);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001104 cell_error(tc->pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001105 break;
1106 }
1107}
1108
1109static void process_shared_bio(struct thin_c *tc, struct bio *bio,
1110 dm_block_t block,
1111 struct dm_thin_lookup_result *lookup_result)
1112{
Mike Snitzera24c2562012-06-03 00:30:00 +01001113 struct dm_bio_prison_cell *cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001114 struct pool *pool = tc->pool;
Mike Snitzer44feb382012-10-12 21:02:10 +01001115 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001116
1117 /*
1118 * If cell is already occupied, then sharing is already in the process
1119 * of being broken so we have nothing further to do here.
1120 */
1121 build_data_key(tc->td, lookup_result->block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001122 if (bio_detain(pool, &key, bio, &cell))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001123 return;
1124
Joe Thornber60049702012-07-27 15:08:06 +01001125 if (bio_data_dir(bio) == WRITE && bio->bi_size)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001126 break_sharing(tc, bio, block, &key, lookup_result, cell);
1127 else {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001128 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornber991d9fa2011-10-31 20:21:18 +00001129
Mike Snitzer44feb382012-10-12 21:02:10 +01001130 h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
Joe Thornbere8088072012-12-21 20:23:31 +00001131 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001132 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001133
Joe Thornber991d9fa2011-10-31 20:21:18 +00001134 remap_and_issue(tc, bio, lookup_result->block);
1135 }
1136}
1137
1138static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001139 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001140{
1141 int r;
1142 dm_block_t data_block;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001143 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001144
1145 /*
1146 * Remap empty bios (flushes) immediately, without provisioning.
1147 */
1148 if (!bio->bi_size) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001149 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001150 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001151
Joe Thornber991d9fa2011-10-31 20:21:18 +00001152 remap_and_issue(tc, bio, 0);
1153 return;
1154 }
1155
1156 /*
1157 * Fill read bios with zeroes and complete them immediately.
1158 */
1159 if (bio_data_dir(bio) == READ) {
1160 zero_fill_bio(bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001161 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001162 bio_endio(bio, 0);
1163 return;
1164 }
1165
1166 r = alloc_data_block(tc, &data_block);
1167 switch (r) {
1168 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001169 if (tc->origin_dev)
1170 schedule_external_copy(tc, block, data_block, cell, bio);
1171 else
1172 schedule_zero(tc, block, data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001173 break;
1174
1175 case -ENOSPC:
Joe Thornber6beca5e2013-03-01 22:45:50 +00001176 no_space(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001177 break;
1178
1179 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001180 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1181 __func__, r);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001182 set_pool_mode(pool, PM_READ_ONLY);
1183 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001184 break;
1185 }
1186}
1187
1188static void process_bio(struct thin_c *tc, struct bio *bio)
1189{
1190 int r;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001191 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001192 dm_block_t block = get_bio_block(tc, bio);
Mike Snitzera24c2562012-06-03 00:30:00 +01001193 struct dm_bio_prison_cell *cell;
Mike Snitzer44feb382012-10-12 21:02:10 +01001194 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001195 struct dm_thin_lookup_result lookup_result;
1196
1197 /*
1198 * If cell is already occupied, then the block is already
1199 * being provisioned so we have nothing further to do here.
1200 */
1201 build_virtual_key(tc->td, block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001202 if (bio_detain(pool, &key, bio, &cell))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001203 return;
1204
1205 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1206 switch (r) {
1207 case 0:
Joe Thornbere8088072012-12-21 20:23:31 +00001208 if (lookup_result.shared) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001209 process_shared_bio(tc, bio, block, &lookup_result);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001210 cell_defer_no_holder(tc, cell); /* FIXME: pass this cell into process_shared? */
Joe Thornbere8088072012-12-21 20:23:31 +00001211 } else {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001212 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001213 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001214
Joe Thornber991d9fa2011-10-31 20:21:18 +00001215 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001216 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001217 break;
1218
1219 case -ENODATA:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001220 if (bio_data_dir(bio) == READ && tc->origin_dev) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001221 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001222 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001223
Joe Thornber2dd9c252012-03-28 18:41:28 +01001224 remap_to_origin_and_issue(tc, bio);
1225 } else
1226 provision_block(tc, bio, block, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001227 break;
1228
1229 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001230 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1231 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001232 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001233 bio_io_error(bio);
1234 break;
1235 }
1236}
1237
Joe Thornbere49e5822012-07-27 15:08:16 +01001238static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
1239{
1240 int r;
1241 int rw = bio_data_dir(bio);
1242 dm_block_t block = get_bio_block(tc, bio);
1243 struct dm_thin_lookup_result lookup_result;
1244
1245 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1246 switch (r) {
1247 case 0:
1248 if (lookup_result.shared && (rw == WRITE) && bio->bi_size)
1249 bio_io_error(bio);
Joe Thornbere8088072012-12-21 20:23:31 +00001250 else {
1251 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001252 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001253 }
Joe Thornbere49e5822012-07-27 15:08:16 +01001254 break;
1255
1256 case -ENODATA:
1257 if (rw != READ) {
1258 bio_io_error(bio);
1259 break;
1260 }
1261
1262 if (tc->origin_dev) {
Joe Thornbere8088072012-12-21 20:23:31 +00001263 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001264 remap_to_origin_and_issue(tc, bio);
1265 break;
1266 }
1267
1268 zero_fill_bio(bio);
1269 bio_endio(bio, 0);
1270 break;
1271
1272 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001273 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1274 __func__, r);
Joe Thornbere49e5822012-07-27 15:08:16 +01001275 bio_io_error(bio);
1276 break;
1277 }
1278}
1279
1280static void process_bio_fail(struct thin_c *tc, struct bio *bio)
1281{
1282 bio_io_error(bio);
1283}
1284
Joe Thornberac8c3f32013-05-10 14:37:21 +01001285/*
1286 * FIXME: should we also commit due to size of transaction, measured in
1287 * metadata blocks?
1288 */
Joe Thornber905e51b2012-03-28 18:41:27 +01001289static int need_commit_due_to_time(struct pool *pool)
1290{
1291 return jiffies < pool->last_commit_jiffies ||
1292 jiffies > pool->last_commit_jiffies + COMMIT_PERIOD;
1293}
1294
Joe Thornber991d9fa2011-10-31 20:21:18 +00001295static void process_deferred_bios(struct pool *pool)
1296{
1297 unsigned long flags;
1298 struct bio *bio;
1299 struct bio_list bios;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001300
1301 bio_list_init(&bios);
1302
1303 spin_lock_irqsave(&pool->lock, flags);
1304 bio_list_merge(&bios, &pool->deferred_bios);
1305 bio_list_init(&pool->deferred_bios);
1306 spin_unlock_irqrestore(&pool->lock, flags);
1307
1308 while ((bio = bio_list_pop(&bios))) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001309 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001310 struct thin_c *tc = h->tc;
1311
Joe Thornber991d9fa2011-10-31 20:21:18 +00001312 /*
1313 * If we've got no free new_mapping structs, and processing
1314 * this bio might require one, we pause until there are some
1315 * prepared mappings to process.
1316 */
1317 if (ensure_next_mapping(pool)) {
1318 spin_lock_irqsave(&pool->lock, flags);
1319 bio_list_merge(&pool->deferred_bios, &bios);
1320 spin_unlock_irqrestore(&pool->lock, flags);
1321
1322 break;
1323 }
Joe Thornber104655f2012-03-28 18:41:28 +01001324
1325 if (bio->bi_rw & REQ_DISCARD)
Joe Thornbere49e5822012-07-27 15:08:16 +01001326 pool->process_discard(tc, bio);
Joe Thornber104655f2012-03-28 18:41:28 +01001327 else
Joe Thornbere49e5822012-07-27 15:08:16 +01001328 pool->process_bio(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001329 }
1330
1331 /*
1332 * If there are any deferred flush bios, we must commit
1333 * the metadata before issuing them.
1334 */
1335 bio_list_init(&bios);
1336 spin_lock_irqsave(&pool->lock, flags);
1337 bio_list_merge(&bios, &pool->deferred_flush_bios);
1338 bio_list_init(&pool->deferred_flush_bios);
1339 spin_unlock_irqrestore(&pool->lock, flags);
1340
Joe Thornber905e51b2012-03-28 18:41:27 +01001341 if (bio_list_empty(&bios) && !need_commit_due_to_time(pool))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001342 return;
1343
Joe Thornbere49e5822012-07-27 15:08:16 +01001344 if (commit_or_fallback(pool)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001345 while ((bio = bio_list_pop(&bios)))
1346 bio_io_error(bio);
1347 return;
1348 }
Joe Thornber905e51b2012-03-28 18:41:27 +01001349 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001350
1351 while ((bio = bio_list_pop(&bios)))
1352 generic_make_request(bio);
1353}
1354
1355static void do_worker(struct work_struct *ws)
1356{
1357 struct pool *pool = container_of(ws, struct pool, worker);
1358
Joe Thornbere49e5822012-07-27 15:08:16 +01001359 process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
1360 process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001361 process_deferred_bios(pool);
1362}
1363
Joe Thornber905e51b2012-03-28 18:41:27 +01001364/*
1365 * We want to commit periodically so that not too much
1366 * unwritten data builds up.
1367 */
1368static void do_waker(struct work_struct *ws)
1369{
1370 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
1371 wake_worker(pool);
1372 queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
1373}
1374
Joe Thornber991d9fa2011-10-31 20:21:18 +00001375/*----------------------------------------------------------------*/
1376
Joe Thornbere49e5822012-07-27 15:08:16 +01001377static enum pool_mode get_pool_mode(struct pool *pool)
1378{
1379 return pool->pf.mode;
1380}
1381
1382static void set_pool_mode(struct pool *pool, enum pool_mode mode)
1383{
1384 int r;
1385
1386 pool->pf.mode = mode;
1387
1388 switch (mode) {
1389 case PM_FAIL:
Mike Snitzer4fa59712013-08-21 17:30:40 -04001390 DMERR("%s: switching pool to failure mode",
1391 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001392 pool->process_bio = process_bio_fail;
1393 pool->process_discard = process_bio_fail;
1394 pool->process_prepared_mapping = process_prepared_mapping_fail;
1395 pool->process_prepared_discard = process_prepared_discard_fail;
1396 break;
1397
1398 case PM_READ_ONLY:
Mike Snitzer4fa59712013-08-21 17:30:40 -04001399 DMERR("%s: switching pool to read-only mode",
1400 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001401 r = dm_pool_abort_metadata(pool->pmd);
1402 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04001403 DMERR("%s: aborting transaction failed",
1404 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001405 set_pool_mode(pool, PM_FAIL);
1406 } else {
1407 dm_pool_metadata_read_only(pool->pmd);
1408 pool->process_bio = process_bio_read_only;
1409 pool->process_discard = process_discard;
1410 pool->process_prepared_mapping = process_prepared_mapping_fail;
1411 pool->process_prepared_discard = process_prepared_discard_passdown;
1412 }
1413 break;
1414
1415 case PM_WRITE:
1416 pool->process_bio = process_bio;
1417 pool->process_discard = process_discard;
1418 pool->process_prepared_mapping = process_prepared_mapping;
1419 pool->process_prepared_discard = process_prepared_discard;
1420 break;
1421 }
1422}
1423
1424/*----------------------------------------------------------------*/
1425
Joe Thornber991d9fa2011-10-31 20:21:18 +00001426/*
1427 * Mapping functions.
1428 */
1429
1430/*
1431 * Called only while mapping a thin bio to hand it over to the workqueue.
1432 */
1433static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
1434{
1435 unsigned long flags;
1436 struct pool *pool = tc->pool;
1437
1438 spin_lock_irqsave(&pool->lock, flags);
1439 bio_list_add(&pool->deferred_bios, bio);
1440 spin_unlock_irqrestore(&pool->lock, flags);
1441
1442 wake_worker(pool);
1443}
1444
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001445static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
Joe Thornbereb2aa482012-03-28 18:41:28 +01001446{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001447 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001448
1449 h->tc = tc;
1450 h->shared_read_entry = NULL;
Joe Thornbere8088072012-12-21 20:23:31 +00001451 h->all_io_entry = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01001452 h->overwrite_mapping = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01001453}
1454
Joe Thornber991d9fa2011-10-31 20:21:18 +00001455/*
1456 * Non-blocking function called from the thin target's map function.
1457 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001458static int thin_bio_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001459{
1460 int r;
1461 struct thin_c *tc = ti->private;
1462 dm_block_t block = get_bio_block(tc, bio);
1463 struct dm_thin_device *td = tc->td;
1464 struct dm_thin_lookup_result result;
Joe Thornber025b9682013-03-01 22:45:50 +00001465 struct dm_bio_prison_cell cell1, cell2;
1466 struct dm_bio_prison_cell *cell_result;
Joe Thornbere8088072012-12-21 20:23:31 +00001467 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001468
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001469 thin_hook_bio(tc, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001470
1471 if (get_pool_mode(tc->pool) == PM_FAIL) {
1472 bio_io_error(bio);
1473 return DM_MAPIO_SUBMITTED;
1474 }
1475
Joe Thornber104655f2012-03-28 18:41:28 +01001476 if (bio->bi_rw & (REQ_DISCARD | REQ_FLUSH | REQ_FUA)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001477 thin_defer_bio(tc, bio);
1478 return DM_MAPIO_SUBMITTED;
1479 }
1480
1481 r = dm_thin_find_block(td, block, 0, &result);
1482
1483 /*
1484 * Note that we defer readahead too.
1485 */
1486 switch (r) {
1487 case 0:
1488 if (unlikely(result.shared)) {
1489 /*
1490 * We have a race condition here between the
1491 * result.shared value returned by the lookup and
1492 * snapshot creation, which may cause new
1493 * sharing.
1494 *
1495 * To avoid this always quiesce the origin before
1496 * taking the snap. You want to do this anyway to
1497 * ensure a consistent application view
1498 * (i.e. lockfs).
1499 *
1500 * More distant ancestors are irrelevant. The
1501 * shared flag will be set in their case.
1502 */
1503 thin_defer_bio(tc, bio);
Joe Thornbere8088072012-12-21 20:23:31 +00001504 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001505 }
Joe Thornbere8088072012-12-21 20:23:31 +00001506
1507 build_virtual_key(tc->td, block, &key);
Joe Thornber025b9682013-03-01 22:45:50 +00001508 if (dm_bio_detain(tc->pool->prison, &key, bio, &cell1, &cell_result))
Joe Thornbere8088072012-12-21 20:23:31 +00001509 return DM_MAPIO_SUBMITTED;
1510
1511 build_data_key(tc->td, result.block, &key);
Joe Thornber025b9682013-03-01 22:45:50 +00001512 if (dm_bio_detain(tc->pool->prison, &key, bio, &cell2, &cell_result)) {
1513 cell_defer_no_holder_no_free(tc, &cell1);
Joe Thornbere8088072012-12-21 20:23:31 +00001514 return DM_MAPIO_SUBMITTED;
1515 }
1516
1517 inc_all_io_entry(tc->pool, bio);
Joe Thornber025b9682013-03-01 22:45:50 +00001518 cell_defer_no_holder_no_free(tc, &cell2);
1519 cell_defer_no_holder_no_free(tc, &cell1);
Joe Thornbere8088072012-12-21 20:23:31 +00001520
1521 remap(tc, bio, result.block);
1522 return DM_MAPIO_REMAPPED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001523
1524 case -ENODATA:
Joe Thornbere49e5822012-07-27 15:08:16 +01001525 if (get_pool_mode(tc->pool) == PM_READ_ONLY) {
1526 /*
1527 * This block isn't provisioned, and we have no way
1528 * of doing so. Just error it.
1529 */
1530 bio_io_error(bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001531 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01001532 }
1533 /* fall through */
1534
1535 case -EWOULDBLOCK:
Joe Thornber991d9fa2011-10-31 20:21:18 +00001536 /*
1537 * In future, the failed dm_thin_find_block above could
1538 * provide the hint to load the metadata into cache.
1539 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001540 thin_defer_bio(tc, bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001541 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01001542
1543 default:
1544 /*
1545 * Must always call bio_io_error on failure.
1546 * dm_thin_find_block can fail with -EINVAL if the
1547 * pool is switched to fail-io mode.
1548 */
1549 bio_io_error(bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001550 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001551 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001552}
1553
1554static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
1555{
1556 int r;
1557 unsigned long flags;
1558 struct pool_c *pt = container_of(cb, struct pool_c, callbacks);
1559
1560 spin_lock_irqsave(&pt->pool->lock, flags);
1561 r = !bio_list_empty(&pt->pool->retry_on_resume_list);
1562 spin_unlock_irqrestore(&pt->pool->lock, flags);
1563
1564 if (!r) {
1565 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
1566 r = bdi_congested(&q->backing_dev_info, bdi_bits);
1567 }
1568
1569 return r;
1570}
1571
1572static void __requeue_bios(struct pool *pool)
1573{
1574 bio_list_merge(&pool->deferred_bios, &pool->retry_on_resume_list);
1575 bio_list_init(&pool->retry_on_resume_list);
1576}
1577
1578/*----------------------------------------------------------------
1579 * Binding of control targets to a pool object
1580 *--------------------------------------------------------------*/
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001581static bool data_dev_supports_discard(struct pool_c *pt)
1582{
1583 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
1584
1585 return q && blk_queue_discard(q);
1586}
1587
Joe Thornber58051b92013-03-20 17:21:25 +00001588static bool is_factor(sector_t block_size, uint32_t n)
1589{
1590 return !sector_div(block_size, n);
1591}
1592
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001593/*
1594 * If discard_passdown was enabled verify that the data device
Mike Snitzer0424caa2012-09-26 23:45:47 +01001595 * supports discards. Disable discard_passdown if not.
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001596 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01001597static void disable_passdown_if_not_supported(struct pool_c *pt)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001598{
Mike Snitzer0424caa2012-09-26 23:45:47 +01001599 struct pool *pool = pt->pool;
1600 struct block_device *data_bdev = pt->data_dev->bdev;
1601 struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
1602 sector_t block_size = pool->sectors_per_block << SECTOR_SHIFT;
1603 const char *reason = NULL;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001604 char buf[BDEVNAME_SIZE];
1605
Mike Snitzer0424caa2012-09-26 23:45:47 +01001606 if (!pt->adjusted_pf.discard_passdown)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001607 return;
1608
Mike Snitzer0424caa2012-09-26 23:45:47 +01001609 if (!data_dev_supports_discard(pt))
1610 reason = "discard unsupported";
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001611
Mike Snitzer0424caa2012-09-26 23:45:47 +01001612 else if (data_limits->max_discard_sectors < pool->sectors_per_block)
1613 reason = "max discard sectors smaller than a block";
1614
1615 else if (data_limits->discard_granularity > block_size)
1616 reason = "discard granularity larger than a block";
1617
Joe Thornber58051b92013-03-20 17:21:25 +00001618 else if (!is_factor(block_size, data_limits->discard_granularity))
Mike Snitzer0424caa2012-09-26 23:45:47 +01001619 reason = "discard granularity not a factor of block size";
1620
1621 if (reason) {
1622 DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason);
1623 pt->adjusted_pf.discard_passdown = false;
1624 }
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001625}
1626
Joe Thornber991d9fa2011-10-31 20:21:18 +00001627static int bind_control_target(struct pool *pool, struct dm_target *ti)
1628{
1629 struct pool_c *pt = ti->private;
1630
Joe Thornbere49e5822012-07-27 15:08:16 +01001631 /*
1632 * We want to make sure that degraded pools are never upgraded.
1633 */
1634 enum pool_mode old_mode = pool->pf.mode;
Mike Snitzer0424caa2012-09-26 23:45:47 +01001635 enum pool_mode new_mode = pt->adjusted_pf.mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01001636
1637 if (old_mode > new_mode)
1638 new_mode = old_mode;
1639
Joe Thornber991d9fa2011-10-31 20:21:18 +00001640 pool->ti = ti;
1641 pool->low_water_blocks = pt->low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01001642 pool->pf = pt->adjusted_pf;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001643
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001644 set_pool_mode(pool, new_mode);
Mike Snitzerf4026932012-05-19 01:01:01 +01001645
Joe Thornber991d9fa2011-10-31 20:21:18 +00001646 return 0;
1647}
1648
1649static void unbind_control_target(struct pool *pool, struct dm_target *ti)
1650{
1651 if (pool->ti == ti)
1652 pool->ti = NULL;
1653}
1654
1655/*----------------------------------------------------------------
1656 * Pool creation
1657 *--------------------------------------------------------------*/
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001658/* Initialize pool features. */
1659static void pool_features_init(struct pool_features *pf)
1660{
Joe Thornbere49e5822012-07-27 15:08:16 +01001661 pf->mode = PM_WRITE;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001662 pf->zero_new_blocks = true;
1663 pf->discard_enabled = true;
1664 pf->discard_passdown = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001665}
1666
Joe Thornber991d9fa2011-10-31 20:21:18 +00001667static void __pool_destroy(struct pool *pool)
1668{
1669 __pool_table_remove(pool);
1670
1671 if (dm_pool_metadata_close(pool->pmd) < 0)
1672 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
1673
Mike Snitzer44feb382012-10-12 21:02:10 +01001674 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001675 dm_kcopyd_client_destroy(pool->copier);
1676
1677 if (pool->wq)
1678 destroy_workqueue(pool->wq);
1679
1680 if (pool->next_mapping)
1681 mempool_free(pool->next_mapping, pool->mapping_pool);
1682 mempool_destroy(pool->mapping_pool);
Mike Snitzer44feb382012-10-12 21:02:10 +01001683 dm_deferred_set_destroy(pool->shared_read_ds);
1684 dm_deferred_set_destroy(pool->all_io_ds);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001685 kfree(pool);
1686}
1687
Mike Snitzera24c2562012-06-03 00:30:00 +01001688static struct kmem_cache *_new_mapping_cache;
Mike Snitzera24c2562012-06-03 00:30:00 +01001689
Joe Thornber991d9fa2011-10-31 20:21:18 +00001690static struct pool *pool_create(struct mapped_device *pool_md,
1691 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01001692 unsigned long block_size,
1693 int read_only, char **error)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001694{
1695 int r;
1696 void *err_p;
1697 struct pool *pool;
1698 struct dm_pool_metadata *pmd;
Joe Thornbere49e5822012-07-27 15:08:16 +01001699 bool format_device = read_only ? false : true;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001700
Joe Thornbere49e5822012-07-27 15:08:16 +01001701 pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001702 if (IS_ERR(pmd)) {
1703 *error = "Error creating metadata object";
1704 return (struct pool *)pmd;
1705 }
1706
1707 pool = kmalloc(sizeof(*pool), GFP_KERNEL);
1708 if (!pool) {
1709 *error = "Error allocating memory for pool";
1710 err_p = ERR_PTR(-ENOMEM);
1711 goto bad_pool;
1712 }
1713
1714 pool->pmd = pmd;
1715 pool->sectors_per_block = block_size;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +01001716 if (block_size & (block_size - 1))
1717 pool->sectors_per_block_shift = -1;
1718 else
1719 pool->sectors_per_block_shift = __ffs(block_size);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001720 pool->low_water_blocks = 0;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001721 pool_features_init(&pool->pf);
Mike Snitzer44feb382012-10-12 21:02:10 +01001722 pool->prison = dm_bio_prison_create(PRISON_CELLS);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001723 if (!pool->prison) {
1724 *error = "Error creating pool's bio prison";
1725 err_p = ERR_PTR(-ENOMEM);
1726 goto bad_prison;
1727 }
1728
Mikulas Patockadf5d2e92013-03-01 22:45:49 +00001729 pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001730 if (IS_ERR(pool->copier)) {
1731 r = PTR_ERR(pool->copier);
1732 *error = "Error creating pool's kcopyd client";
1733 err_p = ERR_PTR(r);
1734 goto bad_kcopyd_client;
1735 }
1736
1737 /*
1738 * Create singlethreaded workqueue that will service all devices
1739 * that use this metadata.
1740 */
1741 pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
1742 if (!pool->wq) {
1743 *error = "Error creating pool's workqueue";
1744 err_p = ERR_PTR(-ENOMEM);
1745 goto bad_wq;
1746 }
1747
1748 INIT_WORK(&pool->worker, do_worker);
Joe Thornber905e51b2012-03-28 18:41:27 +01001749 INIT_DELAYED_WORK(&pool->waker, do_waker);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001750 spin_lock_init(&pool->lock);
1751 bio_list_init(&pool->deferred_bios);
1752 bio_list_init(&pool->deferred_flush_bios);
1753 INIT_LIST_HEAD(&pool->prepared_mappings);
Joe Thornber104655f2012-03-28 18:41:28 +01001754 INIT_LIST_HEAD(&pool->prepared_discards);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001755 pool->low_water_triggered = 0;
1756 pool->no_free_space = 0;
1757 bio_list_init(&pool->retry_on_resume_list);
Mike Snitzer44feb382012-10-12 21:02:10 +01001758
1759 pool->shared_read_ds = dm_deferred_set_create();
1760 if (!pool->shared_read_ds) {
1761 *error = "Error creating pool's shared read deferred set";
1762 err_p = ERR_PTR(-ENOMEM);
1763 goto bad_shared_read_ds;
1764 }
1765
1766 pool->all_io_ds = dm_deferred_set_create();
1767 if (!pool->all_io_ds) {
1768 *error = "Error creating pool's all io deferred set";
1769 err_p = ERR_PTR(-ENOMEM);
1770 goto bad_all_io_ds;
1771 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001772
1773 pool->next_mapping = NULL;
Mike Snitzera24c2562012-06-03 00:30:00 +01001774 pool->mapping_pool = mempool_create_slab_pool(MAPPING_POOL_SIZE,
1775 _new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001776 if (!pool->mapping_pool) {
1777 *error = "Error creating pool's mapping mempool";
1778 err_p = ERR_PTR(-ENOMEM);
1779 goto bad_mapping_pool;
1780 }
1781
Joe Thornber991d9fa2011-10-31 20:21:18 +00001782 pool->ref_count = 1;
Joe Thornber905e51b2012-03-28 18:41:27 +01001783 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001784 pool->pool_md = pool_md;
1785 pool->md_dev = metadata_dev;
1786 __pool_table_insert(pool);
1787
1788 return pool;
1789
Joe Thornber991d9fa2011-10-31 20:21:18 +00001790bad_mapping_pool:
Mike Snitzer44feb382012-10-12 21:02:10 +01001791 dm_deferred_set_destroy(pool->all_io_ds);
1792bad_all_io_ds:
1793 dm_deferred_set_destroy(pool->shared_read_ds);
1794bad_shared_read_ds:
Joe Thornber991d9fa2011-10-31 20:21:18 +00001795 destroy_workqueue(pool->wq);
1796bad_wq:
1797 dm_kcopyd_client_destroy(pool->copier);
1798bad_kcopyd_client:
Mike Snitzer44feb382012-10-12 21:02:10 +01001799 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001800bad_prison:
1801 kfree(pool);
1802bad_pool:
1803 if (dm_pool_metadata_close(pmd))
1804 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
1805
1806 return err_p;
1807}
1808
1809static void __pool_inc(struct pool *pool)
1810{
1811 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
1812 pool->ref_count++;
1813}
1814
1815static void __pool_dec(struct pool *pool)
1816{
1817 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
1818 BUG_ON(!pool->ref_count);
1819 if (!--pool->ref_count)
1820 __pool_destroy(pool);
1821}
1822
1823static struct pool *__pool_find(struct mapped_device *pool_md,
1824 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01001825 unsigned long block_size, int read_only,
1826 char **error, int *created)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001827{
1828 struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
1829
1830 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01001831 if (pool->pool_md != pool_md) {
1832 *error = "metadata device already in use by a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00001833 return ERR_PTR(-EBUSY);
Mike Snitzerf09996c2012-07-27 15:07:59 +01001834 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001835 __pool_inc(pool);
1836
1837 } else {
1838 pool = __pool_table_lookup(pool_md);
1839 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01001840 if (pool->md_dev != metadata_dev) {
1841 *error = "different pool cannot replace a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00001842 return ERR_PTR(-EINVAL);
Mike Snitzerf09996c2012-07-27 15:07:59 +01001843 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001844 __pool_inc(pool);
1845
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001846 } else {
Joe Thornbere49e5822012-07-27 15:08:16 +01001847 pool = pool_create(pool_md, metadata_dev, block_size, read_only, error);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001848 *created = 1;
1849 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001850 }
1851
1852 return pool;
1853}
1854
1855/*----------------------------------------------------------------
1856 * Pool target methods
1857 *--------------------------------------------------------------*/
1858static void pool_dtr(struct dm_target *ti)
1859{
1860 struct pool_c *pt = ti->private;
1861
1862 mutex_lock(&dm_thin_pool_table.mutex);
1863
1864 unbind_control_target(pt->pool, ti);
1865 __pool_dec(pt->pool);
1866 dm_put_device(ti, pt->metadata_dev);
1867 dm_put_device(ti, pt->data_dev);
1868 kfree(pt);
1869
1870 mutex_unlock(&dm_thin_pool_table.mutex);
1871}
1872
Joe Thornber991d9fa2011-10-31 20:21:18 +00001873static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
1874 struct dm_target *ti)
1875{
1876 int r;
1877 unsigned argc;
1878 const char *arg_name;
1879
1880 static struct dm_arg _args[] = {
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001881 {0, 3, "Invalid number of pool feature arguments"},
Joe Thornber991d9fa2011-10-31 20:21:18 +00001882 };
1883
1884 /*
1885 * No feature arguments supplied.
1886 */
1887 if (!as->argc)
1888 return 0;
1889
1890 r = dm_read_arg_group(_args, as, &argc, &ti->error);
1891 if (r)
1892 return -EINVAL;
1893
1894 while (argc && !r) {
1895 arg_name = dm_shift_arg(as);
1896 argc--;
1897
Joe Thornbere49e5822012-07-27 15:08:16 +01001898 if (!strcasecmp(arg_name, "skip_block_zeroing"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001899 pf->zero_new_blocks = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001900
Joe Thornbere49e5822012-07-27 15:08:16 +01001901 else if (!strcasecmp(arg_name, "ignore_discard"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001902 pf->discard_enabled = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01001903
1904 else if (!strcasecmp(arg_name, "no_discard_passdown"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001905 pf->discard_passdown = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01001906
1907 else if (!strcasecmp(arg_name, "read_only"))
1908 pf->mode = PM_READ_ONLY;
1909
1910 else {
1911 ti->error = "Unrecognised pool feature requested";
1912 r = -EINVAL;
1913 break;
1914 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001915 }
1916
1917 return r;
1918}
1919
Joe Thornberac8c3f32013-05-10 14:37:21 +01001920static void metadata_low_callback(void *context)
1921{
1922 struct pool *pool = context;
1923
1924 DMWARN("%s: reached low water mark for metadata device: sending event.",
1925 dm_device_name(pool->pool_md));
1926
1927 dm_table_event(pool->ti->table);
1928}
1929
Joe Thornberb17446d2013-05-10 14:37:18 +01001930static sector_t get_metadata_dev_size(struct block_device *bdev)
1931{
1932 sector_t metadata_dev_size = i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
1933 char buffer[BDEVNAME_SIZE];
1934
1935 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING) {
1936 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
1937 bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS);
1938 metadata_dev_size = THIN_METADATA_MAX_SECTORS_WARNING;
1939 }
1940
1941 return metadata_dev_size;
1942}
1943
Joe Thornber24347e92013-05-10 14:37:19 +01001944static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
1945{
1946 sector_t metadata_dev_size = get_metadata_dev_size(bdev);
1947
1948 sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE >> SECTOR_SHIFT);
1949
1950 return metadata_dev_size;
1951}
1952
Joe Thornber991d9fa2011-10-31 20:21:18 +00001953/*
Joe Thornberac8c3f32013-05-10 14:37:21 +01001954 * When a metadata threshold is crossed a dm event is triggered, and
1955 * userland should respond by growing the metadata device. We could let
1956 * userland set the threshold, like we do with the data threshold, but I'm
1957 * not sure they know enough to do this well.
1958 */
1959static dm_block_t calc_metadata_threshold(struct pool_c *pt)
1960{
1961 /*
1962 * 4M is ample for all ops with the possible exception of thin
1963 * device deletion which is harmless if it fails (just retry the
1964 * delete after you've grown the device).
1965 */
1966 dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
1967 return min((dm_block_t)1024ULL /* 4M */, quarter);
1968}
1969
1970/*
Joe Thornber991d9fa2011-10-31 20:21:18 +00001971 * thin-pool <metadata dev> <data dev>
1972 * <data block size (sectors)>
1973 * <low water mark (blocks)>
1974 * [<#feature args> [<arg>]*]
1975 *
1976 * Optional feature arguments are:
1977 * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001978 * ignore_discard: disable discard
1979 * no_discard_passdown: don't pass discards down to the data device
Joe Thornber991d9fa2011-10-31 20:21:18 +00001980 */
1981static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv)
1982{
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001983 int r, pool_created = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001984 struct pool_c *pt;
1985 struct pool *pool;
1986 struct pool_features pf;
1987 struct dm_arg_set as;
1988 struct dm_dev *data_dev;
1989 unsigned long block_size;
1990 dm_block_t low_water_blocks;
1991 struct dm_dev *metadata_dev;
Joe Thornber5d0db962013-05-10 14:37:19 +01001992 fmode_t metadata_mode;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001993
1994 /*
1995 * FIXME Remove validation from scope of lock.
1996 */
1997 mutex_lock(&dm_thin_pool_table.mutex);
1998
1999 if (argc < 4) {
2000 ti->error = "Invalid argument count";
2001 r = -EINVAL;
2002 goto out_unlock;
2003 }
Joe Thornber5d0db962013-05-10 14:37:19 +01002004
Joe Thornber991d9fa2011-10-31 20:21:18 +00002005 as.argc = argc;
2006 as.argv = argv;
2007
Joe Thornber5d0db962013-05-10 14:37:19 +01002008 /*
2009 * Set default pool features.
2010 */
2011 pool_features_init(&pf);
2012
2013 dm_consume_args(&as, 4);
2014 r = parse_pool_features(&as, &pf, ti);
2015 if (r)
2016 goto out_unlock;
2017
2018 metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
2019 r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002020 if (r) {
2021 ti->error = "Error opening metadata block device";
2022 goto out_unlock;
2023 }
2024
Joe Thornberb17446d2013-05-10 14:37:18 +01002025 /*
2026 * Run for the side-effect of possibly issuing a warning if the
2027 * device is too big.
2028 */
2029 (void) get_metadata_dev_size(metadata_dev->bdev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002030
2031 r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
2032 if (r) {
2033 ti->error = "Error getting data device";
2034 goto out_metadata;
2035 }
2036
2037 if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
2038 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
2039 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002040 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002041 ti->error = "Invalid block size";
2042 r = -EINVAL;
2043 goto out;
2044 }
2045
2046 if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
2047 ti->error = "Invalid low water mark";
2048 r = -EINVAL;
2049 goto out;
2050 }
2051
Joe Thornber991d9fa2011-10-31 20:21:18 +00002052 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
2053 if (!pt) {
2054 r = -ENOMEM;
2055 goto out;
2056 }
2057
2058 pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002059 block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002060 if (IS_ERR(pool)) {
2061 r = PTR_ERR(pool);
2062 goto out_free_pt;
2063 }
2064
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002065 /*
2066 * 'pool_created' reflects whether this is the first table load.
2067 * Top level discard support is not allowed to be changed after
2068 * initial load. This would require a pool reload to trigger thin
2069 * device changes.
2070 */
2071 if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
2072 ti->error = "Discard support cannot be disabled once enabled";
2073 r = -EINVAL;
2074 goto out_flags_changed;
2075 }
2076
Joe Thornber991d9fa2011-10-31 20:21:18 +00002077 pt->pool = pool;
2078 pt->ti = ti;
2079 pt->metadata_dev = metadata_dev;
2080 pt->data_dev = data_dev;
2081 pt->low_water_blocks = low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002082 pt->adjusted_pf = pt->requested_pf = pf;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002083 ti->num_flush_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002084
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002085 /*
2086 * Only need to enable discards if the pool should pass
2087 * them down to the data device. The thin device's discard
2088 * processing will cause mappings to be removed from the btree.
2089 */
2090 if (pf.discard_enabled && pf.discard_passdown) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002091 ti->num_discard_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002092
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002093 /*
2094 * Setting 'discards_supported' circumvents the normal
2095 * stacking of discard limits (this keeps the pool and
2096 * thin devices' discard limits consistent).
2097 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01002098 ti->discards_supported = true;
Mike Snitzer307615a2012-09-26 23:45:39 +01002099 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002100 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002101 ti->private = pt;
2102
Joe Thornberac8c3f32013-05-10 14:37:21 +01002103 r = dm_pool_register_metadata_threshold(pt->pool->pmd,
2104 calc_metadata_threshold(pt),
2105 metadata_low_callback,
2106 pool);
2107 if (r)
2108 goto out_free_pt;
2109
Joe Thornber991d9fa2011-10-31 20:21:18 +00002110 pt->callbacks.congested_fn = pool_is_congested;
2111 dm_table_add_target_callbacks(ti->table, &pt->callbacks);
2112
2113 mutex_unlock(&dm_thin_pool_table.mutex);
2114
2115 return 0;
2116
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002117out_flags_changed:
2118 __pool_dec(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002119out_free_pt:
2120 kfree(pt);
2121out:
2122 dm_put_device(ti, data_dev);
2123out_metadata:
2124 dm_put_device(ti, metadata_dev);
2125out_unlock:
2126 mutex_unlock(&dm_thin_pool_table.mutex);
2127
2128 return r;
2129}
2130
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002131static int pool_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002132{
2133 int r;
2134 struct pool_c *pt = ti->private;
2135 struct pool *pool = pt->pool;
2136 unsigned long flags;
2137
2138 /*
2139 * As this is a singleton target, ti->begin is always zero.
2140 */
2141 spin_lock_irqsave(&pool->lock, flags);
2142 bio->bi_bdev = pt->data_dev->bdev;
2143 r = DM_MAPIO_REMAPPED;
2144 spin_unlock_irqrestore(&pool->lock, flags);
2145
2146 return r;
2147}
2148
Joe Thornberb17446d2013-05-10 14:37:18 +01002149static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
2150{
2151 int r;
2152 struct pool_c *pt = ti->private;
2153 struct pool *pool = pt->pool;
2154 sector_t data_size = ti->len;
2155 dm_block_t sb_data_size;
2156
2157 *need_commit = false;
2158
2159 (void) sector_div(data_size, pool->sectors_per_block);
2160
2161 r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
2162 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002163 DMERR("%s: failed to retrieve data device size",
2164 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01002165 return r;
2166 }
2167
2168 if (data_size < sb_data_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002169 DMERR("%s: pool target (%llu blocks) too small: expected %llu",
2170 dm_device_name(pool->pool_md),
Joe Thornberb17446d2013-05-10 14:37:18 +01002171 (unsigned long long)data_size, sb_data_size);
2172 return -EINVAL;
2173
2174 } else if (data_size > sb_data_size) {
2175 r = dm_pool_resize_data_dev(pool->pmd, data_size);
2176 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002177 DMERR("%s: failed to resize data device",
2178 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01002179 set_pool_mode(pool, PM_READ_ONLY);
2180 return r;
2181 }
2182
2183 *need_commit = true;
2184 }
2185
2186 return 0;
2187}
2188
Joe Thornber24347e92013-05-10 14:37:19 +01002189static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
2190{
2191 int r;
2192 struct pool_c *pt = ti->private;
2193 struct pool *pool = pt->pool;
2194 dm_block_t metadata_dev_size, sb_metadata_dev_size;
2195
2196 *need_commit = false;
2197
Alasdair G Kergon610bba82013-05-19 18:57:50 +01002198 metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
Joe Thornber24347e92013-05-10 14:37:19 +01002199
2200 r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
2201 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002202 DMERR("%s: failed to retrieve metadata device size",
2203 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01002204 return r;
2205 }
2206
2207 if (metadata_dev_size < sb_metadata_dev_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002208 DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
2209 dm_device_name(pool->pool_md),
Joe Thornber24347e92013-05-10 14:37:19 +01002210 metadata_dev_size, sb_metadata_dev_size);
2211 return -EINVAL;
2212
2213 } else if (metadata_dev_size > sb_metadata_dev_size) {
2214 r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
2215 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002216 DMERR("%s: failed to resize metadata device",
2217 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01002218 return r;
2219 }
2220
2221 *need_commit = true;
2222 }
2223
2224 return 0;
2225}
2226
Joe Thornber991d9fa2011-10-31 20:21:18 +00002227/*
2228 * Retrieves the number of blocks of the data device from
2229 * the superblock and compares it to the actual device size,
2230 * thus resizing the data device in case it has grown.
2231 *
2232 * This both copes with opening preallocated data devices in the ctr
2233 * being followed by a resume
2234 * -and-
2235 * calling the resume method individually after userspace has
2236 * grown the data device in reaction to a table event.
2237 */
2238static int pool_preresume(struct dm_target *ti)
2239{
2240 int r;
Joe Thornber24347e92013-05-10 14:37:19 +01002241 bool need_commit1, need_commit2;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002242 struct pool_c *pt = ti->private;
2243 struct pool *pool = pt->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002244
2245 /*
2246 * Take control of the pool object.
2247 */
2248 r = bind_control_target(pool, ti);
2249 if (r)
2250 return r;
2251
Joe Thornberb17446d2013-05-10 14:37:18 +01002252 r = maybe_resize_data_dev(ti, &need_commit1);
2253 if (r)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002254 return r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002255
Joe Thornber24347e92013-05-10 14:37:19 +01002256 r = maybe_resize_metadata_dev(ti, &need_commit2);
2257 if (r)
2258 return r;
2259
2260 if (need_commit1 || need_commit2)
Joe Thornbere49e5822012-07-27 15:08:16 +01002261 (void) commit_or_fallback(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002262
2263 return 0;
2264}
2265
2266static void pool_resume(struct dm_target *ti)
2267{
2268 struct pool_c *pt = ti->private;
2269 struct pool *pool = pt->pool;
2270 unsigned long flags;
2271
2272 spin_lock_irqsave(&pool->lock, flags);
2273 pool->low_water_triggered = 0;
2274 pool->no_free_space = 0;
2275 __requeue_bios(pool);
2276 spin_unlock_irqrestore(&pool->lock, flags);
2277
Joe Thornber905e51b2012-03-28 18:41:27 +01002278 do_waker(&pool->waker.work);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002279}
2280
2281static void pool_postsuspend(struct dm_target *ti)
2282{
Joe Thornber991d9fa2011-10-31 20:21:18 +00002283 struct pool_c *pt = ti->private;
2284 struct pool *pool = pt->pool;
2285
Joe Thornber905e51b2012-03-28 18:41:27 +01002286 cancel_delayed_work(&pool->waker);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002287 flush_workqueue(pool->wq);
Joe Thornbere49e5822012-07-27 15:08:16 +01002288 (void) commit_or_fallback(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002289}
2290
2291static int check_arg_count(unsigned argc, unsigned args_required)
2292{
2293 if (argc != args_required) {
2294 DMWARN("Message received with %u arguments instead of %u.",
2295 argc, args_required);
2296 return -EINVAL;
2297 }
2298
2299 return 0;
2300}
2301
2302static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
2303{
2304 if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
2305 *dev_id <= MAX_DEV_ID)
2306 return 0;
2307
2308 if (warning)
2309 DMWARN("Message received with invalid device id: %s", arg);
2310
2311 return -EINVAL;
2312}
2313
2314static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool)
2315{
2316 dm_thin_id dev_id;
2317 int r;
2318
2319 r = check_arg_count(argc, 2);
2320 if (r)
2321 return r;
2322
2323 r = read_dev_id(argv[1], &dev_id, 1);
2324 if (r)
2325 return r;
2326
2327 r = dm_pool_create_thin(pool->pmd, dev_id);
2328 if (r) {
2329 DMWARN("Creation of new thinly-provisioned device with id %s failed.",
2330 argv[1]);
2331 return r;
2332 }
2333
2334 return 0;
2335}
2336
2337static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2338{
2339 dm_thin_id dev_id;
2340 dm_thin_id origin_dev_id;
2341 int r;
2342
2343 r = check_arg_count(argc, 3);
2344 if (r)
2345 return r;
2346
2347 r = read_dev_id(argv[1], &dev_id, 1);
2348 if (r)
2349 return r;
2350
2351 r = read_dev_id(argv[2], &origin_dev_id, 1);
2352 if (r)
2353 return r;
2354
2355 r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
2356 if (r) {
2357 DMWARN("Creation of new snapshot %s of device %s failed.",
2358 argv[1], argv[2]);
2359 return r;
2360 }
2361
2362 return 0;
2363}
2364
2365static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool)
2366{
2367 dm_thin_id dev_id;
2368 int r;
2369
2370 r = check_arg_count(argc, 2);
2371 if (r)
2372 return r;
2373
2374 r = read_dev_id(argv[1], &dev_id, 1);
2375 if (r)
2376 return r;
2377
2378 r = dm_pool_delete_thin_device(pool->pmd, dev_id);
2379 if (r)
2380 DMWARN("Deletion of thin device %s failed.", argv[1]);
2381
2382 return r;
2383}
2384
2385static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool)
2386{
2387 dm_thin_id old_id, new_id;
2388 int r;
2389
2390 r = check_arg_count(argc, 3);
2391 if (r)
2392 return r;
2393
2394 if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
2395 DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
2396 return -EINVAL;
2397 }
2398
2399 if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
2400 DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
2401 return -EINVAL;
2402 }
2403
2404 r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
2405 if (r) {
2406 DMWARN("Failed to change transaction id from %s to %s.",
2407 argv[1], argv[2]);
2408 return r;
2409 }
2410
2411 return 0;
2412}
2413
Joe Thornbercc8394d2012-06-03 00:30:01 +01002414static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2415{
2416 int r;
2417
2418 r = check_arg_count(argc, 1);
2419 if (r)
2420 return r;
2421
Joe Thornbere49e5822012-07-27 15:08:16 +01002422 (void) commit_or_fallback(pool);
Joe Thornber0d200ae2012-07-03 12:55:31 +01002423
Joe Thornbercc8394d2012-06-03 00:30:01 +01002424 r = dm_pool_reserve_metadata_snap(pool->pmd);
2425 if (r)
2426 DMWARN("reserve_metadata_snap message failed.");
2427
2428 return r;
2429}
2430
2431static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2432{
2433 int r;
2434
2435 r = check_arg_count(argc, 1);
2436 if (r)
2437 return r;
2438
2439 r = dm_pool_release_metadata_snap(pool->pmd);
2440 if (r)
2441 DMWARN("release_metadata_snap message failed.");
2442
2443 return r;
2444}
2445
Joe Thornber991d9fa2011-10-31 20:21:18 +00002446/*
2447 * Messages supported:
2448 * create_thin <dev_id>
2449 * create_snap <dev_id> <origin_id>
2450 * delete <dev_id>
2451 * trim <dev_id> <new_size_in_sectors>
2452 * set_transaction_id <current_trans_id> <new_trans_id>
Joe Thornbercc8394d2012-06-03 00:30:01 +01002453 * reserve_metadata_snap
2454 * release_metadata_snap
Joe Thornber991d9fa2011-10-31 20:21:18 +00002455 */
2456static int pool_message(struct dm_target *ti, unsigned argc, char **argv)
2457{
2458 int r = -EINVAL;
2459 struct pool_c *pt = ti->private;
2460 struct pool *pool = pt->pool;
2461
2462 if (!strcasecmp(argv[0], "create_thin"))
2463 r = process_create_thin_mesg(argc, argv, pool);
2464
2465 else if (!strcasecmp(argv[0], "create_snap"))
2466 r = process_create_snap_mesg(argc, argv, pool);
2467
2468 else if (!strcasecmp(argv[0], "delete"))
2469 r = process_delete_mesg(argc, argv, pool);
2470
2471 else if (!strcasecmp(argv[0], "set_transaction_id"))
2472 r = process_set_transaction_id_mesg(argc, argv, pool);
2473
Joe Thornbercc8394d2012-06-03 00:30:01 +01002474 else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
2475 r = process_reserve_metadata_snap_mesg(argc, argv, pool);
2476
2477 else if (!strcasecmp(argv[0], "release_metadata_snap"))
2478 r = process_release_metadata_snap_mesg(argc, argv, pool);
2479
Joe Thornber991d9fa2011-10-31 20:21:18 +00002480 else
2481 DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
2482
Joe Thornbere49e5822012-07-27 15:08:16 +01002483 if (!r)
2484 (void) commit_or_fallback(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002485
2486 return r;
2487}
2488
Joe Thornbere49e5822012-07-27 15:08:16 +01002489static void emit_flags(struct pool_features *pf, char *result,
2490 unsigned sz, unsigned maxlen)
2491{
2492 unsigned count = !pf->zero_new_blocks + !pf->discard_enabled +
2493 !pf->discard_passdown + (pf->mode == PM_READ_ONLY);
2494 DMEMIT("%u ", count);
2495
2496 if (!pf->zero_new_blocks)
2497 DMEMIT("skip_block_zeroing ");
2498
2499 if (!pf->discard_enabled)
2500 DMEMIT("ignore_discard ");
2501
2502 if (!pf->discard_passdown)
2503 DMEMIT("no_discard_passdown ");
2504
2505 if (pf->mode == PM_READ_ONLY)
2506 DMEMIT("read_only ");
2507}
2508
Joe Thornber991d9fa2011-10-31 20:21:18 +00002509/*
2510 * Status line is:
2511 * <transaction id> <used metadata sectors>/<total metadata sectors>
2512 * <used data sectors>/<total data sectors> <held metadata root>
2513 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002514static void pool_status(struct dm_target *ti, status_type_t type,
2515 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002516{
Joe Thornbere49e5822012-07-27 15:08:16 +01002517 int r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002518 unsigned sz = 0;
2519 uint64_t transaction_id;
2520 dm_block_t nr_free_blocks_data;
2521 dm_block_t nr_free_blocks_metadata;
2522 dm_block_t nr_blocks_data;
2523 dm_block_t nr_blocks_metadata;
2524 dm_block_t held_root;
2525 char buf[BDEVNAME_SIZE];
2526 char buf2[BDEVNAME_SIZE];
2527 struct pool_c *pt = ti->private;
2528 struct pool *pool = pt->pool;
2529
2530 switch (type) {
2531 case STATUSTYPE_INFO:
Joe Thornbere49e5822012-07-27 15:08:16 +01002532 if (get_pool_mode(pool) == PM_FAIL) {
2533 DMEMIT("Fail");
2534 break;
2535 }
2536
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01002537 /* Commit to ensure statistics aren't out-of-date */
2538 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
2539 (void) commit_or_fallback(pool);
2540
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002541 r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
2542 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002543 DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
2544 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002545 goto err;
2546 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002547
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002548 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
2549 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002550 DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
2551 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002552 goto err;
2553 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002554
2555 r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002556 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002557 DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
2558 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002559 goto err;
2560 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002561
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002562 r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
2563 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002564 DMERR("%s: dm_pool_get_free_block_count returned %d",
2565 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002566 goto err;
2567 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002568
2569 r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002570 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002571 DMERR("%s: dm_pool_get_data_dev_size returned %d",
2572 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002573 goto err;
2574 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002575
Joe Thornbercc8394d2012-06-03 00:30:01 +01002576 r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002577 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002578 DMERR("%s: dm_pool_get_metadata_snap returned %d",
2579 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002580 goto err;
2581 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002582
2583 DMEMIT("%llu %llu/%llu %llu/%llu ",
2584 (unsigned long long)transaction_id,
2585 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
2586 (unsigned long long)nr_blocks_metadata,
2587 (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
2588 (unsigned long long)nr_blocks_data);
2589
2590 if (held_root)
Joe Thornbere49e5822012-07-27 15:08:16 +01002591 DMEMIT("%llu ", held_root);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002592 else
Joe Thornbere49e5822012-07-27 15:08:16 +01002593 DMEMIT("- ");
2594
2595 if (pool->pf.mode == PM_READ_ONLY)
2596 DMEMIT("ro ");
2597 else
2598 DMEMIT("rw ");
2599
Mike Snitzer018debe2012-12-21 20:23:32 +00002600 if (!pool->pf.discard_enabled)
2601 DMEMIT("ignore_discard");
2602 else if (pool->pf.discard_passdown)
Joe Thornbere49e5822012-07-27 15:08:16 +01002603 DMEMIT("discard_passdown");
2604 else
2605 DMEMIT("no_discard_passdown");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002606
2607 break;
2608
2609 case STATUSTYPE_TABLE:
2610 DMEMIT("%s %s %lu %llu ",
2611 format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
2612 format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
2613 (unsigned long)pool->sectors_per_block,
2614 (unsigned long long)pt->low_water_blocks);
Mike Snitzer0424caa2012-09-26 23:45:47 +01002615 emit_flags(&pt->requested_pf, result, sz, maxlen);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002616 break;
2617 }
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002618 return;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002619
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002620err:
2621 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002622}
2623
2624static int pool_iterate_devices(struct dm_target *ti,
2625 iterate_devices_callout_fn fn, void *data)
2626{
2627 struct pool_c *pt = ti->private;
2628
2629 return fn(ti, pt->data_dev, 0, ti->len, data);
2630}
2631
2632static int pool_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
2633 struct bio_vec *biovec, int max_size)
2634{
2635 struct pool_c *pt = ti->private;
2636 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
2637
2638 if (!q->merge_bvec_fn)
2639 return max_size;
2640
2641 bvm->bi_bdev = pt->data_dev->bdev;
2642
2643 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2644}
2645
Mike Snitzer0424caa2012-09-26 23:45:47 +01002646static void set_discard_limits(struct pool_c *pt, struct queue_limits *limits)
Joe Thornber104655f2012-03-28 18:41:28 +01002647{
Mike Snitzer0424caa2012-09-26 23:45:47 +01002648 struct pool *pool = pt->pool;
2649 struct queue_limits *data_limits;
2650
Joe Thornber104655f2012-03-28 18:41:28 +01002651 limits->max_discard_sectors = pool->sectors_per_block;
2652
2653 /*
Mike Snitzer0424caa2012-09-26 23:45:47 +01002654 * discard_granularity is just a hint, and not enforced.
Joe Thornber104655f2012-03-28 18:41:28 +01002655 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01002656 if (pt->adjusted_pf.discard_passdown) {
2657 data_limits = &bdev_get_queue(pt->data_dev->bdev)->limits;
2658 limits->discard_granularity = data_limits->discard_granularity;
Mike Snitzerf13945d2013-03-01 22:45:44 +00002659 } else
Mike Snitzer0424caa2012-09-26 23:45:47 +01002660 limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
Joe Thornber104655f2012-03-28 18:41:28 +01002661}
2662
Joe Thornber991d9fa2011-10-31 20:21:18 +00002663static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
2664{
2665 struct pool_c *pt = ti->private;
2666 struct pool *pool = pt->pool;
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04002667 uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002668
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04002669 /*
2670 * If the system-determined stacked limits are compatible with the
2671 * pool's blocksize (io_opt is a factor) do not override them.
2672 */
2673 if (io_opt_sectors < pool->sectors_per_block ||
2674 do_div(io_opt_sectors, pool->sectors_per_block)) {
2675 blk_limits_io_min(limits, 0);
2676 blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
2677 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01002678
2679 /*
2680 * pt->adjusted_pf is a staging area for the actual features to use.
2681 * They get transferred to the live pool in bind_control_target()
2682 * called from pool_preresume().
2683 */
2684 if (!pt->adjusted_pf.discard_enabled)
2685 return;
2686
2687 disable_passdown_if_not_supported(pt);
2688
2689 set_discard_limits(pt, limits);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002690}
2691
2692static struct target_type pool_target = {
2693 .name = "thin-pool",
2694 .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
2695 DM_TARGET_IMMUTABLE,
Joe Thornber24347e92013-05-10 14:37:19 +01002696 .version = {1, 8, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00002697 .module = THIS_MODULE,
2698 .ctr = pool_ctr,
2699 .dtr = pool_dtr,
2700 .map = pool_map,
2701 .postsuspend = pool_postsuspend,
2702 .preresume = pool_preresume,
2703 .resume = pool_resume,
2704 .message = pool_message,
2705 .status = pool_status,
2706 .merge = pool_merge,
2707 .iterate_devices = pool_iterate_devices,
2708 .io_hints = pool_io_hints,
2709};
2710
2711/*----------------------------------------------------------------
2712 * Thin target methods
2713 *--------------------------------------------------------------*/
2714static void thin_dtr(struct dm_target *ti)
2715{
2716 struct thin_c *tc = ti->private;
2717
2718 mutex_lock(&dm_thin_pool_table.mutex);
2719
2720 __pool_dec(tc->pool);
2721 dm_pool_close_thin_device(tc->td);
2722 dm_put_device(ti, tc->pool_dev);
Joe Thornber2dd9c252012-03-28 18:41:28 +01002723 if (tc->origin_dev)
2724 dm_put_device(ti, tc->origin_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002725 kfree(tc);
2726
2727 mutex_unlock(&dm_thin_pool_table.mutex);
2728}
2729
2730/*
2731 * Thin target parameters:
2732 *
Joe Thornber2dd9c252012-03-28 18:41:28 +01002733 * <pool_dev> <dev_id> [origin_dev]
Joe Thornber991d9fa2011-10-31 20:21:18 +00002734 *
2735 * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
2736 * dev_id: the internal device identifier
Joe Thornber2dd9c252012-03-28 18:41:28 +01002737 * origin_dev: a device external to the pool that should act as the origin
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002738 *
2739 * If the pool device has discards disabled, they get disabled for the thin
2740 * device as well.
Joe Thornber991d9fa2011-10-31 20:21:18 +00002741 */
2742static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
2743{
2744 int r;
2745 struct thin_c *tc;
Joe Thornber2dd9c252012-03-28 18:41:28 +01002746 struct dm_dev *pool_dev, *origin_dev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002747 struct mapped_device *pool_md;
2748
2749 mutex_lock(&dm_thin_pool_table.mutex);
2750
Joe Thornber2dd9c252012-03-28 18:41:28 +01002751 if (argc != 2 && argc != 3) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002752 ti->error = "Invalid argument count";
2753 r = -EINVAL;
2754 goto out_unlock;
2755 }
2756
2757 tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
2758 if (!tc) {
2759 ti->error = "Out of memory";
2760 r = -ENOMEM;
2761 goto out_unlock;
2762 }
2763
Joe Thornber2dd9c252012-03-28 18:41:28 +01002764 if (argc == 3) {
2765 r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
2766 if (r) {
2767 ti->error = "Error opening origin device";
2768 goto bad_origin_dev;
2769 }
2770 tc->origin_dev = origin_dev;
2771 }
2772
Joe Thornber991d9fa2011-10-31 20:21:18 +00002773 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
2774 if (r) {
2775 ti->error = "Error opening pool device";
2776 goto bad_pool_dev;
2777 }
2778 tc->pool_dev = pool_dev;
2779
2780 if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
2781 ti->error = "Invalid device id";
2782 r = -EINVAL;
2783 goto bad_common;
2784 }
2785
2786 pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
2787 if (!pool_md) {
2788 ti->error = "Couldn't get pool mapped device";
2789 r = -EINVAL;
2790 goto bad_common;
2791 }
2792
2793 tc->pool = __pool_table_lookup(pool_md);
2794 if (!tc->pool) {
2795 ti->error = "Couldn't find pool object";
2796 r = -EINVAL;
2797 goto bad_pool_lookup;
2798 }
2799 __pool_inc(tc->pool);
2800
Joe Thornbere49e5822012-07-27 15:08:16 +01002801 if (get_pool_mode(tc->pool) == PM_FAIL) {
2802 ti->error = "Couldn't open thin device, Pool is in fail mode";
2803 goto bad_thin_open;
2804 }
2805
Joe Thornber991d9fa2011-10-31 20:21:18 +00002806 r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
2807 if (r) {
2808 ti->error = "Couldn't open thin internal device";
2809 goto bad_thin_open;
2810 }
2811
Mike Snitzer542f9032012-07-27 15:08:00 +01002812 r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
2813 if (r)
2814 goto bad_thin_open;
2815
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002816 ti->num_flush_bios = 1;
Joe Thornber16ad3d12012-07-27 15:08:07 +01002817 ti->flush_supported = true;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002818 ti->per_bio_data_size = sizeof(struct dm_thin_endio_hook);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002819
2820 /* In case the pool supports discards, pass them on. */
2821 if (tc->pool->pf.discard_enabled) {
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01002822 ti->discards_supported = true;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002823 ti->num_discard_bios = 1;
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01002824 ti->discard_zeroes_data_unsupported = true;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002825 /* Discard bios must be split on a block boundary */
2826 ti->split_discard_bios = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002827 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002828
2829 dm_put(pool_md);
2830
2831 mutex_unlock(&dm_thin_pool_table.mutex);
2832
2833 return 0;
2834
2835bad_thin_open:
2836 __pool_dec(tc->pool);
2837bad_pool_lookup:
2838 dm_put(pool_md);
2839bad_common:
2840 dm_put_device(ti, tc->pool_dev);
2841bad_pool_dev:
Joe Thornber2dd9c252012-03-28 18:41:28 +01002842 if (tc->origin_dev)
2843 dm_put_device(ti, tc->origin_dev);
2844bad_origin_dev:
Joe Thornber991d9fa2011-10-31 20:21:18 +00002845 kfree(tc);
2846out_unlock:
2847 mutex_unlock(&dm_thin_pool_table.mutex);
2848
2849 return r;
2850}
2851
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002852static int thin_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002853{
Alasdair G Kergon6efd6e82012-03-28 18:41:28 +01002854 bio->bi_sector = dm_target_offset(ti, bio->bi_sector);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002855
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002856 return thin_bio_map(ti, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002857}
2858
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002859static int thin_endio(struct dm_target *ti, struct bio *bio, int err)
Joe Thornbereb2aa482012-03-28 18:41:28 +01002860{
2861 unsigned long flags;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002862 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01002863 struct list_head work;
Mike Snitzera24c2562012-06-03 00:30:00 +01002864 struct dm_thin_new_mapping *m, *tmp;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002865 struct pool *pool = h->tc->pool;
2866
2867 if (h->shared_read_entry) {
2868 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01002869 dm_deferred_entry_dec(h->shared_read_entry, &work);
Joe Thornbereb2aa482012-03-28 18:41:28 +01002870
2871 spin_lock_irqsave(&pool->lock, flags);
2872 list_for_each_entry_safe(m, tmp, &work, list) {
2873 list_del(&m->list);
2874 m->quiesced = 1;
2875 __maybe_add_mapping(m);
2876 }
2877 spin_unlock_irqrestore(&pool->lock, flags);
2878 }
2879
Joe Thornber104655f2012-03-28 18:41:28 +01002880 if (h->all_io_entry) {
2881 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01002882 dm_deferred_entry_dec(h->all_io_entry, &work);
Joe Thornber563af182012-12-21 20:23:31 +00002883 if (!list_empty(&work)) {
2884 spin_lock_irqsave(&pool->lock, flags);
2885 list_for_each_entry_safe(m, tmp, &work, list)
2886 list_add(&m->list, &pool->prepared_discards);
2887 spin_unlock_irqrestore(&pool->lock, flags);
2888 wake_worker(pool);
2889 }
Joe Thornber104655f2012-03-28 18:41:28 +01002890 }
2891
Joe Thornbereb2aa482012-03-28 18:41:28 +01002892 return 0;
2893}
2894
Joe Thornber991d9fa2011-10-31 20:21:18 +00002895static void thin_postsuspend(struct dm_target *ti)
2896{
2897 if (dm_noflush_suspending(ti))
2898 requeue_io((struct thin_c *)ti->private);
2899}
2900
2901/*
2902 * <nr mapped sectors> <highest mapped sector>
2903 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002904static void thin_status(struct dm_target *ti, status_type_t type,
2905 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002906{
2907 int r;
2908 ssize_t sz = 0;
2909 dm_block_t mapped, highest;
2910 char buf[BDEVNAME_SIZE];
2911 struct thin_c *tc = ti->private;
2912
Joe Thornbere49e5822012-07-27 15:08:16 +01002913 if (get_pool_mode(tc->pool) == PM_FAIL) {
2914 DMEMIT("Fail");
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002915 return;
Joe Thornbere49e5822012-07-27 15:08:16 +01002916 }
2917
Joe Thornber991d9fa2011-10-31 20:21:18 +00002918 if (!tc->td)
2919 DMEMIT("-");
2920 else {
2921 switch (type) {
2922 case STATUSTYPE_INFO:
2923 r = dm_thin_get_mapped_count(tc->td, &mapped);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002924 if (r) {
2925 DMERR("dm_thin_get_mapped_count returned %d", r);
2926 goto err;
2927 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002928
2929 r = dm_thin_get_highest_mapped_block(tc->td, &highest);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002930 if (r < 0) {
2931 DMERR("dm_thin_get_highest_mapped_block returned %d", r);
2932 goto err;
2933 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002934
2935 DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
2936 if (r)
2937 DMEMIT("%llu", ((highest + 1) *
2938 tc->pool->sectors_per_block) - 1);
2939 else
2940 DMEMIT("-");
2941 break;
2942
2943 case STATUSTYPE_TABLE:
2944 DMEMIT("%s %lu",
2945 format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
2946 (unsigned long) tc->dev_id);
Joe Thornber2dd9c252012-03-28 18:41:28 +01002947 if (tc->origin_dev)
2948 DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
Joe Thornber991d9fa2011-10-31 20:21:18 +00002949 break;
2950 }
2951 }
2952
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002953 return;
2954
2955err:
2956 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002957}
2958
2959static int thin_iterate_devices(struct dm_target *ti,
2960 iterate_devices_callout_fn fn, void *data)
2961{
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002962 sector_t blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002963 struct thin_c *tc = ti->private;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002964 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002965
2966 /*
2967 * We can't call dm_pool_get_data_dev_size() since that blocks. So
2968 * we follow a more convoluted path through to the pool's target.
2969 */
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002970 if (!pool->ti)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002971 return 0; /* nothing is bound */
2972
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002973 blocks = pool->ti->len;
2974 (void) sector_div(blocks, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002975 if (blocks)
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002976 return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002977
2978 return 0;
2979}
2980
Joe Thornber991d9fa2011-10-31 20:21:18 +00002981static struct target_type thin_target = {
2982 .name = "thin",
Joe Thornberf046f892013-03-20 17:21:24 +00002983 .version = {1, 8, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00002984 .module = THIS_MODULE,
2985 .ctr = thin_ctr,
2986 .dtr = thin_dtr,
2987 .map = thin_map,
Joe Thornbereb2aa482012-03-28 18:41:28 +01002988 .end_io = thin_endio,
Joe Thornber991d9fa2011-10-31 20:21:18 +00002989 .postsuspend = thin_postsuspend,
2990 .status = thin_status,
2991 .iterate_devices = thin_iterate_devices,
Joe Thornber991d9fa2011-10-31 20:21:18 +00002992};
2993
2994/*----------------------------------------------------------------*/
2995
2996static int __init dm_thin_init(void)
2997{
2998 int r;
2999
3000 pool_table_init();
3001
3002 r = dm_register_target(&thin_target);
3003 if (r)
3004 return r;
3005
3006 r = dm_register_target(&pool_target);
3007 if (r)
Mike Snitzera24c2562012-06-03 00:30:00 +01003008 goto bad_pool_target;
3009
3010 r = -ENOMEM;
3011
Mike Snitzera24c2562012-06-03 00:30:00 +01003012 _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
3013 if (!_new_mapping_cache)
3014 goto bad_new_mapping_cache;
3015
Mike Snitzera24c2562012-06-03 00:30:00 +01003016 return 0;
3017
Mike Snitzera24c2562012-06-03 00:30:00 +01003018bad_new_mapping_cache:
Mike Snitzera24c2562012-06-03 00:30:00 +01003019 dm_unregister_target(&pool_target);
3020bad_pool_target:
3021 dm_unregister_target(&thin_target);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003022
3023 return r;
3024}
3025
3026static void dm_thin_exit(void)
3027{
3028 dm_unregister_target(&thin_target);
3029 dm_unregister_target(&pool_target);
Mike Snitzera24c2562012-06-03 00:30:00 +01003030
Mike Snitzera24c2562012-06-03 00:30:00 +01003031 kmem_cache_destroy(_new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003032}
3033
3034module_init(dm_thin_init);
3035module_exit(dm_thin_exit);
3036
Alasdair G Kergon7cab8bf2012-05-12 01:43:19 +01003037MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003038MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3039MODULE_LICENSE("GPL");