blob: 0d7852e2b275602d8a64b151781f4b3411f94c71 [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 +0100886/*
887 * A non-zero return indicates read_only or fail_io mode.
888 * Many callers don't care about the return value.
889 */
Joe Thornber020cc3b2013-12-04 15:05:36 -0500890static int commit(struct pool *pool)
Joe Thornbere49e5822012-07-27 15:08:16 +0100891{
892 int r;
893
894 if (get_pool_mode(pool) != PM_WRITE)
895 return -EINVAL;
896
Joe Thornber020cc3b2013-12-04 15:05:36 -0500897 r = dm_pool_commit_metadata(pool->pmd);
898 if (r) {
899 DMERR_LIMIT("%s: dm_pool_commit_metadata failed: error = %d",
900 dm_device_name(pool->pool_md), r);
Joe Thornbere49e5822012-07-27 15:08:16 +0100901 set_pool_mode(pool, PM_READ_ONLY);
Joe Thornber020cc3b2013-12-04 15:05:36 -0500902 }
Joe Thornbere49e5822012-07-27 15:08:16 +0100903
904 return r;
905}
906
Joe Thornber991d9fa2011-10-31 20:21:18 +0000907static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
908{
909 int r;
910 dm_block_t free_blocks;
911 unsigned long flags;
912 struct pool *pool = tc->pool;
913
Mike Snitzer94563ba2013-08-22 09:56:18 -0400914 /*
915 * Once no_free_space is set we must not allow allocation to succeed.
916 * Otherwise it is difficult to explain, debug, test and support.
917 */
918 if (pool->no_free_space)
919 return -ENOSPC;
920
Joe Thornber991d9fa2011-10-31 20:21:18 +0000921 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
922 if (r)
923 return r;
924
925 if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
Joe Thornberb17446d2013-05-10 14:37:18 +0100926 DMWARN("%s: reached low water mark for data device: sending event.",
Joe Thornber991d9fa2011-10-31 20:21:18 +0000927 dm_device_name(pool->pool_md));
928 spin_lock_irqsave(&pool->lock, flags);
929 pool->low_water_triggered = 1;
930 spin_unlock_irqrestore(&pool->lock, flags);
931 dm_table_event(pool->ti->table);
932 }
933
934 if (!free_blocks) {
Mike Snitzer94563ba2013-08-22 09:56:18 -0400935 /*
936 * Try to commit to see if that will free up some
937 * more space.
938 */
Joe Thornber020cc3b2013-12-04 15:05:36 -0500939 r = commit(pool);
940 if (r)
941 return r;
Mike Snitzer94563ba2013-08-22 09:56:18 -0400942
943 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
944 if (r)
945 return r;
946
947 /*
948 * If we still have no space we set a flag to avoid
949 * doing all this checking and return -ENOSPC. This
950 * flag serves as a latch that disallows allocations from
951 * this pool until the admin takes action (e.g. resize or
952 * table reload).
953 */
954 if (!free_blocks) {
Mike Snitzer4a02b342013-12-03 12:20:57 -0500955 DMWARN("%s: no free data space available.",
Mike Snitzer94563ba2013-08-22 09:56:18 -0400956 dm_device_name(pool->pool_md));
957 spin_lock_irqsave(&pool->lock, flags);
958 pool->no_free_space = 1;
959 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000960 return -ENOSPC;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000961 }
962 }
963
964 r = dm_pool_alloc_data_block(pool->pmd, result);
Mike Snitzer4a02b342013-12-03 12:20:57 -0500965 if (r) {
966 if (r == -ENOSPC &&
967 !dm_pool_get_free_metadata_block_count(pool->pmd, &free_blocks) &&
968 !free_blocks) {
969 DMWARN("%s: no free metadata space available.",
970 dm_device_name(pool->pool_md));
971 set_pool_mode(pool, PM_READ_ONLY);
972 }
Joe Thornber991d9fa2011-10-31 20:21:18 +0000973 return r;
Mike Snitzer4a02b342013-12-03 12:20:57 -0500974 }
Joe Thornber991d9fa2011-10-31 20:21:18 +0000975
976 return 0;
977}
978
979/*
980 * If we have run out of space, queue bios until the device is
981 * resumed, presumably after having been reloaded with more space.
982 */
983static void retry_on_resume(struct bio *bio)
984{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000985 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +0100986 struct thin_c *tc = h->tc;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000987 struct pool *pool = tc->pool;
988 unsigned long flags;
989
990 spin_lock_irqsave(&pool->lock, flags);
991 bio_list_add(&pool->retry_on_resume_list, bio);
992 spin_unlock_irqrestore(&pool->lock, flags);
993}
994
Joe Thornber6beca5e2013-03-01 22:45:50 +0000995static void no_space(struct pool *pool, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000996{
997 struct bio *bio;
998 struct bio_list bios;
999
1000 bio_list_init(&bios);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001001 cell_release(pool, cell, &bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001002
1003 while ((bio = bio_list_pop(&bios)))
1004 retry_on_resume(bio);
1005}
1006
Joe Thornber104655f2012-03-28 18:41:28 +01001007static void process_discard(struct thin_c *tc, struct bio *bio)
1008{
1009 int r;
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001010 unsigned long flags;
Joe Thornber104655f2012-03-28 18:41:28 +01001011 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001012 struct dm_bio_prison_cell *cell, *cell2;
Mike Snitzer44feb382012-10-12 21:02:10 +01001013 struct dm_cell_key key, key2;
Joe Thornber104655f2012-03-28 18:41:28 +01001014 dm_block_t block = get_bio_block(tc, bio);
1015 struct dm_thin_lookup_result lookup_result;
Mike Snitzera24c2562012-06-03 00:30:00 +01001016 struct dm_thin_new_mapping *m;
Joe Thornber104655f2012-03-28 18:41:28 +01001017
1018 build_virtual_key(tc->td, block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001019 if (bio_detain(tc->pool, &key, bio, &cell))
Joe Thornber104655f2012-03-28 18:41:28 +01001020 return;
1021
1022 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1023 switch (r) {
1024 case 0:
1025 /*
1026 * Check nobody is fiddling with this pool block. This can
1027 * happen if someone's in the process of breaking sharing
1028 * on this block.
1029 */
1030 build_data_key(tc->td, lookup_result.block, &key2);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001031 if (bio_detain(tc->pool, &key2, bio, &cell2)) {
Joe Thornberf286ba02012-12-21 20:23:33 +00001032 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001033 break;
1034 }
1035
1036 if (io_overlaps_block(pool, bio)) {
1037 /*
1038 * IO may still be going to the destination block. We must
1039 * quiesce before we can do the removal.
1040 */
1041 m = get_next_mapping(pool);
1042 m->tc = tc;
Mike Snitzer17b7d632012-07-27 15:07:57 +01001043 m->pass_discard = (!lookup_result.shared) && pool->pf.discard_passdown;
Joe Thornber104655f2012-03-28 18:41:28 +01001044 m->virt_block = block;
1045 m->data_block = lookup_result.block;
1046 m->cell = cell;
1047 m->cell2 = cell2;
1048 m->err = 0;
1049 m->bio = bio;
1050
Mike Snitzer44feb382012-10-12 21:02:10 +01001051 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list)) {
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001052 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001053 list_add(&m->list, &pool->prepared_discards);
Mike Snitzerc3a0ce22012-05-12 01:43:16 +01001054 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001055 wake_worker(pool);
1056 }
1057 } else {
Joe Thornbere8088072012-12-21 20:23:31 +00001058 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001059 cell_defer_no_holder(tc, cell);
1060 cell_defer_no_holder(tc, cell2);
Joe Thornbere8088072012-12-21 20:23:31 +00001061
Joe Thornber104655f2012-03-28 18:41:28 +01001062 /*
Mikulas Patocka49296302012-07-27 15:08:03 +01001063 * The DM core makes sure that the discard doesn't span
1064 * a block boundary. So we submit the discard of a
1065 * partial block appropriately.
Joe Thornber104655f2012-03-28 18:41:28 +01001066 */
Mikulas Patocka650d2a02012-07-20 14:25:05 +01001067 if ((!lookup_result.shared) && pool->pf.discard_passdown)
1068 remap_and_issue(tc, bio, lookup_result.block);
1069 else
1070 bio_endio(bio, 0);
Joe Thornber104655f2012-03-28 18:41:28 +01001071 }
1072 break;
1073
1074 case -ENODATA:
1075 /*
1076 * It isn't provisioned, just forget it.
1077 */
Joe Thornberf286ba02012-12-21 20:23:33 +00001078 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001079 bio_endio(bio, 0);
1080 break;
1081
1082 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001083 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1084 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001085 cell_defer_no_holder(tc, cell);
Joe Thornber104655f2012-03-28 18:41:28 +01001086 bio_io_error(bio);
1087 break;
1088 }
1089}
1090
Joe Thornber991d9fa2011-10-31 20:21:18 +00001091static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzer44feb382012-10-12 21:02:10 +01001092 struct dm_cell_key *key,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001093 struct dm_thin_lookup_result *lookup_result,
Mike Snitzera24c2562012-06-03 00:30:00 +01001094 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001095{
1096 int r;
1097 dm_block_t data_block;
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001098 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001099
1100 r = alloc_data_block(tc, &data_block);
1101 switch (r) {
1102 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001103 schedule_internal_copy(tc, block, lookup_result->block,
1104 data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001105 break;
1106
1107 case -ENOSPC:
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001108 no_space(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001109 break;
1110
1111 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001112 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1113 __func__, r);
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001114 set_pool_mode(pool, PM_READ_ONLY);
1115 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001116 break;
1117 }
1118}
1119
1120static void process_shared_bio(struct thin_c *tc, struct bio *bio,
1121 dm_block_t block,
1122 struct dm_thin_lookup_result *lookup_result)
1123{
Mike Snitzera24c2562012-06-03 00:30:00 +01001124 struct dm_bio_prison_cell *cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001125 struct pool *pool = tc->pool;
Mike Snitzer44feb382012-10-12 21:02:10 +01001126 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001127
1128 /*
1129 * If cell is already occupied, then sharing is already in the process
1130 * of being broken so we have nothing further to do here.
1131 */
1132 build_data_key(tc->td, lookup_result->block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001133 if (bio_detain(pool, &key, bio, &cell))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001134 return;
1135
Joe Thornber60049702012-07-27 15:08:06 +01001136 if (bio_data_dir(bio) == WRITE && bio->bi_size)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001137 break_sharing(tc, bio, block, &key, lookup_result, cell);
1138 else {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001139 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornber991d9fa2011-10-31 20:21:18 +00001140
Mike Snitzer44feb382012-10-12 21:02:10 +01001141 h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
Joe Thornbere8088072012-12-21 20:23:31 +00001142 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001143 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001144
Joe Thornber991d9fa2011-10-31 20:21:18 +00001145 remap_and_issue(tc, bio, lookup_result->block);
1146 }
1147}
1148
1149static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001150 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001151{
1152 int r;
1153 dm_block_t data_block;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001154 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001155
1156 /*
1157 * Remap empty bios (flushes) immediately, without provisioning.
1158 */
1159 if (!bio->bi_size) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001160 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001161 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001162
Joe Thornber991d9fa2011-10-31 20:21:18 +00001163 remap_and_issue(tc, bio, 0);
1164 return;
1165 }
1166
1167 /*
1168 * Fill read bios with zeroes and complete them immediately.
1169 */
1170 if (bio_data_dir(bio) == READ) {
1171 zero_fill_bio(bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001172 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001173 bio_endio(bio, 0);
1174 return;
1175 }
1176
1177 r = alloc_data_block(tc, &data_block);
1178 switch (r) {
1179 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001180 if (tc->origin_dev)
1181 schedule_external_copy(tc, block, data_block, cell, bio);
1182 else
1183 schedule_zero(tc, block, data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001184 break;
1185
1186 case -ENOSPC:
Joe Thornber6beca5e2013-03-01 22:45:50 +00001187 no_space(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001188 break;
1189
1190 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001191 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1192 __func__, r);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001193 set_pool_mode(pool, PM_READ_ONLY);
1194 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001195 break;
1196 }
1197}
1198
1199static void process_bio(struct thin_c *tc, struct bio *bio)
1200{
1201 int r;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001202 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001203 dm_block_t block = get_bio_block(tc, bio);
Mike Snitzera24c2562012-06-03 00:30:00 +01001204 struct dm_bio_prison_cell *cell;
Mike Snitzer44feb382012-10-12 21:02:10 +01001205 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001206 struct dm_thin_lookup_result lookup_result;
1207
1208 /*
1209 * If cell is already occupied, then the block is already
1210 * being provisioned so we have nothing further to do here.
1211 */
1212 build_virtual_key(tc->td, block, &key);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001213 if (bio_detain(pool, &key, bio, &cell))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001214 return;
1215
1216 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1217 switch (r) {
1218 case 0:
Joe Thornbere8088072012-12-21 20:23:31 +00001219 if (lookup_result.shared) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001220 process_shared_bio(tc, bio, block, &lookup_result);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001221 cell_defer_no_holder(tc, cell); /* FIXME: pass this cell into process_shared? */
Joe Thornbere8088072012-12-21 20:23:31 +00001222 } else {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001223 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001224 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001225
Joe Thornber991d9fa2011-10-31 20:21:18 +00001226 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001227 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001228 break;
1229
1230 case -ENODATA:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001231 if (bio_data_dir(bio) == READ && tc->origin_dev) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001232 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001233 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001234
Joe Thornber2dd9c252012-03-28 18:41:28 +01001235 remap_to_origin_and_issue(tc, bio);
1236 } else
1237 provision_block(tc, bio, block, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001238 break;
1239
1240 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001241 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1242 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001243 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001244 bio_io_error(bio);
1245 break;
1246 }
1247}
1248
Joe Thornbere49e5822012-07-27 15:08:16 +01001249static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
1250{
1251 int r;
1252 int rw = bio_data_dir(bio);
1253 dm_block_t block = get_bio_block(tc, bio);
1254 struct dm_thin_lookup_result lookup_result;
1255
1256 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1257 switch (r) {
1258 case 0:
1259 if (lookup_result.shared && (rw == WRITE) && bio->bi_size)
1260 bio_io_error(bio);
Joe Thornbere8088072012-12-21 20:23:31 +00001261 else {
1262 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001263 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001264 }
Joe Thornbere49e5822012-07-27 15:08:16 +01001265 break;
1266
1267 case -ENODATA:
1268 if (rw != READ) {
1269 bio_io_error(bio);
1270 break;
1271 }
1272
1273 if (tc->origin_dev) {
Joe Thornbere8088072012-12-21 20:23:31 +00001274 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001275 remap_to_origin_and_issue(tc, bio);
1276 break;
1277 }
1278
1279 zero_fill_bio(bio);
1280 bio_endio(bio, 0);
1281 break;
1282
1283 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001284 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1285 __func__, r);
Joe Thornbere49e5822012-07-27 15:08:16 +01001286 bio_io_error(bio);
1287 break;
1288 }
1289}
1290
1291static void process_bio_fail(struct thin_c *tc, struct bio *bio)
1292{
1293 bio_io_error(bio);
1294}
1295
Joe Thornberac8c3f32013-05-10 14:37:21 +01001296/*
1297 * FIXME: should we also commit due to size of transaction, measured in
1298 * metadata blocks?
1299 */
Joe Thornber905e51b2012-03-28 18:41:27 +01001300static int need_commit_due_to_time(struct pool *pool)
1301{
1302 return jiffies < pool->last_commit_jiffies ||
1303 jiffies > pool->last_commit_jiffies + COMMIT_PERIOD;
1304}
1305
Joe Thornber991d9fa2011-10-31 20:21:18 +00001306static void process_deferred_bios(struct pool *pool)
1307{
1308 unsigned long flags;
1309 struct bio *bio;
1310 struct bio_list bios;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001311
1312 bio_list_init(&bios);
1313
1314 spin_lock_irqsave(&pool->lock, flags);
1315 bio_list_merge(&bios, &pool->deferred_bios);
1316 bio_list_init(&pool->deferred_bios);
1317 spin_unlock_irqrestore(&pool->lock, flags);
1318
1319 while ((bio = bio_list_pop(&bios))) {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001320 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001321 struct thin_c *tc = h->tc;
1322
Joe Thornber991d9fa2011-10-31 20:21:18 +00001323 /*
1324 * If we've got no free new_mapping structs, and processing
1325 * this bio might require one, we pause until there are some
1326 * prepared mappings to process.
1327 */
1328 if (ensure_next_mapping(pool)) {
1329 spin_lock_irqsave(&pool->lock, flags);
1330 bio_list_merge(&pool->deferred_bios, &bios);
1331 spin_unlock_irqrestore(&pool->lock, flags);
1332
1333 break;
1334 }
Joe Thornber104655f2012-03-28 18:41:28 +01001335
1336 if (bio->bi_rw & REQ_DISCARD)
Joe Thornbere49e5822012-07-27 15:08:16 +01001337 pool->process_discard(tc, bio);
Joe Thornber104655f2012-03-28 18:41:28 +01001338 else
Joe Thornbere49e5822012-07-27 15:08:16 +01001339 pool->process_bio(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001340 }
1341
1342 /*
1343 * If there are any deferred flush bios, we must commit
1344 * the metadata before issuing them.
1345 */
1346 bio_list_init(&bios);
1347 spin_lock_irqsave(&pool->lock, flags);
1348 bio_list_merge(&bios, &pool->deferred_flush_bios);
1349 bio_list_init(&pool->deferred_flush_bios);
1350 spin_unlock_irqrestore(&pool->lock, flags);
1351
Joe Thornber905e51b2012-03-28 18:41:27 +01001352 if (bio_list_empty(&bios) && !need_commit_due_to_time(pool))
Joe Thornber991d9fa2011-10-31 20:21:18 +00001353 return;
1354
Joe Thornber020cc3b2013-12-04 15:05:36 -05001355 if (commit(pool)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001356 while ((bio = bio_list_pop(&bios)))
1357 bio_io_error(bio);
1358 return;
1359 }
Joe Thornber905e51b2012-03-28 18:41:27 +01001360 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001361
1362 while ((bio = bio_list_pop(&bios)))
1363 generic_make_request(bio);
1364}
1365
1366static void do_worker(struct work_struct *ws)
1367{
1368 struct pool *pool = container_of(ws, struct pool, worker);
1369
Joe Thornbere49e5822012-07-27 15:08:16 +01001370 process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
1371 process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001372 process_deferred_bios(pool);
1373}
1374
Joe Thornber905e51b2012-03-28 18:41:27 +01001375/*
1376 * We want to commit periodically so that not too much
1377 * unwritten data builds up.
1378 */
1379static void do_waker(struct work_struct *ws)
1380{
1381 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
1382 wake_worker(pool);
1383 queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
1384}
1385
Joe Thornber991d9fa2011-10-31 20:21:18 +00001386/*----------------------------------------------------------------*/
1387
Joe Thornbere49e5822012-07-27 15:08:16 +01001388static enum pool_mode get_pool_mode(struct pool *pool)
1389{
1390 return pool->pf.mode;
1391}
1392
1393static void set_pool_mode(struct pool *pool, enum pool_mode mode)
1394{
1395 int r;
1396
1397 pool->pf.mode = mode;
1398
1399 switch (mode) {
1400 case PM_FAIL:
Mike Snitzer4fa59712013-08-21 17:30:40 -04001401 DMERR("%s: switching pool to failure mode",
1402 dm_device_name(pool->pool_md));
Joe Thornber5383ef32013-12-04 16:30:01 -05001403 dm_pool_metadata_read_only(pool->pmd);
Joe Thornbere49e5822012-07-27 15:08:16 +01001404 pool->process_bio = process_bio_fail;
1405 pool->process_discard = process_bio_fail;
1406 pool->process_prepared_mapping = process_prepared_mapping_fail;
1407 pool->process_prepared_discard = process_prepared_discard_fail;
1408 break;
1409
1410 case PM_READ_ONLY:
Mike Snitzer4fa59712013-08-21 17:30:40 -04001411 DMERR("%s: switching pool to read-only mode",
1412 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001413 r = dm_pool_abort_metadata(pool->pmd);
1414 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04001415 DMERR("%s: aborting transaction failed",
1416 dm_device_name(pool->pool_md));
Joe Thornbere49e5822012-07-27 15:08:16 +01001417 set_pool_mode(pool, PM_FAIL);
1418 } else {
1419 dm_pool_metadata_read_only(pool->pmd);
1420 pool->process_bio = process_bio_read_only;
1421 pool->process_discard = process_discard;
1422 pool->process_prepared_mapping = process_prepared_mapping_fail;
1423 pool->process_prepared_discard = process_prepared_discard_passdown;
1424 }
1425 break;
1426
1427 case PM_WRITE:
1428 pool->process_bio = process_bio;
1429 pool->process_discard = process_discard;
1430 pool->process_prepared_mapping = process_prepared_mapping;
1431 pool->process_prepared_discard = process_prepared_discard;
1432 break;
1433 }
1434}
1435
1436/*----------------------------------------------------------------*/
1437
Joe Thornber991d9fa2011-10-31 20:21:18 +00001438/*
1439 * Mapping functions.
1440 */
1441
1442/*
1443 * Called only while mapping a thin bio to hand it over to the workqueue.
1444 */
1445static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
1446{
1447 unsigned long flags;
1448 struct pool *pool = tc->pool;
1449
1450 spin_lock_irqsave(&pool->lock, flags);
1451 bio_list_add(&pool->deferred_bios, bio);
1452 spin_unlock_irqrestore(&pool->lock, flags);
1453
1454 wake_worker(pool);
1455}
1456
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001457static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
Joe Thornbereb2aa482012-03-28 18:41:28 +01001458{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001459 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001460
1461 h->tc = tc;
1462 h->shared_read_entry = NULL;
Joe Thornbere8088072012-12-21 20:23:31 +00001463 h->all_io_entry = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01001464 h->overwrite_mapping = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01001465}
1466
Joe Thornber991d9fa2011-10-31 20:21:18 +00001467/*
1468 * Non-blocking function called from the thin target's map function.
1469 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001470static int thin_bio_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001471{
1472 int r;
1473 struct thin_c *tc = ti->private;
1474 dm_block_t block = get_bio_block(tc, bio);
1475 struct dm_thin_device *td = tc->td;
1476 struct dm_thin_lookup_result result;
Joe Thornber025b9682013-03-01 22:45:50 +00001477 struct dm_bio_prison_cell cell1, cell2;
1478 struct dm_bio_prison_cell *cell_result;
Joe Thornbere8088072012-12-21 20:23:31 +00001479 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001480
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001481 thin_hook_bio(tc, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001482
1483 if (get_pool_mode(tc->pool) == PM_FAIL) {
1484 bio_io_error(bio);
1485 return DM_MAPIO_SUBMITTED;
1486 }
1487
Joe Thornber104655f2012-03-28 18:41:28 +01001488 if (bio->bi_rw & (REQ_DISCARD | REQ_FLUSH | REQ_FUA)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001489 thin_defer_bio(tc, bio);
1490 return DM_MAPIO_SUBMITTED;
1491 }
1492
1493 r = dm_thin_find_block(td, block, 0, &result);
1494
1495 /*
1496 * Note that we defer readahead too.
1497 */
1498 switch (r) {
1499 case 0:
1500 if (unlikely(result.shared)) {
1501 /*
1502 * We have a race condition here between the
1503 * result.shared value returned by the lookup and
1504 * snapshot creation, which may cause new
1505 * sharing.
1506 *
1507 * To avoid this always quiesce the origin before
1508 * taking the snap. You want to do this anyway to
1509 * ensure a consistent application view
1510 * (i.e. lockfs).
1511 *
1512 * More distant ancestors are irrelevant. The
1513 * shared flag will be set in their case.
1514 */
1515 thin_defer_bio(tc, bio);
Joe Thornbere8088072012-12-21 20:23:31 +00001516 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001517 }
Joe Thornbere8088072012-12-21 20:23:31 +00001518
1519 build_virtual_key(tc->td, block, &key);
Joe Thornber025b9682013-03-01 22:45:50 +00001520 if (dm_bio_detain(tc->pool->prison, &key, bio, &cell1, &cell_result))
Joe Thornbere8088072012-12-21 20:23:31 +00001521 return DM_MAPIO_SUBMITTED;
1522
1523 build_data_key(tc->td, result.block, &key);
Joe Thornber025b9682013-03-01 22:45:50 +00001524 if (dm_bio_detain(tc->pool->prison, &key, bio, &cell2, &cell_result)) {
1525 cell_defer_no_holder_no_free(tc, &cell1);
Joe Thornbere8088072012-12-21 20:23:31 +00001526 return DM_MAPIO_SUBMITTED;
1527 }
1528
1529 inc_all_io_entry(tc->pool, bio);
Joe Thornber025b9682013-03-01 22:45:50 +00001530 cell_defer_no_holder_no_free(tc, &cell2);
1531 cell_defer_no_holder_no_free(tc, &cell1);
Joe Thornbere8088072012-12-21 20:23:31 +00001532
1533 remap(tc, bio, result.block);
1534 return DM_MAPIO_REMAPPED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001535
1536 case -ENODATA:
Joe Thornbere49e5822012-07-27 15:08:16 +01001537 if (get_pool_mode(tc->pool) == PM_READ_ONLY) {
1538 /*
1539 * This block isn't provisioned, and we have no way
1540 * of doing so. Just error it.
1541 */
1542 bio_io_error(bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001543 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01001544 }
1545 /* fall through */
1546
1547 case -EWOULDBLOCK:
Joe Thornber991d9fa2011-10-31 20:21:18 +00001548 /*
1549 * In future, the failed dm_thin_find_block above could
1550 * provide the hint to load the metadata into cache.
1551 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001552 thin_defer_bio(tc, bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001553 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01001554
1555 default:
1556 /*
1557 * Must always call bio_io_error on failure.
1558 * dm_thin_find_block can fail with -EINVAL if the
1559 * pool is switched to fail-io mode.
1560 */
1561 bio_io_error(bio);
Joe Thornber2aab3852012-12-21 20:23:33 +00001562 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001563 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001564}
1565
1566static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
1567{
1568 int r;
1569 unsigned long flags;
1570 struct pool_c *pt = container_of(cb, struct pool_c, callbacks);
1571
1572 spin_lock_irqsave(&pt->pool->lock, flags);
1573 r = !bio_list_empty(&pt->pool->retry_on_resume_list);
1574 spin_unlock_irqrestore(&pt->pool->lock, flags);
1575
1576 if (!r) {
1577 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
1578 r = bdi_congested(&q->backing_dev_info, bdi_bits);
1579 }
1580
1581 return r;
1582}
1583
1584static void __requeue_bios(struct pool *pool)
1585{
1586 bio_list_merge(&pool->deferred_bios, &pool->retry_on_resume_list);
1587 bio_list_init(&pool->retry_on_resume_list);
1588}
1589
1590/*----------------------------------------------------------------
1591 * Binding of control targets to a pool object
1592 *--------------------------------------------------------------*/
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001593static bool data_dev_supports_discard(struct pool_c *pt)
1594{
1595 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
1596
1597 return q && blk_queue_discard(q);
1598}
1599
Joe Thornber58051b92013-03-20 17:21:25 +00001600static bool is_factor(sector_t block_size, uint32_t n)
1601{
1602 return !sector_div(block_size, n);
1603}
1604
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001605/*
1606 * If discard_passdown was enabled verify that the data device
Mike Snitzer0424caa2012-09-26 23:45:47 +01001607 * supports discards. Disable discard_passdown if not.
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001608 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01001609static void disable_passdown_if_not_supported(struct pool_c *pt)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001610{
Mike Snitzer0424caa2012-09-26 23:45:47 +01001611 struct pool *pool = pt->pool;
1612 struct block_device *data_bdev = pt->data_dev->bdev;
1613 struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
1614 sector_t block_size = pool->sectors_per_block << SECTOR_SHIFT;
1615 const char *reason = NULL;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001616 char buf[BDEVNAME_SIZE];
1617
Mike Snitzer0424caa2012-09-26 23:45:47 +01001618 if (!pt->adjusted_pf.discard_passdown)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001619 return;
1620
Mike Snitzer0424caa2012-09-26 23:45:47 +01001621 if (!data_dev_supports_discard(pt))
1622 reason = "discard unsupported";
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001623
Mike Snitzer0424caa2012-09-26 23:45:47 +01001624 else if (data_limits->max_discard_sectors < pool->sectors_per_block)
1625 reason = "max discard sectors smaller than a block";
1626
1627 else if (data_limits->discard_granularity > block_size)
1628 reason = "discard granularity larger than a block";
1629
Joe Thornber58051b92013-03-20 17:21:25 +00001630 else if (!is_factor(block_size, data_limits->discard_granularity))
Mike Snitzer0424caa2012-09-26 23:45:47 +01001631 reason = "discard granularity not a factor of block size";
1632
1633 if (reason) {
1634 DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason);
1635 pt->adjusted_pf.discard_passdown = false;
1636 }
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001637}
1638
Joe Thornber991d9fa2011-10-31 20:21:18 +00001639static int bind_control_target(struct pool *pool, struct dm_target *ti)
1640{
1641 struct pool_c *pt = ti->private;
1642
Joe Thornbere49e5822012-07-27 15:08:16 +01001643 /*
1644 * We want to make sure that degraded pools are never upgraded.
1645 */
1646 enum pool_mode old_mode = pool->pf.mode;
Mike Snitzer0424caa2012-09-26 23:45:47 +01001647 enum pool_mode new_mode = pt->adjusted_pf.mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01001648
1649 if (old_mode > new_mode)
1650 new_mode = old_mode;
1651
Joe Thornber991d9fa2011-10-31 20:21:18 +00001652 pool->ti = ti;
1653 pool->low_water_blocks = pt->low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01001654 pool->pf = pt->adjusted_pf;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001655
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001656 set_pool_mode(pool, new_mode);
Mike Snitzerf4026932012-05-19 01:01:01 +01001657
Joe Thornber991d9fa2011-10-31 20:21:18 +00001658 return 0;
1659}
1660
1661static void unbind_control_target(struct pool *pool, struct dm_target *ti)
1662{
1663 if (pool->ti == ti)
1664 pool->ti = NULL;
1665}
1666
1667/*----------------------------------------------------------------
1668 * Pool creation
1669 *--------------------------------------------------------------*/
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001670/* Initialize pool features. */
1671static void pool_features_init(struct pool_features *pf)
1672{
Joe Thornbere49e5822012-07-27 15:08:16 +01001673 pf->mode = PM_WRITE;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001674 pf->zero_new_blocks = true;
1675 pf->discard_enabled = true;
1676 pf->discard_passdown = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001677}
1678
Joe Thornber991d9fa2011-10-31 20:21:18 +00001679static void __pool_destroy(struct pool *pool)
1680{
1681 __pool_table_remove(pool);
1682
1683 if (dm_pool_metadata_close(pool->pmd) < 0)
1684 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
1685
Mike Snitzer44feb382012-10-12 21:02:10 +01001686 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001687 dm_kcopyd_client_destroy(pool->copier);
1688
1689 if (pool->wq)
1690 destroy_workqueue(pool->wq);
1691
1692 if (pool->next_mapping)
1693 mempool_free(pool->next_mapping, pool->mapping_pool);
1694 mempool_destroy(pool->mapping_pool);
Mike Snitzer44feb382012-10-12 21:02:10 +01001695 dm_deferred_set_destroy(pool->shared_read_ds);
1696 dm_deferred_set_destroy(pool->all_io_ds);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001697 kfree(pool);
1698}
1699
Mike Snitzera24c2562012-06-03 00:30:00 +01001700static struct kmem_cache *_new_mapping_cache;
Mike Snitzera24c2562012-06-03 00:30:00 +01001701
Joe Thornber991d9fa2011-10-31 20:21:18 +00001702static struct pool *pool_create(struct mapped_device *pool_md,
1703 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01001704 unsigned long block_size,
1705 int read_only, char **error)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001706{
1707 int r;
1708 void *err_p;
1709 struct pool *pool;
1710 struct dm_pool_metadata *pmd;
Joe Thornbere49e5822012-07-27 15:08:16 +01001711 bool format_device = read_only ? false : true;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001712
Joe Thornbere49e5822012-07-27 15:08:16 +01001713 pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001714 if (IS_ERR(pmd)) {
1715 *error = "Error creating metadata object";
1716 return (struct pool *)pmd;
1717 }
1718
1719 pool = kmalloc(sizeof(*pool), GFP_KERNEL);
1720 if (!pool) {
1721 *error = "Error allocating memory for pool";
1722 err_p = ERR_PTR(-ENOMEM);
1723 goto bad_pool;
1724 }
1725
1726 pool->pmd = pmd;
1727 pool->sectors_per_block = block_size;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +01001728 if (block_size & (block_size - 1))
1729 pool->sectors_per_block_shift = -1;
1730 else
1731 pool->sectors_per_block_shift = __ffs(block_size);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001732 pool->low_water_blocks = 0;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001733 pool_features_init(&pool->pf);
Mike Snitzer44feb382012-10-12 21:02:10 +01001734 pool->prison = dm_bio_prison_create(PRISON_CELLS);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001735 if (!pool->prison) {
1736 *error = "Error creating pool's bio prison";
1737 err_p = ERR_PTR(-ENOMEM);
1738 goto bad_prison;
1739 }
1740
Mikulas Patockadf5d2e92013-03-01 22:45:49 +00001741 pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001742 if (IS_ERR(pool->copier)) {
1743 r = PTR_ERR(pool->copier);
1744 *error = "Error creating pool's kcopyd client";
1745 err_p = ERR_PTR(r);
1746 goto bad_kcopyd_client;
1747 }
1748
1749 /*
1750 * Create singlethreaded workqueue that will service all devices
1751 * that use this metadata.
1752 */
1753 pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
1754 if (!pool->wq) {
1755 *error = "Error creating pool's workqueue";
1756 err_p = ERR_PTR(-ENOMEM);
1757 goto bad_wq;
1758 }
1759
1760 INIT_WORK(&pool->worker, do_worker);
Joe Thornber905e51b2012-03-28 18:41:27 +01001761 INIT_DELAYED_WORK(&pool->waker, do_waker);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001762 spin_lock_init(&pool->lock);
1763 bio_list_init(&pool->deferred_bios);
1764 bio_list_init(&pool->deferred_flush_bios);
1765 INIT_LIST_HEAD(&pool->prepared_mappings);
Joe Thornber104655f2012-03-28 18:41:28 +01001766 INIT_LIST_HEAD(&pool->prepared_discards);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001767 pool->low_water_triggered = 0;
1768 pool->no_free_space = 0;
1769 bio_list_init(&pool->retry_on_resume_list);
Mike Snitzer44feb382012-10-12 21:02:10 +01001770
1771 pool->shared_read_ds = dm_deferred_set_create();
1772 if (!pool->shared_read_ds) {
1773 *error = "Error creating pool's shared read deferred set";
1774 err_p = ERR_PTR(-ENOMEM);
1775 goto bad_shared_read_ds;
1776 }
1777
1778 pool->all_io_ds = dm_deferred_set_create();
1779 if (!pool->all_io_ds) {
1780 *error = "Error creating pool's all io deferred set";
1781 err_p = ERR_PTR(-ENOMEM);
1782 goto bad_all_io_ds;
1783 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001784
1785 pool->next_mapping = NULL;
Mike Snitzera24c2562012-06-03 00:30:00 +01001786 pool->mapping_pool = mempool_create_slab_pool(MAPPING_POOL_SIZE,
1787 _new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001788 if (!pool->mapping_pool) {
1789 *error = "Error creating pool's mapping mempool";
1790 err_p = ERR_PTR(-ENOMEM);
1791 goto bad_mapping_pool;
1792 }
1793
Joe Thornber991d9fa2011-10-31 20:21:18 +00001794 pool->ref_count = 1;
Joe Thornber905e51b2012-03-28 18:41:27 +01001795 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001796 pool->pool_md = pool_md;
1797 pool->md_dev = metadata_dev;
1798 __pool_table_insert(pool);
1799
1800 return pool;
1801
Joe Thornber991d9fa2011-10-31 20:21:18 +00001802bad_mapping_pool:
Mike Snitzer44feb382012-10-12 21:02:10 +01001803 dm_deferred_set_destroy(pool->all_io_ds);
1804bad_all_io_ds:
1805 dm_deferred_set_destroy(pool->shared_read_ds);
1806bad_shared_read_ds:
Joe Thornber991d9fa2011-10-31 20:21:18 +00001807 destroy_workqueue(pool->wq);
1808bad_wq:
1809 dm_kcopyd_client_destroy(pool->copier);
1810bad_kcopyd_client:
Mike Snitzer44feb382012-10-12 21:02:10 +01001811 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001812bad_prison:
1813 kfree(pool);
1814bad_pool:
1815 if (dm_pool_metadata_close(pmd))
1816 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
1817
1818 return err_p;
1819}
1820
1821static void __pool_inc(struct pool *pool)
1822{
1823 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
1824 pool->ref_count++;
1825}
1826
1827static void __pool_dec(struct pool *pool)
1828{
1829 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
1830 BUG_ON(!pool->ref_count);
1831 if (!--pool->ref_count)
1832 __pool_destroy(pool);
1833}
1834
1835static struct pool *__pool_find(struct mapped_device *pool_md,
1836 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01001837 unsigned long block_size, int read_only,
1838 char **error, int *created)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001839{
1840 struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
1841
1842 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01001843 if (pool->pool_md != pool_md) {
1844 *error = "metadata device already in use by a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00001845 return ERR_PTR(-EBUSY);
Mike Snitzerf09996c2012-07-27 15:07:59 +01001846 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001847 __pool_inc(pool);
1848
1849 } else {
1850 pool = __pool_table_lookup(pool_md);
1851 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01001852 if (pool->md_dev != metadata_dev) {
1853 *error = "different pool cannot replace a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00001854 return ERR_PTR(-EINVAL);
Mike Snitzerf09996c2012-07-27 15:07:59 +01001855 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001856 __pool_inc(pool);
1857
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001858 } else {
Joe Thornbere49e5822012-07-27 15:08:16 +01001859 pool = pool_create(pool_md, metadata_dev, block_size, read_only, error);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001860 *created = 1;
1861 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001862 }
1863
1864 return pool;
1865}
1866
1867/*----------------------------------------------------------------
1868 * Pool target methods
1869 *--------------------------------------------------------------*/
1870static void pool_dtr(struct dm_target *ti)
1871{
1872 struct pool_c *pt = ti->private;
1873
1874 mutex_lock(&dm_thin_pool_table.mutex);
1875
1876 unbind_control_target(pt->pool, ti);
1877 __pool_dec(pt->pool);
1878 dm_put_device(ti, pt->metadata_dev);
1879 dm_put_device(ti, pt->data_dev);
1880 kfree(pt);
1881
1882 mutex_unlock(&dm_thin_pool_table.mutex);
1883}
1884
Joe Thornber991d9fa2011-10-31 20:21:18 +00001885static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
1886 struct dm_target *ti)
1887{
1888 int r;
1889 unsigned argc;
1890 const char *arg_name;
1891
1892 static struct dm_arg _args[] = {
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001893 {0, 3, "Invalid number of pool feature arguments"},
Joe Thornber991d9fa2011-10-31 20:21:18 +00001894 };
1895
1896 /*
1897 * No feature arguments supplied.
1898 */
1899 if (!as->argc)
1900 return 0;
1901
1902 r = dm_read_arg_group(_args, as, &argc, &ti->error);
1903 if (r)
1904 return -EINVAL;
1905
1906 while (argc && !r) {
1907 arg_name = dm_shift_arg(as);
1908 argc--;
1909
Joe Thornbere49e5822012-07-27 15:08:16 +01001910 if (!strcasecmp(arg_name, "skip_block_zeroing"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001911 pf->zero_new_blocks = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001912
Joe Thornbere49e5822012-07-27 15:08:16 +01001913 else if (!strcasecmp(arg_name, "ignore_discard"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001914 pf->discard_enabled = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01001915
1916 else if (!strcasecmp(arg_name, "no_discard_passdown"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01001917 pf->discard_passdown = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01001918
1919 else if (!strcasecmp(arg_name, "read_only"))
1920 pf->mode = PM_READ_ONLY;
1921
1922 else {
1923 ti->error = "Unrecognised pool feature requested";
1924 r = -EINVAL;
1925 break;
1926 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001927 }
1928
1929 return r;
1930}
1931
Joe Thornberac8c3f32013-05-10 14:37:21 +01001932static void metadata_low_callback(void *context)
1933{
1934 struct pool *pool = context;
1935
1936 DMWARN("%s: reached low water mark for metadata device: sending event.",
1937 dm_device_name(pool->pool_md));
1938
1939 dm_table_event(pool->ti->table);
1940}
1941
Joe Thornberb17446d2013-05-10 14:37:18 +01001942static sector_t get_metadata_dev_size(struct block_device *bdev)
1943{
1944 sector_t metadata_dev_size = i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
1945 char buffer[BDEVNAME_SIZE];
1946
1947 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING) {
1948 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
1949 bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS);
1950 metadata_dev_size = THIN_METADATA_MAX_SECTORS_WARNING;
1951 }
1952
1953 return metadata_dev_size;
1954}
1955
Joe Thornber24347e92013-05-10 14:37:19 +01001956static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
1957{
1958 sector_t metadata_dev_size = get_metadata_dev_size(bdev);
1959
1960 sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE >> SECTOR_SHIFT);
1961
1962 return metadata_dev_size;
1963}
1964
Joe Thornber991d9fa2011-10-31 20:21:18 +00001965/*
Joe Thornberac8c3f32013-05-10 14:37:21 +01001966 * When a metadata threshold is crossed a dm event is triggered, and
1967 * userland should respond by growing the metadata device. We could let
1968 * userland set the threshold, like we do with the data threshold, but I'm
1969 * not sure they know enough to do this well.
1970 */
1971static dm_block_t calc_metadata_threshold(struct pool_c *pt)
1972{
1973 /*
1974 * 4M is ample for all ops with the possible exception of thin
1975 * device deletion which is harmless if it fails (just retry the
1976 * delete after you've grown the device).
1977 */
1978 dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
1979 return min((dm_block_t)1024ULL /* 4M */, quarter);
1980}
1981
1982/*
Joe Thornber991d9fa2011-10-31 20:21:18 +00001983 * thin-pool <metadata dev> <data dev>
1984 * <data block size (sectors)>
1985 * <low water mark (blocks)>
1986 * [<#feature args> [<arg>]*]
1987 *
1988 * Optional feature arguments are:
1989 * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001990 * ignore_discard: disable discard
1991 * no_discard_passdown: don't pass discards down to the data device
Joe Thornber991d9fa2011-10-31 20:21:18 +00001992 */
1993static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv)
1994{
Joe Thornber67e2e2b2012-03-28 18:41:29 +01001995 int r, pool_created = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001996 struct pool_c *pt;
1997 struct pool *pool;
1998 struct pool_features pf;
1999 struct dm_arg_set as;
2000 struct dm_dev *data_dev;
2001 unsigned long block_size;
2002 dm_block_t low_water_blocks;
2003 struct dm_dev *metadata_dev;
Joe Thornber5d0db962013-05-10 14:37:19 +01002004 fmode_t metadata_mode;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002005
2006 /*
2007 * FIXME Remove validation from scope of lock.
2008 */
2009 mutex_lock(&dm_thin_pool_table.mutex);
2010
2011 if (argc < 4) {
2012 ti->error = "Invalid argument count";
2013 r = -EINVAL;
2014 goto out_unlock;
2015 }
Joe Thornber5d0db962013-05-10 14:37:19 +01002016
Joe Thornber991d9fa2011-10-31 20:21:18 +00002017 as.argc = argc;
2018 as.argv = argv;
2019
Joe Thornber5d0db962013-05-10 14:37:19 +01002020 /*
2021 * Set default pool features.
2022 */
2023 pool_features_init(&pf);
2024
2025 dm_consume_args(&as, 4);
2026 r = parse_pool_features(&as, &pf, ti);
2027 if (r)
2028 goto out_unlock;
2029
2030 metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
2031 r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002032 if (r) {
2033 ti->error = "Error opening metadata block device";
2034 goto out_unlock;
2035 }
2036
Joe Thornberb17446d2013-05-10 14:37:18 +01002037 /*
2038 * Run for the side-effect of possibly issuing a warning if the
2039 * device is too big.
2040 */
2041 (void) get_metadata_dev_size(metadata_dev->bdev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002042
2043 r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
2044 if (r) {
2045 ti->error = "Error getting data device";
2046 goto out_metadata;
2047 }
2048
2049 if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
2050 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
2051 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002052 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002053 ti->error = "Invalid block size";
2054 r = -EINVAL;
2055 goto out;
2056 }
2057
2058 if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
2059 ti->error = "Invalid low water mark";
2060 r = -EINVAL;
2061 goto out;
2062 }
2063
Joe Thornber991d9fa2011-10-31 20:21:18 +00002064 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
2065 if (!pt) {
2066 r = -ENOMEM;
2067 goto out;
2068 }
2069
2070 pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002071 block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002072 if (IS_ERR(pool)) {
2073 r = PTR_ERR(pool);
2074 goto out_free_pt;
2075 }
2076
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002077 /*
2078 * 'pool_created' reflects whether this is the first table load.
2079 * Top level discard support is not allowed to be changed after
2080 * initial load. This would require a pool reload to trigger thin
2081 * device changes.
2082 */
2083 if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
2084 ti->error = "Discard support cannot be disabled once enabled";
2085 r = -EINVAL;
2086 goto out_flags_changed;
2087 }
2088
Joe Thornber991d9fa2011-10-31 20:21:18 +00002089 pt->pool = pool;
2090 pt->ti = ti;
2091 pt->metadata_dev = metadata_dev;
2092 pt->data_dev = data_dev;
2093 pt->low_water_blocks = low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002094 pt->adjusted_pf = pt->requested_pf = pf;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002095 ti->num_flush_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002096
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002097 /*
2098 * Only need to enable discards if the pool should pass
2099 * them down to the data device. The thin device's discard
2100 * processing will cause mappings to be removed from the btree.
2101 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04002102 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002103 if (pf.discard_enabled && pf.discard_passdown) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002104 ti->num_discard_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002105
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002106 /*
2107 * Setting 'discards_supported' circumvents the normal
2108 * stacking of discard limits (this keeps the pool and
2109 * thin devices' discard limits consistent).
2110 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01002111 ti->discards_supported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002112 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002113 ti->private = pt;
2114
Joe Thornberac8c3f32013-05-10 14:37:21 +01002115 r = dm_pool_register_metadata_threshold(pt->pool->pmd,
2116 calc_metadata_threshold(pt),
2117 metadata_low_callback,
2118 pool);
2119 if (r)
2120 goto out_free_pt;
2121
Joe Thornber991d9fa2011-10-31 20:21:18 +00002122 pt->callbacks.congested_fn = pool_is_congested;
2123 dm_table_add_target_callbacks(ti->table, &pt->callbacks);
2124
2125 mutex_unlock(&dm_thin_pool_table.mutex);
2126
2127 return 0;
2128
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002129out_flags_changed:
2130 __pool_dec(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002131out_free_pt:
2132 kfree(pt);
2133out:
2134 dm_put_device(ti, data_dev);
2135out_metadata:
2136 dm_put_device(ti, metadata_dev);
2137out_unlock:
2138 mutex_unlock(&dm_thin_pool_table.mutex);
2139
2140 return r;
2141}
2142
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002143static int pool_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002144{
2145 int r;
2146 struct pool_c *pt = ti->private;
2147 struct pool *pool = pt->pool;
2148 unsigned long flags;
2149
2150 /*
2151 * As this is a singleton target, ti->begin is always zero.
2152 */
2153 spin_lock_irqsave(&pool->lock, flags);
2154 bio->bi_bdev = pt->data_dev->bdev;
2155 r = DM_MAPIO_REMAPPED;
2156 spin_unlock_irqrestore(&pool->lock, flags);
2157
2158 return r;
2159}
2160
Joe Thornberb17446d2013-05-10 14:37:18 +01002161static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
2162{
2163 int r;
2164 struct pool_c *pt = ti->private;
2165 struct pool *pool = pt->pool;
2166 sector_t data_size = ti->len;
2167 dm_block_t sb_data_size;
2168
2169 *need_commit = false;
2170
2171 (void) sector_div(data_size, pool->sectors_per_block);
2172
2173 r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
2174 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002175 DMERR("%s: failed to retrieve data device size",
2176 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01002177 return r;
2178 }
2179
2180 if (data_size < sb_data_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002181 DMERR("%s: pool target (%llu blocks) too small: expected %llu",
2182 dm_device_name(pool->pool_md),
Joe Thornberb17446d2013-05-10 14:37:18 +01002183 (unsigned long long)data_size, sb_data_size);
2184 return -EINVAL;
2185
2186 } else if (data_size > sb_data_size) {
2187 r = dm_pool_resize_data_dev(pool->pmd, data_size);
2188 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002189 DMERR("%s: failed to resize data device",
2190 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01002191 set_pool_mode(pool, PM_READ_ONLY);
2192 return r;
2193 }
2194
2195 *need_commit = true;
2196 }
2197
2198 return 0;
2199}
2200
Joe Thornber24347e92013-05-10 14:37:19 +01002201static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
2202{
2203 int r;
2204 struct pool_c *pt = ti->private;
2205 struct pool *pool = pt->pool;
2206 dm_block_t metadata_dev_size, sb_metadata_dev_size;
2207
2208 *need_commit = false;
2209
Alasdair G Kergon610bba82013-05-19 18:57:50 +01002210 metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
Joe Thornber24347e92013-05-10 14:37:19 +01002211
2212 r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
2213 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002214 DMERR("%s: failed to retrieve metadata device size",
2215 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01002216 return r;
2217 }
2218
2219 if (metadata_dev_size < sb_metadata_dev_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002220 DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
2221 dm_device_name(pool->pool_md),
Joe Thornber24347e92013-05-10 14:37:19 +01002222 metadata_dev_size, sb_metadata_dev_size);
2223 return -EINVAL;
2224
2225 } else if (metadata_dev_size > sb_metadata_dev_size) {
2226 r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
2227 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002228 DMERR("%s: failed to resize metadata device",
2229 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01002230 return r;
2231 }
2232
2233 *need_commit = true;
2234 }
2235
2236 return 0;
2237}
2238
Joe Thornber991d9fa2011-10-31 20:21:18 +00002239/*
2240 * Retrieves the number of blocks of the data device from
2241 * the superblock and compares it to the actual device size,
2242 * thus resizing the data device in case it has grown.
2243 *
2244 * This both copes with opening preallocated data devices in the ctr
2245 * being followed by a resume
2246 * -and-
2247 * calling the resume method individually after userspace has
2248 * grown the data device in reaction to a table event.
2249 */
2250static int pool_preresume(struct dm_target *ti)
2251{
2252 int r;
Joe Thornber24347e92013-05-10 14:37:19 +01002253 bool need_commit1, need_commit2;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002254 struct pool_c *pt = ti->private;
2255 struct pool *pool = pt->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002256
2257 /*
2258 * Take control of the pool object.
2259 */
2260 r = bind_control_target(pool, ti);
2261 if (r)
2262 return r;
2263
Joe Thornberb17446d2013-05-10 14:37:18 +01002264 r = maybe_resize_data_dev(ti, &need_commit1);
2265 if (r)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002266 return r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002267
Joe Thornber24347e92013-05-10 14:37:19 +01002268 r = maybe_resize_metadata_dev(ti, &need_commit2);
2269 if (r)
2270 return r;
2271
2272 if (need_commit1 || need_commit2)
Joe Thornber020cc3b2013-12-04 15:05:36 -05002273 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002274
2275 return 0;
2276}
2277
2278static void pool_resume(struct dm_target *ti)
2279{
2280 struct pool_c *pt = ti->private;
2281 struct pool *pool = pt->pool;
2282 unsigned long flags;
2283
2284 spin_lock_irqsave(&pool->lock, flags);
2285 pool->low_water_triggered = 0;
2286 pool->no_free_space = 0;
2287 __requeue_bios(pool);
2288 spin_unlock_irqrestore(&pool->lock, flags);
2289
Joe Thornber905e51b2012-03-28 18:41:27 +01002290 do_waker(&pool->waker.work);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002291}
2292
2293static void pool_postsuspend(struct dm_target *ti)
2294{
Joe Thornber991d9fa2011-10-31 20:21:18 +00002295 struct pool_c *pt = ti->private;
2296 struct pool *pool = pt->pool;
2297
Joe Thornber905e51b2012-03-28 18:41:27 +01002298 cancel_delayed_work(&pool->waker);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002299 flush_workqueue(pool->wq);
Joe Thornber020cc3b2013-12-04 15:05:36 -05002300 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002301}
2302
2303static int check_arg_count(unsigned argc, unsigned args_required)
2304{
2305 if (argc != args_required) {
2306 DMWARN("Message received with %u arguments instead of %u.",
2307 argc, args_required);
2308 return -EINVAL;
2309 }
2310
2311 return 0;
2312}
2313
2314static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
2315{
2316 if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
2317 *dev_id <= MAX_DEV_ID)
2318 return 0;
2319
2320 if (warning)
2321 DMWARN("Message received with invalid device id: %s", arg);
2322
2323 return -EINVAL;
2324}
2325
2326static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool)
2327{
2328 dm_thin_id dev_id;
2329 int r;
2330
2331 r = check_arg_count(argc, 2);
2332 if (r)
2333 return r;
2334
2335 r = read_dev_id(argv[1], &dev_id, 1);
2336 if (r)
2337 return r;
2338
2339 r = dm_pool_create_thin(pool->pmd, dev_id);
2340 if (r) {
2341 DMWARN("Creation of new thinly-provisioned device with id %s failed.",
2342 argv[1]);
2343 return r;
2344 }
2345
2346 return 0;
2347}
2348
2349static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2350{
2351 dm_thin_id dev_id;
2352 dm_thin_id origin_dev_id;
2353 int r;
2354
2355 r = check_arg_count(argc, 3);
2356 if (r)
2357 return r;
2358
2359 r = read_dev_id(argv[1], &dev_id, 1);
2360 if (r)
2361 return r;
2362
2363 r = read_dev_id(argv[2], &origin_dev_id, 1);
2364 if (r)
2365 return r;
2366
2367 r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
2368 if (r) {
2369 DMWARN("Creation of new snapshot %s of device %s failed.",
2370 argv[1], argv[2]);
2371 return r;
2372 }
2373
2374 return 0;
2375}
2376
2377static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool)
2378{
2379 dm_thin_id dev_id;
2380 int r;
2381
2382 r = check_arg_count(argc, 2);
2383 if (r)
2384 return r;
2385
2386 r = read_dev_id(argv[1], &dev_id, 1);
2387 if (r)
2388 return r;
2389
2390 r = dm_pool_delete_thin_device(pool->pmd, dev_id);
2391 if (r)
2392 DMWARN("Deletion of thin device %s failed.", argv[1]);
2393
2394 return r;
2395}
2396
2397static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool)
2398{
2399 dm_thin_id old_id, new_id;
2400 int r;
2401
2402 r = check_arg_count(argc, 3);
2403 if (r)
2404 return r;
2405
2406 if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
2407 DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
2408 return -EINVAL;
2409 }
2410
2411 if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
2412 DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
2413 return -EINVAL;
2414 }
2415
2416 r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
2417 if (r) {
2418 DMWARN("Failed to change transaction id from %s to %s.",
2419 argv[1], argv[2]);
2420 return r;
2421 }
2422
2423 return 0;
2424}
2425
Joe Thornbercc8394d2012-06-03 00:30:01 +01002426static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2427{
2428 int r;
2429
2430 r = check_arg_count(argc, 1);
2431 if (r)
2432 return r;
2433
Joe Thornber020cc3b2013-12-04 15:05:36 -05002434 (void) commit(pool);
Joe Thornber0d200ae2012-07-03 12:55:31 +01002435
Joe Thornbercc8394d2012-06-03 00:30:01 +01002436 r = dm_pool_reserve_metadata_snap(pool->pmd);
2437 if (r)
2438 DMWARN("reserve_metadata_snap message failed.");
2439
2440 return r;
2441}
2442
2443static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
2444{
2445 int r;
2446
2447 r = check_arg_count(argc, 1);
2448 if (r)
2449 return r;
2450
2451 r = dm_pool_release_metadata_snap(pool->pmd);
2452 if (r)
2453 DMWARN("release_metadata_snap message failed.");
2454
2455 return r;
2456}
2457
Joe Thornber991d9fa2011-10-31 20:21:18 +00002458/*
2459 * Messages supported:
2460 * create_thin <dev_id>
2461 * create_snap <dev_id> <origin_id>
2462 * delete <dev_id>
2463 * trim <dev_id> <new_size_in_sectors>
2464 * set_transaction_id <current_trans_id> <new_trans_id>
Joe Thornbercc8394d2012-06-03 00:30:01 +01002465 * reserve_metadata_snap
2466 * release_metadata_snap
Joe Thornber991d9fa2011-10-31 20:21:18 +00002467 */
2468static int pool_message(struct dm_target *ti, unsigned argc, char **argv)
2469{
2470 int r = -EINVAL;
2471 struct pool_c *pt = ti->private;
2472 struct pool *pool = pt->pool;
2473
2474 if (!strcasecmp(argv[0], "create_thin"))
2475 r = process_create_thin_mesg(argc, argv, pool);
2476
2477 else if (!strcasecmp(argv[0], "create_snap"))
2478 r = process_create_snap_mesg(argc, argv, pool);
2479
2480 else if (!strcasecmp(argv[0], "delete"))
2481 r = process_delete_mesg(argc, argv, pool);
2482
2483 else if (!strcasecmp(argv[0], "set_transaction_id"))
2484 r = process_set_transaction_id_mesg(argc, argv, pool);
2485
Joe Thornbercc8394d2012-06-03 00:30:01 +01002486 else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
2487 r = process_reserve_metadata_snap_mesg(argc, argv, pool);
2488
2489 else if (!strcasecmp(argv[0], "release_metadata_snap"))
2490 r = process_release_metadata_snap_mesg(argc, argv, pool);
2491
Joe Thornber991d9fa2011-10-31 20:21:18 +00002492 else
2493 DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
2494
Joe Thornbere49e5822012-07-27 15:08:16 +01002495 if (!r)
Joe Thornber020cc3b2013-12-04 15:05:36 -05002496 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002497
2498 return r;
2499}
2500
Joe Thornbere49e5822012-07-27 15:08:16 +01002501static void emit_flags(struct pool_features *pf, char *result,
2502 unsigned sz, unsigned maxlen)
2503{
2504 unsigned count = !pf->zero_new_blocks + !pf->discard_enabled +
2505 !pf->discard_passdown + (pf->mode == PM_READ_ONLY);
2506 DMEMIT("%u ", count);
2507
2508 if (!pf->zero_new_blocks)
2509 DMEMIT("skip_block_zeroing ");
2510
2511 if (!pf->discard_enabled)
2512 DMEMIT("ignore_discard ");
2513
2514 if (!pf->discard_passdown)
2515 DMEMIT("no_discard_passdown ");
2516
2517 if (pf->mode == PM_READ_ONLY)
2518 DMEMIT("read_only ");
2519}
2520
Joe Thornber991d9fa2011-10-31 20:21:18 +00002521/*
2522 * Status line is:
2523 * <transaction id> <used metadata sectors>/<total metadata sectors>
2524 * <used data sectors>/<total data sectors> <held metadata root>
2525 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002526static void pool_status(struct dm_target *ti, status_type_t type,
2527 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002528{
Joe Thornbere49e5822012-07-27 15:08:16 +01002529 int r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002530 unsigned sz = 0;
2531 uint64_t transaction_id;
2532 dm_block_t nr_free_blocks_data;
2533 dm_block_t nr_free_blocks_metadata;
2534 dm_block_t nr_blocks_data;
2535 dm_block_t nr_blocks_metadata;
2536 dm_block_t held_root;
2537 char buf[BDEVNAME_SIZE];
2538 char buf2[BDEVNAME_SIZE];
2539 struct pool_c *pt = ti->private;
2540 struct pool *pool = pt->pool;
2541
2542 switch (type) {
2543 case STATUSTYPE_INFO:
Joe Thornbere49e5822012-07-27 15:08:16 +01002544 if (get_pool_mode(pool) == PM_FAIL) {
2545 DMEMIT("Fail");
2546 break;
2547 }
2548
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01002549 /* Commit to ensure statistics aren't out-of-date */
2550 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
Joe Thornber020cc3b2013-12-04 15:05:36 -05002551 (void) commit(pool);
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01002552
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002553 r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
2554 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002555 DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
2556 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002557 goto err;
2558 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002559
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002560 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
2561 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002562 DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
2563 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002564 goto err;
2565 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002566
2567 r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002568 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002569 DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
2570 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002571 goto err;
2572 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002573
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002574 r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
2575 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002576 DMERR("%s: dm_pool_get_free_block_count returned %d",
2577 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002578 goto err;
2579 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002580
2581 r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002582 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002583 DMERR("%s: dm_pool_get_data_dev_size returned %d",
2584 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002585 goto err;
2586 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002587
Joe Thornbercc8394d2012-06-03 00:30:01 +01002588 r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002589 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04002590 DMERR("%s: dm_pool_get_metadata_snap returned %d",
2591 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002592 goto err;
2593 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002594
2595 DMEMIT("%llu %llu/%llu %llu/%llu ",
2596 (unsigned long long)transaction_id,
2597 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
2598 (unsigned long long)nr_blocks_metadata,
2599 (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
2600 (unsigned long long)nr_blocks_data);
2601
2602 if (held_root)
Joe Thornbere49e5822012-07-27 15:08:16 +01002603 DMEMIT("%llu ", held_root);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002604 else
Joe Thornbere49e5822012-07-27 15:08:16 +01002605 DMEMIT("- ");
2606
2607 if (pool->pf.mode == PM_READ_ONLY)
2608 DMEMIT("ro ");
2609 else
2610 DMEMIT("rw ");
2611
Mike Snitzer018debe2012-12-21 20:23:32 +00002612 if (!pool->pf.discard_enabled)
2613 DMEMIT("ignore_discard");
2614 else if (pool->pf.discard_passdown)
Joe Thornbere49e5822012-07-27 15:08:16 +01002615 DMEMIT("discard_passdown");
2616 else
2617 DMEMIT("no_discard_passdown");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002618
2619 break;
2620
2621 case STATUSTYPE_TABLE:
2622 DMEMIT("%s %s %lu %llu ",
2623 format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
2624 format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
2625 (unsigned long)pool->sectors_per_block,
2626 (unsigned long long)pt->low_water_blocks);
Mike Snitzer0424caa2012-09-26 23:45:47 +01002627 emit_flags(&pt->requested_pf, result, sz, maxlen);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002628 break;
2629 }
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002630 return;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002631
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002632err:
2633 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002634}
2635
2636static int pool_iterate_devices(struct dm_target *ti,
2637 iterate_devices_callout_fn fn, void *data)
2638{
2639 struct pool_c *pt = ti->private;
2640
2641 return fn(ti, pt->data_dev, 0, ti->len, data);
2642}
2643
2644static int pool_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
2645 struct bio_vec *biovec, int max_size)
2646{
2647 struct pool_c *pt = ti->private;
2648 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
2649
2650 if (!q->merge_bvec_fn)
2651 return max_size;
2652
2653 bvm->bi_bdev = pt->data_dev->bdev;
2654
2655 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2656}
2657
Mike Snitzer0424caa2012-09-26 23:45:47 +01002658static void set_discard_limits(struct pool_c *pt, struct queue_limits *limits)
Joe Thornber104655f2012-03-28 18:41:28 +01002659{
Mike Snitzer0424caa2012-09-26 23:45:47 +01002660 struct pool *pool = pt->pool;
2661 struct queue_limits *data_limits;
2662
Joe Thornber104655f2012-03-28 18:41:28 +01002663 limits->max_discard_sectors = pool->sectors_per_block;
2664
2665 /*
Mike Snitzer0424caa2012-09-26 23:45:47 +01002666 * discard_granularity is just a hint, and not enforced.
Joe Thornber104655f2012-03-28 18:41:28 +01002667 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01002668 if (pt->adjusted_pf.discard_passdown) {
2669 data_limits = &bdev_get_queue(pt->data_dev->bdev)->limits;
2670 limits->discard_granularity = data_limits->discard_granularity;
Mike Snitzerf13945d2013-03-01 22:45:44 +00002671 } else
Mike Snitzer0424caa2012-09-26 23:45:47 +01002672 limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
Joe Thornber104655f2012-03-28 18:41:28 +01002673}
2674
Joe Thornber991d9fa2011-10-31 20:21:18 +00002675static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
2676{
2677 struct pool_c *pt = ti->private;
2678 struct pool *pool = pt->pool;
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04002679 uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002680
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04002681 /*
2682 * If the system-determined stacked limits are compatible with the
2683 * pool's blocksize (io_opt is a factor) do not override them.
2684 */
2685 if (io_opt_sectors < pool->sectors_per_block ||
2686 do_div(io_opt_sectors, pool->sectors_per_block)) {
2687 blk_limits_io_min(limits, 0);
2688 blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
2689 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01002690
2691 /*
2692 * pt->adjusted_pf is a staging area for the actual features to use.
2693 * They get transferred to the live pool in bind_control_target()
2694 * called from pool_preresume().
2695 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04002696 if (!pt->adjusted_pf.discard_enabled) {
2697 /*
2698 * Must explicitly disallow stacking discard limits otherwise the
2699 * block layer will stack them if pool's data device has support.
2700 * QUEUE_FLAG_DISCARD wouldn't be set but there is no way for the
2701 * user to see that, so make sure to set all discard limits to 0.
2702 */
2703 limits->discard_granularity = 0;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002704 return;
Mike Snitzerb60ab992013-09-19 18:49:11 -04002705 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01002706
2707 disable_passdown_if_not_supported(pt);
2708
2709 set_discard_limits(pt, limits);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002710}
2711
2712static struct target_type pool_target = {
2713 .name = "thin-pool",
2714 .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
2715 DM_TARGET_IMMUTABLE,
Mike Snitzer94563ba2013-08-22 09:56:18 -04002716 .version = {1, 9, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00002717 .module = THIS_MODULE,
2718 .ctr = pool_ctr,
2719 .dtr = pool_dtr,
2720 .map = pool_map,
2721 .postsuspend = pool_postsuspend,
2722 .preresume = pool_preresume,
2723 .resume = pool_resume,
2724 .message = pool_message,
2725 .status = pool_status,
2726 .merge = pool_merge,
2727 .iterate_devices = pool_iterate_devices,
2728 .io_hints = pool_io_hints,
2729};
2730
2731/*----------------------------------------------------------------
2732 * Thin target methods
2733 *--------------------------------------------------------------*/
2734static void thin_dtr(struct dm_target *ti)
2735{
2736 struct thin_c *tc = ti->private;
2737
2738 mutex_lock(&dm_thin_pool_table.mutex);
2739
2740 __pool_dec(tc->pool);
2741 dm_pool_close_thin_device(tc->td);
2742 dm_put_device(ti, tc->pool_dev);
Joe Thornber2dd9c252012-03-28 18:41:28 +01002743 if (tc->origin_dev)
2744 dm_put_device(ti, tc->origin_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002745 kfree(tc);
2746
2747 mutex_unlock(&dm_thin_pool_table.mutex);
2748}
2749
2750/*
2751 * Thin target parameters:
2752 *
Joe Thornber2dd9c252012-03-28 18:41:28 +01002753 * <pool_dev> <dev_id> [origin_dev]
Joe Thornber991d9fa2011-10-31 20:21:18 +00002754 *
2755 * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
2756 * dev_id: the internal device identifier
Joe Thornber2dd9c252012-03-28 18:41:28 +01002757 * origin_dev: a device external to the pool that should act as the origin
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002758 *
2759 * If the pool device has discards disabled, they get disabled for the thin
2760 * device as well.
Joe Thornber991d9fa2011-10-31 20:21:18 +00002761 */
2762static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
2763{
2764 int r;
2765 struct thin_c *tc;
Joe Thornber2dd9c252012-03-28 18:41:28 +01002766 struct dm_dev *pool_dev, *origin_dev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002767 struct mapped_device *pool_md;
2768
2769 mutex_lock(&dm_thin_pool_table.mutex);
2770
Joe Thornber2dd9c252012-03-28 18:41:28 +01002771 if (argc != 2 && argc != 3) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002772 ti->error = "Invalid argument count";
2773 r = -EINVAL;
2774 goto out_unlock;
2775 }
2776
2777 tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
2778 if (!tc) {
2779 ti->error = "Out of memory";
2780 r = -ENOMEM;
2781 goto out_unlock;
2782 }
2783
Joe Thornber2dd9c252012-03-28 18:41:28 +01002784 if (argc == 3) {
2785 r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
2786 if (r) {
2787 ti->error = "Error opening origin device";
2788 goto bad_origin_dev;
2789 }
2790 tc->origin_dev = origin_dev;
2791 }
2792
Joe Thornber991d9fa2011-10-31 20:21:18 +00002793 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
2794 if (r) {
2795 ti->error = "Error opening pool device";
2796 goto bad_pool_dev;
2797 }
2798 tc->pool_dev = pool_dev;
2799
2800 if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
2801 ti->error = "Invalid device id";
2802 r = -EINVAL;
2803 goto bad_common;
2804 }
2805
2806 pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
2807 if (!pool_md) {
2808 ti->error = "Couldn't get pool mapped device";
2809 r = -EINVAL;
2810 goto bad_common;
2811 }
2812
2813 tc->pool = __pool_table_lookup(pool_md);
2814 if (!tc->pool) {
2815 ti->error = "Couldn't find pool object";
2816 r = -EINVAL;
2817 goto bad_pool_lookup;
2818 }
2819 __pool_inc(tc->pool);
2820
Joe Thornbere49e5822012-07-27 15:08:16 +01002821 if (get_pool_mode(tc->pool) == PM_FAIL) {
2822 ti->error = "Couldn't open thin device, Pool is in fail mode";
2823 goto bad_thin_open;
2824 }
2825
Joe Thornber991d9fa2011-10-31 20:21:18 +00002826 r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
2827 if (r) {
2828 ti->error = "Couldn't open thin internal device";
2829 goto bad_thin_open;
2830 }
2831
Mike Snitzer542f9032012-07-27 15:08:00 +01002832 r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
2833 if (r)
2834 goto bad_thin_open;
2835
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002836 ti->num_flush_bios = 1;
Joe Thornber16ad3d12012-07-27 15:08:07 +01002837 ti->flush_supported = true;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002838 ti->per_bio_data_size = sizeof(struct dm_thin_endio_hook);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002839
2840 /* In case the pool supports discards, pass them on. */
Mike Snitzerb60ab992013-09-19 18:49:11 -04002841 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002842 if (tc->pool->pf.discard_enabled) {
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01002843 ti->discards_supported = true;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002844 ti->num_discard_bios = 1;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002845 /* Discard bios must be split on a block boundary */
2846 ti->split_discard_bios = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002847 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002848
2849 dm_put(pool_md);
2850
2851 mutex_unlock(&dm_thin_pool_table.mutex);
2852
2853 return 0;
2854
2855bad_thin_open:
2856 __pool_dec(tc->pool);
2857bad_pool_lookup:
2858 dm_put(pool_md);
2859bad_common:
2860 dm_put_device(ti, tc->pool_dev);
2861bad_pool_dev:
Joe Thornber2dd9c252012-03-28 18:41:28 +01002862 if (tc->origin_dev)
2863 dm_put_device(ti, tc->origin_dev);
2864bad_origin_dev:
Joe Thornber991d9fa2011-10-31 20:21:18 +00002865 kfree(tc);
2866out_unlock:
2867 mutex_unlock(&dm_thin_pool_table.mutex);
2868
2869 return r;
2870}
2871
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002872static int thin_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002873{
Alasdair G Kergon6efd6e82012-03-28 18:41:28 +01002874 bio->bi_sector = dm_target_offset(ti, bio->bi_sector);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002875
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002876 return thin_bio_map(ti, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002877}
2878
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002879static int thin_endio(struct dm_target *ti, struct bio *bio, int err)
Joe Thornbereb2aa482012-03-28 18:41:28 +01002880{
2881 unsigned long flags;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002882 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01002883 struct list_head work;
Mike Snitzera24c2562012-06-03 00:30:00 +01002884 struct dm_thin_new_mapping *m, *tmp;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002885 struct pool *pool = h->tc->pool;
2886
2887 if (h->shared_read_entry) {
2888 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01002889 dm_deferred_entry_dec(h->shared_read_entry, &work);
Joe Thornbereb2aa482012-03-28 18:41:28 +01002890
2891 spin_lock_irqsave(&pool->lock, flags);
2892 list_for_each_entry_safe(m, tmp, &work, list) {
2893 list_del(&m->list);
2894 m->quiesced = 1;
2895 __maybe_add_mapping(m);
2896 }
2897 spin_unlock_irqrestore(&pool->lock, flags);
2898 }
2899
Joe Thornber104655f2012-03-28 18:41:28 +01002900 if (h->all_io_entry) {
2901 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01002902 dm_deferred_entry_dec(h->all_io_entry, &work);
Joe Thornber563af182012-12-21 20:23:31 +00002903 if (!list_empty(&work)) {
2904 spin_lock_irqsave(&pool->lock, flags);
2905 list_for_each_entry_safe(m, tmp, &work, list)
2906 list_add(&m->list, &pool->prepared_discards);
2907 spin_unlock_irqrestore(&pool->lock, flags);
2908 wake_worker(pool);
2909 }
Joe Thornber104655f2012-03-28 18:41:28 +01002910 }
2911
Joe Thornbereb2aa482012-03-28 18:41:28 +01002912 return 0;
2913}
2914
Joe Thornber991d9fa2011-10-31 20:21:18 +00002915static void thin_postsuspend(struct dm_target *ti)
2916{
2917 if (dm_noflush_suspending(ti))
2918 requeue_io((struct thin_c *)ti->private);
2919}
2920
2921/*
2922 * <nr mapped sectors> <highest mapped sector>
2923 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002924static void thin_status(struct dm_target *ti, status_type_t type,
2925 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002926{
2927 int r;
2928 ssize_t sz = 0;
2929 dm_block_t mapped, highest;
2930 char buf[BDEVNAME_SIZE];
2931 struct thin_c *tc = ti->private;
2932
Joe Thornbere49e5822012-07-27 15:08:16 +01002933 if (get_pool_mode(tc->pool) == PM_FAIL) {
2934 DMEMIT("Fail");
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002935 return;
Joe Thornbere49e5822012-07-27 15:08:16 +01002936 }
2937
Joe Thornber991d9fa2011-10-31 20:21:18 +00002938 if (!tc->td)
2939 DMEMIT("-");
2940 else {
2941 switch (type) {
2942 case STATUSTYPE_INFO:
2943 r = dm_thin_get_mapped_count(tc->td, &mapped);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002944 if (r) {
2945 DMERR("dm_thin_get_mapped_count returned %d", r);
2946 goto err;
2947 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002948
2949 r = dm_thin_get_highest_mapped_block(tc->td, &highest);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002950 if (r < 0) {
2951 DMERR("dm_thin_get_highest_mapped_block returned %d", r);
2952 goto err;
2953 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002954
2955 DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
2956 if (r)
2957 DMEMIT("%llu", ((highest + 1) *
2958 tc->pool->sectors_per_block) - 1);
2959 else
2960 DMEMIT("-");
2961 break;
2962
2963 case STATUSTYPE_TABLE:
2964 DMEMIT("%s %lu",
2965 format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
2966 (unsigned long) tc->dev_id);
Joe Thornber2dd9c252012-03-28 18:41:28 +01002967 if (tc->origin_dev)
2968 DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
Joe Thornber991d9fa2011-10-31 20:21:18 +00002969 break;
2970 }
2971 }
2972
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002973 return;
2974
2975err:
2976 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00002977}
2978
2979static int thin_iterate_devices(struct dm_target *ti,
2980 iterate_devices_callout_fn fn, void *data)
2981{
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002982 sector_t blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002983 struct thin_c *tc = ti->private;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002984 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002985
2986 /*
2987 * We can't call dm_pool_get_data_dev_size() since that blocks. So
2988 * we follow a more convoluted path through to the pool's target.
2989 */
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002990 if (!pool->ti)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002991 return 0; /* nothing is bound */
2992
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002993 blocks = pool->ti->len;
2994 (void) sector_div(blocks, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002995 if (blocks)
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01002996 return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002997
2998 return 0;
2999}
3000
Joe Thornber991d9fa2011-10-31 20:21:18 +00003001static struct target_type thin_target = {
3002 .name = "thin",
Mike Snitzer94563ba2013-08-22 09:56:18 -04003003 .version = {1, 9, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00003004 .module = THIS_MODULE,
3005 .ctr = thin_ctr,
3006 .dtr = thin_dtr,
3007 .map = thin_map,
Joe Thornbereb2aa482012-03-28 18:41:28 +01003008 .end_io = thin_endio,
Joe Thornber991d9fa2011-10-31 20:21:18 +00003009 .postsuspend = thin_postsuspend,
3010 .status = thin_status,
3011 .iterate_devices = thin_iterate_devices,
Joe Thornber991d9fa2011-10-31 20:21:18 +00003012};
3013
3014/*----------------------------------------------------------------*/
3015
3016static int __init dm_thin_init(void)
3017{
3018 int r;
3019
3020 pool_table_init();
3021
3022 r = dm_register_target(&thin_target);
3023 if (r)
3024 return r;
3025
3026 r = dm_register_target(&pool_target);
3027 if (r)
Mike Snitzera24c2562012-06-03 00:30:00 +01003028 goto bad_pool_target;
3029
3030 r = -ENOMEM;
3031
Mike Snitzera24c2562012-06-03 00:30:00 +01003032 _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
3033 if (!_new_mapping_cache)
3034 goto bad_new_mapping_cache;
3035
Mike Snitzera24c2562012-06-03 00:30:00 +01003036 return 0;
3037
Mike Snitzera24c2562012-06-03 00:30:00 +01003038bad_new_mapping_cache:
Mike Snitzera24c2562012-06-03 00:30:00 +01003039 dm_unregister_target(&pool_target);
3040bad_pool_target:
3041 dm_unregister_target(&thin_target);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003042
3043 return r;
3044}
3045
3046static void dm_thin_exit(void)
3047{
3048 dm_unregister_target(&thin_target);
3049 dm_unregister_target(&pool_target);
Mike Snitzera24c2562012-06-03 00:30:00 +01003050
Mike Snitzera24c2562012-06-03 00:30:00 +01003051 kmem_cache_destroy(_new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003052}
3053
3054module_init(dm_thin_init);
3055module_exit(dm_thin_exit);
3056
Alasdair G Kergon7cab8bf2012-05-12 01:43:19 +01003057MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003058MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3059MODULE_LICENSE("GPL");