blob: 44ee489f4a6e4ca19d9010956170e092860c94bd [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) {
Joe Thornberfafc7a82013-12-02 17:57:42 -0500643 DMERR_LIMIT("%s: dm_thin_insert_block() failed: error = %d",
644 dm_device_name(pool->pool_md), r);
645 set_pool_mode(pool, PM_READ_ONLY);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000646 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100647 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000648 }
649
650 /*
651 * Release any bios held while the block was being provisioned.
652 * If we are processing a write bio that completely covers the block,
653 * we already processed it so can ignore it now when processing
654 * the bios in the cell.
655 */
656 if (bio) {
Joe Thornberf286ba02012-12-21 20:23:33 +0000657 cell_defer_no_holder(tc, m->cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000658 bio_endio(bio, 0);
659 } else
Joe Thornber2aab3852012-12-21 20:23:33 +0000660 cell_defer(tc, m->cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000661
Joe Thornber905386f2012-07-27 15:08:05 +0100662out:
Joe Thornber991d9fa2011-10-31 20:21:18 +0000663 list_del(&m->list);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000664 mempool_free(m, pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000665}
666
Joe Thornbere49e5822012-07-27 15:08:16 +0100667static void process_prepared_discard_fail(struct dm_thin_new_mapping *m)
Joe Thornber104655f2012-03-28 18:41:28 +0100668{
Joe Thornber104655f2012-03-28 18:41:28 +0100669 struct thin_c *tc = m->tc;
670
Joe Thornbere49e5822012-07-27 15:08:16 +0100671 bio_io_error(m->bio);
Joe Thornberf286ba02012-12-21 20:23:33 +0000672 cell_defer_no_holder(tc, m->cell);
673 cell_defer_no_holder(tc, m->cell2);
Joe Thornbere49e5822012-07-27 15:08:16 +0100674 mempool_free(m, tc->pool->mapping_pool);
675}
Joe Thornber104655f2012-03-28 18:41:28 +0100676
Joe Thornbere49e5822012-07-27 15:08:16 +0100677static void process_prepared_discard_passdown(struct dm_thin_new_mapping *m)
678{
679 struct thin_c *tc = m->tc;
680
Joe Thornbere8088072012-12-21 20:23:31 +0000681 inc_all_io_entry(tc->pool, m->bio);
Joe Thornberf286ba02012-12-21 20:23:33 +0000682 cell_defer_no_holder(tc, m->cell);
683 cell_defer_no_holder(tc, m->cell2);
Joe Thornbere8088072012-12-21 20:23:31 +0000684
Joe Thornber104655f2012-03-28 18:41:28 +0100685 if (m->pass_discard)
686 remap_and_issue(tc, m->bio, m->data_block);
687 else
688 bio_endio(m->bio, 0);
689
Joe Thornber104655f2012-03-28 18:41:28 +0100690 mempool_free(m, tc->pool->mapping_pool);
691}
692
Joe Thornbere49e5822012-07-27 15:08:16 +0100693static void process_prepared_discard(struct dm_thin_new_mapping *m)
694{
695 int r;
696 struct thin_c *tc = m->tc;
697
698 r = dm_thin_remove_block(tc->td, m->virt_block);
699 if (r)
Mike Snitzerc3977412012-12-21 20:23:34 +0000700 DMERR_LIMIT("dm_thin_remove_block() failed");
Joe Thornbere49e5822012-07-27 15:08:16 +0100701
702 process_prepared_discard_passdown(m);
703}
704
Joe Thornber104655f2012-03-28 18:41:28 +0100705static void process_prepared(struct pool *pool, struct list_head *head,
Joe Thornbere49e5822012-07-27 15:08:16 +0100706 process_mapping_fn *fn)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000707{
708 unsigned long flags;
709 struct list_head maps;
Mike Snitzera24c2562012-06-03 00:30:00 +0100710 struct dm_thin_new_mapping *m, *tmp;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000711
712 INIT_LIST_HEAD(&maps);
713 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +0100714 list_splice_init(head, &maps);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000715 spin_unlock_irqrestore(&pool->lock, flags);
716
717 list_for_each_entry_safe(m, tmp, &maps, list)
Joe Thornbere49e5822012-07-27 15:08:16 +0100718 (*fn)(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000719}
720
721/*
722 * Deferred bio jobs.
723 */
Joe Thornber104655f2012-03-28 18:41:28 +0100724static int io_overlaps_block(struct pool *pool, struct bio *bio)
725{
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100726 return bio->bi_size == (pool->sectors_per_block << SECTOR_SHIFT);
Joe Thornber104655f2012-03-28 18:41:28 +0100727}
728
Joe Thornber991d9fa2011-10-31 20:21:18 +0000729static int io_overwrites_block(struct pool *pool, struct bio *bio)
730{
Joe Thornber104655f2012-03-28 18:41:28 +0100731 return (bio_data_dir(bio) == WRITE) &&
732 io_overlaps_block(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000733}
734
735static void save_and_set_endio(struct bio *bio, bio_end_io_t **save,
736 bio_end_io_t *fn)
737{
738 *save = bio->bi_end_io;
739 bio->bi_end_io = fn;
740}
741
742static int ensure_next_mapping(struct pool *pool)
743{
744 if (pool->next_mapping)
745 return 0;
746
747 pool->next_mapping = mempool_alloc(pool->mapping_pool, GFP_ATOMIC);
748
749 return pool->next_mapping ? 0 : -ENOMEM;
750}
751
Mike Snitzera24c2562012-06-03 00:30:00 +0100752static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000753{
Mike Snitzera24c2562012-06-03 00:30:00 +0100754 struct dm_thin_new_mapping *r = pool->next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000755
756 BUG_ON(!pool->next_mapping);
757
758 pool->next_mapping = NULL;
759
760 return r;
761}
762
763static void schedule_copy(struct thin_c *tc, dm_block_t virt_block,
Joe Thornber2dd9c252012-03-28 18:41:28 +0100764 struct dm_dev *origin, dm_block_t data_origin,
765 dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +0100766 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000767{
768 int r;
769 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +0100770 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000771
772 INIT_LIST_HEAD(&m->list);
Joe Thornbereb2aa482012-03-28 18:41:28 +0100773 m->quiesced = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000774 m->prepared = 0;
775 m->tc = tc;
776 m->virt_block = virt_block;
777 m->data_block = data_dest;
778 m->cell = cell;
779 m->err = 0;
780 m->bio = NULL;
781
Mike Snitzer44feb382012-10-12 21:02:10 +0100782 if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list))
Joe Thornbereb2aa482012-03-28 18:41:28 +0100783 m->quiesced = 1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000784
785 /*
786 * IO to pool_dev remaps to the pool target's data_dev.
787 *
788 * If the whole block of data is being overwritten, we can issue the
789 * bio immediately. Otherwise we use kcopyd to clone the data first.
790 */
791 if (io_overwrites_block(pool, bio)) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000792 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100793
Joe Thornbereb2aa482012-03-28 18:41:28 +0100794 h->overwrite_mapping = m;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000795 m->bio = bio;
796 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
Joe Thornbere8088072012-12-21 20:23:31 +0000797 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000798 remap_and_issue(tc, bio, data_dest);
799 } else {
800 struct dm_io_region from, to;
801
Joe Thornber2dd9c252012-03-28 18:41:28 +0100802 from.bdev = origin->bdev;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000803 from.sector = data_origin * pool->sectors_per_block;
804 from.count = pool->sectors_per_block;
805
806 to.bdev = tc->pool_dev->bdev;
807 to.sector = data_dest * pool->sectors_per_block;
808 to.count = pool->sectors_per_block;
809
810 r = dm_kcopyd_copy(pool->copier, &from, 1, &to,
811 0, copy_complete, m);
812 if (r < 0) {
813 mempool_free(m, pool->mapping_pool);
Mike Snitzerc3977412012-12-21 20:23:34 +0000814 DMERR_LIMIT("dm_kcopyd_copy() failed");
Joe Thornber6beca5e2013-03-01 22:45:50 +0000815 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000816 }
817 }
818}
819
Joe Thornber2dd9c252012-03-28 18:41:28 +0100820static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block,
821 dm_block_t data_origin, dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +0100822 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber2dd9c252012-03-28 18:41:28 +0100823{
824 schedule_copy(tc, virt_block, tc->pool_dev,
825 data_origin, data_dest, cell, bio);
826}
827
828static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
829 dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +0100830 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber2dd9c252012-03-28 18:41:28 +0100831{
832 schedule_copy(tc, virt_block, tc->origin_dev,
833 virt_block, data_dest, cell, bio);
834}
835
Joe Thornber991d9fa2011-10-31 20:21:18 +0000836static void schedule_zero(struct thin_c *tc, dm_block_t virt_block,
Mike Snitzera24c2562012-06-03 00:30:00 +0100837 dm_block_t data_block, struct dm_bio_prison_cell *cell,
Joe Thornber991d9fa2011-10-31 20:21:18 +0000838 struct bio *bio)
839{
840 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +0100841 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000842
843 INIT_LIST_HEAD(&m->list);
Joe Thornbereb2aa482012-03-28 18:41:28 +0100844 m->quiesced = 1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000845 m->prepared = 0;
846 m->tc = tc;
847 m->virt_block = virt_block;
848 m->data_block = data_block;
849 m->cell = cell;
850 m->err = 0;
851 m->bio = NULL;
852
853 /*
854 * If the whole block of data is being overwritten or we are not
855 * zeroing pre-existing data, we can issue the bio immediately.
856 * Otherwise we use kcopyd to zero the data first.
857 */
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100858 if (!pool->pf.zero_new_blocks)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000859 process_prepared_mapping(m);
860
861 else if (io_overwrites_block(pool, bio)) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000862 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100863
Joe Thornbereb2aa482012-03-28 18:41:28 +0100864 h->overwrite_mapping = m;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000865 m->bio = bio;
866 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
Joe Thornbere8088072012-12-21 20:23:31 +0000867 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000868 remap_and_issue(tc, bio, data_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000869 } else {
870 int r;
871 struct dm_io_region to;
872
873 to.bdev = tc->pool_dev->bdev;
874 to.sector = data_block * pool->sectors_per_block;
875 to.count = pool->sectors_per_block;
876
877 r = dm_kcopyd_zero(pool->copier, 1, &to, 0, copy_complete, m);
878 if (r < 0) {
879 mempool_free(m, pool->mapping_pool);
Mike Snitzerc3977412012-12-21 20:23:34 +0000880 DMERR_LIMIT("dm_kcopyd_zero() failed");
Joe Thornber6beca5e2013-03-01 22:45:50 +0000881 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000882 }
883 }
884}
885
Joe Thornbere49e5822012-07-27 15:08:16 +0100886static int commit(struct pool *pool)
887{
888 int r;
889
890 r = dm_pool_commit_metadata(pool->pmd);
891 if (r)
Mike Snitzer4fa59712013-08-21 17:30:40 -0400892 DMERR_LIMIT("%s: commit failed: error = %d",
893 dm_device_name(pool->pool_md), r);
Joe Thornbere49e5822012-07-27 15:08:16 +0100894
895 return r;
896}
897
898/*
899 * A non-zero return indicates read_only or fail_io mode.
900 * Many callers don't care about the return value.
901 */
902static int commit_or_fallback(struct pool *pool)
903{
904 int r;
905
906 if (get_pool_mode(pool) != PM_WRITE)
907 return -EINVAL;
908
909 r = commit(pool);
910 if (r)
911 set_pool_mode(pool, PM_READ_ONLY);
912
913 return r;
914}
915
Joe Thornber991d9fa2011-10-31 20:21:18 +0000916static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
917{
918 int r;
919 dm_block_t free_blocks;
920 unsigned long flags;
921 struct pool *pool = tc->pool;
922
Mike Snitzer94563ba2013-08-22 09:56:18 -0400923 /*
924 * Once no_free_space is set we must not allow allocation to succeed.
925 * Otherwise it is difficult to explain, debug, test and support.
926 */
927 if (pool->no_free_space)
928 return -ENOSPC;
929
Joe Thornber991d9fa2011-10-31 20:21:18 +0000930 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
931 if (r)
932 return r;
933
934 if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
Joe Thornberb17446d2013-05-10 14:37:18 +0100935 DMWARN("%s: reached low water mark for data device: sending event.",
Joe Thornber991d9fa2011-10-31 20:21:18 +0000936 dm_device_name(pool->pool_md));
937 spin_lock_irqsave(&pool->lock, flags);
938 pool->low_water_triggered = 1;
939 spin_unlock_irqrestore(&pool->lock, flags);
940 dm_table_event(pool->ti->table);
941 }
942
943 if (!free_blocks) {
Mike Snitzer94563ba2013-08-22 09:56:18 -0400944 /*
945 * Try to commit to see if that will free up some
946 * more space.
947 */
948 (void) commit_or_fallback(pool);
949
950 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
951 if (r)
952 return r;
953
954 /*
955 * If we still have no space we set a flag to avoid
956 * doing all this checking and return -ENOSPC. This
957 * flag serves as a latch that disallows allocations from
958 * this pool until the admin takes action (e.g. resize or
959 * table reload).
960 */
961 if (!free_blocks) {
Mike Snitzer4a02b342013-12-03 12:20:57 -0500962 DMWARN("%s: no free data space available.",
Mike Snitzer94563ba2013-08-22 09:56:18 -0400963 dm_device_name(pool->pool_md));
964 spin_lock_irqsave(&pool->lock, flags);
965 pool->no_free_space = 1;
966 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000967 return -ENOSPC;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000968 }
969 }
970
971 r = dm_pool_alloc_data_block(pool->pmd, result);
Mike Snitzer4a02b342013-12-03 12:20:57 -0500972 if (r) {
973 if (r == -ENOSPC &&
974 !dm_pool_get_free_metadata_block_count(pool->pmd, &free_blocks) &&
975 !free_blocks) {
976 DMWARN("%s: no free metadata space available.",
977 dm_device_name(pool->pool_md));
978 set_pool_mode(pool, PM_READ_ONLY);
979 }
Joe Thornber991d9fa2011-10-31 20:21:18 +0000980 return r;
Mike Snitzer4a02b342013-12-03 12:20:57 -0500981 }
Joe Thornber991d9fa2011-10-31 20:21:18 +0000982
983 return 0;
984}
985
986/*
987 * If we have run out of space, queue bios until the device is
988 * resumed, presumably after having been reloaded with more space.
989 */
990static void retry_on_resume(struct bio *bio)
991{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000992 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +0100993 struct thin_c *tc = h->tc;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000994 struct pool *pool = tc->pool;
995 unsigned long flags;
996
997 spin_lock_irqsave(&pool->lock, flags);
998 bio_list_add(&pool->retry_on_resume_list, bio);
999 spin_unlock_irqrestore(&pool->lock, flags);
1000}
1001
Joe Thornber6beca5e2013-03-01 22:45:50 +00001002static void no_space(struct pool *pool, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001003{
1004 struct bio *bio;
1005 struct bio_list bios;
1006
1007 bio_list_init(&bios);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001008 cell_release(pool, cell, &bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001009
1010 while ((bio = bio_list_pop(&bios)))
1011 retry_on_resume(bio);
1012}
1013
Joe Thornber104655f2012-03-28 18:41:28 +01001014static void process_discard(struct thin_c *tc, struct bio *bio)
1015{
1016 int r;
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001017 unsigned long flags;
Joe Thornber104655f2012-03-28 18:41:28 +01001018 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001019 struct dm_bio_prison_cell *cell, *cell2;
Mike Snitzer44feb382012-10-12 21:02:10 +01001020 struct dm_cell_key key, key2;
Joe Thornber104655f2012-03-28 18:41:28 +01001021 dm_block_t block = get_bio_block(tc, bio);
1022 struct dm_thin_lookup_result lookup_result;
Mike Snitzera24c2562012-06-03 00:30:00 +01001023 struct dm_thin_new_mapping *m;
Joe Thornber104655f2012-03-28 18:41:28 +01001024
1025 build_virtual_key(tc->td, block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001026 if (bio_detain(tc->pool, &key, bio, &cell))
Joe Thornber104655f2012-03-28 18:41:28 +01001027 return;
1028
1029 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1030 switch (r) {
1031 case 0:
1032 /*
1033 * Check nobody is fiddling with this pool block. This can
1034 * happen if someone's in the process of breaking sharing
1035 * on this block.
1036 */
1037 build_data_key(tc->td, lookup_result.block, &key2);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001038 if (bio_detain(tc->pool, &key2, bio, &cell2)) {
Joe Thornberf286ba02012-12-21 20:23:33 +00001039 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001040 break;
1041 }
1042
1043 if (io_overlaps_block(pool, bio)) {
1044 /*
1045 * IO may still be going to the destination block. We must
1046 * quiesce before we can do the removal.
1047 */
1048 m = get_next_mapping(pool);
1049 m->tc = tc;
Mike Snitzer17b7d632012-07-27 15:07:57 +01001050 m->pass_discard = (!lookup_result.shared) && pool->pf.discard_passdown;
Joe Thornber104655f2012-03-28 18:41:28 +01001051 m->virt_block = block;
1052 m->data_block = lookup_result.block;
1053 m->cell = cell;
1054 m->cell2 = cell2;
1055 m->err = 0;
1056 m->bio = bio;
1057
Mike Snitzer44feb382012-10-12 21:02:10 +01001058 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list)) {
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001059 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001060 list_add(&m->list, &pool->prepared_discards);
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001061 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001062 wake_worker(pool);
1063 }
1064 } else {
Joe Thornbere8088072012-12-21 20:23:31 +00001065 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001066 cell_defer_no_holder(tc, cell);
1067 cell_defer_no_holder(tc, cell2);
Joe Thornbere8088072012-12-21 20:23:31 +00001068
Joe Thornber104655f2012-03-28 18:41:28 +01001069 /*
Mikulas Patocka49296302012-07-27 15:08:03 +01001070 * The DM core makes sure that the discard doesn't span
1071 * a block boundary. So we submit the discard of a
1072 * partial block appropriately.
Joe Thornber104655f2012-03-28 18:41:28 +01001073 */
Mikulas Patocka650d2a02012-07-20 14:25:05 +01001074 if ((!lookup_result.shared) && pool->pf.discard_passdown)
1075 remap_and_issue(tc, bio, lookup_result.block);
1076 else
1077 bio_endio(bio, 0);
Joe Thornber104655f2012-03-28 18:41:28 +01001078 }
1079 break;
1080
1081 case -ENODATA:
1082 /*
1083 * It isn't provisioned, just forget it.
1084 */
Joe Thornberf286ba02012-12-21 20:23:33 +00001085 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001086 bio_endio(bio, 0);
1087 break;
1088
1089 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001090 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1091 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001092 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001093 bio_io_error(bio);
1094 break;
1095 }
1096}
1097
Joe Thornber991d9fa2011-10-31 20:21:18 +00001098static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzer44feb382012-10-12 21:02:10 +01001099 struct dm_cell_key *key,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001100 struct dm_thin_lookup_result *lookup_result,
Mike Snitzera24c2562012-06-03 00:30:00 +01001101 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001102{
1103 int r;
1104 dm_block_t data_block;
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001105 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001106
1107 r = alloc_data_block(tc, &data_block);
1108 switch (r) {
1109 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001110 schedule_internal_copy(tc, block, lookup_result->block,
1111 data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001112 break;
1113
1114 case -ENOSPC:
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001115 no_space(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001116 break;
1117
1118 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001119 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1120 __func__, r);
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001121 set_pool_mode(pool, PM_READ_ONLY);
1122 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001123 break;
1124 }
1125}
1126
1127static void process_shared_bio(struct thin_c *tc, struct bio *bio,
1128 dm_block_t block,
1129 struct dm_thin_lookup_result *lookup_result)
1130{
Mike Snitzera24c2562012-06-03 00:30:00 +01001131 struct dm_bio_prison_cell *cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001132 struct pool *pool = tc->pool;
Mike Snitzer44feb382012-10-12 21:02:10 +01001133 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001134
1135 /*
1136 * If cell is already occupied, then sharing is already in the process
1137 * of being broken so we have nothing further to do here.
1138 */
1139 build_data_key(tc->td, lookup_result->block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001140 if (bio_detain(pool, &key, bio, &cell))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001141 return;
1142
Joe Thornber60049702012-07-27 15:08:06 +01001143 if (bio_data_dir(bio) == WRITE && bio->bi_size)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001144 break_sharing(tc, bio, block, &key, lookup_result, cell);
1145 else {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001146 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornber991d9fa2011-10-31 20:21:18 +00001147
Mike Snitzer44feb382012-10-12 21:02:10 +01001148 h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
Joe Thornbere8088072012-12-21 20:23:31 +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, lookup_result->block);
1153 }
1154}
1155
1156static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001157 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001158{
1159 int r;
1160 dm_block_t data_block;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001161 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001162
1163 /*
1164 * Remap empty bios (flushes) immediately, without provisioning.
1165 */
1166 if (!bio->bi_size) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001167 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001168 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001169
Joe Thornber991d9fa2011-10-31 20:21:18 +00001170 remap_and_issue(tc, bio, 0);
1171 return;
1172 }
1173
1174 /*
1175 * Fill read bios with zeroes and complete them immediately.
1176 */
1177 if (bio_data_dir(bio) == READ) {
1178 zero_fill_bio(bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001179 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001180 bio_endio(bio, 0);
1181 return;
1182 }
1183
1184 r = alloc_data_block(tc, &data_block);
1185 switch (r) {
1186 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001187 if (tc->origin_dev)
1188 schedule_external_copy(tc, block, data_block, cell, bio);
1189 else
1190 schedule_zero(tc, block, data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001191 break;
1192
1193 case -ENOSPC:
Joe Thornber6beca5e2013-03-01 22:45:50 +00001194 no_space(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001195 break;
1196
1197 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001198 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1199 __func__, r);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001200 set_pool_mode(pool, PM_READ_ONLY);
1201 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001202 break;
1203 }
1204}
1205
1206static void process_bio(struct thin_c *tc, struct bio *bio)
1207{
1208 int r;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001209 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001210 dm_block_t block = get_bio_block(tc, bio);
Mike Snitzera24c2562012-06-03 00:30:00 +01001211 struct dm_bio_prison_cell *cell;
Mike Snitzer44feb382012-10-12 21:02:10 +01001212 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001213 struct dm_thin_lookup_result lookup_result;
1214
1215 /*
1216 * If cell is already occupied, then the block is already
1217 * being provisioned so we have nothing further to do here.
1218 */
1219 build_virtual_key(tc->td, block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001220 if (bio_detain(pool, &key, bio, &cell))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001221 return;
1222
1223 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1224 switch (r) {
1225 case 0:
Joe Thornbere8088072012-12-21 20:23:31 +00001226 if (lookup_result.shared) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001227 process_shared_bio(tc, bio, block, &lookup_result);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001228 cell_defer_no_holder(tc, cell); /* FIXME: pass this cell into process_shared? */
Joe Thornbere8088072012-12-21 20:23:31 +00001229 } else {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001230 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001231 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001232
Joe Thornber991d9fa2011-10-31 20:21:18 +00001233 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001234 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001235 break;
1236
1237 case -ENODATA:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001238 if (bio_data_dir(bio) == READ && tc->origin_dev) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001239 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001240 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001241
Joe Thornber2dd9c252012-03-28 18:41:28 +01001242 remap_to_origin_and_issue(tc, bio);
1243 } else
1244 provision_block(tc, bio, block, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001245 break;
1246
1247 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001248 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1249 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001250 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001251 bio_io_error(bio);
1252 break;
1253 }
1254}
1255
Joe Thornbere49e5822012-07-27 15:08:16 +01001256static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
1257{
1258 int r;
1259 int rw = bio_data_dir(bio);
1260 dm_block_t block = get_bio_block(tc, bio);
1261 struct dm_thin_lookup_result lookup_result;
1262
1263 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1264 switch (r) {
1265 case 0:
1266 if (lookup_result.shared && (rw == WRITE) && bio->bi_size)
1267 bio_io_error(bio);
Joe Thornbere8088072012-12-21 20:23:31 +00001268 else {
1269 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001270 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001271 }
Joe Thornbere49e5822012-07-27 15:08:16 +01001272 break;
1273
1274 case -ENODATA:
1275 if (rw != READ) {
1276 bio_io_error(bio);
1277 break;
1278 }
1279
1280 if (tc->origin_dev) {
Joe Thornbere8088072012-12-21 20:23:31 +00001281 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001282 remap_to_origin_and_issue(tc, bio);
1283 break;
1284 }
1285
1286 zero_fill_bio(bio);
1287 bio_endio(bio, 0);
1288 break;
1289
1290 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001291 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1292 __func__, r);
Joe Thornbere49e5822012-07-27 15:08:16 +01001293 bio_io_error(bio);
1294 break;
1295 }
1296}
1297
1298static void process_bio_fail(struct thin_c *tc, struct bio *bio)
1299{
1300 bio_io_error(bio);
1301}
1302
Joe Thornberac8c3f32013-05-10 14:37:21 +01001303/*
1304 * FIXME: should we also commit due to size of transaction, measured in
1305 * metadata blocks?
1306 */
Joe Thornber905e51b2012-03-28 18:41:27 +01001307static int need_commit_due_to_time(struct pool *pool)
1308{
1309 return jiffies < pool->last_commit_jiffies ||
1310 jiffies > pool->last_commit_jiffies + COMMIT_PERIOD;
1311}
1312
Joe Thornber991d9fa2011-10-31 20:21:18 +00001313static void process_deferred_bios(struct pool *pool)
1314{
1315 unsigned long flags;
1316 struct bio *bio;
1317 struct bio_list bios;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001318
1319 bio_list_init(&bios);
1320
1321 spin_lock_irqsave(&pool->lock, flags);
1322 bio_list_merge(&bios, &pool->deferred_bios);
1323 bio_list_init(&pool->deferred_bios);
1324 spin_unlock_irqrestore(&pool->lock, flags);
1325
1326 while ((bio = bio_list_pop(&bios))) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001327 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001328 struct thin_c *tc = h->tc;
1329
Joe Thornber991d9fa2011-10-31 20:21:18 +00001330 /*
1331 * If we've got no free new_mapping structs, and processing
1332 * this bio might require one, we pause until there are some
1333 * prepared mappings to process.
1334 */
1335 if (ensure_next_mapping(pool)) {
1336 spin_lock_irqsave(&pool->lock, flags);
1337 bio_list_merge(&pool->deferred_bios, &bios);
1338 spin_unlock_irqrestore(&pool->lock, flags);
1339
1340 break;
1341 }
Joe Thornber104655f2012-03-28 18:41:28 +01001342
1343 if (bio->bi_rw & REQ_DISCARD)
Joe Thornbere49e5822012-07-27 15:08:16 +01001344 pool->process_discard(tc, bio);
Joe Thornber104655f2012-03-28 18:41:28 +01001345 else
Joe Thornbere49e5822012-07-27 15:08:16 +01001346 pool->process_bio(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001347 }
1348
1349 /*
1350 * If there are any deferred flush bios, we must commit
1351 * the metadata before issuing them.
1352 */
1353 bio_list_init(&bios);
1354 spin_lock_irqsave(&pool->lock, flags);
1355 bio_list_merge(&bios, &pool->deferred_flush_bios);
1356 bio_list_init(&pool->deferred_flush_bios);
1357 spin_unlock_irqrestore(&pool->lock, flags);
1358
Joe Thornber905e51b2012-03-28 18:41:27 +01001359 if (bio_list_empty(&bios) && !need_commit_due_to_time(pool))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001360 return;
1361
Joe Thornbere49e5822012-07-27 15:08:16 +01001362 if (commit_or_fallback(pool)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001363 while ((bio = bio_list_pop(&bios)))
1364 bio_io_error(bio);
1365 return;
1366 }
Joe Thornber905e51b2012-03-28 18:41:27 +01001367 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001368
1369 while ((bio = bio_list_pop(&bios)))
1370 generic_make_request(bio);
1371}
1372
1373static void do_worker(struct work_struct *ws)
1374{
1375 struct pool *pool = container_of(ws, struct pool, worker);
1376
Joe Thornbere49e5822012-07-27 15:08:16 +01001377 process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
1378 process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001379 process_deferred_bios(pool);
1380}
1381
Joe Thornber905e51b2012-03-28 18:41:27 +01001382/*
1383 * We want to commit periodically so that not too much
1384 * unwritten data builds up.
1385 */
1386static void do_waker(struct work_struct *ws)
1387{
1388 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
1389 wake_worker(pool);
1390 queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
1391}
1392
Joe Thornber991d9fa2011-10-31 20:21:18 +00001393/*----------------------------------------------------------------*/
1394
Joe Thornbere49e5822012-07-27 15:08:16 +01001395static enum pool_mode get_pool_mode(struct pool *pool)
1396{
1397 return pool->pf.mode;
1398}
1399
1400static void set_pool_mode(struct pool *pool, enum pool_mode mode)
1401{
1402 int r;
1403
1404 pool->pf.mode = mode;
1405
1406 switch (mode) {
1407 case PM_FAIL:
Mike Snitzer4fa59712013-08-21 17:30:40 -04001408 DMERR("%s: switching pool to failure mode",
1409 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001410 pool->process_bio = process_bio_fail;
1411 pool->process_discard = process_bio_fail;
1412 pool->process_prepared_mapping = process_prepared_mapping_fail;
1413 pool->process_prepared_discard = process_prepared_discard_fail;
1414 break;
1415
1416 case PM_READ_ONLY:
Mike Snitzer4fa59712013-08-21 17:30:40 -04001417 DMERR("%s: switching pool to read-only mode",
1418 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001419 r = dm_pool_abort_metadata(pool->pmd);
1420 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04001421 DMERR("%s: aborting transaction failed",
1422 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001423 set_pool_mode(pool, PM_FAIL);
1424 } else {
1425 dm_pool_metadata_read_only(pool->pmd);
1426 pool->process_bio = process_bio_read_only;
1427 pool->process_discard = process_discard;
1428 pool->process_prepared_mapping = process_prepared_mapping_fail;
1429 pool->process_prepared_discard = process_prepared_discard_passdown;
1430 }
1431 break;
1432
1433 case PM_WRITE:
1434 pool->process_bio = process_bio;
1435 pool->process_discard = process_discard;
1436 pool->process_prepared_mapping = process_prepared_mapping;
1437 pool->process_prepared_discard = process_prepared_discard;
1438 break;
1439 }
1440}
1441
1442/*----------------------------------------------------------------*/
1443
Joe Thornber991d9fa2011-10-31 20:21:18 +00001444/*
1445 * Mapping functions.
1446 */
1447
1448/*
1449 * Called only while mapping a thin bio to hand it over to the workqueue.
1450 */
1451static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
1452{
1453 unsigned long flags;
1454 struct pool *pool = tc->pool;
1455
1456 spin_lock_irqsave(&pool->lock, flags);
1457 bio_list_add(&pool->deferred_bios, bio);
1458 spin_unlock_irqrestore(&pool->lock, flags);
1459
1460 wake_worker(pool);
1461}
1462
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001463static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
Joe Thornbereb2aa482012-03-28 18:41:28 +01001464{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001465 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001466
1467 h->tc = tc;
1468 h->shared_read_entry = NULL;
Joe Thornbere8088072012-12-21 20:23:31 +00001469 h->all_io_entry = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01001470 h->overwrite_mapping = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01001471}
1472
Joe Thornber991d9fa2011-10-31 20:21:18 +00001473/*
1474 * Non-blocking function called from the thin target's map function.
1475 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001476static int thin_bio_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001477{
1478 int r;
1479 struct thin_c *tc = ti->private;
1480 dm_block_t block = get_bio_block(tc, bio);
1481 struct dm_thin_device *td = tc->td;
1482 struct dm_thin_lookup_result result;
Joe Thornber025b9682013-03-01 22:45:50 +00001483 struct dm_bio_prison_cell cell1, cell2;
1484 struct dm_bio_prison_cell *cell_result;
Joe Thornbere8088072012-12-21 20:23:31 +00001485 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001486
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001487 thin_hook_bio(tc, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001488
1489 if (get_pool_mode(tc->pool) == PM_FAIL) {
1490 bio_io_error(bio);
1491 return DM_MAPIO_SUBMITTED;
1492 }
1493
Joe Thornber104655f2012-03-28 18:41:28 +01001494 if (bio->bi_rw & (REQ_DISCARD | REQ_FLUSH | REQ_FUA)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001495 thin_defer_bio(tc, bio);
1496 return DM_MAPIO_SUBMITTED;
1497 }
1498
1499 r = dm_thin_find_block(td, block, 0, &result);
1500
1501 /*
1502 * Note that we defer readahead too.
1503 */
1504 switch (r) {
1505 case 0:
1506 if (unlikely(result.shared)) {
1507 /*
1508 * We have a race condition here between the
1509 * result.shared value returned by the lookup and
1510 * snapshot creation, which may cause new
1511 * sharing.
1512 *
1513 * To avoid this always quiesce the origin before
1514 * taking the snap. You want to do this anyway to
1515 * ensure a consistent application view
1516 * (i.e. lockfs).
1517 *
1518 * More distant ancestors are irrelevant. The
1519 * shared flag will be set in their case.
1520 */
1521 thin_defer_bio(tc, bio);
Joe Thornbere8088072012-12-21 20:23:31 +00001522 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001523 }
Joe Thornbere8088072012-12-21 20:23:31 +00001524
1525 build_virtual_key(tc->td, block, &key);
Joe Thornber025b9682013-03-01 22:45:50 +00001526 if (dm_bio_detain(tc->pool->prison, &key, bio, &cell1, &cell_result))
Joe Thornbere8088072012-12-21 20:23:31 +00001527 return DM_MAPIO_SUBMITTED;
1528
1529 build_data_key(tc->td, result.block, &key);
Joe Thornber025b9682013-03-01 22:45:50 +00001530 if (dm_bio_detain(tc->pool->prison, &key, bio, &cell2, &cell_result)) {
1531 cell_defer_no_holder_no_free(tc, &cell1);
Joe Thornbere8088072012-12-21 20:23:31 +00001532 return DM_MAPIO_SUBMITTED;
1533 }
1534
1535 inc_all_io_entry(tc->pool, bio);
Joe Thornber025b9682013-03-01 22:45:50 +00001536 cell_defer_no_holder_no_free(tc, &cell2);
1537 cell_defer_no_holder_no_free(tc, &cell1);
Joe Thornbere8088072012-12-21 20:23:31 +00001538
1539 remap(tc, bio, result.block);
1540 return DM_MAPIO_REMAPPED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001541
1542 case -ENODATA:
Joe Thornbere49e5822012-07-27 15:08:16 +01001543 if (get_pool_mode(tc->pool) == PM_READ_ONLY) {
1544 /*
1545 * This block isn't provisioned, and we have no way
1546 * of doing so. Just error it.
1547 */
1548 bio_io_error(bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001549 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01001550 }
1551 /* fall through */
1552
1553 case -EWOULDBLOCK:
Joe Thornber991d9fa2011-10-31 20:21:18 +00001554 /*
1555 * In future, the failed dm_thin_find_block above could
1556 * provide the hint to load the metadata into cache.
1557 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001558 thin_defer_bio(tc, bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001559 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01001560
1561 default:
1562 /*
1563 * Must always call bio_io_error on failure.
1564 * dm_thin_find_block can fail with -EINVAL if the
1565 * pool is switched to fail-io mode.
1566 */
1567 bio_io_error(bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001568 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001569 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001570}
1571
1572static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
1573{
1574 int r;
1575 unsigned long flags;
1576 struct pool_c *pt = container_of(cb, struct pool_c, callbacks);
1577
1578 spin_lock_irqsave(&pt->pool->lock, flags);
1579 r = !bio_list_empty(&pt->pool->retry_on_resume_list);
1580 spin_unlock_irqrestore(&pt->pool->lock, flags);
1581
1582 if (!r) {
1583 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
1584 r = bdi_congested(&q->backing_dev_info, bdi_bits);
1585 }
1586
1587 return r;
1588}
1589
1590static void __requeue_bios(struct pool *pool)
1591{
1592 bio_list_merge(&pool->deferred_bios, &pool->retry_on_resume_list);
1593 bio_list_init(&pool->retry_on_resume_list);
1594}
1595
1596/*----------------------------------------------------------------
1597 * Binding of control targets to a pool object
1598 *--------------------------------------------------------------*/
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001599static bool data_dev_supports_discard(struct pool_c *pt)
1600{
1601 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
1602
1603 return q && blk_queue_discard(q);
1604}
1605
Joe Thornber58051b92013-03-20 17:21:25 +00001606static bool is_factor(sector_t block_size, uint32_t n)
1607{
1608 return !sector_div(block_size, n);
1609}
1610
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001611/*
1612 * If discard_passdown was enabled verify that the data device
Mike Snitzer0424caa2012-09-26 23:45:47 +01001613 * supports discards. Disable discard_passdown if not.
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001614 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01001615static void disable_passdown_if_not_supported(struct pool_c *pt)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001616{
Mike Snitzer0424caa2012-09-26 23:45:47 +01001617 struct pool *pool = pt->pool;
1618 struct block_device *data_bdev = pt->data_dev->bdev;
1619 struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
1620 sector_t block_size = pool->sectors_per_block << SECTOR_SHIFT;
1621 const char *reason = NULL;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001622 char buf[BDEVNAME_SIZE];
1623
Mike Snitzer0424caa2012-09-26 23:45:47 +01001624 if (!pt->adjusted_pf.discard_passdown)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001625 return;
1626
Mike Snitzer0424caa2012-09-26 23:45:47 +01001627 if (!data_dev_supports_discard(pt))
1628 reason = "discard unsupported";
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001629
Mike Snitzer0424caa2012-09-26 23:45:47 +01001630 else if (data_limits->max_discard_sectors < pool->sectors_per_block)
1631 reason = "max discard sectors smaller than a block";
1632
1633 else if (data_limits->discard_granularity > block_size)
1634 reason = "discard granularity larger than a block";
1635
Joe Thornber58051b92013-03-20 17:21:25 +00001636 else if (!is_factor(block_size, data_limits->discard_granularity))
Mike Snitzer0424caa2012-09-26 23:45:47 +01001637 reason = "discard granularity not a factor of block size";
1638
1639 if (reason) {
1640 DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason);
1641 pt->adjusted_pf.discard_passdown = false;
1642 }
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001643}
1644
Joe Thornber991d9fa2011-10-31 20:21:18 +00001645static int bind_control_target(struct pool *pool, struct dm_target *ti)
1646{
1647 struct pool_c *pt = ti->private;
1648
Joe Thornbere49e5822012-07-27 15:08:16 +01001649 /*
1650 * We want to make sure that degraded pools are never upgraded.
1651 */
1652 enum pool_mode old_mode = pool->pf.mode;
Mike Snitzer0424caa2012-09-26 23:45:47 +01001653 enum pool_mode new_mode = pt->adjusted_pf.mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01001654
1655 if (old_mode > new_mode)
1656 new_mode = old_mode;
1657
Joe Thornber991d9fa2011-10-31 20:21:18 +00001658 pool->ti = ti;
1659 pool->low_water_blocks = pt->low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01001660 pool->pf = pt->adjusted_pf;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001661
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001662 set_pool_mode(pool, new_mode);
Mike Snitzerf4026932012-05-19 01:01:01 +01001663
Joe Thornber991d9fa2011-10-31 20:21:18 +00001664 return 0;
1665}
1666
1667static void unbind_control_target(struct pool *pool, struct dm_target *ti)
1668{
1669 if (pool->ti == ti)
1670 pool->ti = NULL;
1671}
1672
1673/*----------------------------------------------------------------
1674 * Pool creation
1675 *--------------------------------------------------------------*/
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001676/* Initialize pool features. */
1677static void pool_features_init(struct pool_features *pf)
1678{
Joe Thornbere49e5822012-07-27 15:08:16 +01001679 pf->mode = PM_WRITE;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001680 pf->zero_new_blocks = true;
1681 pf->discard_enabled = true;
1682 pf->discard_passdown = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001683}
1684
Joe Thornber991d9fa2011-10-31 20:21:18 +00001685static void __pool_destroy(struct pool *pool)
1686{
1687 __pool_table_remove(pool);
1688
1689 if (dm_pool_metadata_close(pool->pmd) < 0)
1690 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
1691
Mike Snitzer44feb382012-10-12 21:02:10 +01001692 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001693 dm_kcopyd_client_destroy(pool->copier);
1694
1695 if (pool->wq)
1696 destroy_workqueue(pool->wq);
1697
1698 if (pool->next_mapping)
1699 mempool_free(pool->next_mapping, pool->mapping_pool);
1700 mempool_destroy(pool->mapping_pool);
Mike Snitzer44feb382012-10-12 21:02:10 +01001701 dm_deferred_set_destroy(pool->shared_read_ds);
1702 dm_deferred_set_destroy(pool->all_io_ds);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001703 kfree(pool);
1704}
1705
Mike Snitzera24c2562012-06-03 00:30:00 +01001706static struct kmem_cache *_new_mapping_cache;
Mike Snitzera24c2562012-06-03 00:30:00 +01001707
Joe Thornber991d9fa2011-10-31 20:21:18 +00001708static struct pool *pool_create(struct mapped_device *pool_md,
1709 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01001710 unsigned long block_size,
1711 int read_only, char **error)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001712{
1713 int r;
1714 void *err_p;
1715 struct pool *pool;
1716 struct dm_pool_metadata *pmd;
Joe Thornbere49e5822012-07-27 15:08:16 +01001717 bool format_device = read_only ? false : true;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001718
Joe Thornbere49e5822012-07-27 15:08:16 +01001719 pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001720 if (IS_ERR(pmd)) {
1721 *error = "Error creating metadata object";
1722 return (struct pool *)pmd;
1723 }
1724
1725 pool = kmalloc(sizeof(*pool), GFP_KERNEL);
1726 if (!pool) {
1727 *error = "Error allocating memory for pool";
1728 err_p = ERR_PTR(-ENOMEM);
1729 goto bad_pool;
1730 }
1731
1732 pool->pmd = pmd;
1733 pool->sectors_per_block = block_size;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +01001734 if (block_size & (block_size - 1))
1735 pool->sectors_per_block_shift = -1;
1736 else
1737 pool->sectors_per_block_shift = __ffs(block_size);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001738 pool->low_water_blocks = 0;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001739 pool_features_init(&pool->pf);
Mike Snitzer44feb382012-10-12 21:02:10 +01001740 pool->prison = dm_bio_prison_create(PRISON_CELLS);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001741 if (!pool->prison) {
1742 *error = "Error creating pool's bio prison";
1743 err_p = ERR_PTR(-ENOMEM);
1744 goto bad_prison;
1745 }
1746
Mikulas Patockadf5d2e92013-03-01 22:45:49 +00001747 pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001748 if (IS_ERR(pool->copier)) {
1749 r = PTR_ERR(pool->copier);
1750 *error = "Error creating pool's kcopyd client";
1751 err_p = ERR_PTR(r);
1752 goto bad_kcopyd_client;
1753 }
1754
1755 /*
1756 * Create singlethreaded workqueue that will service all devices
1757 * that use this metadata.
1758 */
1759 pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
1760 if (!pool->wq) {
1761 *error = "Error creating pool's workqueue";
1762 err_p = ERR_PTR(-ENOMEM);
1763 goto bad_wq;
1764 }
1765
1766 INIT_WORK(&pool->worker, do_worker);
Joe Thornber905e51b2012-03-28 18:41:27 +01001767 INIT_DELAYED_WORK(&pool->waker, do_waker);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001768 spin_lock_init(&pool->lock);
1769 bio_list_init(&pool->deferred_bios);
1770 bio_list_init(&pool->deferred_flush_bios);
1771 INIT_LIST_HEAD(&pool->prepared_mappings);
Joe Thornber104655f2012-03-28 18:41:28 +01001772 INIT_LIST_HEAD(&pool->prepared_discards);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001773 pool->low_water_triggered = 0;
1774 pool->no_free_space = 0;
1775 bio_list_init(&pool->retry_on_resume_list);
Mike Snitzer44feb382012-10-12 21:02:10 +01001776
1777 pool->shared_read_ds = dm_deferred_set_create();
1778 if (!pool->shared_read_ds) {
1779 *error = "Error creating pool's shared read deferred set";
1780 err_p = ERR_PTR(-ENOMEM);
1781 goto bad_shared_read_ds;
1782 }
1783
1784 pool->all_io_ds = dm_deferred_set_create();
1785 if (!pool->all_io_ds) {
1786 *error = "Error creating pool's all io deferred set";
1787 err_p = ERR_PTR(-ENOMEM);
1788 goto bad_all_io_ds;
1789 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001790
1791 pool->next_mapping = NULL;
Mike Snitzera24c2562012-06-03 00:30:00 +01001792 pool->mapping_pool = mempool_create_slab_pool(MAPPING_POOL_SIZE,
1793 _new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001794 if (!pool->mapping_pool) {
1795 *error = "Error creating pool's mapping mempool";
1796 err_p = ERR_PTR(-ENOMEM);
1797 goto bad_mapping_pool;
1798 }
1799
Joe Thornber991d9fa2011-10-31 20:21:18 +00001800 pool->ref_count = 1;
Joe Thornber905e51b2012-03-28 18:41:27 +01001801 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001802 pool->pool_md = pool_md;
1803 pool->md_dev = metadata_dev;
1804 __pool_table_insert(pool);
1805
1806 return pool;
1807
Joe Thornber991d9fa2011-10-31 20:21:18 +00001808bad_mapping_pool:
Mike Snitzer44feb382012-10-12 21:02:10 +01001809 dm_deferred_set_destroy(pool->all_io_ds);
1810bad_all_io_ds:
1811 dm_deferred_set_destroy(pool->shared_read_ds);
1812bad_shared_read_ds:
Joe Thornber991d9fa2011-10-31 20:21:18 +00001813 destroy_workqueue(pool->wq);
1814bad_wq:
1815 dm_kcopyd_client_destroy(pool->copier);
1816bad_kcopyd_client:
Mike Snitzer44feb382012-10-12 21:02:10 +01001817 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001818bad_prison:
1819 kfree(pool);
1820bad_pool:
1821 if (dm_pool_metadata_close(pmd))
1822 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
1823
1824 return err_p;
1825}
1826
1827static void __pool_inc(struct pool *pool)
1828{
1829 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
1830 pool->ref_count++;
1831}
1832
1833static void __pool_dec(struct pool *pool)
1834{
1835 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
1836 BUG_ON(!pool->ref_count);
1837 if (!--pool->ref_count)
1838 __pool_destroy(pool);
1839}
1840
1841static struct pool *__pool_find(struct mapped_device *pool_md,
1842 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01001843 unsigned long block_size, int read_only,
1844 char **error, int *created)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001845{
1846 struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
1847
1848 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01001849 if (pool->pool_md != pool_md) {
1850 *error = "metadata device already in use by a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00001851 return ERR_PTR(-EBUSY);
Mike Snitzerf09996c2012-07-27 15:07:59 +01001852 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001853 __pool_inc(pool);
1854
1855 } else {
1856 pool = __pool_table_lookup(pool_md);
1857 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01001858 if (pool->md_dev != metadata_dev) {
1859 *error = "different pool cannot replace a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00001860 return ERR_PTR(-EINVAL);
Mike Snitzerf09996c2012-07-27 15:07:59 +01001861 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001862 __pool_inc(pool);
1863
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001864 } else {
Joe Thornbere49e5822012-07-27 15:08:16 +01001865 pool = pool_create(pool_md, metadata_dev, block_size, read_only, error);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001866 *created = 1;
1867 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001868 }
1869
1870 return pool;
1871}
1872
1873/*----------------------------------------------------------------
1874 * Pool target methods
1875 *--------------------------------------------------------------*/
1876static void pool_dtr(struct dm_target *ti)
1877{
1878 struct pool_c *pt = ti->private;
1879
1880 mutex_lock(&dm_thin_pool_table.mutex);
1881
1882 unbind_control_target(pt->pool, ti);
1883 __pool_dec(pt->pool);
1884 dm_put_device(ti, pt->metadata_dev);
1885 dm_put_device(ti, pt->data_dev);
1886 kfree(pt);
1887
1888 mutex_unlock(&dm_thin_pool_table.mutex);
1889}
1890
Joe Thornber991d9fa2011-10-31 20:21:18 +00001891static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
1892 struct dm_target *ti)
1893{
1894 int r;
1895 unsigned argc;
1896 const char *arg_name;
1897
1898 static struct dm_arg _args[] = {
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001899 {0, 3, "Invalid number of pool feature arguments"},
Joe Thornber991d9fa2011-10-31 20:21:18 +00001900 };
1901
1902 /*
1903 * No feature arguments supplied.
1904 */
1905 if (!as->argc)
1906 return 0;
1907
1908 r = dm_read_arg_group(_args, as, &argc, &ti->error);
1909 if (r)
1910 return -EINVAL;
1911
1912 while (argc && !r) {
1913 arg_name = dm_shift_arg(as);
1914 argc--;
1915
Joe Thornbere49e5822012-07-27 15:08:16 +01001916 if (!strcasecmp(arg_name, "skip_block_zeroing"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001917 pf->zero_new_blocks = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001918
Joe Thornbere49e5822012-07-27 15:08:16 +01001919 else if (!strcasecmp(arg_name, "ignore_discard"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001920 pf->discard_enabled = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01001921
1922 else if (!strcasecmp(arg_name, "no_discard_passdown"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001923 pf->discard_passdown = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01001924
1925 else if (!strcasecmp(arg_name, "read_only"))
1926 pf->mode = PM_READ_ONLY;
1927
1928 else {
1929 ti->error = "Unrecognised pool feature requested";
1930 r = -EINVAL;
1931 break;
1932 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001933 }
1934
1935 return r;
1936}
1937
Joe Thornberac8c3f32013-05-10 14:37:21 +01001938static void metadata_low_callback(void *context)
1939{
1940 struct pool *pool = context;
1941
1942 DMWARN("%s: reached low water mark for metadata device: sending event.",
1943 dm_device_name(pool->pool_md));
1944
1945 dm_table_event(pool->ti->table);
1946}
1947
Joe Thornberb17446d2013-05-10 14:37:18 +01001948static sector_t get_metadata_dev_size(struct block_device *bdev)
1949{
1950 sector_t metadata_dev_size = i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
1951 char buffer[BDEVNAME_SIZE];
1952
1953 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING) {
1954 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
1955 bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS);
1956 metadata_dev_size = THIN_METADATA_MAX_SECTORS_WARNING;
1957 }
1958
1959 return metadata_dev_size;
1960}
1961
Joe Thornber24347e92013-05-10 14:37:19 +01001962static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
1963{
1964 sector_t metadata_dev_size = get_metadata_dev_size(bdev);
1965
1966 sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE >> SECTOR_SHIFT);
1967
1968 return metadata_dev_size;
1969}
1970
Joe Thornber991d9fa2011-10-31 20:21:18 +00001971/*
Joe Thornberac8c3f32013-05-10 14:37:21 +01001972 * When a metadata threshold is crossed a dm event is triggered, and
1973 * userland should respond by growing the metadata device. We could let
1974 * userland set the threshold, like we do with the data threshold, but I'm
1975 * not sure they know enough to do this well.
1976 */
1977static dm_block_t calc_metadata_threshold(struct pool_c *pt)
1978{
1979 /*
1980 * 4M is ample for all ops with the possible exception of thin
1981 * device deletion which is harmless if it fails (just retry the
1982 * delete after you've grown the device).
1983 */
1984 dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
1985 return min((dm_block_t)1024ULL /* 4M */, quarter);
1986}
1987
1988/*
Joe Thornber991d9fa2011-10-31 20:21:18 +00001989 * thin-pool <metadata dev> <data dev>
1990 * <data block size (sectors)>
1991 * <low water mark (blocks)>
1992 * [<#feature args> [<arg>]*]
1993 *
1994 * Optional feature arguments are:
1995 * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001996 * ignore_discard: disable discard
1997 * no_discard_passdown: don't pass discards down to the data device
Joe Thornber991d9fa2011-10-31 20:21:18 +00001998 */
1999static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv)
2000{
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002001 int r, pool_created = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002002 struct pool_c *pt;
2003 struct pool *pool;
2004 struct pool_features pf;
2005 struct dm_arg_set as;
2006 struct dm_dev *data_dev;
2007 unsigned long block_size;
2008 dm_block_t low_water_blocks;
2009 struct dm_dev *metadata_dev;
Joe Thornber5d0db962013-05-10 14:37:19 +01002010 fmode_t metadata_mode;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002011
2012 /*
2013 * FIXME Remove validation from scope of lock.
2014 */
2015 mutex_lock(&dm_thin_pool_table.mutex);
2016
2017 if (argc < 4) {
2018 ti->error = "Invalid argument count";
2019 r = -EINVAL;
2020 goto out_unlock;
2021 }
Joe Thornber5d0db962013-05-10 14:37:19 +01002022
Joe Thornber991d9fa2011-10-31 20:21:18 +00002023 as.argc = argc;
2024 as.argv = argv;
2025
Joe Thornber5d0db962013-05-10 14:37:19 +01002026 /*
2027 * Set default pool features.
2028 */
2029 pool_features_init(&pf);
2030
2031 dm_consume_args(&as, 4);
2032 r = parse_pool_features(&as, &pf, ti);
2033 if (r)
2034 goto out_unlock;
2035
2036 metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
2037 r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002038 if (r) {
2039 ti->error = "Error opening metadata block device";
2040 goto out_unlock;
2041 }
2042
Joe Thornberb17446d2013-05-10 14:37:18 +01002043 /*
2044 * Run for the side-effect of possibly issuing a warning if the
2045 * device is too big.
2046 */
2047 (void) get_metadata_dev_size(metadata_dev->bdev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002048
2049 r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
2050 if (r) {
2051 ti->error = "Error getting data device";
2052 goto out_metadata;
2053 }
2054
2055 if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
2056 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
2057 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002058 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002059 ti->error = "Invalid block size";
2060 r = -EINVAL;
2061 goto out;
2062 }
2063
2064 if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
2065 ti->error = "Invalid low water mark";
2066 r = -EINVAL;
2067 goto out;
2068 }
2069
Joe Thornber991d9fa2011-10-31 20:21:18 +00002070 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
2071 if (!pt) {
2072 r = -ENOMEM;
2073 goto out;
2074 }
2075
2076 pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002077 block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002078 if (IS_ERR(pool)) {
2079 r = PTR_ERR(pool);
2080 goto out_free_pt;
2081 }
2082
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002083 /*
2084 * 'pool_created' reflects whether this is the first table load.
2085 * Top level discard support is not allowed to be changed after
2086 * initial load. This would require a pool reload to trigger thin
2087 * device changes.
2088 */
2089 if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
2090 ti->error = "Discard support cannot be disabled once enabled";
2091 r = -EINVAL;
2092 goto out_flags_changed;
2093 }
2094
Joe Thornber991d9fa2011-10-31 20:21:18 +00002095 pt->pool = pool;
2096 pt->ti = ti;
2097 pt->metadata_dev = metadata_dev;
2098 pt->data_dev = data_dev;
2099 pt->low_water_blocks = low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002100 pt->adjusted_pf = pt->requested_pf = pf;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002101 ti->num_flush_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002102
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002103 /*
2104 * Only need to enable discards if the pool should pass
2105 * them down to the data device. The thin device's discard
2106 * processing will cause mappings to be removed from the btree.
2107 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04002108 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002109 if (pf.discard_enabled && pf.discard_passdown) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002110 ti->num_discard_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002111
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002112 /*
2113 * Setting 'discards_supported' circumvents the normal
2114 * stacking of discard limits (this keeps the pool and
2115 * thin devices' discard limits consistent).
2116 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01002117 ti->discards_supported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002118 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002119 ti->private = pt;
2120
Joe Thornberac8c3f32013-05-10 14:37:21 +01002121 r = dm_pool_register_metadata_threshold(pt->pool->pmd,
2122 calc_metadata_threshold(pt),
2123 metadata_low_callback,
2124 pool);
2125 if (r)
2126 goto out_free_pt;
2127
Joe Thornber991d9fa2011-10-31 20:21:18 +00002128 pt->callbacks.congested_fn = pool_is_congested;
2129 dm_table_add_target_callbacks(ti->table, &pt->callbacks);
2130
2131 mutex_unlock(&dm_thin_pool_table.mutex);
2132
2133 return 0;
2134
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002135out_flags_changed:
2136 __pool_dec(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002137out_free_pt:
2138 kfree(pt);
2139out:
2140 dm_put_device(ti, data_dev);
2141out_metadata:
2142 dm_put_device(ti, metadata_dev);
2143out_unlock:
2144 mutex_unlock(&dm_thin_pool_table.mutex);
2145
2146 return r;
2147}
2148
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002149static int pool_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002150{
2151 int r;
2152 struct pool_c *pt = ti->private;
2153 struct pool *pool = pt->pool;
2154 unsigned long flags;
2155
2156 /*
2157 * As this is a singleton target, ti->begin is always zero.
2158 */
2159 spin_lock_irqsave(&pool->lock, flags);
2160 bio->bi_bdev = pt->data_dev->bdev;
2161 r = DM_MAPIO_REMAPPED;
2162 spin_unlock_irqrestore(&pool->lock, flags);
2163
2164 return r;
2165}
2166
Joe Thornberb17446d2013-05-10 14:37:18 +01002167static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
2168{
2169 int r;
2170 struct pool_c *pt = ti->private;
2171 struct pool *pool = pt->pool;
2172 sector_t data_size = ti->len;
2173 dm_block_t sb_data_size;
2174
2175 *need_commit = false;
2176
2177 (void) sector_div(data_size, pool->sectors_per_block);
2178
2179 r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
2180 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002181 DMERR("%s: failed to retrieve data device size",
2182 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01002183 return r;
2184 }
2185
2186 if (data_size < sb_data_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002187 DMERR("%s: pool target (%llu blocks) too small: expected %llu",
2188 dm_device_name(pool->pool_md),
Joe Thornberb17446d2013-05-10 14:37:18 +01002189 (unsigned long long)data_size, sb_data_size);
2190 return -EINVAL;
2191
2192 } else if (data_size > sb_data_size) {
2193 r = dm_pool_resize_data_dev(pool->pmd, data_size);
2194 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002195 DMERR("%s: failed to resize data device",
2196 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01002197 set_pool_mode(pool, PM_READ_ONLY);
2198 return r;
2199 }
2200
2201 *need_commit = true;
2202 }
2203
2204 return 0;
2205}
2206
Joe Thornber24347e92013-05-10 14:37:19 +01002207static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
2208{
2209 int r;
2210 struct pool_c *pt = ti->private;
2211 struct pool *pool = pt->pool;
2212 dm_block_t metadata_dev_size, sb_metadata_dev_size;
2213
2214 *need_commit = false;
2215
Alasdair G Kergon610bba82013-05-19 18:57:50 +01002216 metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
Joe Thornber24347e92013-05-10 14:37:19 +01002217
2218 r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
2219 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002220 DMERR("%s: failed to retrieve metadata device size",
2221 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01002222 return r;
2223 }
2224
2225 if (metadata_dev_size < sb_metadata_dev_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002226 DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
2227 dm_device_name(pool->pool_md),
Joe Thornber24347e92013-05-10 14:37:19 +01002228 metadata_dev_size, sb_metadata_dev_size);
2229 return -EINVAL;
2230
2231 } else if (metadata_dev_size > sb_metadata_dev_size) {
2232 r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
2233 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002234 DMERR("%s: failed to resize metadata device",
2235 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01002236 return r;
2237 }
2238
2239 *need_commit = true;
2240 }
2241
2242 return 0;
2243}
2244
Joe Thornber991d9fa2011-10-31 20:21:18 +00002245/*
2246 * Retrieves the number of blocks of the data device from
2247 * the superblock and compares it to the actual device size,
2248 * thus resizing the data device in case it has grown.
2249 *
2250 * This both copes with opening preallocated data devices in the ctr
2251 * being followed by a resume
2252 * -and-
2253 * calling the resume method individually after userspace has
2254 * grown the data device in reaction to a table event.
2255 */
2256static int pool_preresume(struct dm_target *ti)
2257{
2258 int r;
Joe Thornber24347e92013-05-10 14:37:19 +01002259 bool need_commit1, need_commit2;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002260 struct pool_c *pt = ti->private;
2261 struct pool *pool = pt->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002262
2263 /*
2264 * Take control of the pool object.
2265 */
2266 r = bind_control_target(pool, ti);
2267 if (r)
2268 return r;
2269
Joe Thornberb17446d2013-05-10 14:37:18 +01002270 r = maybe_resize_data_dev(ti, &need_commit1);
2271 if (r)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002272 return r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002273
Joe Thornber24347e92013-05-10 14:37:19 +01002274 r = maybe_resize_metadata_dev(ti, &need_commit2);
2275 if (r)
2276 return r;
2277
2278 if (need_commit1 || need_commit2)
Joe Thornbere49e5822012-07-27 15:08:16 +01002279 (void) commit_or_fallback(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002280
2281 return 0;
2282}
2283
2284static void pool_resume(struct dm_target *ti)
2285{
2286 struct pool_c *pt = ti->private;
2287 struct pool *pool = pt->pool;
2288 unsigned long flags;
2289
2290 spin_lock_irqsave(&pool->lock, flags);
2291 pool->low_water_triggered = 0;
2292 pool->no_free_space = 0;
2293 __requeue_bios(pool);
2294 spin_unlock_irqrestore(&pool->lock, flags);
2295
Joe Thornber905e51b2012-03-28 18:41:27 +01002296 do_waker(&pool->waker.work);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002297}
2298
2299static void pool_postsuspend(struct dm_target *ti)
2300{
Joe Thornber991d9fa2011-10-31 20:21:18 +00002301 struct pool_c *pt = ti->private;
2302 struct pool *pool = pt->pool;
2303
Joe Thornber905e51b2012-03-28 18:41:27 +01002304 cancel_delayed_work(&pool->waker);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002305 flush_workqueue(pool->wq);
Joe Thornbere49e5822012-07-27 15:08:16 +01002306 (void) commit_or_fallback(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002307}
2308
2309static int check_arg_count(unsigned argc, unsigned args_required)
2310{
2311 if (argc != args_required) {
2312 DMWARN("Message received with %u arguments instead of %u.",
2313 argc, args_required);
2314 return -EINVAL;
2315 }
2316
2317 return 0;
2318}
2319
2320static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
2321{
2322 if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
2323 *dev_id <= MAX_DEV_ID)
2324 return 0;
2325
2326 if (warning)
2327 DMWARN("Message received with invalid device id: %s", arg);
2328
2329 return -EINVAL;
2330}
2331
2332static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool)
2333{
2334 dm_thin_id dev_id;
2335 int r;
2336
2337 r = check_arg_count(argc, 2);
2338 if (r)
2339 return r;
2340
2341 r = read_dev_id(argv[1], &dev_id, 1);
2342 if (r)
2343 return r;
2344
2345 r = dm_pool_create_thin(pool->pmd, dev_id);
2346 if (r) {
2347 DMWARN("Creation of new thinly-provisioned device with id %s failed.",
2348 argv[1]);
2349 return r;
2350 }
2351
2352 return 0;
2353}
2354
2355static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2356{
2357 dm_thin_id dev_id;
2358 dm_thin_id origin_dev_id;
2359 int r;
2360
2361 r = check_arg_count(argc, 3);
2362 if (r)
2363 return r;
2364
2365 r = read_dev_id(argv[1], &dev_id, 1);
2366 if (r)
2367 return r;
2368
2369 r = read_dev_id(argv[2], &origin_dev_id, 1);
2370 if (r)
2371 return r;
2372
2373 r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
2374 if (r) {
2375 DMWARN("Creation of new snapshot %s of device %s failed.",
2376 argv[1], argv[2]);
2377 return r;
2378 }
2379
2380 return 0;
2381}
2382
2383static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool)
2384{
2385 dm_thin_id dev_id;
2386 int r;
2387
2388 r = check_arg_count(argc, 2);
2389 if (r)
2390 return r;
2391
2392 r = read_dev_id(argv[1], &dev_id, 1);
2393 if (r)
2394 return r;
2395
2396 r = dm_pool_delete_thin_device(pool->pmd, dev_id);
2397 if (r)
2398 DMWARN("Deletion of thin device %s failed.", argv[1]);
2399
2400 return r;
2401}
2402
2403static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool)
2404{
2405 dm_thin_id old_id, new_id;
2406 int r;
2407
2408 r = check_arg_count(argc, 3);
2409 if (r)
2410 return r;
2411
2412 if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
2413 DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
2414 return -EINVAL;
2415 }
2416
2417 if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
2418 DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
2419 return -EINVAL;
2420 }
2421
2422 r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
2423 if (r) {
2424 DMWARN("Failed to change transaction id from %s to %s.",
2425 argv[1], argv[2]);
2426 return r;
2427 }
2428
2429 return 0;
2430}
2431
Joe Thornbercc8394d2012-06-03 00:30:01 +01002432static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2433{
2434 int r;
2435
2436 r = check_arg_count(argc, 1);
2437 if (r)
2438 return r;
2439
Joe Thornbere49e5822012-07-27 15:08:16 +01002440 (void) commit_or_fallback(pool);
Joe Thornber0d200ae2012-07-03 12:55:31 +01002441
Joe Thornbercc8394d2012-06-03 00:30:01 +01002442 r = dm_pool_reserve_metadata_snap(pool->pmd);
2443 if (r)
2444 DMWARN("reserve_metadata_snap message failed.");
2445
2446 return r;
2447}
2448
2449static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2450{
2451 int r;
2452
2453 r = check_arg_count(argc, 1);
2454 if (r)
2455 return r;
2456
2457 r = dm_pool_release_metadata_snap(pool->pmd);
2458 if (r)
2459 DMWARN("release_metadata_snap message failed.");
2460
2461 return r;
2462}
2463
Joe Thornber991d9fa2011-10-31 20:21:18 +00002464/*
2465 * Messages supported:
2466 * create_thin <dev_id>
2467 * create_snap <dev_id> <origin_id>
2468 * delete <dev_id>
2469 * trim <dev_id> <new_size_in_sectors>
2470 * set_transaction_id <current_trans_id> <new_trans_id>
Joe Thornbercc8394d2012-06-03 00:30:01 +01002471 * reserve_metadata_snap
2472 * release_metadata_snap
Joe Thornber991d9fa2011-10-31 20:21:18 +00002473 */
2474static int pool_message(struct dm_target *ti, unsigned argc, char **argv)
2475{
2476 int r = -EINVAL;
2477 struct pool_c *pt = ti->private;
2478 struct pool *pool = pt->pool;
2479
2480 if (!strcasecmp(argv[0], "create_thin"))
2481 r = process_create_thin_mesg(argc, argv, pool);
2482
2483 else if (!strcasecmp(argv[0], "create_snap"))
2484 r = process_create_snap_mesg(argc, argv, pool);
2485
2486 else if (!strcasecmp(argv[0], "delete"))
2487 r = process_delete_mesg(argc, argv, pool);
2488
2489 else if (!strcasecmp(argv[0], "set_transaction_id"))
2490 r = process_set_transaction_id_mesg(argc, argv, pool);
2491
Joe Thornbercc8394d2012-06-03 00:30:01 +01002492 else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
2493 r = process_reserve_metadata_snap_mesg(argc, argv, pool);
2494
2495 else if (!strcasecmp(argv[0], "release_metadata_snap"))
2496 r = process_release_metadata_snap_mesg(argc, argv, pool);
2497
Joe Thornber991d9fa2011-10-31 20:21:18 +00002498 else
2499 DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
2500
Joe Thornbere49e5822012-07-27 15:08:16 +01002501 if (!r)
2502 (void) commit_or_fallback(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002503
2504 return r;
2505}
2506
Joe Thornbere49e5822012-07-27 15:08:16 +01002507static void emit_flags(struct pool_features *pf, char *result,
2508 unsigned sz, unsigned maxlen)
2509{
2510 unsigned count = !pf->zero_new_blocks + !pf->discard_enabled +
2511 !pf->discard_passdown + (pf->mode == PM_READ_ONLY);
2512 DMEMIT("%u ", count);
2513
2514 if (!pf->zero_new_blocks)
2515 DMEMIT("skip_block_zeroing ");
2516
2517 if (!pf->discard_enabled)
2518 DMEMIT("ignore_discard ");
2519
2520 if (!pf->discard_passdown)
2521 DMEMIT("no_discard_passdown ");
2522
2523 if (pf->mode == PM_READ_ONLY)
2524 DMEMIT("read_only ");
2525}
2526
Joe Thornber991d9fa2011-10-31 20:21:18 +00002527/*
2528 * Status line is:
2529 * <transaction id> <used metadata sectors>/<total metadata sectors>
2530 * <used data sectors>/<total data sectors> <held metadata root>
2531 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002532static void pool_status(struct dm_target *ti, status_type_t type,
2533 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002534{
Joe Thornbere49e5822012-07-27 15:08:16 +01002535 int r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002536 unsigned sz = 0;
2537 uint64_t transaction_id;
2538 dm_block_t nr_free_blocks_data;
2539 dm_block_t nr_free_blocks_metadata;
2540 dm_block_t nr_blocks_data;
2541 dm_block_t nr_blocks_metadata;
2542 dm_block_t held_root;
2543 char buf[BDEVNAME_SIZE];
2544 char buf2[BDEVNAME_SIZE];
2545 struct pool_c *pt = ti->private;
2546 struct pool *pool = pt->pool;
2547
2548 switch (type) {
2549 case STATUSTYPE_INFO:
Joe Thornbere49e5822012-07-27 15:08:16 +01002550 if (get_pool_mode(pool) == PM_FAIL) {
2551 DMEMIT("Fail");
2552 break;
2553 }
2554
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01002555 /* Commit to ensure statistics aren't out-of-date */
2556 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
2557 (void) commit_or_fallback(pool);
2558
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002559 r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
2560 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002561 DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
2562 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002563 goto err;
2564 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002565
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002566 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
2567 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002568 DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
2569 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002570 goto err;
2571 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002572
2573 r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002574 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002575 DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
2576 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002577 goto err;
2578 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002579
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002580 r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
2581 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002582 DMERR("%s: dm_pool_get_free_block_count returned %d",
2583 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002584 goto err;
2585 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002586
2587 r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002588 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002589 DMERR("%s: dm_pool_get_data_dev_size returned %d",
2590 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002591 goto err;
2592 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002593
Joe Thornbercc8394d2012-06-03 00:30:01 +01002594 r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002595 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002596 DMERR("%s: dm_pool_get_metadata_snap returned %d",
2597 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002598 goto err;
2599 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002600
2601 DMEMIT("%llu %llu/%llu %llu/%llu ",
2602 (unsigned long long)transaction_id,
2603 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
2604 (unsigned long long)nr_blocks_metadata,
2605 (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
2606 (unsigned long long)nr_blocks_data);
2607
2608 if (held_root)
Joe Thornbere49e5822012-07-27 15:08:16 +01002609 DMEMIT("%llu ", held_root);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002610 else
Joe Thornbere49e5822012-07-27 15:08:16 +01002611 DMEMIT("- ");
2612
2613 if (pool->pf.mode == PM_READ_ONLY)
2614 DMEMIT("ro ");
2615 else
2616 DMEMIT("rw ");
2617
Mike Snitzer018debe2012-12-21 20:23:32 +00002618 if (!pool->pf.discard_enabled)
2619 DMEMIT("ignore_discard");
2620 else if (pool->pf.discard_passdown)
Joe Thornbere49e5822012-07-27 15:08:16 +01002621 DMEMIT("discard_passdown");
2622 else
2623 DMEMIT("no_discard_passdown");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002624
2625 break;
2626
2627 case STATUSTYPE_TABLE:
2628 DMEMIT("%s %s %lu %llu ",
2629 format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
2630 format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
2631 (unsigned long)pool->sectors_per_block,
2632 (unsigned long long)pt->low_water_blocks);
Mike Snitzer0424caa2012-09-26 23:45:47 +01002633 emit_flags(&pt->requested_pf, result, sz, maxlen);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002634 break;
2635 }
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002636 return;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002637
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002638err:
2639 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002640}
2641
2642static int pool_iterate_devices(struct dm_target *ti,
2643 iterate_devices_callout_fn fn, void *data)
2644{
2645 struct pool_c *pt = ti->private;
2646
2647 return fn(ti, pt->data_dev, 0, ti->len, data);
2648}
2649
2650static int pool_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
2651 struct bio_vec *biovec, int max_size)
2652{
2653 struct pool_c *pt = ti->private;
2654 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
2655
2656 if (!q->merge_bvec_fn)
2657 return max_size;
2658
2659 bvm->bi_bdev = pt->data_dev->bdev;
2660
2661 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2662}
2663
Mike Snitzer0424caa2012-09-26 23:45:47 +01002664static void set_discard_limits(struct pool_c *pt, struct queue_limits *limits)
Joe Thornber104655f2012-03-28 18:41:28 +01002665{
Mike Snitzer0424caa2012-09-26 23:45:47 +01002666 struct pool *pool = pt->pool;
2667 struct queue_limits *data_limits;
2668
Joe Thornber104655f2012-03-28 18:41:28 +01002669 limits->max_discard_sectors = pool->sectors_per_block;
2670
2671 /*
Mike Snitzer0424caa2012-09-26 23:45:47 +01002672 * discard_granularity is just a hint, and not enforced.
Joe Thornber104655f2012-03-28 18:41:28 +01002673 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01002674 if (pt->adjusted_pf.discard_passdown) {
2675 data_limits = &bdev_get_queue(pt->data_dev->bdev)->limits;
2676 limits->discard_granularity = data_limits->discard_granularity;
Mike Snitzerf13945d2013-03-01 22:45:44 +00002677 } else
Mike Snitzer0424caa2012-09-26 23:45:47 +01002678 limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
Joe Thornber104655f2012-03-28 18:41:28 +01002679}
2680
Joe Thornber991d9fa2011-10-31 20:21:18 +00002681static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
2682{
2683 struct pool_c *pt = ti->private;
2684 struct pool *pool = pt->pool;
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04002685 uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002686
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04002687 /*
2688 * If the system-determined stacked limits are compatible with the
2689 * pool's blocksize (io_opt is a factor) do not override them.
2690 */
2691 if (io_opt_sectors < pool->sectors_per_block ||
2692 do_div(io_opt_sectors, pool->sectors_per_block)) {
2693 blk_limits_io_min(limits, 0);
2694 blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
2695 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01002696
2697 /*
2698 * pt->adjusted_pf is a staging area for the actual features to use.
2699 * They get transferred to the live pool in bind_control_target()
2700 * called from pool_preresume().
2701 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04002702 if (!pt->adjusted_pf.discard_enabled) {
2703 /*
2704 * Must explicitly disallow stacking discard limits otherwise the
2705 * block layer will stack them if pool's data device has support.
2706 * QUEUE_FLAG_DISCARD wouldn't be set but there is no way for the
2707 * user to see that, so make sure to set all discard limits to 0.
2708 */
2709 limits->discard_granularity = 0;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002710 return;
Mike Snitzerb60ab992013-09-19 18:49:11 -04002711 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01002712
2713 disable_passdown_if_not_supported(pt);
2714
2715 set_discard_limits(pt, limits);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002716}
2717
2718static struct target_type pool_target = {
2719 .name = "thin-pool",
2720 .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
2721 DM_TARGET_IMMUTABLE,
Mike Snitzer94563ba2013-08-22 09:56:18 -04002722 .version = {1, 9, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00002723 .module = THIS_MODULE,
2724 .ctr = pool_ctr,
2725 .dtr = pool_dtr,
2726 .map = pool_map,
2727 .postsuspend = pool_postsuspend,
2728 .preresume = pool_preresume,
2729 .resume = pool_resume,
2730 .message = pool_message,
2731 .status = pool_status,
2732 .merge = pool_merge,
2733 .iterate_devices = pool_iterate_devices,
2734 .io_hints = pool_io_hints,
2735};
2736
2737/*----------------------------------------------------------------
2738 * Thin target methods
2739 *--------------------------------------------------------------*/
2740static void thin_dtr(struct dm_target *ti)
2741{
2742 struct thin_c *tc = ti->private;
2743
2744 mutex_lock(&dm_thin_pool_table.mutex);
2745
2746 __pool_dec(tc->pool);
2747 dm_pool_close_thin_device(tc->td);
2748 dm_put_device(ti, tc->pool_dev);
Joe Thornber2dd9c252012-03-28 18:41:28 +01002749 if (tc->origin_dev)
2750 dm_put_device(ti, tc->origin_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002751 kfree(tc);
2752
2753 mutex_unlock(&dm_thin_pool_table.mutex);
2754}
2755
2756/*
2757 * Thin target parameters:
2758 *
Joe Thornber2dd9c252012-03-28 18:41:28 +01002759 * <pool_dev> <dev_id> [origin_dev]
Joe Thornber991d9fa2011-10-31 20:21:18 +00002760 *
2761 * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
2762 * dev_id: the internal device identifier
Joe Thornber2dd9c252012-03-28 18:41:28 +01002763 * origin_dev: a device external to the pool that should act as the origin
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002764 *
2765 * If the pool device has discards disabled, they get disabled for the thin
2766 * device as well.
Joe Thornber991d9fa2011-10-31 20:21:18 +00002767 */
2768static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
2769{
2770 int r;
2771 struct thin_c *tc;
Joe Thornber2dd9c252012-03-28 18:41:28 +01002772 struct dm_dev *pool_dev, *origin_dev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002773 struct mapped_device *pool_md;
2774
2775 mutex_lock(&dm_thin_pool_table.mutex);
2776
Joe Thornber2dd9c252012-03-28 18:41:28 +01002777 if (argc != 2 && argc != 3) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002778 ti->error = "Invalid argument count";
2779 r = -EINVAL;
2780 goto out_unlock;
2781 }
2782
2783 tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
2784 if (!tc) {
2785 ti->error = "Out of memory";
2786 r = -ENOMEM;
2787 goto out_unlock;
2788 }
2789
Joe Thornber2dd9c252012-03-28 18:41:28 +01002790 if (argc == 3) {
2791 r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
2792 if (r) {
2793 ti->error = "Error opening origin device";
2794 goto bad_origin_dev;
2795 }
2796 tc->origin_dev = origin_dev;
2797 }
2798
Joe Thornber991d9fa2011-10-31 20:21:18 +00002799 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
2800 if (r) {
2801 ti->error = "Error opening pool device";
2802 goto bad_pool_dev;
2803 }
2804 tc->pool_dev = pool_dev;
2805
2806 if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
2807 ti->error = "Invalid device id";
2808 r = -EINVAL;
2809 goto bad_common;
2810 }
2811
2812 pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
2813 if (!pool_md) {
2814 ti->error = "Couldn't get pool mapped device";
2815 r = -EINVAL;
2816 goto bad_common;
2817 }
2818
2819 tc->pool = __pool_table_lookup(pool_md);
2820 if (!tc->pool) {
2821 ti->error = "Couldn't find pool object";
2822 r = -EINVAL;
2823 goto bad_pool_lookup;
2824 }
2825 __pool_inc(tc->pool);
2826
Joe Thornbere49e5822012-07-27 15:08:16 +01002827 if (get_pool_mode(tc->pool) == PM_FAIL) {
2828 ti->error = "Couldn't open thin device, Pool is in fail mode";
2829 goto bad_thin_open;
2830 }
2831
Joe Thornber991d9fa2011-10-31 20:21:18 +00002832 r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
2833 if (r) {
2834 ti->error = "Couldn't open thin internal device";
2835 goto bad_thin_open;
2836 }
2837
Mike Snitzer542f9032012-07-27 15:08:00 +01002838 r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
2839 if (r)
2840 goto bad_thin_open;
2841
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002842 ti->num_flush_bios = 1;
Joe Thornber16ad3d12012-07-27 15:08:07 +01002843 ti->flush_supported = true;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002844 ti->per_bio_data_size = sizeof(struct dm_thin_endio_hook);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002845
2846 /* In case the pool supports discards, pass them on. */
Mike Snitzerb60ab992013-09-19 18:49:11 -04002847 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002848 if (tc->pool->pf.discard_enabled) {
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01002849 ti->discards_supported = true;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002850 ti->num_discard_bios = 1;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002851 /* Discard bios must be split on a block boundary */
2852 ti->split_discard_bios = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002853 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002854
2855 dm_put(pool_md);
2856
2857 mutex_unlock(&dm_thin_pool_table.mutex);
2858
2859 return 0;
2860
2861bad_thin_open:
2862 __pool_dec(tc->pool);
2863bad_pool_lookup:
2864 dm_put(pool_md);
2865bad_common:
2866 dm_put_device(ti, tc->pool_dev);
2867bad_pool_dev:
Joe Thornber2dd9c252012-03-28 18:41:28 +01002868 if (tc->origin_dev)
2869 dm_put_device(ti, tc->origin_dev);
2870bad_origin_dev:
Joe Thornber991d9fa2011-10-31 20:21:18 +00002871 kfree(tc);
2872out_unlock:
2873 mutex_unlock(&dm_thin_pool_table.mutex);
2874
2875 return r;
2876}
2877
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002878static int thin_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002879{
Alasdair G Kergon6efd6e82012-03-28 18:41:28 +01002880 bio->bi_sector = dm_target_offset(ti, bio->bi_sector);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002881
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002882 return thin_bio_map(ti, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002883}
2884
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002885static int thin_endio(struct dm_target *ti, struct bio *bio, int err)
Joe Thornbereb2aa482012-03-28 18:41:28 +01002886{
2887 unsigned long flags;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002888 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01002889 struct list_head work;
Mike Snitzera24c2562012-06-03 00:30:00 +01002890 struct dm_thin_new_mapping *m, *tmp;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002891 struct pool *pool = h->tc->pool;
2892
2893 if (h->shared_read_entry) {
2894 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01002895 dm_deferred_entry_dec(h->shared_read_entry, &work);
Joe Thornbereb2aa482012-03-28 18:41:28 +01002896
2897 spin_lock_irqsave(&pool->lock, flags);
2898 list_for_each_entry_safe(m, tmp, &work, list) {
2899 list_del(&m->list);
2900 m->quiesced = 1;
2901 __maybe_add_mapping(m);
2902 }
2903 spin_unlock_irqrestore(&pool->lock, flags);
2904 }
2905
Joe Thornber104655f2012-03-28 18:41:28 +01002906 if (h->all_io_entry) {
2907 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01002908 dm_deferred_entry_dec(h->all_io_entry, &work);
Joe Thornber563af182012-12-21 20:23:31 +00002909 if (!list_empty(&work)) {
2910 spin_lock_irqsave(&pool->lock, flags);
2911 list_for_each_entry_safe(m, tmp, &work, list)
2912 list_add(&m->list, &pool->prepared_discards);
2913 spin_unlock_irqrestore(&pool->lock, flags);
2914 wake_worker(pool);
2915 }
Joe Thornber104655f2012-03-28 18:41:28 +01002916 }
2917
Joe Thornbereb2aa482012-03-28 18:41:28 +01002918 return 0;
2919}
2920
Joe Thornber991d9fa2011-10-31 20:21:18 +00002921static void thin_postsuspend(struct dm_target *ti)
2922{
2923 if (dm_noflush_suspending(ti))
2924 requeue_io((struct thin_c *)ti->private);
2925}
2926
2927/*
2928 * <nr mapped sectors> <highest mapped sector>
2929 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002930static void thin_status(struct dm_target *ti, status_type_t type,
2931 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002932{
2933 int r;
2934 ssize_t sz = 0;
2935 dm_block_t mapped, highest;
2936 char buf[BDEVNAME_SIZE];
2937 struct thin_c *tc = ti->private;
2938
Joe Thornbere49e5822012-07-27 15:08:16 +01002939 if (get_pool_mode(tc->pool) == PM_FAIL) {
2940 DMEMIT("Fail");
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002941 return;
Joe Thornbere49e5822012-07-27 15:08:16 +01002942 }
2943
Joe Thornber991d9fa2011-10-31 20:21:18 +00002944 if (!tc->td)
2945 DMEMIT("-");
2946 else {
2947 switch (type) {
2948 case STATUSTYPE_INFO:
2949 r = dm_thin_get_mapped_count(tc->td, &mapped);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002950 if (r) {
2951 DMERR("dm_thin_get_mapped_count returned %d", r);
2952 goto err;
2953 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002954
2955 r = dm_thin_get_highest_mapped_block(tc->td, &highest);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002956 if (r < 0) {
2957 DMERR("dm_thin_get_highest_mapped_block returned %d", r);
2958 goto err;
2959 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002960
2961 DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
2962 if (r)
2963 DMEMIT("%llu", ((highest + 1) *
2964 tc->pool->sectors_per_block) - 1);
2965 else
2966 DMEMIT("-");
2967 break;
2968
2969 case STATUSTYPE_TABLE:
2970 DMEMIT("%s %lu",
2971 format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
2972 (unsigned long) tc->dev_id);
Joe Thornber2dd9c252012-03-28 18:41:28 +01002973 if (tc->origin_dev)
2974 DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
Joe Thornber991d9fa2011-10-31 20:21:18 +00002975 break;
2976 }
2977 }
2978
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002979 return;
2980
2981err:
2982 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002983}
2984
2985static int thin_iterate_devices(struct dm_target *ti,
2986 iterate_devices_callout_fn fn, void *data)
2987{
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002988 sector_t blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002989 struct thin_c *tc = ti->private;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002990 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002991
2992 /*
2993 * We can't call dm_pool_get_data_dev_size() since that blocks. So
2994 * we follow a more convoluted path through to the pool's target.
2995 */
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002996 if (!pool->ti)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002997 return 0; /* nothing is bound */
2998
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002999 blocks = pool->ti->len;
3000 (void) sector_div(blocks, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003001 if (blocks)
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01003002 return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003003
3004 return 0;
3005}
3006
Joe Thornber991d9fa2011-10-31 20:21:18 +00003007static struct target_type thin_target = {
3008 .name = "thin",
Mike Snitzer94563ba2013-08-22 09:56:18 -04003009 .version = {1, 9, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00003010 .module = THIS_MODULE,
3011 .ctr = thin_ctr,
3012 .dtr = thin_dtr,
3013 .map = thin_map,
Joe Thornbereb2aa482012-03-28 18:41:28 +01003014 .end_io = thin_endio,
Joe Thornber991d9fa2011-10-31 20:21:18 +00003015 .postsuspend = thin_postsuspend,
3016 .status = thin_status,
3017 .iterate_devices = thin_iterate_devices,
Joe Thornber991d9fa2011-10-31 20:21:18 +00003018};
3019
3020/*----------------------------------------------------------------*/
3021
3022static int __init dm_thin_init(void)
3023{
3024 int r;
3025
3026 pool_table_init();
3027
3028 r = dm_register_target(&thin_target);
3029 if (r)
3030 return r;
3031
3032 r = dm_register_target(&pool_target);
3033 if (r)
Mike Snitzera24c2562012-06-03 00:30:00 +01003034 goto bad_pool_target;
3035
3036 r = -ENOMEM;
3037
Mike Snitzera24c2562012-06-03 00:30:00 +01003038 _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
3039 if (!_new_mapping_cache)
3040 goto bad_new_mapping_cache;
3041
Mike Snitzera24c2562012-06-03 00:30:00 +01003042 return 0;
3043
Mike Snitzera24c2562012-06-03 00:30:00 +01003044bad_new_mapping_cache:
Mike Snitzera24c2562012-06-03 00:30:00 +01003045 dm_unregister_target(&pool_target);
3046bad_pool_target:
3047 dm_unregister_target(&thin_target);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003048
3049 return r;
3050}
3051
3052static void dm_thin_exit(void)
3053{
3054 dm_unregister_target(&thin_target);
3055 dm_unregister_target(&pool_target);
Mike Snitzera24c2562012-06-03 00:30:00 +01003056
Mike Snitzera24c2562012-06-03 00:30:00 +01003057 kmem_cache_destroy(_new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003058}
3059
3060module_init(dm_thin_init);
3061module_exit(dm_thin_exit);
3062
Alasdair G Kergon7cab8bf2012-05-12 01:43:19 +01003063MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003064MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3065MODULE_LICENSE("GPL");