blob: 49e358a0c22f2e17d765626a8dc300cd9e92cfd6 [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>
Manuel Schölling0f30af92014-05-22 22:42:37 +020014#include <linux/jiffies.h>
Mike Snitzer604ea902014-10-09 18:43:25 -040015#include <linux/log2.h>
Joe Thornber991d9fa2011-10-31 20:21:18 +000016#include <linux/list.h>
Mike Snitzerc140e1c2014-03-20 21:17:14 -040017#include <linux/rculist.h>
Joe Thornber991d9fa2011-10-31 20:21:18 +000018#include <linux/init.h>
19#include <linux/module.h>
20#include <linux/slab.h>
Joe Thornbera822c832015-07-03 10:22:42 +010021#include <linux/vmalloc.h>
Joe Thornberac4c3f32014-10-10 16:42:10 +010022#include <linux/sort.h>
Mike Snitzer67324ea2014-03-21 18:33:41 -040023#include <linux/rbtree.h>
Joe Thornber991d9fa2011-10-31 20:21:18 +000024
25#define DM_MSG_PREFIX "thin"
26
27/*
28 * Tunable constants
29 */
Alasdair G Kergon7768ed32012-07-27 15:07:57 +010030#define ENDIO_HOOK_POOL_SIZE 1024
Joe Thornber991d9fa2011-10-31 20:21:18 +000031#define MAPPING_POOL_SIZE 1024
Joe Thornber905e51b2012-03-28 18:41:27 +010032#define COMMIT_PERIOD HZ
Mike Snitzer80c57892014-05-20 13:38:33 -040033#define NO_SPACE_TIMEOUT_SECS 60
34
35static unsigned no_space_timeout_secs = NO_SPACE_TIMEOUT_SECS;
Joe Thornber991d9fa2011-10-31 20:21:18 +000036
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000037DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle,
38 "A percentage of time allocated for copy on write");
39
Joe Thornber991d9fa2011-10-31 20:21:18 +000040/*
41 * The block size of the device holding pool data must be
42 * between 64KB and 1GB.
43 */
44#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (64 * 1024 >> SECTOR_SHIFT)
45#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
46
47/*
Joe Thornber991d9fa2011-10-31 20:21:18 +000048 * Device id is restricted to 24 bits.
49 */
50#define MAX_DEV_ID ((1 << 24) - 1)
51
52/*
53 * How do we handle breaking sharing of data blocks?
54 * =================================================
55 *
56 * We use a standard copy-on-write btree to store the mappings for the
57 * devices (note I'm talking about copy-on-write of the metadata here, not
58 * the data). When you take an internal snapshot you clone the root node
59 * of the origin btree. After this there is no concept of an origin or a
60 * snapshot. They are just two device trees that happen to point to the
61 * same data blocks.
62 *
63 * When we get a write in we decide if it's to a shared data block using
64 * some timestamp magic. If it is, we have to break sharing.
65 *
66 * Let's say we write to a shared block in what was the origin. The
67 * steps are:
68 *
69 * i) plug io further to this physical block. (see bio_prison code).
70 *
71 * ii) quiesce any read io to that shared data block. Obviously
Mike Snitzer44feb382012-10-12 21:02:10 +010072 * including all devices that share this block. (see dm_deferred_set code)
Joe Thornber991d9fa2011-10-31 20:21:18 +000073 *
74 * iii) copy the data block to a newly allocate block. This step can be
75 * missed out if the io covers the block. (schedule_copy).
76 *
77 * iv) insert the new mapping into the origin's btree
Joe Thornberfe878f32012-03-28 18:41:24 +010078 * (process_prepared_mapping). This act of inserting breaks some
Joe Thornber991d9fa2011-10-31 20:21:18 +000079 * sharing of btree nodes between the two devices. Breaking sharing only
80 * effects the btree of that specific device. Btrees for the other
81 * devices that share the block never change. The btree for the origin
82 * device as it was after the last commit is untouched, ie. we're using
83 * persistent data structures in the functional programming sense.
84 *
85 * v) unplug io to this physical block, including the io that triggered
86 * the breaking of sharing.
87 *
88 * Steps (ii) and (iii) occur in parallel.
89 *
90 * The metadata _doesn't_ need to be committed before the io continues. We
91 * get away with this because the io is always written to a _new_ block.
92 * If there's a crash, then:
93 *
94 * - The origin mapping will point to the old origin block (the shared
95 * one). This will contain the data as it was before the io that triggered
96 * the breaking of sharing came in.
97 *
98 * - The snap mapping still points to the old block. As it would after
99 * the commit.
100 *
101 * The downside of this scheme is the timestamp magic isn't perfect, and
102 * will continue to think that data block in the snapshot device is shared
103 * even after the write to the origin has broken sharing. I suspect data
104 * blocks will typically be shared by many different devices, so we're
105 * breaking sharing n + 1 times, rather than n, where n is the number of
106 * devices that reference this data block. At the moment I think the
107 * benefits far, far outweigh the disadvantages.
108 */
109
110/*----------------------------------------------------------------*/
111
112/*
Joe Thornber991d9fa2011-10-31 20:21:18 +0000113 * Key building.
114 */
Joe Thornber34fbcf62015-04-16 12:58:35 +0100115enum lock_space {
116 VIRTUAL,
117 PHYSICAL
118};
119
120static void build_key(struct dm_thin_device *td, enum lock_space ls,
121 dm_block_t b, dm_block_t e, struct dm_cell_key *key)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000122{
Joe Thornber34fbcf62015-04-16 12:58:35 +0100123 key->virtual = (ls == VIRTUAL);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000124 key->dev = dm_thin_dev_id(td);
Joe Thornber5f274d82014-09-17 10:17:39 +0100125 key->block_begin = b;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100126 key->block_end = e;
127}
128
129static void build_data_key(struct dm_thin_device *td, dm_block_t b,
130 struct dm_cell_key *key)
131{
132 build_key(td, PHYSICAL, b, b + 1llu, key);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000133}
134
135static void build_virtual_key(struct dm_thin_device *td, dm_block_t b,
Mike Snitzer44feb382012-10-12 21:02:10 +0100136 struct dm_cell_key *key)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000137{
Joe Thornber34fbcf62015-04-16 12:58:35 +0100138 build_key(td, VIRTUAL, b, b + 1llu, key);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000139}
140
141/*----------------------------------------------------------------*/
142
Joe Thornber7d327fe2014-10-06 15:45:59 +0100143#define THROTTLE_THRESHOLD (1 * HZ)
144
145struct throttle {
146 struct rw_semaphore lock;
147 unsigned long threshold;
148 bool throttle_applied;
149};
150
151static void throttle_init(struct throttle *t)
152{
153 init_rwsem(&t->lock);
154 t->throttle_applied = false;
155}
156
157static void throttle_work_start(struct throttle *t)
158{
159 t->threshold = jiffies + THROTTLE_THRESHOLD;
160}
161
162static void throttle_work_update(struct throttle *t)
163{
164 if (!t->throttle_applied && jiffies > t->threshold) {
165 down_write(&t->lock);
166 t->throttle_applied = true;
167 }
168}
169
170static void throttle_work_complete(struct throttle *t)
171{
172 if (t->throttle_applied) {
173 t->throttle_applied = false;
174 up_write(&t->lock);
175 }
176}
177
178static void throttle_lock(struct throttle *t)
179{
180 down_read(&t->lock);
181}
182
183static void throttle_unlock(struct throttle *t)
184{
185 up_read(&t->lock);
186}
187
188/*----------------------------------------------------------------*/
189
Joe Thornber991d9fa2011-10-31 20:21:18 +0000190/*
191 * A pool device ties together a metadata device and a data device. It
192 * also provides the interface for creating and destroying internal
193 * devices.
194 */
Mike Snitzera24c2562012-06-03 00:30:00 +0100195struct dm_thin_new_mapping;
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100196
Joe Thornbere49e5822012-07-27 15:08:16 +0100197/*
Joe Thornber3e1a0692014-03-03 16:03:26 +0000198 * The pool runs in 4 modes. Ordered in degraded order for comparisons.
Joe Thornbere49e5822012-07-27 15:08:16 +0100199 */
200enum pool_mode {
201 PM_WRITE, /* metadata may be changed */
Joe Thornber3e1a0692014-03-03 16:03:26 +0000202 PM_OUT_OF_DATA_SPACE, /* metadata may be changed, though data may not be allocated */
Joe Thornbere49e5822012-07-27 15:08:16 +0100203 PM_READ_ONLY, /* metadata may not be changed */
204 PM_FAIL, /* all I/O fails */
205};
206
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100207struct pool_features {
Joe Thornbere49e5822012-07-27 15:08:16 +0100208 enum pool_mode mode;
209
Mike Snitzer9bc142d2012-09-26 23:45:46 +0100210 bool zero_new_blocks:1;
211 bool discard_enabled:1;
212 bool discard_passdown:1;
Mike Snitzer787a996c2013-12-06 16:21:43 -0500213 bool error_if_no_space:1;
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100214};
215
Joe Thornbere49e5822012-07-27 15:08:16 +0100216struct thin_c;
217typedef void (*process_bio_fn)(struct thin_c *tc, struct bio *bio);
Joe Thornbera374bb22014-10-10 13:43:14 +0100218typedef void (*process_cell_fn)(struct thin_c *tc, struct dm_bio_prison_cell *cell);
Joe Thornbere49e5822012-07-27 15:08:16 +0100219typedef void (*process_mapping_fn)(struct dm_thin_new_mapping *m);
220
Joe Thornberac4c3f32014-10-10 16:42:10 +0100221#define CELL_SORT_ARRAY_SIZE 8192
222
Joe Thornber991d9fa2011-10-31 20:21:18 +0000223struct pool {
224 struct list_head list;
225 struct dm_target *ti; /* Only set if a pool target is bound */
226
227 struct mapped_device *pool_md;
228 struct block_device *md_dev;
229 struct dm_pool_metadata *pmd;
230
Joe Thornber991d9fa2011-10-31 20:21:18 +0000231 dm_block_t low_water_blocks;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100232 uint32_t sectors_per_block;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100233 int sectors_per_block_shift;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000234
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100235 struct pool_features pf;
Joe Thornber88a66212013-12-04 20:16:12 -0500236 bool low_water_triggered:1; /* A dm event has been sent */
Mike Snitzer80e96c52014-11-07 15:09:46 -0500237 bool suspended:1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000238
Mike Snitzer44feb382012-10-12 21:02:10 +0100239 struct dm_bio_prison *prison;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000240 struct dm_kcopyd_client *copier;
241
242 struct workqueue_struct *wq;
Joe Thornber7d327fe2014-10-06 15:45:59 +0100243 struct throttle throttle;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000244 struct work_struct worker;
Joe Thornber905e51b2012-03-28 18:41:27 +0100245 struct delayed_work waker;
Joe Thornber85ad643b2014-05-09 15:59:38 +0100246 struct delayed_work no_space_timeout;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000247
Joe Thornber905e51b2012-03-28 18:41:27 +0100248 unsigned long last_commit_jiffies;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100249 unsigned ref_count;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000250
251 spinlock_t lock;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000252 struct bio_list deferred_flush_bios;
253 struct list_head prepared_mappings;
Joe Thornber104655f2012-03-28 18:41:28 +0100254 struct list_head prepared_discards;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400255 struct list_head active_thins;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000256
Mike Snitzer44feb382012-10-12 21:02:10 +0100257 struct dm_deferred_set *shared_read_ds;
258 struct dm_deferred_set *all_io_ds;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000259
Mike Snitzera24c2562012-06-03 00:30:00 +0100260 struct dm_thin_new_mapping *next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000261 mempool_t *mapping_pool;
Joe Thornbere49e5822012-07-27 15:08:16 +0100262
263 process_bio_fn process_bio;
264 process_bio_fn process_discard;
265
Joe Thornbera374bb22014-10-10 13:43:14 +0100266 process_cell_fn process_cell;
267 process_cell_fn process_discard_cell;
268
Joe Thornbere49e5822012-07-27 15:08:16 +0100269 process_mapping_fn process_prepared_mapping;
270 process_mapping_fn process_prepared_discard;
Joe Thornberac4c3f32014-10-10 16:42:10 +0100271
Joe Thornbera822c832015-07-03 10:22:42 +0100272 struct dm_bio_prison_cell **cell_sort_array;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000273};
274
Joe Thornbere49e5822012-07-27 15:08:16 +0100275static enum pool_mode get_pool_mode(struct pool *pool);
Joe Thornberb5330652013-12-04 19:51:33 -0500276static void metadata_operation_failed(struct pool *pool, const char *op, int r);
Joe Thornbere49e5822012-07-27 15:08:16 +0100277
Joe Thornber991d9fa2011-10-31 20:21:18 +0000278/*
279 * Target context for a pool.
280 */
281struct pool_c {
282 struct dm_target *ti;
283 struct pool *pool;
284 struct dm_dev *data_dev;
285 struct dm_dev *metadata_dev;
286 struct dm_target_callbacks callbacks;
287
288 dm_block_t low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +0100289 struct pool_features requested_pf; /* Features requested during table load */
290 struct pool_features adjusted_pf; /* Features used after adjusting for constituent devices */
Joe Thornber991d9fa2011-10-31 20:21:18 +0000291};
292
293/*
294 * Target context for a thin.
295 */
296struct thin_c {
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400297 struct list_head list;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000298 struct dm_dev *pool_dev;
Joe Thornber2dd9c252012-03-28 18:41:28 +0100299 struct dm_dev *origin_dev;
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100300 sector_t origin_size;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000301 dm_thin_id dev_id;
302
303 struct pool *pool;
304 struct dm_thin_device *td;
Mike Snitzer583024d2014-10-28 20:58:45 -0400305 struct mapped_device *thin_md;
306
Joe Thornber738211f2014-03-03 15:52:28 +0000307 bool requeue_mode:1;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400308 spinlock_t lock;
Joe Thornbera374bb22014-10-10 13:43:14 +0100309 struct list_head deferred_cells;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400310 struct bio_list deferred_bio_list;
311 struct bio_list retry_on_resume_list;
Mike Snitzer67324ea2014-03-21 18:33:41 -0400312 struct rb_root sort_bio_list; /* sorted list of deferred bios */
Joe Thornberb10ebd32014-04-08 11:29:01 +0100313
314 /*
315 * Ensures the thin is not destroyed until the worker has finished
316 * iterating the active_thins list.
317 */
318 atomic_t refcount;
319 struct completion can_destroy;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000320};
321
322/*----------------------------------------------------------------*/
323
Joe Thornber34fbcf62015-04-16 12:58:35 +0100324/**
325 * __blkdev_issue_discard_async - queue a discard with async completion
326 * @bdev: blockdev to issue discard for
327 * @sector: start sector
328 * @nr_sects: number of sectors to discard
329 * @gfp_mask: memory allocation flags (for bio_alloc)
330 * @flags: BLKDEV_IFL_* flags to control behaviour
331 * @parent_bio: parent discard bio that all sub discards get chained to
332 *
333 * Description:
334 * Asynchronously issue a discard request for the sectors in question.
Joe Thornber34fbcf62015-04-16 12:58:35 +0100335 */
336static int __blkdev_issue_discard_async(struct block_device *bdev, sector_t sector,
337 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags,
338 struct bio *parent_bio)
339{
340 struct request_queue *q = bdev_get_queue(bdev);
341 int type = REQ_WRITE | REQ_DISCARD;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100342 struct bio *bio;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100343
Mike Snitzer84f8bd82015-08-18 10:31:09 -0400344 if (!q || !nr_sects)
Joe Thornber34fbcf62015-04-16 12:58:35 +0100345 return -ENXIO;
346
347 if (!blk_queue_discard(q))
348 return -EOPNOTSUPP;
349
Joe Thornber34fbcf62015-04-16 12:58:35 +0100350 if (flags & BLKDEV_DISCARD_SECURE) {
351 if (!blk_queue_secdiscard(q))
352 return -EOPNOTSUPP;
353 type |= REQ_SECURE;
354 }
355
Mike Snitzer84f8bd82015-08-18 10:31:09 -0400356 /*
357 * Required bio_put occurs in bio_endio thanks to bio_chain below
358 */
359 bio = bio_alloc(gfp_mask, 1);
360 if (!bio)
361 return -ENOMEM;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100362
Mike Snitzer84f8bd82015-08-18 10:31:09 -0400363 bio_chain(bio, parent_bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100364
Mike Snitzer84f8bd82015-08-18 10:31:09 -0400365 bio->bi_iter.bi_sector = sector;
366 bio->bi_bdev = bdev;
367 bio->bi_iter.bi_size = nr_sects << 9;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100368
Mike Snitzer84f8bd82015-08-18 10:31:09 -0400369 submit_bio(type, bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100370
Mike Snitzer84f8bd82015-08-18 10:31:09 -0400371 return 0;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100372}
373
374static bool block_size_is_power_of_two(struct pool *pool)
375{
376 return pool->sectors_per_block_shift >= 0;
377}
378
379static sector_t block_to_sectors(struct pool *pool, dm_block_t b)
380{
381 return block_size_is_power_of_two(pool) ?
382 (b << pool->sectors_per_block_shift) :
383 (b * pool->sectors_per_block);
384}
385
386static int issue_discard(struct thin_c *tc, dm_block_t data_b, dm_block_t data_e,
387 struct bio *parent_bio)
388{
389 sector_t s = block_to_sectors(tc->pool, data_b);
390 sector_t len = block_to_sectors(tc->pool, data_e - data_b);
391
392 return __blkdev_issue_discard_async(tc->pool_dev->bdev, s, len,
393 GFP_NOWAIT, 0, parent_bio);
394}
395
396/*----------------------------------------------------------------*/
397
Joe Thornber025b9682013-03-01 22:45:50 +0000398/*
399 * wake_worker() is used when new work is queued and when pool_resume is
400 * ready to continue deferred IO processing.
401 */
402static void wake_worker(struct pool *pool)
403{
404 queue_work(pool->wq, &pool->worker);
405}
406
407/*----------------------------------------------------------------*/
408
Joe Thornber6beca5e2013-03-01 22:45:50 +0000409static int bio_detain(struct pool *pool, struct dm_cell_key *key, struct bio *bio,
410 struct dm_bio_prison_cell **cell_result)
411{
412 int r;
413 struct dm_bio_prison_cell *cell_prealloc;
414
415 /*
416 * Allocate a cell from the prison's mempool.
417 * This might block but it can't fail.
418 */
419 cell_prealloc = dm_bio_prison_alloc_cell(pool->prison, GFP_NOIO);
420
421 r = dm_bio_detain(pool->prison, key, bio, cell_prealloc, cell_result);
422 if (r)
423 /*
424 * We reused an old cell; we can get rid of
425 * the new one.
426 */
427 dm_bio_prison_free_cell(pool->prison, cell_prealloc);
428
429 return r;
430}
431
432static void cell_release(struct pool *pool,
433 struct dm_bio_prison_cell *cell,
434 struct bio_list *bios)
435{
436 dm_cell_release(pool->prison, cell, bios);
437 dm_bio_prison_free_cell(pool->prison, cell);
438}
439
Joe Thornber2d759a42014-10-10 15:27:16 +0100440static void cell_visit_release(struct pool *pool,
441 void (*fn)(void *, struct dm_bio_prison_cell *),
442 void *context,
443 struct dm_bio_prison_cell *cell)
444{
445 dm_cell_visit_release(pool->prison, fn, context, cell);
446 dm_bio_prison_free_cell(pool->prison, cell);
447}
448
Joe Thornber6beca5e2013-03-01 22:45:50 +0000449static void cell_release_no_holder(struct pool *pool,
450 struct dm_bio_prison_cell *cell,
451 struct bio_list *bios)
452{
453 dm_cell_release_no_holder(pool->prison, cell, bios);
454 dm_bio_prison_free_cell(pool->prison, cell);
455}
456
Mike Snitzeraf918052014-05-22 14:32:51 -0400457static void cell_error_with_code(struct pool *pool,
458 struct dm_bio_prison_cell *cell, int error_code)
Joe Thornber6beca5e2013-03-01 22:45:50 +0000459{
Mike Snitzeraf918052014-05-22 14:32:51 -0400460 dm_cell_error(pool->prison, cell, error_code);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000461 dm_bio_prison_free_cell(pool->prison, cell);
462}
463
Mike Snitzeraf918052014-05-22 14:32:51 -0400464static void cell_error(struct pool *pool, struct dm_bio_prison_cell *cell)
465{
466 cell_error_with_code(pool, cell, -EIO);
467}
468
Joe Thornbera374bb22014-10-10 13:43:14 +0100469static void cell_success(struct pool *pool, struct dm_bio_prison_cell *cell)
470{
471 cell_error_with_code(pool, cell, 0);
472}
473
474static void cell_requeue(struct pool *pool, struct dm_bio_prison_cell *cell)
475{
476 cell_error_with_code(pool, cell, DM_ENDIO_REQUEUE);
477}
478
Joe Thornber6beca5e2013-03-01 22:45:50 +0000479/*----------------------------------------------------------------*/
480
Joe Thornber991d9fa2011-10-31 20:21:18 +0000481/*
482 * A global list of pools that uses a struct mapped_device as a key.
483 */
484static struct dm_thin_pool_table {
485 struct mutex mutex;
486 struct list_head pools;
487} dm_thin_pool_table;
488
489static void pool_table_init(void)
490{
491 mutex_init(&dm_thin_pool_table.mutex);
492 INIT_LIST_HEAD(&dm_thin_pool_table.pools);
493}
494
495static void __pool_table_insert(struct pool *pool)
496{
497 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
498 list_add(&pool->list, &dm_thin_pool_table.pools);
499}
500
501static void __pool_table_remove(struct pool *pool)
502{
503 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
504 list_del(&pool->list);
505}
506
507static struct pool *__pool_table_lookup(struct mapped_device *md)
508{
509 struct pool *pool = NULL, *tmp;
510
511 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
512
513 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
514 if (tmp->pool_md == md) {
515 pool = tmp;
516 break;
517 }
518 }
519
520 return pool;
521}
522
523static struct pool *__pool_table_lookup_metadata_dev(struct block_device *md_dev)
524{
525 struct pool *pool = NULL, *tmp;
526
527 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
528
529 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
530 if (tmp->md_dev == md_dev) {
531 pool = tmp;
532 break;
533 }
534 }
535
536 return pool;
537}
538
539/*----------------------------------------------------------------*/
540
Mike Snitzera24c2562012-06-03 00:30:00 +0100541struct dm_thin_endio_hook {
Joe Thornbereb2aa482012-03-28 18:41:28 +0100542 struct thin_c *tc;
Mike Snitzer44feb382012-10-12 21:02:10 +0100543 struct dm_deferred_entry *shared_read_entry;
544 struct dm_deferred_entry *all_io_entry;
Mike Snitzera24c2562012-06-03 00:30:00 +0100545 struct dm_thin_new_mapping *overwrite_mapping;
Mike Snitzer67324ea2014-03-21 18:33:41 -0400546 struct rb_node rb_node;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100547 struct dm_bio_prison_cell *cell;
Joe Thornbereb2aa482012-03-28 18:41:28 +0100548};
549
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400550static void __merge_bio_list(struct bio_list *bios, struct bio_list *master)
551{
552 bio_list_merge(bios, master);
553 bio_list_init(master);
554}
555
556static void error_bio_list(struct bio_list *bios, int error)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000557{
558 struct bio *bio;
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400559
560 while ((bio = bio_list_pop(bios)))
561 bio_endio(bio, error);
562}
563
564static void error_thin_bio_list(struct thin_c *tc, struct bio_list *master, int error)
565{
Joe Thornber991d9fa2011-10-31 20:21:18 +0000566 struct bio_list bios;
Joe Thornber18adc572014-03-03 15:46:42 +0000567 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000568
569 bio_list_init(&bios);
Joe Thornber18adc572014-03-03 15:46:42 +0000570
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400571 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400572 __merge_bio_list(&bios, master);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400573 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000574
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400575 error_bio_list(&bios, error);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000576}
577
Joe Thornbera374bb22014-10-10 13:43:14 +0100578static void requeue_deferred_cells(struct thin_c *tc)
579{
580 struct pool *pool = tc->pool;
581 unsigned long flags;
582 struct list_head cells;
583 struct dm_bio_prison_cell *cell, *tmp;
584
585 INIT_LIST_HEAD(&cells);
586
587 spin_lock_irqsave(&tc->lock, flags);
588 list_splice_init(&tc->deferred_cells, &cells);
589 spin_unlock_irqrestore(&tc->lock, flags);
590
591 list_for_each_entry_safe(cell, tmp, &cells, user_list)
592 cell_requeue(pool, cell);
593}
594
Joe Thornber991d9fa2011-10-31 20:21:18 +0000595static void requeue_io(struct thin_c *tc)
596{
Joe Thornber3e1a0692014-03-03 16:03:26 +0000597 struct bio_list bios;
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400598 unsigned long flags;
Joe Thornber3e1a0692014-03-03 16:03:26 +0000599
600 bio_list_init(&bios);
601
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400602 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400603 __merge_bio_list(&bios, &tc->deferred_bio_list);
604 __merge_bio_list(&bios, &tc->retry_on_resume_list);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400605 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber3e1a0692014-03-03 16:03:26 +0000606
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400607 error_bio_list(&bios, DM_ENDIO_REQUEUE);
608 requeue_deferred_cells(tc);
Joe Thornber3e1a0692014-03-03 16:03:26 +0000609}
610
Mike Snitzer0a927c22015-07-21 13:20:46 -0400611static void error_retry_list_with_code(struct pool *pool, int error)
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400612{
613 struct thin_c *tc;
614
615 rcu_read_lock();
616 list_for_each_entry_rcu(tc, &pool->active_thins, list)
Mike Snitzer0a927c22015-07-21 13:20:46 -0400617 error_thin_bio_list(tc, &tc->retry_on_resume_list, error);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400618 rcu_read_unlock();
619}
620
Mike Snitzer0a927c22015-07-21 13:20:46 -0400621static void error_retry_list(struct pool *pool)
622{
623 return error_retry_list_with_code(pool, -EIO);
624}
625
Joe Thornber991d9fa2011-10-31 20:21:18 +0000626/*
627 * This section of code contains the logic for processing a thin device's IO.
628 * Much of the code depends on pool object resources (lists, workqueues, etc)
629 * but most is exclusively called from the thin target rather than the thin-pool
630 * target.
631 */
632
633static dm_block_t get_bio_block(struct thin_c *tc, struct bio *bio)
634{
Mike Snitzer58f77a22013-03-01 22:45:45 +0000635 struct pool *pool = tc->pool;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700636 sector_t block_nr = bio->bi_iter.bi_sector;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100637
Mike Snitzer58f77a22013-03-01 22:45:45 +0000638 if (block_size_is_power_of_two(pool))
639 block_nr >>= pool->sectors_per_block_shift;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100640 else
Mike Snitzer58f77a22013-03-01 22:45:45 +0000641 (void) sector_div(block_nr, pool->sectors_per_block);
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100642
643 return block_nr;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000644}
645
Joe Thornber34fbcf62015-04-16 12:58:35 +0100646/*
647 * Returns the _complete_ blocks that this bio covers.
648 */
649static void get_bio_block_range(struct thin_c *tc, struct bio *bio,
650 dm_block_t *begin, dm_block_t *end)
651{
652 struct pool *pool = tc->pool;
653 sector_t b = bio->bi_iter.bi_sector;
654 sector_t e = b + (bio->bi_iter.bi_size >> SECTOR_SHIFT);
655
656 b += pool->sectors_per_block - 1ull; /* so we round up */
657
658 if (block_size_is_power_of_two(pool)) {
659 b >>= pool->sectors_per_block_shift;
660 e >>= pool->sectors_per_block_shift;
661 } else {
662 (void) sector_div(b, pool->sectors_per_block);
663 (void) sector_div(e, pool->sectors_per_block);
664 }
665
666 if (e < b)
667 /* Can happen if the bio is within a single block. */
668 e = b;
669
670 *begin = b;
671 *end = e;
672}
673
Joe Thornber991d9fa2011-10-31 20:21:18 +0000674static void remap(struct thin_c *tc, struct bio *bio, dm_block_t block)
675{
676 struct pool *pool = tc->pool;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700677 sector_t bi_sector = bio->bi_iter.bi_sector;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000678
679 bio->bi_bdev = tc->pool_dev->bdev;
Mike Snitzer58f77a22013-03-01 22:45:45 +0000680 if (block_size_is_power_of_two(pool))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700681 bio->bi_iter.bi_sector =
682 (block << pool->sectors_per_block_shift) |
683 (bi_sector & (pool->sectors_per_block - 1));
Mike Snitzer58f77a22013-03-01 22:45:45 +0000684 else
Kent Overstreet4f024f32013-10-11 15:44:27 -0700685 bio->bi_iter.bi_sector = (block * pool->sectors_per_block) +
Mike Snitzer58f77a22013-03-01 22:45:45 +0000686 sector_div(bi_sector, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000687}
688
Joe Thornber2dd9c252012-03-28 18:41:28 +0100689static void remap_to_origin(struct thin_c *tc, struct bio *bio)
690{
691 bio->bi_bdev = tc->origin_dev->bdev;
692}
693
Joe Thornber4afdd682012-07-27 15:08:14 +0100694static int bio_triggers_commit(struct thin_c *tc, struct bio *bio)
695{
696 return (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) &&
697 dm_thin_changed_this_transaction(tc->td);
698}
699
Joe Thornbere8088072012-12-21 20:23:31 +0000700static void inc_all_io_entry(struct pool *pool, struct bio *bio)
701{
702 struct dm_thin_endio_hook *h;
703
704 if (bio->bi_rw & REQ_DISCARD)
705 return;
706
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000707 h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbere8088072012-12-21 20:23:31 +0000708 h->all_io_entry = dm_deferred_entry_inc(pool->all_io_ds);
709}
710
Joe Thornber2dd9c252012-03-28 18:41:28 +0100711static void issue(struct thin_c *tc, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000712{
713 struct pool *pool = tc->pool;
714 unsigned long flags;
715
Joe Thornbere49e5822012-07-27 15:08:16 +0100716 if (!bio_triggers_commit(tc, bio)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000717 generic_make_request(bio);
Joe Thornbere49e5822012-07-27 15:08:16 +0100718 return;
719 }
720
721 /*
722 * Complete bio with an error if earlier I/O caused changes to
723 * the metadata that can't be committed e.g, due to I/O errors
724 * on the metadata device.
725 */
726 if (dm_thin_aborted_changes(tc->td)) {
727 bio_io_error(bio);
728 return;
729 }
730
731 /*
732 * Batch together any bios that trigger commits and then issue a
733 * single commit for them in process_deferred_bios().
734 */
735 spin_lock_irqsave(&pool->lock, flags);
736 bio_list_add(&pool->deferred_flush_bios, bio);
737 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000738}
739
Joe Thornber2dd9c252012-03-28 18:41:28 +0100740static void remap_to_origin_and_issue(struct thin_c *tc, struct bio *bio)
741{
742 remap_to_origin(tc, bio);
743 issue(tc, bio);
744}
745
746static void remap_and_issue(struct thin_c *tc, struct bio *bio,
747 dm_block_t block)
748{
749 remap(tc, bio, block);
750 issue(tc, bio);
751}
752
Joe Thornber991d9fa2011-10-31 20:21:18 +0000753/*----------------------------------------------------------------*/
754
755/*
756 * Bio endio functions.
757 */
Mike Snitzera24c2562012-06-03 00:30:00 +0100758struct dm_thin_new_mapping {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000759 struct list_head list;
760
Mike Snitzer7f214662013-12-17 13:43:31 -0500761 bool pass_discard:1;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100762 bool maybe_shared:1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000763
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100764 /*
765 * Track quiescing, copying and zeroing preparation actions. When this
766 * counter hits zero the block is prepared and can be inserted into the
767 * btree.
768 */
769 atomic_t prepare_actions;
770
Mike Snitzer7f214662013-12-17 13:43:31 -0500771 int err;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000772 struct thin_c *tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100773 dm_block_t virt_begin, virt_end;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000774 dm_block_t data_block;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100775 struct dm_bio_prison_cell *cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000776
777 /*
778 * If the bio covers the whole area of a block then we can avoid
779 * zeroing or copying. Instead this bio is hooked. The bio will
780 * still be in the cell, so care has to be taken to avoid issuing
781 * the bio twice.
782 */
783 struct bio *bio;
784 bio_end_io_t *saved_bi_end_io;
785};
786
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100787static void __complete_mapping_preparation(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000788{
789 struct pool *pool = m->tc->pool;
790
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100791 if (atomic_dec_and_test(&m->prepare_actions)) {
Mike Snitzerdaec3382013-12-11 14:01:20 -0500792 list_add_tail(&m->list, &pool->prepared_mappings);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000793 wake_worker(pool);
794 }
795}
796
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100797static void complete_mapping_preparation(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000798{
799 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000800 struct pool *pool = m->tc->pool;
801
Joe Thornber991d9fa2011-10-31 20:21:18 +0000802 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100803 __complete_mapping_preparation(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000804 spin_unlock_irqrestore(&pool->lock, flags);
805}
806
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100807static void copy_complete(int read_err, unsigned long write_err, void *context)
808{
809 struct dm_thin_new_mapping *m = context;
810
811 m->err = read_err || write_err ? -EIO : 0;
812 complete_mapping_preparation(m);
813}
814
Joe Thornber991d9fa2011-10-31 20:21:18 +0000815static void overwrite_endio(struct bio *bio, int err)
816{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000817 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100818 struct dm_thin_new_mapping *m = h->overwrite_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000819
Mike Snitzer8b908f82015-05-13 17:53:13 -0400820 bio->bi_end_io = m->saved_bi_end_io;
821
Joe Thornber991d9fa2011-10-31 20:21:18 +0000822 m->err = err;
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100823 complete_mapping_preparation(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000824}
825
Joe Thornber991d9fa2011-10-31 20:21:18 +0000826/*----------------------------------------------------------------*/
827
828/*
829 * Workqueue.
830 */
831
832/*
833 * Prepared mapping jobs.
834 */
835
836/*
Joe Thornber2d759a42014-10-10 15:27:16 +0100837 * This sends the bios in the cell, except the original holder, back
838 * to the deferred_bios list.
Joe Thornber991d9fa2011-10-31 20:21:18 +0000839 */
Joe Thornberf286ba02012-12-21 20:23:33 +0000840static void cell_defer_no_holder(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000841{
Joe Thornber991d9fa2011-10-31 20:21:18 +0000842 struct pool *pool = tc->pool;
843 unsigned long flags;
844
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400845 spin_lock_irqsave(&tc->lock, flags);
846 cell_release_no_holder(pool, cell, &tc->deferred_bio_list);
847 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000848
849 wake_worker(pool);
850}
851
Joe Thornbera374bb22014-10-10 13:43:14 +0100852static void thin_defer_bio(struct thin_c *tc, struct bio *bio);
853
Joe Thornber2d759a42014-10-10 15:27:16 +0100854struct remap_info {
855 struct thin_c *tc;
856 struct bio_list defer_bios;
857 struct bio_list issue_bios;
858};
859
860static void __inc_remap_and_issue_cell(void *context,
861 struct dm_bio_prison_cell *cell)
862{
863 struct remap_info *info = context;
864 struct bio *bio;
865
866 while ((bio = bio_list_pop(&cell->bios))) {
867 if (bio->bi_rw & (REQ_DISCARD | REQ_FLUSH | REQ_FUA))
868 bio_list_add(&info->defer_bios, bio);
869 else {
870 inc_all_io_entry(info->tc->pool, bio);
871
872 /*
873 * We can't issue the bios with the bio prison lock
874 * held, so we add them to a list to issue on
875 * return from this function.
876 */
877 bio_list_add(&info->issue_bios, bio);
878 }
879 }
880}
881
Joe Thornbera374bb22014-10-10 13:43:14 +0100882static void inc_remap_and_issue_cell(struct thin_c *tc,
883 struct dm_bio_prison_cell *cell,
884 dm_block_t block)
885{
886 struct bio *bio;
Joe Thornber2d759a42014-10-10 15:27:16 +0100887 struct remap_info info;
Joe Thornbera374bb22014-10-10 13:43:14 +0100888
Joe Thornber2d759a42014-10-10 15:27:16 +0100889 info.tc = tc;
890 bio_list_init(&info.defer_bios);
891 bio_list_init(&info.issue_bios);
Joe Thornbera374bb22014-10-10 13:43:14 +0100892
Joe Thornber2d759a42014-10-10 15:27:16 +0100893 /*
894 * We have to be careful to inc any bios we're about to issue
895 * before the cell is released, and avoid a race with new bios
896 * being added to the cell.
897 */
898 cell_visit_release(tc->pool, __inc_remap_and_issue_cell,
899 &info, cell);
900
901 while ((bio = bio_list_pop(&info.defer_bios)))
902 thin_defer_bio(tc, bio);
903
904 while ((bio = bio_list_pop(&info.issue_bios)))
905 remap_and_issue(info.tc, bio, block);
Joe Thornbera374bb22014-10-10 13:43:14 +0100906}
907
Joe Thornbere49e5822012-07-27 15:08:16 +0100908static void process_prepared_mapping_fail(struct dm_thin_new_mapping *m)
909{
Joe Thornber6beca5e2013-03-01 22:45:50 +0000910 cell_error(m->tc->pool, m->cell);
Joe Thornbere49e5822012-07-27 15:08:16 +0100911 list_del(&m->list);
912 mempool_free(m, m->tc->pool->mapping_pool);
913}
Joe Thornber025b9682013-03-01 22:45:50 +0000914
Mike Snitzera24c2562012-06-03 00:30:00 +0100915static void process_prepared_mapping(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000916{
917 struct thin_c *tc = m->tc;
Joe Thornber6beca5e2013-03-01 22:45:50 +0000918 struct pool *pool = tc->pool;
Mike Snitzer8b908f82015-05-13 17:53:13 -0400919 struct bio *bio = m->bio;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000920 int r;
921
Joe Thornber991d9fa2011-10-31 20:21:18 +0000922 if (m->err) {
Joe Thornber6beca5e2013-03-01 22:45:50 +0000923 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100924 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000925 }
926
927 /*
928 * Commit the prepared block into the mapping btree.
929 * Any I/O for this block arriving after this point will get
930 * remapped to it directly.
931 */
Joe Thornber34fbcf62015-04-16 12:58:35 +0100932 r = dm_thin_insert_block(tc->td, m->virt_begin, m->data_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000933 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -0500934 metadata_operation_failed(pool, "dm_thin_insert_block", r);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000935 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100936 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000937 }
938
939 /*
940 * Release any bios held while the block was being provisioned.
941 * If we are processing a write bio that completely covers the block,
942 * we already processed it so can ignore it now when processing
943 * the bios in the cell.
944 */
945 if (bio) {
Joe Thornber2d759a42014-10-10 15:27:16 +0100946 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000947 bio_endio(bio, 0);
Joe Thornber2d759a42014-10-10 15:27:16 +0100948 } else {
949 inc_all_io_entry(tc->pool, m->cell->holder);
950 remap_and_issue(tc, m->cell->holder, m->data_block);
951 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
952 }
Joe Thornber991d9fa2011-10-31 20:21:18 +0000953
Joe Thornber905386f2012-07-27 15:08:05 +0100954out:
Joe Thornber991d9fa2011-10-31 20:21:18 +0000955 list_del(&m->list);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000956 mempool_free(m, pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000957}
958
Joe Thornber34fbcf62015-04-16 12:58:35 +0100959/*----------------------------------------------------------------*/
960
961static void free_discard_mapping(struct dm_thin_new_mapping *m)
962{
963 struct thin_c *tc = m->tc;
964 if (m->cell)
965 cell_defer_no_holder(tc, m->cell);
966 mempool_free(m, tc->pool->mapping_pool);
967}
968
Joe Thornbere49e5822012-07-27 15:08:16 +0100969static void process_prepared_discard_fail(struct dm_thin_new_mapping *m)
Joe Thornber104655f2012-03-28 18:41:28 +0100970{
Joe Thornbere49e5822012-07-27 15:08:16 +0100971 bio_io_error(m->bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100972 free_discard_mapping(m);
Joe Thornbere49e5822012-07-27 15:08:16 +0100973}
Joe Thornber104655f2012-03-28 18:41:28 +0100974
Joe Thornber34fbcf62015-04-16 12:58:35 +0100975static void process_prepared_discard_success(struct dm_thin_new_mapping *m)
Joe Thornbere49e5822012-07-27 15:08:16 +0100976{
Joe Thornber34fbcf62015-04-16 12:58:35 +0100977 bio_endio(m->bio, 0);
978 free_discard_mapping(m);
Joe Thornber104655f2012-03-28 18:41:28 +0100979}
980
Joe Thornber34fbcf62015-04-16 12:58:35 +0100981static void process_prepared_discard_no_passdown(struct dm_thin_new_mapping *m)
Joe Thornbere49e5822012-07-27 15:08:16 +0100982{
983 int r;
984 struct thin_c *tc = m->tc;
985
Joe Thornber34fbcf62015-04-16 12:58:35 +0100986 r = dm_thin_remove_range(tc->td, m->cell->key.block_begin, m->cell->key.block_end);
987 if (r) {
988 metadata_operation_failed(tc->pool, "dm_thin_remove_range", r);
989 bio_io_error(m->bio);
990 } else
991 bio_endio(m->bio, 0);
Joe Thornbere49e5822012-07-27 15:08:16 +0100992
Joe Thornber34fbcf62015-04-16 12:58:35 +0100993 cell_defer_no_holder(tc, m->cell);
994 mempool_free(m, tc->pool->mapping_pool);
995}
996
997static int passdown_double_checking_shared_status(struct dm_thin_new_mapping *m)
998{
999 /*
1000 * We've already unmapped this range of blocks, but before we
1001 * passdown we have to check that these blocks are now unused.
1002 */
1003 int r;
1004 bool used = true;
1005 struct thin_c *tc = m->tc;
1006 struct pool *pool = tc->pool;
1007 dm_block_t b = m->data_block, e, end = m->data_block + m->virt_end - m->virt_begin;
1008
1009 while (b != end) {
1010 /* find start of unmapped run */
1011 for (; b < end; b++) {
1012 r = dm_pool_block_is_used(pool->pmd, b, &used);
1013 if (r)
1014 return r;
1015
1016 if (!used)
1017 break;
1018 }
1019
1020 if (b == end)
1021 break;
1022
1023 /* find end of run */
1024 for (e = b + 1; e != end; e++) {
1025 r = dm_pool_block_is_used(pool->pmd, e, &used);
1026 if (r)
1027 return r;
1028
1029 if (used)
1030 break;
1031 }
1032
1033 r = issue_discard(tc, b, e, m->bio);
1034 if (r)
1035 return r;
1036
1037 b = e;
1038 }
1039
1040 return 0;
1041}
1042
1043static void process_prepared_discard_passdown(struct dm_thin_new_mapping *m)
1044{
1045 int r;
1046 struct thin_c *tc = m->tc;
1047 struct pool *pool = tc->pool;
1048
1049 r = dm_thin_remove_range(tc->td, m->virt_begin, m->virt_end);
1050 if (r)
1051 metadata_operation_failed(pool, "dm_thin_remove_range", r);
1052
1053 else if (m->maybe_shared)
1054 r = passdown_double_checking_shared_status(m);
1055 else
1056 r = issue_discard(tc, m->data_block, m->data_block + (m->virt_end - m->virt_begin), m->bio);
1057
1058 /*
1059 * Even if r is set, there could be sub discards in flight that we
1060 * need to wait for.
1061 */
1062 bio_endio(m->bio, r);
1063 cell_defer_no_holder(tc, m->cell);
1064 mempool_free(m, pool->mapping_pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01001065}
1066
Joe Thornber104655f2012-03-28 18:41:28 +01001067static void process_prepared(struct pool *pool, struct list_head *head,
Joe Thornbere49e5822012-07-27 15:08:16 +01001068 process_mapping_fn *fn)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001069{
1070 unsigned long flags;
1071 struct list_head maps;
Mike Snitzera24c2562012-06-03 00:30:00 +01001072 struct dm_thin_new_mapping *m, *tmp;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001073
1074 INIT_LIST_HEAD(&maps);
1075 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001076 list_splice_init(head, &maps);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001077 spin_unlock_irqrestore(&pool->lock, flags);
1078
1079 list_for_each_entry_safe(m, tmp, &maps, list)
Joe Thornbere49e5822012-07-27 15:08:16 +01001080 (*fn)(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001081}
1082
1083/*
1084 * Deferred bio jobs.
1085 */
Joe Thornber104655f2012-03-28 18:41:28 +01001086static int io_overlaps_block(struct pool *pool, struct bio *bio)
1087{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001088 return bio->bi_iter.bi_size ==
1089 (pool->sectors_per_block << SECTOR_SHIFT);
Joe Thornber104655f2012-03-28 18:41:28 +01001090}
1091
Joe Thornber991d9fa2011-10-31 20:21:18 +00001092static int io_overwrites_block(struct pool *pool, struct bio *bio)
1093{
Joe Thornber104655f2012-03-28 18:41:28 +01001094 return (bio_data_dir(bio) == WRITE) &&
1095 io_overlaps_block(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001096}
1097
1098static void save_and_set_endio(struct bio *bio, bio_end_io_t **save,
1099 bio_end_io_t *fn)
1100{
1101 *save = bio->bi_end_io;
1102 bio->bi_end_io = fn;
1103}
1104
1105static int ensure_next_mapping(struct pool *pool)
1106{
1107 if (pool->next_mapping)
1108 return 0;
1109
1110 pool->next_mapping = mempool_alloc(pool->mapping_pool, GFP_ATOMIC);
1111
1112 return pool->next_mapping ? 0 : -ENOMEM;
1113}
1114
Mike Snitzera24c2562012-06-03 00:30:00 +01001115static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001116{
Mike Snitzer16961b02013-12-17 13:19:11 -05001117 struct dm_thin_new_mapping *m = pool->next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001118
1119 BUG_ON(!pool->next_mapping);
1120
Mike Snitzer16961b02013-12-17 13:19:11 -05001121 memset(m, 0, sizeof(struct dm_thin_new_mapping));
1122 INIT_LIST_HEAD(&m->list);
1123 m->bio = NULL;
1124
Joe Thornber991d9fa2011-10-31 20:21:18 +00001125 pool->next_mapping = NULL;
1126
Mike Snitzer16961b02013-12-17 13:19:11 -05001127 return m;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001128}
1129
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001130static void ll_zero(struct thin_c *tc, struct dm_thin_new_mapping *m,
1131 sector_t begin, sector_t end)
1132{
1133 int r;
1134 struct dm_io_region to;
1135
1136 to.bdev = tc->pool_dev->bdev;
1137 to.sector = begin;
1138 to.count = end - begin;
1139
1140 r = dm_kcopyd_zero(tc->pool->copier, 1, &to, 0, copy_complete, m);
1141 if (r < 0) {
1142 DMERR_LIMIT("dm_kcopyd_zero() failed");
1143 copy_complete(1, 1, m);
1144 }
1145}
1146
Mike Snitzer452d7a62014-10-09 19:20:21 -04001147static void remap_and_issue_overwrite(struct thin_c *tc, struct bio *bio,
Joe Thornber34fbcf62015-04-16 12:58:35 +01001148 dm_block_t data_begin,
Mike Snitzer452d7a62014-10-09 19:20:21 -04001149 struct dm_thin_new_mapping *m)
1150{
1151 struct pool *pool = tc->pool;
1152 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1153
1154 h->overwrite_mapping = m;
1155 m->bio = bio;
1156 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
1157 inc_all_io_entry(pool, bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001158 remap_and_issue(tc, bio, data_begin);
Mike Snitzer452d7a62014-10-09 19:20:21 -04001159}
1160
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001161/*
1162 * A partial copy also needs to zero the uncopied region.
1163 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001164static void schedule_copy(struct thin_c *tc, dm_block_t virt_block,
Joe Thornber2dd9c252012-03-28 18:41:28 +01001165 struct dm_dev *origin, dm_block_t data_origin,
1166 dm_block_t data_dest,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001167 struct dm_bio_prison_cell *cell, struct bio *bio,
1168 sector_t len)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001169{
1170 int r;
1171 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001172 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001173
Joe Thornber991d9fa2011-10-31 20:21:18 +00001174 m->tc = tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001175 m->virt_begin = virt_block;
1176 m->virt_end = virt_block + 1u;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001177 m->data_block = data_dest;
1178 m->cell = cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001179
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001180 /*
1181 * quiesce action + copy action + an extra reference held for the
1182 * duration of this function (we may need to inc later for a
1183 * partial zero).
1184 */
1185 atomic_set(&m->prepare_actions, 3);
1186
Mike Snitzer44feb382012-10-12 21:02:10 +01001187 if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list))
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001188 complete_mapping_preparation(m); /* already quiesced */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001189
1190 /*
1191 * IO to pool_dev remaps to the pool target's data_dev.
1192 *
1193 * If the whole block of data is being overwritten, we can issue the
1194 * bio immediately. Otherwise we use kcopyd to clone the data first.
1195 */
Mike Snitzer452d7a62014-10-09 19:20:21 -04001196 if (io_overwrites_block(pool, bio))
1197 remap_and_issue_overwrite(tc, bio, data_dest, m);
1198 else {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001199 struct dm_io_region from, to;
1200
Joe Thornber2dd9c252012-03-28 18:41:28 +01001201 from.bdev = origin->bdev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001202 from.sector = data_origin * pool->sectors_per_block;
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001203 from.count = len;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001204
1205 to.bdev = tc->pool_dev->bdev;
1206 to.sector = data_dest * pool->sectors_per_block;
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001207 to.count = len;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001208
1209 r = dm_kcopyd_copy(pool->copier, &from, 1, &to,
1210 0, copy_complete, m);
1211 if (r < 0) {
Mike Snitzerc3977412012-12-21 20:23:34 +00001212 DMERR_LIMIT("dm_kcopyd_copy() failed");
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001213 copy_complete(1, 1, m);
1214
1215 /*
1216 * We allow the zero to be issued, to simplify the
1217 * error path. Otherwise we'd need to start
1218 * worrying about decrementing the prepare_actions
1219 * counter.
1220 */
1221 }
1222
1223 /*
1224 * Do we need to zero a tail region?
1225 */
1226 if (len < pool->sectors_per_block && pool->pf.zero_new_blocks) {
1227 atomic_inc(&m->prepare_actions);
1228 ll_zero(tc, m,
1229 data_dest * pool->sectors_per_block + len,
1230 (data_dest + 1) * pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001231 }
1232 }
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001233
1234 complete_mapping_preparation(m); /* drop our ref */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001235}
1236
Joe Thornber2dd9c252012-03-28 18:41:28 +01001237static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block,
1238 dm_block_t data_origin, dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +01001239 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber2dd9c252012-03-28 18:41:28 +01001240{
1241 schedule_copy(tc, virt_block, tc->pool_dev,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001242 data_origin, data_dest, cell, bio,
1243 tc->pool->sectors_per_block);
Joe Thornber2dd9c252012-03-28 18:41:28 +01001244}
1245
Joe Thornber991d9fa2011-10-31 20:21:18 +00001246static void schedule_zero(struct thin_c *tc, dm_block_t virt_block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001247 dm_block_t data_block, struct dm_bio_prison_cell *cell,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001248 struct bio *bio)
1249{
1250 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001251 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001252
Joe Thornber50f3c3e2014-06-13 13:57:09 +01001253 atomic_set(&m->prepare_actions, 1); /* no need to quiesce */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001254 m->tc = tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001255 m->virt_begin = virt_block;
1256 m->virt_end = virt_block + 1u;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001257 m->data_block = data_block;
1258 m->cell = cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001259
1260 /*
1261 * If the whole block of data is being overwritten or we are not
1262 * zeroing pre-existing data, we can issue the bio immediately.
1263 * Otherwise we use kcopyd to zero the data first.
1264 */
Mike Snitzerf8ae7522015-05-14 11:28:37 -04001265 if (pool->pf.zero_new_blocks) {
1266 if (io_overwrites_block(pool, bio))
1267 remap_and_issue_overwrite(tc, bio, data_block, m);
1268 else
1269 ll_zero(tc, m, data_block * pool->sectors_per_block,
1270 (data_block + 1) * pool->sectors_per_block);
1271 } else
Joe Thornber991d9fa2011-10-31 20:21:18 +00001272 process_prepared_mapping(m);
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001273}
Joe Thornber991d9fa2011-10-31 20:21:18 +00001274
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001275static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
1276 dm_block_t data_dest,
1277 struct dm_bio_prison_cell *cell, struct bio *bio)
1278{
1279 struct pool *pool = tc->pool;
1280 sector_t virt_block_begin = virt_block * pool->sectors_per_block;
1281 sector_t virt_block_end = (virt_block + 1) * pool->sectors_per_block;
1282
1283 if (virt_block_end <= tc->origin_size)
1284 schedule_copy(tc, virt_block, tc->origin_dev,
1285 virt_block, data_dest, cell, bio,
1286 pool->sectors_per_block);
1287
1288 else if (virt_block_begin < tc->origin_size)
1289 schedule_copy(tc, virt_block, tc->origin_dev,
1290 virt_block, data_dest, cell, bio,
1291 tc->origin_size - virt_block_begin);
1292
1293 else
1294 schedule_zero(tc, virt_block, data_dest, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001295}
1296
Joe Thornber2c43fd22014-12-11 11:12:19 +00001297static void set_pool_mode(struct pool *pool, enum pool_mode new_mode);
1298
1299static void check_for_space(struct pool *pool)
1300{
1301 int r;
1302 dm_block_t nr_free;
1303
1304 if (get_pool_mode(pool) != PM_OUT_OF_DATA_SPACE)
1305 return;
1306
1307 r = dm_pool_get_free_block_count(pool->pmd, &nr_free);
1308 if (r)
1309 return;
1310
1311 if (nr_free)
1312 set_pool_mode(pool, PM_WRITE);
1313}
1314
Joe Thornbere49e5822012-07-27 15:08:16 +01001315/*
1316 * A non-zero return indicates read_only or fail_io mode.
1317 * Many callers don't care about the return value.
1318 */
Joe Thornber020cc3b2013-12-04 15:05:36 -05001319static int commit(struct pool *pool)
Joe Thornbere49e5822012-07-27 15:08:16 +01001320{
1321 int r;
1322
Joe Thornber8d07e8a2014-05-06 16:28:14 +01001323 if (get_pool_mode(pool) >= PM_READ_ONLY)
Joe Thornbere49e5822012-07-27 15:08:16 +01001324 return -EINVAL;
1325
Joe Thornber020cc3b2013-12-04 15:05:36 -05001326 r = dm_pool_commit_metadata(pool->pmd);
Joe Thornberb5330652013-12-04 19:51:33 -05001327 if (r)
1328 metadata_operation_failed(pool, "dm_pool_commit_metadata", r);
Joe Thornber2c43fd22014-12-11 11:12:19 +00001329 else
1330 check_for_space(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01001331
1332 return r;
1333}
1334
Joe Thornber88a66212013-12-04 20:16:12 -05001335static void check_low_water_mark(struct pool *pool, dm_block_t free_blocks)
1336{
1337 unsigned long flags;
1338
1339 if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
1340 DMWARN("%s: reached low water mark for data device: sending event.",
1341 dm_device_name(pool->pool_md));
1342 spin_lock_irqsave(&pool->lock, flags);
1343 pool->low_water_triggered = true;
1344 spin_unlock_irqrestore(&pool->lock, flags);
1345 dm_table_event(pool->ti->table);
1346 }
1347}
1348
Joe Thornber991d9fa2011-10-31 20:21:18 +00001349static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
1350{
1351 int r;
1352 dm_block_t free_blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001353 struct pool *pool = tc->pool;
1354
Joe Thornber3e1a0692014-03-03 16:03:26 +00001355 if (WARN_ON(get_pool_mode(pool) != PM_WRITE))
Joe Thornber8d30abf2013-12-04 19:16:11 -05001356 return -EINVAL;
1357
Joe Thornber991d9fa2011-10-31 20:21:18 +00001358 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
Joe Thornberb5330652013-12-04 19:51:33 -05001359 if (r) {
1360 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001361 return r;
Joe Thornberb5330652013-12-04 19:51:33 -05001362 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001363
Joe Thornber88a66212013-12-04 20:16:12 -05001364 check_low_water_mark(pool, free_blocks);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001365
1366 if (!free_blocks) {
Mike Snitzer94563ba2013-08-22 09:56:18 -04001367 /*
1368 * Try to commit to see if that will free up some
1369 * more space.
1370 */
Joe Thornber020cc3b2013-12-04 15:05:36 -05001371 r = commit(pool);
1372 if (r)
1373 return r;
Mike Snitzer94563ba2013-08-22 09:56:18 -04001374
1375 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
Joe Thornberb5330652013-12-04 19:51:33 -05001376 if (r) {
1377 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
Mike Snitzer94563ba2013-08-22 09:56:18 -04001378 return r;
Joe Thornberb5330652013-12-04 19:51:33 -05001379 }
Mike Snitzer94563ba2013-08-22 09:56:18 -04001380
Mike Snitzer94563ba2013-08-22 09:56:18 -04001381 if (!free_blocks) {
Joe Thornber3e1a0692014-03-03 16:03:26 +00001382 set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001383 return -ENOSPC;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001384 }
1385 }
1386
1387 r = dm_pool_alloc_data_block(pool->pmd, result);
Mike Snitzer4a02b342013-12-03 12:20:57 -05001388 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -05001389 metadata_operation_failed(pool, "dm_pool_alloc_data_block", r);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001390 return r;
Mike Snitzer4a02b342013-12-03 12:20:57 -05001391 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001392
1393 return 0;
1394}
1395
1396/*
1397 * If we have run out of space, queue bios until the device is
1398 * resumed, presumably after having been reloaded with more space.
1399 */
1400static void retry_on_resume(struct bio *bio)
1401{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001402 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001403 struct thin_c *tc = h->tc;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001404 unsigned long flags;
1405
Mike Snitzerc140e1c2014-03-20 21:17:14 -04001406 spin_lock_irqsave(&tc->lock, flags);
1407 bio_list_add(&tc->retry_on_resume_list, bio);
1408 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001409}
1410
Mike Snitzeraf918052014-05-22 14:32:51 -04001411static int should_error_unserviceable_bio(struct pool *pool)
Joe Thornber3e1a0692014-03-03 16:03:26 +00001412{
1413 enum pool_mode m = get_pool_mode(pool);
1414
1415 switch (m) {
1416 case PM_WRITE:
1417 /* Shouldn't get here */
1418 DMERR_LIMIT("bio unserviceable, yet pool is in PM_WRITE mode");
Mike Snitzeraf918052014-05-22 14:32:51 -04001419 return -EIO;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001420
1421 case PM_OUT_OF_DATA_SPACE:
Mike Snitzeraf918052014-05-22 14:32:51 -04001422 return pool->pf.error_if_no_space ? -ENOSPC : 0;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001423
1424 case PM_READ_ONLY:
1425 case PM_FAIL:
Mike Snitzeraf918052014-05-22 14:32:51 -04001426 return -EIO;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001427 default:
1428 /* Shouldn't get here */
1429 DMERR_LIMIT("bio unserviceable, yet pool has an unknown mode");
Mike Snitzeraf918052014-05-22 14:32:51 -04001430 return -EIO;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001431 }
1432}
1433
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001434static void handle_unserviceable_bio(struct pool *pool, struct bio *bio)
1435{
Mike Snitzeraf918052014-05-22 14:32:51 -04001436 int error = should_error_unserviceable_bio(pool);
1437
1438 if (error)
1439 bio_endio(bio, error);
Mike Snitzer6d162022013-12-20 18:09:02 -05001440 else
1441 retry_on_resume(bio);
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001442}
1443
Mike Snitzer399cadd2013-12-05 16:03:33 -05001444static void retry_bios_on_resume(struct pool *pool, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001445{
1446 struct bio *bio;
1447 struct bio_list bios;
Mike Snitzeraf918052014-05-22 14:32:51 -04001448 int error;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001449
Mike Snitzeraf918052014-05-22 14:32:51 -04001450 error = should_error_unserviceable_bio(pool);
1451 if (error) {
1452 cell_error_with_code(pool, cell, error);
Joe Thornber3e1a0692014-03-03 16:03:26 +00001453 return;
1454 }
1455
Joe Thornber991d9fa2011-10-31 20:21:18 +00001456 bio_list_init(&bios);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001457 cell_release(pool, cell, &bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001458
Mike Snitzer9d094ee2014-10-19 08:23:09 -04001459 while ((bio = bio_list_pop(&bios)))
1460 retry_on_resume(bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001461}
1462
Joe Thornber34fbcf62015-04-16 12:58:35 +01001463static void process_discard_cell_no_passdown(struct thin_c *tc,
1464 struct dm_bio_prison_cell *virt_cell)
Joe Thornber104655f2012-03-28 18:41:28 +01001465{
Joe Thornber104655f2012-03-28 18:41:28 +01001466 struct pool *pool = tc->pool;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001467 struct dm_thin_new_mapping *m = get_next_mapping(pool);
1468
1469 /*
1470 * We don't need to lock the data blocks, since there's no
1471 * passdown. We only lock data blocks for allocation and breaking sharing.
1472 */
1473 m->tc = tc;
1474 m->virt_begin = virt_cell->key.block_begin;
1475 m->virt_end = virt_cell->key.block_end;
1476 m->cell = virt_cell;
1477 m->bio = virt_cell->holder;
1478
1479 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1480 pool->process_prepared_discard(m);
1481}
1482
1483/*
Mike Snitzer84f8bd82015-08-18 10:31:09 -04001484 * __bio_inc_remaining() is used to defer parent bios's end_io until
1485 * we _know_ all chained sub range discard bios have completed.
Joe Thornber34fbcf62015-04-16 12:58:35 +01001486 */
1487static inline void __bio_inc_remaining(struct bio *bio)
1488{
1489 bio->bi_flags |= (1 << BIO_CHAIN);
1490 smp_mb__before_atomic();
1491 atomic_inc(&bio->__bi_remaining);
1492}
1493
1494static void break_up_discard_bio(struct thin_c *tc, dm_block_t begin, dm_block_t end,
1495 struct bio *bio)
1496{
1497 struct pool *pool = tc->pool;
1498
1499 int r;
1500 bool maybe_shared;
1501 struct dm_cell_key data_key;
1502 struct dm_bio_prison_cell *data_cell;
Mike Snitzera24c2562012-06-03 00:30:00 +01001503 struct dm_thin_new_mapping *m;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001504 dm_block_t virt_begin, virt_end, data_begin;
Joe Thornber104655f2012-03-28 18:41:28 +01001505
Joe Thornber34fbcf62015-04-16 12:58:35 +01001506 while (begin != end) {
1507 r = ensure_next_mapping(pool);
1508 if (r)
1509 /* we did our best */
1510 return;
Joe Thornber104655f2012-03-28 18:41:28 +01001511
Joe Thornber34fbcf62015-04-16 12:58:35 +01001512 r = dm_thin_find_mapped_range(tc->td, begin, end, &virt_begin, &virt_end,
1513 &data_begin, &maybe_shared);
1514 if (r)
1515 /*
1516 * Silently fail, letting any mappings we've
1517 * created complete.
1518 */
Joe Thornber104655f2012-03-28 18:41:28 +01001519 break;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001520
1521 build_key(tc->td, PHYSICAL, data_begin, data_begin + (virt_end - virt_begin), &data_key);
1522 if (bio_detain(tc->pool, &data_key, NULL, &data_cell)) {
1523 /* contention, we'll give up with this range */
1524 begin = virt_end;
1525 continue;
Joe Thornber104655f2012-03-28 18:41:28 +01001526 }
1527
Joe Thornber104655f2012-03-28 18:41:28 +01001528 /*
Joe Thornber34fbcf62015-04-16 12:58:35 +01001529 * IO may still be going to the destination block. We must
1530 * quiesce before we can do the removal.
Joe Thornber104655f2012-03-28 18:41:28 +01001531 */
Joe Thornber34fbcf62015-04-16 12:58:35 +01001532 m = get_next_mapping(pool);
1533 m->tc = tc;
1534 m->maybe_shared = maybe_shared;
1535 m->virt_begin = virt_begin;
1536 m->virt_end = virt_end;
1537 m->data_block = data_begin;
1538 m->cell = data_cell;
1539 m->bio = bio;
Joe Thornber104655f2012-03-28 18:41:28 +01001540
Joe Thornber34fbcf62015-04-16 12:58:35 +01001541 /*
1542 * The parent bio must not complete before sub discard bios are
1543 * chained to it (see __blkdev_issue_discard_async's bio_chain)!
1544 *
1545 * This per-mapping bi_remaining increment is paired with
1546 * the implicit decrement that occurs via bio_endio() in
1547 * process_prepared_discard_{passdown,no_passdown}.
1548 */
1549 __bio_inc_remaining(bio);
1550 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1551 pool->process_prepared_discard(m);
1552
1553 begin = virt_end;
Joe Thornber104655f2012-03-28 18:41:28 +01001554 }
1555}
1556
Joe Thornber34fbcf62015-04-16 12:58:35 +01001557static void process_discard_cell_passdown(struct thin_c *tc, struct dm_bio_prison_cell *virt_cell)
1558{
1559 struct bio *bio = virt_cell->holder;
1560 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1561
1562 /*
1563 * The virt_cell will only get freed once the origin bio completes.
1564 * This means it will remain locked while all the individual
1565 * passdown bios are in flight.
1566 */
1567 h->cell = virt_cell;
1568 break_up_discard_bio(tc, virt_cell->key.block_begin, virt_cell->key.block_end, bio);
1569
1570 /*
1571 * We complete the bio now, knowing that the bi_remaining field
1572 * will prevent completion until the sub range discards have
1573 * completed.
1574 */
1575 bio_endio(bio, 0);
1576}
1577
Joe Thornbera374bb22014-10-10 13:43:14 +01001578static void process_discard_bio(struct thin_c *tc, struct bio *bio)
1579{
Joe Thornber34fbcf62015-04-16 12:58:35 +01001580 dm_block_t begin, end;
1581 struct dm_cell_key virt_key;
1582 struct dm_bio_prison_cell *virt_cell;
Joe Thornbera374bb22014-10-10 13:43:14 +01001583
Joe Thornber34fbcf62015-04-16 12:58:35 +01001584 get_bio_block_range(tc, bio, &begin, &end);
1585 if (begin == end) {
1586 /*
1587 * The discard covers less than a block.
1588 */
1589 bio_endio(bio, 0);
1590 return;
1591 }
1592
1593 build_key(tc->td, VIRTUAL, begin, end, &virt_key);
1594 if (bio_detain(tc->pool, &virt_key, bio, &virt_cell))
1595 /*
1596 * Potential starvation issue: We're relying on the
1597 * fs/application being well behaved, and not trying to
1598 * send IO to a region at the same time as discarding it.
1599 * If they do this persistently then it's possible this
1600 * cell will never be granted.
1601 */
Joe Thornbera374bb22014-10-10 13:43:14 +01001602 return;
1603
Joe Thornber34fbcf62015-04-16 12:58:35 +01001604 tc->pool->process_discard_cell(tc, virt_cell);
Joe Thornbera374bb22014-10-10 13:43:14 +01001605}
1606
Joe Thornber991d9fa2011-10-31 20:21:18 +00001607static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzer44feb382012-10-12 21:02:10 +01001608 struct dm_cell_key *key,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001609 struct dm_thin_lookup_result *lookup_result,
Mike Snitzera24c2562012-06-03 00:30:00 +01001610 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001611{
1612 int r;
1613 dm_block_t data_block;
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001614 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001615
1616 r = alloc_data_block(tc, &data_block);
1617 switch (r) {
1618 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001619 schedule_internal_copy(tc, block, lookup_result->block,
1620 data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001621 break;
1622
1623 case -ENOSPC:
Mike Snitzer399cadd2013-12-05 16:03:33 -05001624 retry_bios_on_resume(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001625 break;
1626
1627 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001628 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1629 __func__, r);
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001630 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001631 break;
1632 }
1633}
1634
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001635static void __remap_and_issue_shared_cell(void *context,
1636 struct dm_bio_prison_cell *cell)
1637{
1638 struct remap_info *info = context;
1639 struct bio *bio;
1640
1641 while ((bio = bio_list_pop(&cell->bios))) {
1642 if ((bio_data_dir(bio) == WRITE) ||
1643 (bio->bi_rw & (REQ_DISCARD | REQ_FLUSH | REQ_FUA)))
1644 bio_list_add(&info->defer_bios, bio);
1645 else {
1646 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));;
1647
1648 h->shared_read_entry = dm_deferred_entry_inc(info->tc->pool->shared_read_ds);
1649 inc_all_io_entry(info->tc->pool, bio);
1650 bio_list_add(&info->issue_bios, bio);
1651 }
1652 }
1653}
1654
1655static void remap_and_issue_shared_cell(struct thin_c *tc,
1656 struct dm_bio_prison_cell *cell,
1657 dm_block_t block)
1658{
1659 struct bio *bio;
1660 struct remap_info info;
1661
1662 info.tc = tc;
1663 bio_list_init(&info.defer_bios);
1664 bio_list_init(&info.issue_bios);
1665
1666 cell_visit_release(tc->pool, __remap_and_issue_shared_cell,
1667 &info, cell);
1668
1669 while ((bio = bio_list_pop(&info.defer_bios)))
1670 thin_defer_bio(tc, bio);
1671
1672 while ((bio = bio_list_pop(&info.issue_bios)))
1673 remap_and_issue(tc, bio, block);
1674}
1675
Joe Thornber991d9fa2011-10-31 20:21:18 +00001676static void process_shared_bio(struct thin_c *tc, struct bio *bio,
1677 dm_block_t block,
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001678 struct dm_thin_lookup_result *lookup_result,
1679 struct dm_bio_prison_cell *virt_cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001680{
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001681 struct dm_bio_prison_cell *data_cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001682 struct pool *pool = tc->pool;
Mike Snitzer44feb382012-10-12 21:02:10 +01001683 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001684
1685 /*
1686 * If cell is already occupied, then sharing is already in the process
1687 * of being broken so we have nothing further to do here.
1688 */
1689 build_data_key(tc->td, lookup_result->block, &key);
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001690 if (bio_detain(pool, &key, bio, &data_cell)) {
1691 cell_defer_no_holder(tc, virt_cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001692 return;
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001693 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001694
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001695 if (bio_data_dir(bio) == WRITE && bio->bi_iter.bi_size) {
1696 break_sharing(tc, bio, block, &key, lookup_result, data_cell);
1697 cell_defer_no_holder(tc, virt_cell);
1698 } else {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001699 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornber991d9fa2011-10-31 20:21:18 +00001700
Mike Snitzer44feb382012-10-12 21:02:10 +01001701 h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
Joe Thornbere8088072012-12-21 20:23:31 +00001702 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001703 remap_and_issue(tc, bio, lookup_result->block);
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001704
1705 remap_and_issue_shared_cell(tc, data_cell, lookup_result->block);
1706 remap_and_issue_shared_cell(tc, virt_cell, lookup_result->block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001707 }
1708}
1709
1710static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001711 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001712{
1713 int r;
1714 dm_block_t data_block;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001715 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001716
1717 /*
1718 * Remap empty bios (flushes) immediately, without provisioning.
1719 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07001720 if (!bio->bi_iter.bi_size) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001721 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001722 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001723
Joe Thornber991d9fa2011-10-31 20:21:18 +00001724 remap_and_issue(tc, bio, 0);
1725 return;
1726 }
1727
1728 /*
1729 * Fill read bios with zeroes and complete them immediately.
1730 */
1731 if (bio_data_dir(bio) == READ) {
1732 zero_fill_bio(bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001733 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001734 bio_endio(bio, 0);
1735 return;
1736 }
1737
1738 r = alloc_data_block(tc, &data_block);
1739 switch (r) {
1740 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001741 if (tc->origin_dev)
1742 schedule_external_copy(tc, block, data_block, cell, bio);
1743 else
1744 schedule_zero(tc, block, data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001745 break;
1746
1747 case -ENOSPC:
Mike Snitzer399cadd2013-12-05 16:03:33 -05001748 retry_bios_on_resume(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001749 break;
1750
1751 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001752 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1753 __func__, r);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001754 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001755 break;
1756 }
1757}
1758
Joe Thornbera374bb22014-10-10 13:43:14 +01001759static void process_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001760{
1761 int r;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001762 struct pool *pool = tc->pool;
Joe Thornbera374bb22014-10-10 13:43:14 +01001763 struct bio *bio = cell->holder;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001764 dm_block_t block = get_bio_block(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001765 struct dm_thin_lookup_result lookup_result;
1766
Joe Thornbera374bb22014-10-10 13:43:14 +01001767 if (tc->requeue_mode) {
1768 cell_requeue(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001769 return;
Joe Thornbera374bb22014-10-10 13:43:14 +01001770 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001771
1772 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1773 switch (r) {
1774 case 0:
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001775 if (lookup_result.shared)
1776 process_shared_bio(tc, bio, block, &lookup_result, cell);
1777 else {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001778 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001779 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbera374bb22014-10-10 13:43:14 +01001780 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001781 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001782 break;
1783
1784 case -ENODATA:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001785 if (bio_data_dir(bio) == READ && tc->origin_dev) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001786 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001787 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001788
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001789 if (bio_end_sector(bio) <= tc->origin_size)
1790 remap_to_origin_and_issue(tc, bio);
1791
1792 else if (bio->bi_iter.bi_sector < tc->origin_size) {
1793 zero_fill_bio(bio);
1794 bio->bi_iter.bi_size = (tc->origin_size - bio->bi_iter.bi_sector) << SECTOR_SHIFT;
1795 remap_to_origin_and_issue(tc, bio);
1796
1797 } else {
1798 zero_fill_bio(bio);
1799 bio_endio(bio, 0);
1800 }
Joe Thornber2dd9c252012-03-28 18:41:28 +01001801 } else
1802 provision_block(tc, bio, block, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001803 break;
1804
1805 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001806 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1807 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001808 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001809 bio_io_error(bio);
1810 break;
1811 }
1812}
1813
Joe Thornbera374bb22014-10-10 13:43:14 +01001814static void process_bio(struct thin_c *tc, struct bio *bio)
1815{
1816 struct pool *pool = tc->pool;
1817 dm_block_t block = get_bio_block(tc, bio);
1818 struct dm_bio_prison_cell *cell;
1819 struct dm_cell_key key;
1820
1821 /*
1822 * If cell is already occupied, then the block is already
1823 * being provisioned so we have nothing further to do here.
1824 */
1825 build_virtual_key(tc->td, block, &key);
1826 if (bio_detain(pool, &key, bio, &cell))
1827 return;
1828
1829 process_cell(tc, cell);
1830}
1831
1832static void __process_bio_read_only(struct thin_c *tc, struct bio *bio,
1833 struct dm_bio_prison_cell *cell)
Joe Thornbere49e5822012-07-27 15:08:16 +01001834{
1835 int r;
1836 int rw = bio_data_dir(bio);
1837 dm_block_t block = get_bio_block(tc, bio);
1838 struct dm_thin_lookup_result lookup_result;
1839
1840 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1841 switch (r) {
1842 case 0:
Joe Thornbera374bb22014-10-10 13:43:14 +01001843 if (lookup_result.shared && (rw == WRITE) && bio->bi_iter.bi_size) {
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001844 handle_unserviceable_bio(tc->pool, bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01001845 if (cell)
1846 cell_defer_no_holder(tc, cell);
1847 } else {
Joe Thornbere8088072012-12-21 20:23:31 +00001848 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001849 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbera374bb22014-10-10 13:43:14 +01001850 if (cell)
1851 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001852 }
Joe Thornbere49e5822012-07-27 15:08:16 +01001853 break;
1854
1855 case -ENODATA:
Joe Thornbera374bb22014-10-10 13:43:14 +01001856 if (cell)
1857 cell_defer_no_holder(tc, cell);
Joe Thornbere49e5822012-07-27 15:08:16 +01001858 if (rw != READ) {
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001859 handle_unserviceable_bio(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001860 break;
1861 }
1862
1863 if (tc->origin_dev) {
Joe Thornbere8088072012-12-21 20:23:31 +00001864 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001865 remap_to_origin_and_issue(tc, bio);
1866 break;
1867 }
1868
1869 zero_fill_bio(bio);
1870 bio_endio(bio, 0);
1871 break;
1872
1873 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001874 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1875 __func__, r);
Joe Thornbera374bb22014-10-10 13:43:14 +01001876 if (cell)
1877 cell_defer_no_holder(tc, cell);
Joe Thornbere49e5822012-07-27 15:08:16 +01001878 bio_io_error(bio);
1879 break;
1880 }
1881}
1882
Joe Thornbera374bb22014-10-10 13:43:14 +01001883static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
1884{
1885 __process_bio_read_only(tc, bio, NULL);
1886}
1887
1888static void process_cell_read_only(struct thin_c *tc, struct dm_bio_prison_cell *cell)
1889{
1890 __process_bio_read_only(tc, cell->holder, cell);
1891}
1892
Joe Thornber3e1a0692014-03-03 16:03:26 +00001893static void process_bio_success(struct thin_c *tc, struct bio *bio)
1894{
1895 bio_endio(bio, 0);
1896}
1897
Joe Thornbere49e5822012-07-27 15:08:16 +01001898static void process_bio_fail(struct thin_c *tc, struct bio *bio)
1899{
1900 bio_io_error(bio);
1901}
1902
Joe Thornbera374bb22014-10-10 13:43:14 +01001903static void process_cell_success(struct thin_c *tc, struct dm_bio_prison_cell *cell)
1904{
1905 cell_success(tc->pool, cell);
1906}
1907
1908static void process_cell_fail(struct thin_c *tc, struct dm_bio_prison_cell *cell)
1909{
1910 cell_error(tc->pool, cell);
1911}
1912
Joe Thornberac8c3f32013-05-10 14:37:21 +01001913/*
1914 * FIXME: should we also commit due to size of transaction, measured in
1915 * metadata blocks?
1916 */
Joe Thornber905e51b2012-03-28 18:41:27 +01001917static int need_commit_due_to_time(struct pool *pool)
1918{
Manuel Schölling0f30af92014-05-22 22:42:37 +02001919 return !time_in_range(jiffies, pool->last_commit_jiffies,
1920 pool->last_commit_jiffies + COMMIT_PERIOD);
Joe Thornber905e51b2012-03-28 18:41:27 +01001921}
1922
Mike Snitzer67324ea2014-03-21 18:33:41 -04001923#define thin_pbd(node) rb_entry((node), struct dm_thin_endio_hook, rb_node)
1924#define thin_bio(pbd) dm_bio_from_per_bio_data((pbd), sizeof(struct dm_thin_endio_hook))
1925
1926static void __thin_bio_rb_add(struct thin_c *tc, struct bio *bio)
1927{
1928 struct rb_node **rbp, *parent;
1929 struct dm_thin_endio_hook *pbd;
1930 sector_t bi_sector = bio->bi_iter.bi_sector;
1931
1932 rbp = &tc->sort_bio_list.rb_node;
1933 parent = NULL;
1934 while (*rbp) {
1935 parent = *rbp;
1936 pbd = thin_pbd(parent);
1937
1938 if (bi_sector < thin_bio(pbd)->bi_iter.bi_sector)
1939 rbp = &(*rbp)->rb_left;
1940 else
1941 rbp = &(*rbp)->rb_right;
1942 }
1943
1944 pbd = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1945 rb_link_node(&pbd->rb_node, parent, rbp);
1946 rb_insert_color(&pbd->rb_node, &tc->sort_bio_list);
1947}
1948
1949static void __extract_sorted_bios(struct thin_c *tc)
1950{
1951 struct rb_node *node;
1952 struct dm_thin_endio_hook *pbd;
1953 struct bio *bio;
1954
1955 for (node = rb_first(&tc->sort_bio_list); node; node = rb_next(node)) {
1956 pbd = thin_pbd(node);
1957 bio = thin_bio(pbd);
1958
1959 bio_list_add(&tc->deferred_bio_list, bio);
1960 rb_erase(&pbd->rb_node, &tc->sort_bio_list);
1961 }
1962
1963 WARN_ON(!RB_EMPTY_ROOT(&tc->sort_bio_list));
1964}
1965
1966static void __sort_thin_deferred_bios(struct thin_c *tc)
1967{
1968 struct bio *bio;
1969 struct bio_list bios;
1970
1971 bio_list_init(&bios);
1972 bio_list_merge(&bios, &tc->deferred_bio_list);
1973 bio_list_init(&tc->deferred_bio_list);
1974
1975 /* Sort deferred_bio_list using rb-tree */
1976 while ((bio = bio_list_pop(&bios)))
1977 __thin_bio_rb_add(tc, bio);
1978
1979 /*
1980 * Transfer the sorted bios in sort_bio_list back to
1981 * deferred_bio_list to allow lockless submission of
1982 * all bios.
1983 */
1984 __extract_sorted_bios(tc);
1985}
1986
Mike Snitzerc140e1c2014-03-20 21:17:14 -04001987static void process_thin_deferred_bios(struct thin_c *tc)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001988{
Mike Snitzerc140e1c2014-03-20 21:17:14 -04001989 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001990 unsigned long flags;
1991 struct bio *bio;
1992 struct bio_list bios;
Mike Snitzer67324ea2014-03-21 18:33:41 -04001993 struct blk_plug plug;
Joe Thornber8a01a6a2014-10-06 15:28:30 +01001994 unsigned count = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001995
Mike Snitzerc140e1c2014-03-20 21:17:14 -04001996 if (tc->requeue_mode) {
Mike Snitzer42d6a8c2014-10-19 07:52:44 -04001997 error_thin_bio_list(tc, &tc->deferred_bio_list, DM_ENDIO_REQUEUE);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04001998 return;
1999 }
2000
Joe Thornber991d9fa2011-10-31 20:21:18 +00002001 bio_list_init(&bios);
2002
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002003 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer67324ea2014-03-21 18:33:41 -04002004
2005 if (bio_list_empty(&tc->deferred_bio_list)) {
2006 spin_unlock_irqrestore(&tc->lock, flags);
2007 return;
2008 }
2009
2010 __sort_thin_deferred_bios(tc);
2011
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002012 bio_list_merge(&bios, &tc->deferred_bio_list);
2013 bio_list_init(&tc->deferred_bio_list);
Mike Snitzer67324ea2014-03-21 18:33:41 -04002014
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002015 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002016
Mike Snitzer67324ea2014-03-21 18:33:41 -04002017 blk_start_plug(&plug);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002018 while ((bio = bio_list_pop(&bios))) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002019 /*
2020 * If we've got no free new_mapping structs, and processing
2021 * this bio might require one, we pause until there are some
2022 * prepared mappings to process.
2023 */
2024 if (ensure_next_mapping(pool)) {
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002025 spin_lock_irqsave(&tc->lock, flags);
2026 bio_list_add(&tc->deferred_bio_list, bio);
2027 bio_list_merge(&tc->deferred_bio_list, &bios);
2028 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002029 break;
2030 }
Joe Thornber104655f2012-03-28 18:41:28 +01002031
2032 if (bio->bi_rw & REQ_DISCARD)
Joe Thornbere49e5822012-07-27 15:08:16 +01002033 pool->process_discard(tc, bio);
Joe Thornber104655f2012-03-28 18:41:28 +01002034 else
Joe Thornbere49e5822012-07-27 15:08:16 +01002035 pool->process_bio(tc, bio);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002036
2037 if ((count++ & 127) == 0) {
Joe Thornber7d327fe2014-10-06 15:45:59 +01002038 throttle_work_update(&pool->throttle);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002039 dm_pool_issue_prefetches(pool->pmd);
2040 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002041 }
Mike Snitzer67324ea2014-03-21 18:33:41 -04002042 blk_finish_plug(&plug);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002043}
2044
Joe Thornberac4c3f32014-10-10 16:42:10 +01002045static int cmp_cells(const void *lhs, const void *rhs)
2046{
2047 struct dm_bio_prison_cell *lhs_cell = *((struct dm_bio_prison_cell **) lhs);
2048 struct dm_bio_prison_cell *rhs_cell = *((struct dm_bio_prison_cell **) rhs);
2049
2050 BUG_ON(!lhs_cell->holder);
2051 BUG_ON(!rhs_cell->holder);
2052
2053 if (lhs_cell->holder->bi_iter.bi_sector < rhs_cell->holder->bi_iter.bi_sector)
2054 return -1;
2055
2056 if (lhs_cell->holder->bi_iter.bi_sector > rhs_cell->holder->bi_iter.bi_sector)
2057 return 1;
2058
2059 return 0;
2060}
2061
2062static unsigned sort_cells(struct pool *pool, struct list_head *cells)
2063{
2064 unsigned count = 0;
2065 struct dm_bio_prison_cell *cell, *tmp;
2066
2067 list_for_each_entry_safe(cell, tmp, cells, user_list) {
2068 if (count >= CELL_SORT_ARRAY_SIZE)
2069 break;
2070
2071 pool->cell_sort_array[count++] = cell;
2072 list_del(&cell->user_list);
2073 }
2074
2075 sort(pool->cell_sort_array, count, sizeof(cell), cmp_cells, NULL);
2076
2077 return count;
2078}
2079
Joe Thornbera374bb22014-10-10 13:43:14 +01002080static void process_thin_deferred_cells(struct thin_c *tc)
2081{
2082 struct pool *pool = tc->pool;
2083 unsigned long flags;
2084 struct list_head cells;
Joe Thornberac4c3f32014-10-10 16:42:10 +01002085 struct dm_bio_prison_cell *cell;
2086 unsigned i, j, count;
Joe Thornbera374bb22014-10-10 13:43:14 +01002087
2088 INIT_LIST_HEAD(&cells);
2089
2090 spin_lock_irqsave(&tc->lock, flags);
2091 list_splice_init(&tc->deferred_cells, &cells);
2092 spin_unlock_irqrestore(&tc->lock, flags);
2093
2094 if (list_empty(&cells))
2095 return;
2096
Joe Thornberac4c3f32014-10-10 16:42:10 +01002097 do {
2098 count = sort_cells(tc->pool, &cells);
Joe Thornbera374bb22014-10-10 13:43:14 +01002099
Joe Thornberac4c3f32014-10-10 16:42:10 +01002100 for (i = 0; i < count; i++) {
2101 cell = pool->cell_sort_array[i];
2102 BUG_ON(!cell->holder);
2103
2104 /*
2105 * If we've got no free new_mapping structs, and processing
2106 * this bio might require one, we pause until there are some
2107 * prepared mappings to process.
2108 */
2109 if (ensure_next_mapping(pool)) {
2110 for (j = i; j < count; j++)
2111 list_add(&pool->cell_sort_array[j]->user_list, &cells);
2112
2113 spin_lock_irqsave(&tc->lock, flags);
2114 list_splice(&cells, &tc->deferred_cells);
2115 spin_unlock_irqrestore(&tc->lock, flags);
2116 return;
2117 }
2118
2119 if (cell->holder->bi_rw & REQ_DISCARD)
2120 pool->process_discard_cell(tc, cell);
2121 else
2122 pool->process_cell(tc, cell);
Joe Thornbera374bb22014-10-10 13:43:14 +01002123 }
Joe Thornberac4c3f32014-10-10 16:42:10 +01002124 } while (!list_empty(&cells));
Joe Thornbera374bb22014-10-10 13:43:14 +01002125}
2126
Joe Thornberb10ebd32014-04-08 11:29:01 +01002127static void thin_get(struct thin_c *tc);
2128static void thin_put(struct thin_c *tc);
2129
2130/*
2131 * We can't hold rcu_read_lock() around code that can block. So we
2132 * find a thin with the rcu lock held; bump a refcount; then drop
2133 * the lock.
2134 */
2135static struct thin_c *get_first_thin(struct pool *pool)
2136{
2137 struct thin_c *tc = NULL;
2138
2139 rcu_read_lock();
2140 if (!list_empty(&pool->active_thins)) {
2141 tc = list_entry_rcu(pool->active_thins.next, struct thin_c, list);
2142 thin_get(tc);
2143 }
2144 rcu_read_unlock();
2145
2146 return tc;
2147}
2148
2149static struct thin_c *get_next_thin(struct pool *pool, struct thin_c *tc)
2150{
2151 struct thin_c *old_tc = tc;
2152
2153 rcu_read_lock();
2154 list_for_each_entry_continue_rcu(tc, &pool->active_thins, list) {
2155 thin_get(tc);
2156 thin_put(old_tc);
2157 rcu_read_unlock();
2158 return tc;
2159 }
2160 thin_put(old_tc);
2161 rcu_read_unlock();
2162
2163 return NULL;
2164}
2165
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002166static void process_deferred_bios(struct pool *pool)
2167{
2168 unsigned long flags;
2169 struct bio *bio;
2170 struct bio_list bios;
2171 struct thin_c *tc;
2172
Joe Thornberb10ebd32014-04-08 11:29:01 +01002173 tc = get_first_thin(pool);
2174 while (tc) {
Joe Thornbera374bb22014-10-10 13:43:14 +01002175 process_thin_deferred_cells(tc);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002176 process_thin_deferred_bios(tc);
Joe Thornberb10ebd32014-04-08 11:29:01 +01002177 tc = get_next_thin(pool, tc);
2178 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002179
2180 /*
2181 * If there are any deferred flush bios, we must commit
2182 * the metadata before issuing them.
2183 */
2184 bio_list_init(&bios);
2185 spin_lock_irqsave(&pool->lock, flags);
2186 bio_list_merge(&bios, &pool->deferred_flush_bios);
2187 bio_list_init(&pool->deferred_flush_bios);
2188 spin_unlock_irqrestore(&pool->lock, flags);
2189
Mike Snitzer4d1662a2014-02-06 06:08:56 -05002190 if (bio_list_empty(&bios) &&
2191 !(dm_pool_changed_this_transaction(pool->pmd) && need_commit_due_to_time(pool)))
Joe Thornber991d9fa2011-10-31 20:21:18 +00002192 return;
2193
Joe Thornber020cc3b2013-12-04 15:05:36 -05002194 if (commit(pool)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002195 while ((bio = bio_list_pop(&bios)))
2196 bio_io_error(bio);
2197 return;
2198 }
Joe Thornber905e51b2012-03-28 18:41:27 +01002199 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002200
2201 while ((bio = bio_list_pop(&bios)))
2202 generic_make_request(bio);
2203}
2204
2205static void do_worker(struct work_struct *ws)
2206{
2207 struct pool *pool = container_of(ws, struct pool, worker);
2208
Joe Thornber7d327fe2014-10-06 15:45:59 +01002209 throttle_work_start(&pool->throttle);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002210 dm_pool_issue_prefetches(pool->pmd);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002211 throttle_work_update(&pool->throttle);
Joe Thornbere49e5822012-07-27 15:08:16 +01002212 process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002213 throttle_work_update(&pool->throttle);
Joe Thornbere49e5822012-07-27 15:08:16 +01002214 process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002215 throttle_work_update(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002216 process_deferred_bios(pool);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002217 throttle_work_complete(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002218}
2219
Joe Thornber905e51b2012-03-28 18:41:27 +01002220/*
2221 * We want to commit periodically so that not too much
2222 * unwritten data builds up.
2223 */
2224static void do_waker(struct work_struct *ws)
2225{
2226 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
2227 wake_worker(pool);
2228 queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
2229}
2230
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002231static void notify_of_pool_mode_change_to_oods(struct pool *pool);
2232
Joe Thornber85ad643b2014-05-09 15:59:38 +01002233/*
2234 * We're holding onto IO to allow userland time to react. After the
2235 * timeout either the pool will have been resized (and thus back in
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002236 * PM_WRITE mode), or we degrade to PM_OUT_OF_DATA_SPACE w/ error_if_no_space.
Joe Thornber85ad643b2014-05-09 15:59:38 +01002237 */
2238static void do_no_space_timeout(struct work_struct *ws)
2239{
2240 struct pool *pool = container_of(to_delayed_work(ws), struct pool,
2241 no_space_timeout);
2242
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002243 if (get_pool_mode(pool) == PM_OUT_OF_DATA_SPACE && !pool->pf.error_if_no_space) {
2244 pool->pf.error_if_no_space = true;
2245 notify_of_pool_mode_change_to_oods(pool);
Mike Snitzer0a927c22015-07-21 13:20:46 -04002246 error_retry_list_with_code(pool, -ENOSPC);
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002247 }
Joe Thornber85ad643b2014-05-09 15:59:38 +01002248}
2249
Joe Thornber991d9fa2011-10-31 20:21:18 +00002250/*----------------------------------------------------------------*/
2251
Joe Thornbere7a3e872014-05-13 16:14:14 -04002252struct pool_work {
Joe Thornber738211f2014-03-03 15:52:28 +00002253 struct work_struct worker;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002254 struct completion complete;
Joe Thornber738211f2014-03-03 15:52:28 +00002255};
2256
Joe Thornbere7a3e872014-05-13 16:14:14 -04002257static struct pool_work *to_pool_work(struct work_struct *ws)
Joe Thornber738211f2014-03-03 15:52:28 +00002258{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002259 return container_of(ws, struct pool_work, worker);
2260}
2261
2262static void pool_work_complete(struct pool_work *pw)
2263{
2264 complete(&pw->complete);
2265}
2266
2267static void pool_work_wait(struct pool_work *pw, struct pool *pool,
2268 void (*fn)(struct work_struct *))
2269{
2270 INIT_WORK_ONSTACK(&pw->worker, fn);
2271 init_completion(&pw->complete);
2272 queue_work(pool->wq, &pw->worker);
2273 wait_for_completion(&pw->complete);
2274}
2275
2276/*----------------------------------------------------------------*/
2277
2278struct noflush_work {
2279 struct pool_work pw;
2280 struct thin_c *tc;
2281};
2282
2283static struct noflush_work *to_noflush(struct work_struct *ws)
2284{
2285 return container_of(to_pool_work(ws), struct noflush_work, pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002286}
2287
2288static void do_noflush_start(struct work_struct *ws)
2289{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002290 struct noflush_work *w = to_noflush(ws);
Joe Thornber738211f2014-03-03 15:52:28 +00002291 w->tc->requeue_mode = true;
2292 requeue_io(w->tc);
Joe Thornbere7a3e872014-05-13 16:14:14 -04002293 pool_work_complete(&w->pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002294}
2295
2296static void do_noflush_stop(struct work_struct *ws)
2297{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002298 struct noflush_work *w = to_noflush(ws);
Joe Thornber738211f2014-03-03 15:52:28 +00002299 w->tc->requeue_mode = false;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002300 pool_work_complete(&w->pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002301}
2302
2303static void noflush_work(struct thin_c *tc, void (*fn)(struct work_struct *))
2304{
2305 struct noflush_work w;
2306
Joe Thornber738211f2014-03-03 15:52:28 +00002307 w.tc = tc;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002308 pool_work_wait(&w.pw, tc->pool, fn);
Joe Thornber738211f2014-03-03 15:52:28 +00002309}
2310
2311/*----------------------------------------------------------------*/
2312
Joe Thornbere49e5822012-07-27 15:08:16 +01002313static enum pool_mode get_pool_mode(struct pool *pool)
2314{
2315 return pool->pf.mode;
2316}
2317
Joe Thornber3e1a0692014-03-03 16:03:26 +00002318static void notify_of_pool_mode_change(struct pool *pool, const char *new_mode)
2319{
2320 dm_table_event(pool->ti->table);
2321 DMINFO("%s: switching pool to %s mode",
2322 dm_device_name(pool->pool_md), new_mode);
2323}
2324
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002325static void notify_of_pool_mode_change_to_oods(struct pool *pool)
2326{
2327 if (!pool->pf.error_if_no_space)
2328 notify_of_pool_mode_change(pool, "out-of-data-space (queue IO)");
2329 else
2330 notify_of_pool_mode_change(pool, "out-of-data-space (error IO)");
2331}
2332
Joe Thornber34fbcf62015-04-16 12:58:35 +01002333static bool passdown_enabled(struct pool_c *pt)
2334{
2335 return pt->adjusted_pf.discard_passdown;
2336}
2337
2338static void set_discard_callbacks(struct pool *pool)
2339{
2340 struct pool_c *pt = pool->ti->private;
2341
2342 if (passdown_enabled(pt)) {
2343 pool->process_discard_cell = process_discard_cell_passdown;
2344 pool->process_prepared_discard = process_prepared_discard_passdown;
2345 } else {
2346 pool->process_discard_cell = process_discard_cell_no_passdown;
2347 pool->process_prepared_discard = process_prepared_discard_no_passdown;
2348 }
2349}
2350
Mike Snitzer8b64e882013-12-20 14:27:28 -05002351static void set_pool_mode(struct pool *pool, enum pool_mode new_mode)
Joe Thornbere49e5822012-07-27 15:08:16 +01002352{
Mike Snitzercdc2b412014-02-14 18:10:55 -05002353 struct pool_c *pt = pool->ti->private;
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002354 bool needs_check = dm_pool_metadata_needs_check(pool->pmd);
2355 enum pool_mode old_mode = get_pool_mode(pool);
Mike Snitzer80c57892014-05-20 13:38:33 -04002356 unsigned long no_space_timeout = ACCESS_ONCE(no_space_timeout_secs) * HZ;
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002357
2358 /*
2359 * Never allow the pool to transition to PM_WRITE mode if user
2360 * intervention is required to verify metadata and data consistency.
2361 */
2362 if (new_mode == PM_WRITE && needs_check) {
2363 DMERR("%s: unable to switch pool to write mode until repaired.",
2364 dm_device_name(pool->pool_md));
2365 if (old_mode != new_mode)
2366 new_mode = old_mode;
2367 else
2368 new_mode = PM_READ_ONLY;
2369 }
2370 /*
2371 * If we were in PM_FAIL mode, rollback of metadata failed. We're
2372 * not going to recover without a thin_repair. So we never let the
2373 * pool move out of the old mode.
2374 */
2375 if (old_mode == PM_FAIL)
2376 new_mode = old_mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002377
Mike Snitzer8b64e882013-12-20 14:27:28 -05002378 switch (new_mode) {
Joe Thornbere49e5822012-07-27 15:08:16 +01002379 case PM_FAIL:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002380 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002381 notify_of_pool_mode_change(pool, "failure");
Joe Thornber5383ef32013-12-04 16:30:01 -05002382 dm_pool_metadata_read_only(pool->pmd);
Joe Thornbere49e5822012-07-27 15:08:16 +01002383 pool->process_bio = process_bio_fail;
2384 pool->process_discard = process_bio_fail;
Joe Thornbera374bb22014-10-10 13:43:14 +01002385 pool->process_cell = process_cell_fail;
2386 pool->process_discard_cell = process_cell_fail;
Joe Thornbere49e5822012-07-27 15:08:16 +01002387 pool->process_prepared_mapping = process_prepared_mapping_fail;
2388 pool->process_prepared_discard = process_prepared_discard_fail;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002389
2390 error_retry_list(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01002391 break;
2392
2393 case PM_READ_ONLY:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002394 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002395 notify_of_pool_mode_change(pool, "read-only");
2396 dm_pool_metadata_read_only(pool->pmd);
2397 pool->process_bio = process_bio_read_only;
2398 pool->process_discard = process_bio_success;
Joe Thornbera374bb22014-10-10 13:43:14 +01002399 pool->process_cell = process_cell_read_only;
2400 pool->process_discard_cell = process_cell_success;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002401 pool->process_prepared_mapping = process_prepared_mapping_fail;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002402 pool->process_prepared_discard = process_prepared_discard_success;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002403
2404 error_retry_list(pool);
2405 break;
2406
2407 case PM_OUT_OF_DATA_SPACE:
2408 /*
2409 * Ideally we'd never hit this state; the low water mark
2410 * would trigger userland to extend the pool before we
2411 * completely run out of data space. However, many small
2412 * IOs to unprovisioned space can consume data space at an
2413 * alarming rate. Adjust your low water mark if you're
2414 * frequently seeing this mode.
2415 */
2416 if (old_mode != new_mode)
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002417 notify_of_pool_mode_change_to_oods(pool);
Joe Thornber3e1a0692014-03-03 16:03:26 +00002418 pool->process_bio = process_bio_read_only;
Joe Thornbera374bb22014-10-10 13:43:14 +01002419 pool->process_discard = process_discard_bio;
2420 pool->process_cell = process_cell_read_only;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002421 pool->process_prepared_mapping = process_prepared_mapping;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002422 set_discard_callbacks(pool);
Joe Thornber85ad643b2014-05-09 15:59:38 +01002423
Mike Snitzer80c57892014-05-20 13:38:33 -04002424 if (!pool->pf.error_if_no_space && no_space_timeout)
2425 queue_delayed_work(pool->wq, &pool->no_space_timeout, no_space_timeout);
Joe Thornbere49e5822012-07-27 15:08:16 +01002426 break;
2427
2428 case PM_WRITE:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002429 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002430 notify_of_pool_mode_change(pool, "write");
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002431 dm_pool_metadata_read_write(pool->pmd);
Joe Thornbere49e5822012-07-27 15:08:16 +01002432 pool->process_bio = process_bio;
Joe Thornbera374bb22014-10-10 13:43:14 +01002433 pool->process_discard = process_discard_bio;
2434 pool->process_cell = process_cell;
Joe Thornbere49e5822012-07-27 15:08:16 +01002435 pool->process_prepared_mapping = process_prepared_mapping;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002436 set_discard_callbacks(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01002437 break;
2438 }
Mike Snitzer8b64e882013-12-20 14:27:28 -05002439
2440 pool->pf.mode = new_mode;
Mike Snitzercdc2b412014-02-14 18:10:55 -05002441 /*
2442 * The pool mode may have changed, sync it so bind_control_target()
2443 * doesn't cause an unexpected mode transition on resume.
2444 */
2445 pt->adjusted_pf.mode = new_mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002446}
2447
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002448static void abort_transaction(struct pool *pool)
2449{
2450 const char *dev_name = dm_device_name(pool->pool_md);
2451
2452 DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
2453 if (dm_pool_abort_metadata(pool->pmd)) {
2454 DMERR("%s: failed to abort metadata transaction", dev_name);
2455 set_pool_mode(pool, PM_FAIL);
2456 }
2457
2458 if (dm_pool_metadata_set_needs_check(pool->pmd)) {
2459 DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
2460 set_pool_mode(pool, PM_FAIL);
2461 }
2462}
2463
Joe Thornberb5330652013-12-04 19:51:33 -05002464static void metadata_operation_failed(struct pool *pool, const char *op, int r)
2465{
2466 DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
2467 dm_device_name(pool->pool_md), op, r);
2468
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002469 abort_transaction(pool);
Joe Thornberb5330652013-12-04 19:51:33 -05002470 set_pool_mode(pool, PM_READ_ONLY);
2471}
2472
Joe Thornbere49e5822012-07-27 15:08:16 +01002473/*----------------------------------------------------------------*/
2474
Joe Thornber991d9fa2011-10-31 20:21:18 +00002475/*
2476 * Mapping functions.
2477 */
2478
2479/*
2480 * Called only while mapping a thin bio to hand it over to the workqueue.
2481 */
2482static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
2483{
2484 unsigned long flags;
2485 struct pool *pool = tc->pool;
2486
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002487 spin_lock_irqsave(&tc->lock, flags);
2488 bio_list_add(&tc->deferred_bio_list, bio);
2489 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002490
2491 wake_worker(pool);
2492}
2493
Joe Thornber7d327fe2014-10-06 15:45:59 +01002494static void thin_defer_bio_with_throttle(struct thin_c *tc, struct bio *bio)
2495{
2496 struct pool *pool = tc->pool;
2497
2498 throttle_lock(&pool->throttle);
2499 thin_defer_bio(tc, bio);
2500 throttle_unlock(&pool->throttle);
2501}
2502
Joe Thornbera374bb22014-10-10 13:43:14 +01002503static void thin_defer_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2504{
2505 unsigned long flags;
2506 struct pool *pool = tc->pool;
2507
2508 throttle_lock(&pool->throttle);
2509 spin_lock_irqsave(&tc->lock, flags);
2510 list_add_tail(&cell->user_list, &tc->deferred_cells);
2511 spin_unlock_irqrestore(&tc->lock, flags);
2512 throttle_unlock(&pool->throttle);
2513
2514 wake_worker(pool);
2515}
2516
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002517static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
Joe Thornbereb2aa482012-03-28 18:41:28 +01002518{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002519 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01002520
2521 h->tc = tc;
2522 h->shared_read_entry = NULL;
Joe Thornbere8088072012-12-21 20:23:31 +00002523 h->all_io_entry = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002524 h->overwrite_mapping = NULL;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002525 h->cell = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002526}
2527
Joe Thornber991d9fa2011-10-31 20:21:18 +00002528/*
2529 * Non-blocking function called from the thin target's map function.
2530 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002531static int thin_bio_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002532{
2533 int r;
2534 struct thin_c *tc = ti->private;
2535 dm_block_t block = get_bio_block(tc, bio);
2536 struct dm_thin_device *td = tc->td;
2537 struct dm_thin_lookup_result result;
Joe Thornbera374bb22014-10-10 13:43:14 +01002538 struct dm_bio_prison_cell *virt_cell, *data_cell;
Joe Thornbere8088072012-12-21 20:23:31 +00002539 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002540
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002541 thin_hook_bio(tc, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01002542
Joe Thornber738211f2014-03-03 15:52:28 +00002543 if (tc->requeue_mode) {
2544 bio_endio(bio, DM_ENDIO_REQUEUE);
2545 return DM_MAPIO_SUBMITTED;
2546 }
2547
Joe Thornbere49e5822012-07-27 15:08:16 +01002548 if (get_pool_mode(tc->pool) == PM_FAIL) {
2549 bio_io_error(bio);
2550 return DM_MAPIO_SUBMITTED;
2551 }
2552
Joe Thornber104655f2012-03-28 18:41:28 +01002553 if (bio->bi_rw & (REQ_DISCARD | REQ_FLUSH | REQ_FUA)) {
Joe Thornber7d327fe2014-10-06 15:45:59 +01002554 thin_defer_bio_with_throttle(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002555 return DM_MAPIO_SUBMITTED;
2556 }
2557
Joe Thornberc822ed92014-10-10 09:41:09 +01002558 /*
2559 * We must hold the virtual cell before doing the lookup, otherwise
2560 * there's a race with discard.
2561 */
2562 build_virtual_key(tc->td, block, &key);
Joe Thornbera374bb22014-10-10 13:43:14 +01002563 if (bio_detain(tc->pool, &key, bio, &virt_cell))
Joe Thornberc822ed92014-10-10 09:41:09 +01002564 return DM_MAPIO_SUBMITTED;
2565
Joe Thornber991d9fa2011-10-31 20:21:18 +00002566 r = dm_thin_find_block(td, block, 0, &result);
2567
2568 /*
2569 * Note that we defer readahead too.
2570 */
2571 switch (r) {
2572 case 0:
2573 if (unlikely(result.shared)) {
2574 /*
2575 * We have a race condition here between the
2576 * result.shared value returned by the lookup and
2577 * snapshot creation, which may cause new
2578 * sharing.
2579 *
2580 * To avoid this always quiesce the origin before
2581 * taking the snap. You want to do this anyway to
2582 * ensure a consistent application view
2583 * (i.e. lockfs).
2584 *
2585 * More distant ancestors are irrelevant. The
2586 * shared flag will be set in their case.
2587 */
Joe Thornbera374bb22014-10-10 13:43:14 +01002588 thin_defer_cell(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002589 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002590 }
Joe Thornbere8088072012-12-21 20:23:31 +00002591
Joe Thornbere8088072012-12-21 20:23:31 +00002592 build_data_key(tc->td, result.block, &key);
Joe Thornbera374bb22014-10-10 13:43:14 +01002593 if (bio_detain(tc->pool, &key, bio, &data_cell)) {
2594 cell_defer_no_holder(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002595 return DM_MAPIO_SUBMITTED;
2596 }
2597
2598 inc_all_io_entry(tc->pool, bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01002599 cell_defer_no_holder(tc, data_cell);
2600 cell_defer_no_holder(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002601
2602 remap(tc, bio, result.block);
2603 return DM_MAPIO_REMAPPED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002604
2605 case -ENODATA:
Joe Thornbere49e5822012-07-27 15:08:16 +01002606 case -EWOULDBLOCK:
Joe Thornbera374bb22014-10-10 13:43:14 +01002607 thin_defer_cell(tc, virt_cell);
Joe Thornber2aab3852012-12-21 20:23:33 +00002608 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01002609
2610 default:
2611 /*
2612 * Must always call bio_io_error on failure.
2613 * dm_thin_find_block can fail with -EINVAL if the
2614 * pool is switched to fail-io mode.
2615 */
2616 bio_io_error(bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01002617 cell_defer_no_holder(tc, virt_cell);
Joe Thornber2aab3852012-12-21 20:23:33 +00002618 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002619 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002620}
2621
2622static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
2623{
Joe Thornber991d9fa2011-10-31 20:21:18 +00002624 struct pool_c *pt = container_of(cb, struct pool_c, callbacks);
Mike Snitzer760fe672014-03-20 08:36:47 -04002625 struct request_queue *q;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002626
Mike Snitzer760fe672014-03-20 08:36:47 -04002627 if (get_pool_mode(pt->pool) == PM_OUT_OF_DATA_SPACE)
2628 return 1;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002629
Mike Snitzer760fe672014-03-20 08:36:47 -04002630 q = bdev_get_queue(pt->data_dev->bdev);
2631 return bdi_congested(&q->backing_dev_info, bdi_bits);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002632}
2633
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002634static void requeue_bios(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002635{
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002636 unsigned long flags;
2637 struct thin_c *tc;
2638
2639 rcu_read_lock();
2640 list_for_each_entry_rcu(tc, &pool->active_thins, list) {
2641 spin_lock_irqsave(&tc->lock, flags);
2642 bio_list_merge(&tc->deferred_bio_list, &tc->retry_on_resume_list);
2643 bio_list_init(&tc->retry_on_resume_list);
2644 spin_unlock_irqrestore(&tc->lock, flags);
2645 }
2646 rcu_read_unlock();
Joe Thornber991d9fa2011-10-31 20:21:18 +00002647}
2648
2649/*----------------------------------------------------------------
2650 * Binding of control targets to a pool object
2651 *--------------------------------------------------------------*/
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002652static bool data_dev_supports_discard(struct pool_c *pt)
2653{
2654 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
2655
2656 return q && blk_queue_discard(q);
2657}
2658
Joe Thornber58051b92013-03-20 17:21:25 +00002659static bool is_factor(sector_t block_size, uint32_t n)
2660{
2661 return !sector_div(block_size, n);
2662}
2663
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002664/*
2665 * If discard_passdown was enabled verify that the data device
Mike Snitzer0424caa2012-09-26 23:45:47 +01002666 * supports discards. Disable discard_passdown if not.
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002667 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01002668static void disable_passdown_if_not_supported(struct pool_c *pt)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002669{
Mike Snitzer0424caa2012-09-26 23:45:47 +01002670 struct pool *pool = pt->pool;
2671 struct block_device *data_bdev = pt->data_dev->bdev;
2672 struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002673 const char *reason = NULL;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002674 char buf[BDEVNAME_SIZE];
2675
Mike Snitzer0424caa2012-09-26 23:45:47 +01002676 if (!pt->adjusted_pf.discard_passdown)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002677 return;
2678
Mike Snitzer0424caa2012-09-26 23:45:47 +01002679 if (!data_dev_supports_discard(pt))
2680 reason = "discard unsupported";
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002681
Mike Snitzer0424caa2012-09-26 23:45:47 +01002682 else if (data_limits->max_discard_sectors < pool->sectors_per_block)
2683 reason = "max discard sectors smaller than a block";
2684
Mike Snitzer0424caa2012-09-26 23:45:47 +01002685 if (reason) {
2686 DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason);
2687 pt->adjusted_pf.discard_passdown = false;
2688 }
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002689}
2690
Joe Thornber991d9fa2011-10-31 20:21:18 +00002691static int bind_control_target(struct pool *pool, struct dm_target *ti)
2692{
2693 struct pool_c *pt = ti->private;
2694
Joe Thornbere49e5822012-07-27 15:08:16 +01002695 /*
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002696 * We want to make sure that a pool in PM_FAIL mode is never upgraded.
Joe Thornbere49e5822012-07-27 15:08:16 +01002697 */
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002698 enum pool_mode old_mode = get_pool_mode(pool);
Mike Snitzer0424caa2012-09-26 23:45:47 +01002699 enum pool_mode new_mode = pt->adjusted_pf.mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002700
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002701 /*
Mike Snitzer8b64e882013-12-20 14:27:28 -05002702 * Don't change the pool's mode until set_pool_mode() below.
2703 * Otherwise the pool's process_* function pointers may
2704 * not match the desired pool mode.
2705 */
2706 pt->adjusted_pf.mode = old_mode;
2707
2708 pool->ti = ti;
2709 pool->pf = pt->adjusted_pf;
2710 pool->low_water_blocks = pt->low_water_blocks;
2711
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002712 set_pool_mode(pool, new_mode);
Mike Snitzerf4026932012-05-19 01:01:01 +01002713
Joe Thornber991d9fa2011-10-31 20:21:18 +00002714 return 0;
2715}
2716
2717static void unbind_control_target(struct pool *pool, struct dm_target *ti)
2718{
2719 if (pool->ti == ti)
2720 pool->ti = NULL;
2721}
2722
2723/*----------------------------------------------------------------
2724 * Pool creation
2725 *--------------------------------------------------------------*/
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002726/* Initialize pool features. */
2727static void pool_features_init(struct pool_features *pf)
2728{
Joe Thornbere49e5822012-07-27 15:08:16 +01002729 pf->mode = PM_WRITE;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002730 pf->zero_new_blocks = true;
2731 pf->discard_enabled = true;
2732 pf->discard_passdown = true;
Mike Snitzer787a996c2013-12-06 16:21:43 -05002733 pf->error_if_no_space = false;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002734}
2735
Joe Thornber991d9fa2011-10-31 20:21:18 +00002736static void __pool_destroy(struct pool *pool)
2737{
2738 __pool_table_remove(pool);
2739
Joe Thornbera822c832015-07-03 10:22:42 +01002740 vfree(pool->cell_sort_array);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002741 if (dm_pool_metadata_close(pool->pmd) < 0)
2742 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
2743
Mike Snitzer44feb382012-10-12 21:02:10 +01002744 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002745 dm_kcopyd_client_destroy(pool->copier);
2746
2747 if (pool->wq)
2748 destroy_workqueue(pool->wq);
2749
2750 if (pool->next_mapping)
2751 mempool_free(pool->next_mapping, pool->mapping_pool);
2752 mempool_destroy(pool->mapping_pool);
Mike Snitzer44feb382012-10-12 21:02:10 +01002753 dm_deferred_set_destroy(pool->shared_read_ds);
2754 dm_deferred_set_destroy(pool->all_io_ds);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002755 kfree(pool);
2756}
2757
Mike Snitzera24c2562012-06-03 00:30:00 +01002758static struct kmem_cache *_new_mapping_cache;
Mike Snitzera24c2562012-06-03 00:30:00 +01002759
Joe Thornber991d9fa2011-10-31 20:21:18 +00002760static struct pool *pool_create(struct mapped_device *pool_md,
2761 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002762 unsigned long block_size,
2763 int read_only, char **error)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002764{
2765 int r;
2766 void *err_p;
2767 struct pool *pool;
2768 struct dm_pool_metadata *pmd;
Joe Thornbere49e5822012-07-27 15:08:16 +01002769 bool format_device = read_only ? false : true;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002770
Joe Thornbere49e5822012-07-27 15:08:16 +01002771 pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002772 if (IS_ERR(pmd)) {
2773 *error = "Error creating metadata object";
2774 return (struct pool *)pmd;
2775 }
2776
2777 pool = kmalloc(sizeof(*pool), GFP_KERNEL);
2778 if (!pool) {
2779 *error = "Error allocating memory for pool";
2780 err_p = ERR_PTR(-ENOMEM);
2781 goto bad_pool;
2782 }
2783
2784 pool->pmd = pmd;
2785 pool->sectors_per_block = block_size;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +01002786 if (block_size & (block_size - 1))
2787 pool->sectors_per_block_shift = -1;
2788 else
2789 pool->sectors_per_block_shift = __ffs(block_size);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002790 pool->low_water_blocks = 0;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002791 pool_features_init(&pool->pf);
Joe Thornbera195db22014-10-06 16:30:06 -04002792 pool->prison = dm_bio_prison_create();
Joe Thornber991d9fa2011-10-31 20:21:18 +00002793 if (!pool->prison) {
2794 *error = "Error creating pool's bio prison";
2795 err_p = ERR_PTR(-ENOMEM);
2796 goto bad_prison;
2797 }
2798
Mikulas Patockadf5d2e92013-03-01 22:45:49 +00002799 pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002800 if (IS_ERR(pool->copier)) {
2801 r = PTR_ERR(pool->copier);
2802 *error = "Error creating pool's kcopyd client";
2803 err_p = ERR_PTR(r);
2804 goto bad_kcopyd_client;
2805 }
2806
2807 /*
2808 * Create singlethreaded workqueue that will service all devices
2809 * that use this metadata.
2810 */
2811 pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
2812 if (!pool->wq) {
2813 *error = "Error creating pool's workqueue";
2814 err_p = ERR_PTR(-ENOMEM);
2815 goto bad_wq;
2816 }
2817
Joe Thornber7d327fe2014-10-06 15:45:59 +01002818 throttle_init(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002819 INIT_WORK(&pool->worker, do_worker);
Joe Thornber905e51b2012-03-28 18:41:27 +01002820 INIT_DELAYED_WORK(&pool->waker, do_waker);
Joe Thornber85ad643b2014-05-09 15:59:38 +01002821 INIT_DELAYED_WORK(&pool->no_space_timeout, do_no_space_timeout);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002822 spin_lock_init(&pool->lock);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002823 bio_list_init(&pool->deferred_flush_bios);
2824 INIT_LIST_HEAD(&pool->prepared_mappings);
Joe Thornber104655f2012-03-28 18:41:28 +01002825 INIT_LIST_HEAD(&pool->prepared_discards);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002826 INIT_LIST_HEAD(&pool->active_thins);
Joe Thornber88a66212013-12-04 20:16:12 -05002827 pool->low_water_triggered = false;
Mike Snitzer80e96c52014-11-07 15:09:46 -05002828 pool->suspended = true;
Mike Snitzer44feb382012-10-12 21:02:10 +01002829
2830 pool->shared_read_ds = dm_deferred_set_create();
2831 if (!pool->shared_read_ds) {
2832 *error = "Error creating pool's shared read deferred set";
2833 err_p = ERR_PTR(-ENOMEM);
2834 goto bad_shared_read_ds;
2835 }
2836
2837 pool->all_io_ds = dm_deferred_set_create();
2838 if (!pool->all_io_ds) {
2839 *error = "Error creating pool's all io deferred set";
2840 err_p = ERR_PTR(-ENOMEM);
2841 goto bad_all_io_ds;
2842 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002843
2844 pool->next_mapping = NULL;
Mike Snitzera24c2562012-06-03 00:30:00 +01002845 pool->mapping_pool = mempool_create_slab_pool(MAPPING_POOL_SIZE,
2846 _new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002847 if (!pool->mapping_pool) {
2848 *error = "Error creating pool's mapping mempool";
2849 err_p = ERR_PTR(-ENOMEM);
2850 goto bad_mapping_pool;
2851 }
2852
Joe Thornbera822c832015-07-03 10:22:42 +01002853 pool->cell_sort_array = vmalloc(sizeof(*pool->cell_sort_array) * CELL_SORT_ARRAY_SIZE);
2854 if (!pool->cell_sort_array) {
2855 *error = "Error allocating cell sort array";
2856 err_p = ERR_PTR(-ENOMEM);
2857 goto bad_sort_array;
2858 }
2859
Joe Thornber991d9fa2011-10-31 20:21:18 +00002860 pool->ref_count = 1;
Joe Thornber905e51b2012-03-28 18:41:27 +01002861 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002862 pool->pool_md = pool_md;
2863 pool->md_dev = metadata_dev;
2864 __pool_table_insert(pool);
2865
2866 return pool;
2867
Joe Thornbera822c832015-07-03 10:22:42 +01002868bad_sort_array:
2869 mempool_destroy(pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002870bad_mapping_pool:
Mike Snitzer44feb382012-10-12 21:02:10 +01002871 dm_deferred_set_destroy(pool->all_io_ds);
2872bad_all_io_ds:
2873 dm_deferred_set_destroy(pool->shared_read_ds);
2874bad_shared_read_ds:
Joe Thornber991d9fa2011-10-31 20:21:18 +00002875 destroy_workqueue(pool->wq);
2876bad_wq:
2877 dm_kcopyd_client_destroy(pool->copier);
2878bad_kcopyd_client:
Mike Snitzer44feb382012-10-12 21:02:10 +01002879 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002880bad_prison:
2881 kfree(pool);
2882bad_pool:
2883 if (dm_pool_metadata_close(pmd))
2884 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
2885
2886 return err_p;
2887}
2888
2889static void __pool_inc(struct pool *pool)
2890{
2891 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
2892 pool->ref_count++;
2893}
2894
2895static void __pool_dec(struct pool *pool)
2896{
2897 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
2898 BUG_ON(!pool->ref_count);
2899 if (!--pool->ref_count)
2900 __pool_destroy(pool);
2901}
2902
2903static struct pool *__pool_find(struct mapped_device *pool_md,
2904 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002905 unsigned long block_size, int read_only,
2906 char **error, int *created)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002907{
2908 struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
2909
2910 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01002911 if (pool->pool_md != pool_md) {
2912 *error = "metadata device already in use by a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00002913 return ERR_PTR(-EBUSY);
Mike Snitzerf09996c2012-07-27 15:07:59 +01002914 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002915 __pool_inc(pool);
2916
2917 } else {
2918 pool = __pool_table_lookup(pool_md);
2919 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01002920 if (pool->md_dev != metadata_dev) {
2921 *error = "different pool cannot replace a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00002922 return ERR_PTR(-EINVAL);
Mike Snitzerf09996c2012-07-27 15:07:59 +01002923 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002924 __pool_inc(pool);
2925
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002926 } else {
Joe Thornbere49e5822012-07-27 15:08:16 +01002927 pool = pool_create(pool_md, metadata_dev, block_size, read_only, error);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002928 *created = 1;
2929 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002930 }
2931
2932 return pool;
2933}
2934
2935/*----------------------------------------------------------------
2936 * Pool target methods
2937 *--------------------------------------------------------------*/
2938static void pool_dtr(struct dm_target *ti)
2939{
2940 struct pool_c *pt = ti->private;
2941
2942 mutex_lock(&dm_thin_pool_table.mutex);
2943
2944 unbind_control_target(pt->pool, ti);
2945 __pool_dec(pt->pool);
2946 dm_put_device(ti, pt->metadata_dev);
2947 dm_put_device(ti, pt->data_dev);
2948 kfree(pt);
2949
2950 mutex_unlock(&dm_thin_pool_table.mutex);
2951}
2952
Joe Thornber991d9fa2011-10-31 20:21:18 +00002953static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
2954 struct dm_target *ti)
2955{
2956 int r;
2957 unsigned argc;
2958 const char *arg_name;
2959
2960 static struct dm_arg _args[] = {
Mike Snitzer74aa45c2014-01-15 19:07:58 -05002961 {0, 4, "Invalid number of pool feature arguments"},
Joe Thornber991d9fa2011-10-31 20:21:18 +00002962 };
2963
2964 /*
2965 * No feature arguments supplied.
2966 */
2967 if (!as->argc)
2968 return 0;
2969
2970 r = dm_read_arg_group(_args, as, &argc, &ti->error);
2971 if (r)
2972 return -EINVAL;
2973
2974 while (argc && !r) {
2975 arg_name = dm_shift_arg(as);
2976 argc--;
2977
Joe Thornbere49e5822012-07-27 15:08:16 +01002978 if (!strcasecmp(arg_name, "skip_block_zeroing"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002979 pf->zero_new_blocks = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002980
Joe Thornbere49e5822012-07-27 15:08:16 +01002981 else if (!strcasecmp(arg_name, "ignore_discard"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002982 pf->discard_enabled = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01002983
2984 else if (!strcasecmp(arg_name, "no_discard_passdown"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002985 pf->discard_passdown = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01002986
2987 else if (!strcasecmp(arg_name, "read_only"))
2988 pf->mode = PM_READ_ONLY;
2989
Mike Snitzer787a996c2013-12-06 16:21:43 -05002990 else if (!strcasecmp(arg_name, "error_if_no_space"))
2991 pf->error_if_no_space = true;
2992
Joe Thornbere49e5822012-07-27 15:08:16 +01002993 else {
2994 ti->error = "Unrecognised pool feature requested";
2995 r = -EINVAL;
2996 break;
2997 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002998 }
2999
3000 return r;
3001}
3002
Joe Thornberac8c3f32013-05-10 14:37:21 +01003003static void metadata_low_callback(void *context)
3004{
3005 struct pool *pool = context;
3006
3007 DMWARN("%s: reached low water mark for metadata device: sending event.",
3008 dm_device_name(pool->pool_md));
3009
3010 dm_table_event(pool->ti->table);
3011}
3012
Mike Snitzer7d489352014-02-12 23:58:15 -05003013static sector_t get_dev_size(struct block_device *bdev)
Joe Thornberb17446d2013-05-10 14:37:18 +01003014{
Mike Snitzer7d489352014-02-12 23:58:15 -05003015 return i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
3016}
3017
3018static void warn_if_metadata_device_too_big(struct block_device *bdev)
3019{
3020 sector_t metadata_dev_size = get_dev_size(bdev);
Joe Thornberb17446d2013-05-10 14:37:18 +01003021 char buffer[BDEVNAME_SIZE];
3022
Mike Snitzer7d489352014-02-12 23:58:15 -05003023 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING)
Joe Thornberb17446d2013-05-10 14:37:18 +01003024 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
3025 bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS);
Mike Snitzer7d489352014-02-12 23:58:15 -05003026}
3027
3028static sector_t get_metadata_dev_size(struct block_device *bdev)
3029{
3030 sector_t metadata_dev_size = get_dev_size(bdev);
3031
3032 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS)
3033 metadata_dev_size = THIN_METADATA_MAX_SECTORS;
Joe Thornberb17446d2013-05-10 14:37:18 +01003034
3035 return metadata_dev_size;
3036}
3037
Joe Thornber24347e92013-05-10 14:37:19 +01003038static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
3039{
3040 sector_t metadata_dev_size = get_metadata_dev_size(bdev);
3041
Mike Snitzer7d489352014-02-12 23:58:15 -05003042 sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE);
Joe Thornber24347e92013-05-10 14:37:19 +01003043
3044 return metadata_dev_size;
3045}
3046
Joe Thornber991d9fa2011-10-31 20:21:18 +00003047/*
Joe Thornberac8c3f32013-05-10 14:37:21 +01003048 * When a metadata threshold is crossed a dm event is triggered, and
3049 * userland should respond by growing the metadata device. We could let
3050 * userland set the threshold, like we do with the data threshold, but I'm
3051 * not sure they know enough to do this well.
3052 */
3053static dm_block_t calc_metadata_threshold(struct pool_c *pt)
3054{
3055 /*
3056 * 4M is ample for all ops with the possible exception of thin
3057 * device deletion which is harmless if it fails (just retry the
3058 * delete after you've grown the device).
3059 */
3060 dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
3061 return min((dm_block_t)1024ULL /* 4M */, quarter);
3062}
3063
3064/*
Joe Thornber991d9fa2011-10-31 20:21:18 +00003065 * thin-pool <metadata dev> <data dev>
3066 * <data block size (sectors)>
3067 * <low water mark (blocks)>
3068 * [<#feature args> [<arg>]*]
3069 *
3070 * Optional feature arguments are:
3071 * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003072 * ignore_discard: disable discard
3073 * no_discard_passdown: don't pass discards down to the data device
Mike Snitzer787a996c2013-12-06 16:21:43 -05003074 * read_only: Don't allow any changes to be made to the pool metadata.
3075 * error_if_no_space: error IOs, instead of queueing, if no space.
Joe Thornber991d9fa2011-10-31 20:21:18 +00003076 */
3077static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv)
3078{
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003079 int r, pool_created = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003080 struct pool_c *pt;
3081 struct pool *pool;
3082 struct pool_features pf;
3083 struct dm_arg_set as;
3084 struct dm_dev *data_dev;
3085 unsigned long block_size;
3086 dm_block_t low_water_blocks;
3087 struct dm_dev *metadata_dev;
Joe Thornber5d0db962013-05-10 14:37:19 +01003088 fmode_t metadata_mode;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003089
3090 /*
3091 * FIXME Remove validation from scope of lock.
3092 */
3093 mutex_lock(&dm_thin_pool_table.mutex);
3094
3095 if (argc < 4) {
3096 ti->error = "Invalid argument count";
3097 r = -EINVAL;
3098 goto out_unlock;
3099 }
Joe Thornber5d0db962013-05-10 14:37:19 +01003100
Joe Thornber991d9fa2011-10-31 20:21:18 +00003101 as.argc = argc;
3102 as.argv = argv;
3103
Joe Thornber5d0db962013-05-10 14:37:19 +01003104 /*
3105 * Set default pool features.
3106 */
3107 pool_features_init(&pf);
3108
3109 dm_consume_args(&as, 4);
3110 r = parse_pool_features(&as, &pf, ti);
3111 if (r)
3112 goto out_unlock;
3113
3114 metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
3115 r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003116 if (r) {
3117 ti->error = "Error opening metadata block device";
3118 goto out_unlock;
3119 }
Mike Snitzer7d489352014-02-12 23:58:15 -05003120 warn_if_metadata_device_too_big(metadata_dev->bdev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003121
3122 r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
3123 if (r) {
3124 ti->error = "Error getting data device";
3125 goto out_metadata;
3126 }
3127
3128 if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
3129 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
3130 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01003131 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00003132 ti->error = "Invalid block size";
3133 r = -EINVAL;
3134 goto out;
3135 }
3136
3137 if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
3138 ti->error = "Invalid low water mark";
3139 r = -EINVAL;
3140 goto out;
3141 }
3142
Joe Thornber991d9fa2011-10-31 20:21:18 +00003143 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
3144 if (!pt) {
3145 r = -ENOMEM;
3146 goto out;
3147 }
3148
3149 pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev,
Joe Thornbere49e5822012-07-27 15:08:16 +01003150 block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003151 if (IS_ERR(pool)) {
3152 r = PTR_ERR(pool);
3153 goto out_free_pt;
3154 }
3155
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003156 /*
3157 * 'pool_created' reflects whether this is the first table load.
3158 * Top level discard support is not allowed to be changed after
3159 * initial load. This would require a pool reload to trigger thin
3160 * device changes.
3161 */
3162 if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
3163 ti->error = "Discard support cannot be disabled once enabled";
3164 r = -EINVAL;
3165 goto out_flags_changed;
3166 }
3167
Joe Thornber991d9fa2011-10-31 20:21:18 +00003168 pt->pool = pool;
3169 pt->ti = ti;
3170 pt->metadata_dev = metadata_dev;
3171 pt->data_dev = data_dev;
3172 pt->low_water_blocks = low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01003173 pt->adjusted_pf = pt->requested_pf = pf;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00003174 ti->num_flush_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003175
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003176 /*
3177 * Only need to enable discards if the pool should pass
3178 * them down to the data device. The thin device's discard
3179 * processing will cause mappings to be removed from the btree.
3180 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04003181 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003182 if (pf.discard_enabled && pf.discard_passdown) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00003183 ti->num_discard_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003184
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003185 /*
3186 * Setting 'discards_supported' circumvents the normal
3187 * stacking of discard limits (this keeps the pool and
3188 * thin devices' discard limits consistent).
3189 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01003190 ti->discards_supported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003191 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003192 ti->private = pt;
3193
Joe Thornberac8c3f32013-05-10 14:37:21 +01003194 r = dm_pool_register_metadata_threshold(pt->pool->pmd,
3195 calc_metadata_threshold(pt),
3196 metadata_low_callback,
3197 pool);
3198 if (r)
3199 goto out_free_pt;
3200
Joe Thornber991d9fa2011-10-31 20:21:18 +00003201 pt->callbacks.congested_fn = pool_is_congested;
3202 dm_table_add_target_callbacks(ti->table, &pt->callbacks);
3203
3204 mutex_unlock(&dm_thin_pool_table.mutex);
3205
3206 return 0;
3207
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003208out_flags_changed:
3209 __pool_dec(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003210out_free_pt:
3211 kfree(pt);
3212out:
3213 dm_put_device(ti, data_dev);
3214out_metadata:
3215 dm_put_device(ti, metadata_dev);
3216out_unlock:
3217 mutex_unlock(&dm_thin_pool_table.mutex);
3218
3219 return r;
3220}
3221
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00003222static int pool_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003223{
3224 int r;
3225 struct pool_c *pt = ti->private;
3226 struct pool *pool = pt->pool;
3227 unsigned long flags;
3228
3229 /*
3230 * As this is a singleton target, ti->begin is always zero.
3231 */
3232 spin_lock_irqsave(&pool->lock, flags);
3233 bio->bi_bdev = pt->data_dev->bdev;
3234 r = DM_MAPIO_REMAPPED;
3235 spin_unlock_irqrestore(&pool->lock, flags);
3236
3237 return r;
3238}
3239
Joe Thornberb17446d2013-05-10 14:37:18 +01003240static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
3241{
3242 int r;
3243 struct pool_c *pt = ti->private;
3244 struct pool *pool = pt->pool;
3245 sector_t data_size = ti->len;
3246 dm_block_t sb_data_size;
3247
3248 *need_commit = false;
3249
3250 (void) sector_div(data_size, pool->sectors_per_block);
3251
3252 r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
3253 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003254 DMERR("%s: failed to retrieve data device size",
3255 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01003256 return r;
3257 }
3258
3259 if (data_size < sb_data_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003260 DMERR("%s: pool target (%llu blocks) too small: expected %llu",
3261 dm_device_name(pool->pool_md),
Joe Thornberb17446d2013-05-10 14:37:18 +01003262 (unsigned long long)data_size, sb_data_size);
3263 return -EINVAL;
3264
3265 } else if (data_size > sb_data_size) {
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05003266 if (dm_pool_metadata_needs_check(pool->pmd)) {
3267 DMERR("%s: unable to grow the data device until repaired.",
3268 dm_device_name(pool->pool_md));
3269 return 0;
3270 }
3271
Mike Snitzer6f7f51d2013-12-04 10:25:53 -05003272 if (sb_data_size)
3273 DMINFO("%s: growing the data device from %llu to %llu blocks",
3274 dm_device_name(pool->pool_md),
3275 sb_data_size, (unsigned long long)data_size);
Joe Thornberb17446d2013-05-10 14:37:18 +01003276 r = dm_pool_resize_data_dev(pool->pmd, data_size);
3277 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -05003278 metadata_operation_failed(pool, "dm_pool_resize_data_dev", r);
Joe Thornberb17446d2013-05-10 14:37:18 +01003279 return r;
3280 }
3281
3282 *need_commit = true;
3283 }
3284
3285 return 0;
3286}
3287
Joe Thornber24347e92013-05-10 14:37:19 +01003288static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
3289{
3290 int r;
3291 struct pool_c *pt = ti->private;
3292 struct pool *pool = pt->pool;
3293 dm_block_t metadata_dev_size, sb_metadata_dev_size;
3294
3295 *need_commit = false;
3296
Alasdair G Kergon610bba82013-05-19 18:57:50 +01003297 metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
Joe Thornber24347e92013-05-10 14:37:19 +01003298
3299 r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
3300 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003301 DMERR("%s: failed to retrieve metadata device size",
3302 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01003303 return r;
3304 }
3305
3306 if (metadata_dev_size < sb_metadata_dev_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003307 DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
3308 dm_device_name(pool->pool_md),
Joe Thornber24347e92013-05-10 14:37:19 +01003309 metadata_dev_size, sb_metadata_dev_size);
3310 return -EINVAL;
3311
3312 } else if (metadata_dev_size > sb_metadata_dev_size) {
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05003313 if (dm_pool_metadata_needs_check(pool->pmd)) {
3314 DMERR("%s: unable to grow the metadata device until repaired.",
3315 dm_device_name(pool->pool_md));
3316 return 0;
3317 }
3318
Mike Snitzer7d489352014-02-12 23:58:15 -05003319 warn_if_metadata_device_too_big(pool->md_dev);
Mike Snitzer6f7f51d2013-12-04 10:25:53 -05003320 DMINFO("%s: growing the metadata device from %llu to %llu blocks",
3321 dm_device_name(pool->pool_md),
3322 sb_metadata_dev_size, metadata_dev_size);
Joe Thornber24347e92013-05-10 14:37:19 +01003323 r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
3324 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -05003325 metadata_operation_failed(pool, "dm_pool_resize_metadata_dev", r);
Joe Thornber24347e92013-05-10 14:37:19 +01003326 return r;
3327 }
3328
3329 *need_commit = true;
3330 }
3331
3332 return 0;
3333}
3334
Joe Thornber991d9fa2011-10-31 20:21:18 +00003335/*
3336 * Retrieves the number of blocks of the data device from
3337 * the superblock and compares it to the actual device size,
3338 * thus resizing the data device in case it has grown.
3339 *
3340 * This both copes with opening preallocated data devices in the ctr
3341 * being followed by a resume
3342 * -and-
3343 * calling the resume method individually after userspace has
3344 * grown the data device in reaction to a table event.
3345 */
3346static int pool_preresume(struct dm_target *ti)
3347{
3348 int r;
Joe Thornber24347e92013-05-10 14:37:19 +01003349 bool need_commit1, need_commit2;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003350 struct pool_c *pt = ti->private;
3351 struct pool *pool = pt->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003352
3353 /*
3354 * Take control of the pool object.
3355 */
3356 r = bind_control_target(pool, ti);
3357 if (r)
3358 return r;
3359
Joe Thornberb17446d2013-05-10 14:37:18 +01003360 r = maybe_resize_data_dev(ti, &need_commit1);
3361 if (r)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003362 return r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003363
Joe Thornber24347e92013-05-10 14:37:19 +01003364 r = maybe_resize_metadata_dev(ti, &need_commit2);
3365 if (r)
3366 return r;
3367
3368 if (need_commit1 || need_commit2)
Joe Thornber020cc3b2013-12-04 15:05:36 -05003369 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003370
3371 return 0;
3372}
3373
Mike Snitzer583024d2014-10-28 20:58:45 -04003374static void pool_suspend_active_thins(struct pool *pool)
3375{
3376 struct thin_c *tc;
3377
3378 /* Suspend all active thin devices */
3379 tc = get_first_thin(pool);
3380 while (tc) {
3381 dm_internal_suspend_noflush(tc->thin_md);
3382 tc = get_next_thin(pool, tc);
3383 }
3384}
3385
3386static void pool_resume_active_thins(struct pool *pool)
3387{
3388 struct thin_c *tc;
3389
3390 /* Resume all active thin devices */
3391 tc = get_first_thin(pool);
3392 while (tc) {
3393 dm_internal_resume(tc->thin_md);
3394 tc = get_next_thin(pool, tc);
3395 }
3396}
3397
Joe Thornber991d9fa2011-10-31 20:21:18 +00003398static void pool_resume(struct dm_target *ti)
3399{
3400 struct pool_c *pt = ti->private;
3401 struct pool *pool = pt->pool;
3402 unsigned long flags;
3403
Mike Snitzer583024d2014-10-28 20:58:45 -04003404 /*
3405 * Must requeue active_thins' bios and then resume
3406 * active_thins _before_ clearing 'suspend' flag.
3407 */
3408 requeue_bios(pool);
3409 pool_resume_active_thins(pool);
3410
Joe Thornber991d9fa2011-10-31 20:21:18 +00003411 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber88a66212013-12-04 20:16:12 -05003412 pool->low_water_triggered = false;
Mike Snitzer80e96c52014-11-07 15:09:46 -05003413 pool->suspended = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003414 spin_unlock_irqrestore(&pool->lock, flags);
Mike Snitzer80e96c52014-11-07 15:09:46 -05003415
Joe Thornber905e51b2012-03-28 18:41:27 +01003416 do_waker(&pool->waker.work);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003417}
3418
Mike Snitzer80e96c52014-11-07 15:09:46 -05003419static void pool_presuspend(struct dm_target *ti)
3420{
3421 struct pool_c *pt = ti->private;
3422 struct pool *pool = pt->pool;
3423 unsigned long flags;
3424
3425 spin_lock_irqsave(&pool->lock, flags);
3426 pool->suspended = true;
3427 spin_unlock_irqrestore(&pool->lock, flags);
Mike Snitzer583024d2014-10-28 20:58:45 -04003428
3429 pool_suspend_active_thins(pool);
Mike Snitzer80e96c52014-11-07 15:09:46 -05003430}
3431
3432static void pool_presuspend_undo(struct dm_target *ti)
3433{
3434 struct pool_c *pt = ti->private;
3435 struct pool *pool = pt->pool;
3436 unsigned long flags;
3437
Mike Snitzer583024d2014-10-28 20:58:45 -04003438 pool_resume_active_thins(pool);
3439
Mike Snitzer80e96c52014-11-07 15:09:46 -05003440 spin_lock_irqsave(&pool->lock, flags);
3441 pool->suspended = false;
3442 spin_unlock_irqrestore(&pool->lock, flags);
3443}
3444
Joe Thornber991d9fa2011-10-31 20:21:18 +00003445static void pool_postsuspend(struct dm_target *ti)
3446{
Joe Thornber991d9fa2011-10-31 20:21:18 +00003447 struct pool_c *pt = ti->private;
3448 struct pool *pool = pt->pool;
3449
Joe Thornber905e51b2012-03-28 18:41:27 +01003450 cancel_delayed_work(&pool->waker);
Joe Thornber85ad643b2014-05-09 15:59:38 +01003451 cancel_delayed_work(&pool->no_space_timeout);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003452 flush_workqueue(pool->wq);
Joe Thornber020cc3b2013-12-04 15:05:36 -05003453 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003454}
3455
3456static int check_arg_count(unsigned argc, unsigned args_required)
3457{
3458 if (argc != args_required) {
3459 DMWARN("Message received with %u arguments instead of %u.",
3460 argc, args_required);
3461 return -EINVAL;
3462 }
3463
3464 return 0;
3465}
3466
3467static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
3468{
3469 if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
3470 *dev_id <= MAX_DEV_ID)
3471 return 0;
3472
3473 if (warning)
3474 DMWARN("Message received with invalid device id: %s", arg);
3475
3476 return -EINVAL;
3477}
3478
3479static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool)
3480{
3481 dm_thin_id dev_id;
3482 int r;
3483
3484 r = check_arg_count(argc, 2);
3485 if (r)
3486 return r;
3487
3488 r = read_dev_id(argv[1], &dev_id, 1);
3489 if (r)
3490 return r;
3491
3492 r = dm_pool_create_thin(pool->pmd, dev_id);
3493 if (r) {
3494 DMWARN("Creation of new thinly-provisioned device with id %s failed.",
3495 argv[1]);
3496 return r;
3497 }
3498
3499 return 0;
3500}
3501
3502static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3503{
3504 dm_thin_id dev_id;
3505 dm_thin_id origin_dev_id;
3506 int r;
3507
3508 r = check_arg_count(argc, 3);
3509 if (r)
3510 return r;
3511
3512 r = read_dev_id(argv[1], &dev_id, 1);
3513 if (r)
3514 return r;
3515
3516 r = read_dev_id(argv[2], &origin_dev_id, 1);
3517 if (r)
3518 return r;
3519
3520 r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
3521 if (r) {
3522 DMWARN("Creation of new snapshot %s of device %s failed.",
3523 argv[1], argv[2]);
3524 return r;
3525 }
3526
3527 return 0;
3528}
3529
3530static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool)
3531{
3532 dm_thin_id dev_id;
3533 int r;
3534
3535 r = check_arg_count(argc, 2);
3536 if (r)
3537 return r;
3538
3539 r = read_dev_id(argv[1], &dev_id, 1);
3540 if (r)
3541 return r;
3542
3543 r = dm_pool_delete_thin_device(pool->pmd, dev_id);
3544 if (r)
3545 DMWARN("Deletion of thin device %s failed.", argv[1]);
3546
3547 return r;
3548}
3549
3550static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool)
3551{
3552 dm_thin_id old_id, new_id;
3553 int r;
3554
3555 r = check_arg_count(argc, 3);
3556 if (r)
3557 return r;
3558
3559 if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
3560 DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
3561 return -EINVAL;
3562 }
3563
3564 if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
3565 DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
3566 return -EINVAL;
3567 }
3568
3569 r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
3570 if (r) {
3571 DMWARN("Failed to change transaction id from %s to %s.",
3572 argv[1], argv[2]);
3573 return r;
3574 }
3575
3576 return 0;
3577}
3578
Joe Thornbercc8394d2012-06-03 00:30:01 +01003579static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3580{
3581 int r;
3582
3583 r = check_arg_count(argc, 1);
3584 if (r)
3585 return r;
3586
Joe Thornber020cc3b2013-12-04 15:05:36 -05003587 (void) commit(pool);
Joe Thornber0d200ae2012-07-03 12:55:31 +01003588
Joe Thornbercc8394d2012-06-03 00:30:01 +01003589 r = dm_pool_reserve_metadata_snap(pool->pmd);
3590 if (r)
3591 DMWARN("reserve_metadata_snap message failed.");
3592
3593 return r;
3594}
3595
3596static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3597{
3598 int r;
3599
3600 r = check_arg_count(argc, 1);
3601 if (r)
3602 return r;
3603
3604 r = dm_pool_release_metadata_snap(pool->pmd);
3605 if (r)
3606 DMWARN("release_metadata_snap message failed.");
3607
3608 return r;
3609}
3610
Joe Thornber991d9fa2011-10-31 20:21:18 +00003611/*
3612 * Messages supported:
3613 * create_thin <dev_id>
3614 * create_snap <dev_id> <origin_id>
3615 * delete <dev_id>
Joe Thornber991d9fa2011-10-31 20:21:18 +00003616 * set_transaction_id <current_trans_id> <new_trans_id>
Joe Thornbercc8394d2012-06-03 00:30:01 +01003617 * reserve_metadata_snap
3618 * release_metadata_snap
Joe Thornber991d9fa2011-10-31 20:21:18 +00003619 */
3620static int pool_message(struct dm_target *ti, unsigned argc, char **argv)
3621{
3622 int r = -EINVAL;
3623 struct pool_c *pt = ti->private;
3624 struct pool *pool = pt->pool;
3625
Joe Thornber2a7eaea2015-01-26 11:38:21 +00003626 if (get_pool_mode(pool) >= PM_READ_ONLY) {
3627 DMERR("%s: unable to service pool target messages in READ_ONLY or FAIL mode",
3628 dm_device_name(pool->pool_md));
Mike Snitzerfd467692015-06-09 12:31:26 -04003629 return -EOPNOTSUPP;
Joe Thornber2a7eaea2015-01-26 11:38:21 +00003630 }
3631
Joe Thornber991d9fa2011-10-31 20:21:18 +00003632 if (!strcasecmp(argv[0], "create_thin"))
3633 r = process_create_thin_mesg(argc, argv, pool);
3634
3635 else if (!strcasecmp(argv[0], "create_snap"))
3636 r = process_create_snap_mesg(argc, argv, pool);
3637
3638 else if (!strcasecmp(argv[0], "delete"))
3639 r = process_delete_mesg(argc, argv, pool);
3640
3641 else if (!strcasecmp(argv[0], "set_transaction_id"))
3642 r = process_set_transaction_id_mesg(argc, argv, pool);
3643
Joe Thornbercc8394d2012-06-03 00:30:01 +01003644 else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
3645 r = process_reserve_metadata_snap_mesg(argc, argv, pool);
3646
3647 else if (!strcasecmp(argv[0], "release_metadata_snap"))
3648 r = process_release_metadata_snap_mesg(argc, argv, pool);
3649
Joe Thornber991d9fa2011-10-31 20:21:18 +00003650 else
3651 DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
3652
Joe Thornbere49e5822012-07-27 15:08:16 +01003653 if (!r)
Joe Thornber020cc3b2013-12-04 15:05:36 -05003654 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003655
3656 return r;
3657}
3658
Joe Thornbere49e5822012-07-27 15:08:16 +01003659static void emit_flags(struct pool_features *pf, char *result,
3660 unsigned sz, unsigned maxlen)
3661{
3662 unsigned count = !pf->zero_new_blocks + !pf->discard_enabled +
Mike Snitzer787a996c2013-12-06 16:21:43 -05003663 !pf->discard_passdown + (pf->mode == PM_READ_ONLY) +
3664 pf->error_if_no_space;
Joe Thornbere49e5822012-07-27 15:08:16 +01003665 DMEMIT("%u ", count);
3666
3667 if (!pf->zero_new_blocks)
3668 DMEMIT("skip_block_zeroing ");
3669
3670 if (!pf->discard_enabled)
3671 DMEMIT("ignore_discard ");
3672
3673 if (!pf->discard_passdown)
3674 DMEMIT("no_discard_passdown ");
3675
3676 if (pf->mode == PM_READ_ONLY)
3677 DMEMIT("read_only ");
Mike Snitzer787a996c2013-12-06 16:21:43 -05003678
3679 if (pf->error_if_no_space)
3680 DMEMIT("error_if_no_space ");
Joe Thornbere49e5822012-07-27 15:08:16 +01003681}
3682
Joe Thornber991d9fa2011-10-31 20:21:18 +00003683/*
3684 * Status line is:
3685 * <transaction id> <used metadata sectors>/<total metadata sectors>
3686 * <used data sectors>/<total data sectors> <held metadata root>
Mike Snitzere4c78e22015-07-15 11:40:24 -04003687 * <pool mode> <discard config> <no space config> <needs_check>
Joe Thornber991d9fa2011-10-31 20:21:18 +00003688 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003689static void pool_status(struct dm_target *ti, status_type_t type,
3690 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003691{
Joe Thornbere49e5822012-07-27 15:08:16 +01003692 int r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003693 unsigned sz = 0;
3694 uint64_t transaction_id;
3695 dm_block_t nr_free_blocks_data;
3696 dm_block_t nr_free_blocks_metadata;
3697 dm_block_t nr_blocks_data;
3698 dm_block_t nr_blocks_metadata;
3699 dm_block_t held_root;
3700 char buf[BDEVNAME_SIZE];
3701 char buf2[BDEVNAME_SIZE];
3702 struct pool_c *pt = ti->private;
3703 struct pool *pool = pt->pool;
3704
3705 switch (type) {
3706 case STATUSTYPE_INFO:
Joe Thornbere49e5822012-07-27 15:08:16 +01003707 if (get_pool_mode(pool) == PM_FAIL) {
3708 DMEMIT("Fail");
3709 break;
3710 }
3711
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01003712 /* Commit to ensure statistics aren't out-of-date */
3713 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
Joe Thornber020cc3b2013-12-04 15:05:36 -05003714 (void) commit(pool);
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01003715
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003716 r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
3717 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003718 DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
3719 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003720 goto err;
3721 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003722
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003723 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
3724 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003725 DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
3726 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003727 goto err;
3728 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003729
3730 r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003731 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003732 DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
3733 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003734 goto err;
3735 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003736
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003737 r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
3738 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003739 DMERR("%s: dm_pool_get_free_block_count returned %d",
3740 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003741 goto err;
3742 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003743
3744 r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003745 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003746 DMERR("%s: dm_pool_get_data_dev_size returned %d",
3747 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003748 goto err;
3749 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003750
Joe Thornbercc8394d2012-06-03 00:30:01 +01003751 r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003752 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003753 DMERR("%s: dm_pool_get_metadata_snap returned %d",
3754 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003755 goto err;
3756 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003757
3758 DMEMIT("%llu %llu/%llu %llu/%llu ",
3759 (unsigned long long)transaction_id,
3760 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
3761 (unsigned long long)nr_blocks_metadata,
3762 (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
3763 (unsigned long long)nr_blocks_data);
3764
3765 if (held_root)
Joe Thornbere49e5822012-07-27 15:08:16 +01003766 DMEMIT("%llu ", held_root);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003767 else
Joe Thornbere49e5822012-07-27 15:08:16 +01003768 DMEMIT("- ");
3769
Joe Thornber3e1a0692014-03-03 16:03:26 +00003770 if (pool->pf.mode == PM_OUT_OF_DATA_SPACE)
3771 DMEMIT("out_of_data_space ");
3772 else if (pool->pf.mode == PM_READ_ONLY)
Joe Thornbere49e5822012-07-27 15:08:16 +01003773 DMEMIT("ro ");
3774 else
3775 DMEMIT("rw ");
3776
Mike Snitzer018debe2012-12-21 20:23:32 +00003777 if (!pool->pf.discard_enabled)
Mike Snitzer787a996c2013-12-06 16:21:43 -05003778 DMEMIT("ignore_discard ");
Mike Snitzer018debe2012-12-21 20:23:32 +00003779 else if (pool->pf.discard_passdown)
Mike Snitzer787a996c2013-12-06 16:21:43 -05003780 DMEMIT("discard_passdown ");
Joe Thornbere49e5822012-07-27 15:08:16 +01003781 else
Mike Snitzer787a996c2013-12-06 16:21:43 -05003782 DMEMIT("no_discard_passdown ");
3783
3784 if (pool->pf.error_if_no_space)
3785 DMEMIT("error_if_no_space ");
3786 else
3787 DMEMIT("queue_if_no_space ");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003788
Mike Snitzere4c78e22015-07-15 11:40:24 -04003789 if (dm_pool_metadata_needs_check(pool->pmd))
3790 DMEMIT("needs_check ");
3791 else
3792 DMEMIT("- ");
3793
Joe Thornber991d9fa2011-10-31 20:21:18 +00003794 break;
3795
3796 case STATUSTYPE_TABLE:
3797 DMEMIT("%s %s %lu %llu ",
3798 format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
3799 format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
3800 (unsigned long)pool->sectors_per_block,
3801 (unsigned long long)pt->low_water_blocks);
Mike Snitzer0424caa2012-09-26 23:45:47 +01003802 emit_flags(&pt->requested_pf, result, sz, maxlen);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003803 break;
3804 }
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003805 return;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003806
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003807err:
3808 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003809}
3810
3811static int pool_iterate_devices(struct dm_target *ti,
3812 iterate_devices_callout_fn fn, void *data)
3813{
3814 struct pool_c *pt = ti->private;
3815
3816 return fn(ti, pt->data_dev, 0, ti->len, data);
3817}
3818
3819static int pool_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
3820 struct bio_vec *biovec, int max_size)
3821{
3822 struct pool_c *pt = ti->private;
3823 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
3824
3825 if (!q->merge_bvec_fn)
3826 return max_size;
3827
3828 bvm->bi_bdev = pt->data_dev->bdev;
3829
3830 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
3831}
3832
3833static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
3834{
3835 struct pool_c *pt = ti->private;
3836 struct pool *pool = pt->pool;
Mike Snitzer604ea902014-10-09 18:43:25 -04003837 sector_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
3838
3839 /*
Mike Snitzerd200c302014-11-20 18:07:43 -05003840 * If max_sectors is smaller than pool->sectors_per_block adjust it
3841 * to the highest possible power-of-2 factor of pool->sectors_per_block.
3842 * This is especially beneficial when the pool's data device is a RAID
3843 * device that has a full stripe width that matches pool->sectors_per_block
3844 * -- because even though partial RAID stripe-sized IOs will be issued to a
3845 * single RAID stripe; when aggregated they will end on a full RAID stripe
3846 * boundary.. which avoids additional partial RAID stripe writes cascading
Mike Snitzer604ea902014-10-09 18:43:25 -04003847 */
Mike Snitzer604ea902014-10-09 18:43:25 -04003848 if (limits->max_sectors < pool->sectors_per_block) {
3849 while (!is_factor(pool->sectors_per_block, limits->max_sectors)) {
3850 if ((limits->max_sectors & (limits->max_sectors - 1)) == 0)
3851 limits->max_sectors--;
3852 limits->max_sectors = rounddown_pow_of_two(limits->max_sectors);
3853 }
Mike Snitzer604ea902014-10-09 18:43:25 -04003854 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003855
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04003856 /*
3857 * If the system-determined stacked limits are compatible with the
3858 * pool's blocksize (io_opt is a factor) do not override them.
3859 */
3860 if (io_opt_sectors < pool->sectors_per_block ||
Mike Snitzer604ea902014-10-09 18:43:25 -04003861 !is_factor(io_opt_sectors, pool->sectors_per_block)) {
3862 if (is_factor(pool->sectors_per_block, limits->max_sectors))
3863 blk_limits_io_min(limits, limits->max_sectors << SECTOR_SHIFT);
3864 else
3865 blk_limits_io_min(limits, pool->sectors_per_block << SECTOR_SHIFT);
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04003866 blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
3867 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01003868
3869 /*
3870 * pt->adjusted_pf is a staging area for the actual features to use.
3871 * They get transferred to the live pool in bind_control_target()
3872 * called from pool_preresume().
3873 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04003874 if (!pt->adjusted_pf.discard_enabled) {
3875 /*
3876 * Must explicitly disallow stacking discard limits otherwise the
3877 * block layer will stack them if pool's data device has support.
3878 * QUEUE_FLAG_DISCARD wouldn't be set but there is no way for the
3879 * user to see that, so make sure to set all discard limits to 0.
3880 */
3881 limits->discard_granularity = 0;
Mike Snitzer0424caa2012-09-26 23:45:47 +01003882 return;
Mike Snitzerb60ab992013-09-19 18:49:11 -04003883 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01003884
3885 disable_passdown_if_not_supported(pt);
3886
Joe Thornber34fbcf62015-04-16 12:58:35 +01003887 /*
3888 * The pool uses the same discard limits as the underlying data
3889 * device. DM core has already set this up.
3890 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00003891}
3892
3893static struct target_type pool_target = {
3894 .name = "thin-pool",
3895 .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
3896 DM_TARGET_IMMUTABLE,
Mike Snitzere4c78e22015-07-15 11:40:24 -04003897 .version = {1, 16, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00003898 .module = THIS_MODULE,
3899 .ctr = pool_ctr,
3900 .dtr = pool_dtr,
3901 .map = pool_map,
Mike Snitzer80e96c52014-11-07 15:09:46 -05003902 .presuspend = pool_presuspend,
3903 .presuspend_undo = pool_presuspend_undo,
Joe Thornber991d9fa2011-10-31 20:21:18 +00003904 .postsuspend = pool_postsuspend,
3905 .preresume = pool_preresume,
3906 .resume = pool_resume,
3907 .message = pool_message,
3908 .status = pool_status,
3909 .merge = pool_merge,
3910 .iterate_devices = pool_iterate_devices,
3911 .io_hints = pool_io_hints,
3912};
3913
3914/*----------------------------------------------------------------
3915 * Thin target methods
3916 *--------------------------------------------------------------*/
Joe Thornberb10ebd32014-04-08 11:29:01 +01003917static void thin_get(struct thin_c *tc)
3918{
3919 atomic_inc(&tc->refcount);
3920}
3921
3922static void thin_put(struct thin_c *tc)
3923{
3924 if (atomic_dec_and_test(&tc->refcount))
3925 complete(&tc->can_destroy);
3926}
3927
Joe Thornber991d9fa2011-10-31 20:21:18 +00003928static void thin_dtr(struct dm_target *ti)
3929{
3930 struct thin_c *tc = ti->private;
Mike Snitzerc140e1c2014-03-20 21:17:14 -04003931 unsigned long flags;
3932
3933 spin_lock_irqsave(&tc->pool->lock, flags);
3934 list_del_rcu(&tc->list);
3935 spin_unlock_irqrestore(&tc->pool->lock, flags);
3936 synchronize_rcu();
Joe Thornber991d9fa2011-10-31 20:21:18 +00003937
Mikulas Patocka17181fb2014-11-05 17:00:13 -05003938 thin_put(tc);
3939 wait_for_completion(&tc->can_destroy);
3940
Joe Thornber991d9fa2011-10-31 20:21:18 +00003941 mutex_lock(&dm_thin_pool_table.mutex);
3942
3943 __pool_dec(tc->pool);
3944 dm_pool_close_thin_device(tc->td);
3945 dm_put_device(ti, tc->pool_dev);
Joe Thornber2dd9c252012-03-28 18:41:28 +01003946 if (tc->origin_dev)
3947 dm_put_device(ti, tc->origin_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003948 kfree(tc);
3949
3950 mutex_unlock(&dm_thin_pool_table.mutex);
3951}
3952
3953/*
3954 * Thin target parameters:
3955 *
Joe Thornber2dd9c252012-03-28 18:41:28 +01003956 * <pool_dev> <dev_id> [origin_dev]
Joe Thornber991d9fa2011-10-31 20:21:18 +00003957 *
3958 * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
3959 * dev_id: the internal device identifier
Joe Thornber2dd9c252012-03-28 18:41:28 +01003960 * origin_dev: a device external to the pool that should act as the origin
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003961 *
3962 * If the pool device has discards disabled, they get disabled for the thin
3963 * device as well.
Joe Thornber991d9fa2011-10-31 20:21:18 +00003964 */
3965static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
3966{
3967 int r;
3968 struct thin_c *tc;
Joe Thornber2dd9c252012-03-28 18:41:28 +01003969 struct dm_dev *pool_dev, *origin_dev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003970 struct mapped_device *pool_md;
Joe Thornber5e3283e2014-04-08 11:08:41 +01003971 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003972
3973 mutex_lock(&dm_thin_pool_table.mutex);
3974
Joe Thornber2dd9c252012-03-28 18:41:28 +01003975 if (argc != 2 && argc != 3) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00003976 ti->error = "Invalid argument count";
3977 r = -EINVAL;
3978 goto out_unlock;
3979 }
3980
3981 tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
3982 if (!tc) {
3983 ti->error = "Out of memory";
3984 r = -ENOMEM;
3985 goto out_unlock;
3986 }
Mike Snitzer583024d2014-10-28 20:58:45 -04003987 tc->thin_md = dm_table_get_md(ti->table);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04003988 spin_lock_init(&tc->lock);
Joe Thornbera374bb22014-10-10 13:43:14 +01003989 INIT_LIST_HEAD(&tc->deferred_cells);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04003990 bio_list_init(&tc->deferred_bio_list);
3991 bio_list_init(&tc->retry_on_resume_list);
Mike Snitzer67324ea2014-03-21 18:33:41 -04003992 tc->sort_bio_list = RB_ROOT;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003993
Joe Thornber2dd9c252012-03-28 18:41:28 +01003994 if (argc == 3) {
3995 r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
3996 if (r) {
3997 ti->error = "Error opening origin device";
3998 goto bad_origin_dev;
3999 }
4000 tc->origin_dev = origin_dev;
4001 }
4002
Joe Thornber991d9fa2011-10-31 20:21:18 +00004003 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
4004 if (r) {
4005 ti->error = "Error opening pool device";
4006 goto bad_pool_dev;
4007 }
4008 tc->pool_dev = pool_dev;
4009
4010 if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
4011 ti->error = "Invalid device id";
4012 r = -EINVAL;
4013 goto bad_common;
4014 }
4015
4016 pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
4017 if (!pool_md) {
4018 ti->error = "Couldn't get pool mapped device";
4019 r = -EINVAL;
4020 goto bad_common;
4021 }
4022
4023 tc->pool = __pool_table_lookup(pool_md);
4024 if (!tc->pool) {
4025 ti->error = "Couldn't find pool object";
4026 r = -EINVAL;
4027 goto bad_pool_lookup;
4028 }
4029 __pool_inc(tc->pool);
4030
Joe Thornbere49e5822012-07-27 15:08:16 +01004031 if (get_pool_mode(tc->pool) == PM_FAIL) {
4032 ti->error = "Couldn't open thin device, Pool is in fail mode";
Mike Snitzer1acacc02014-02-19 20:32:33 -05004033 r = -EINVAL;
Mike Snitzer80e96c52014-11-07 15:09:46 -05004034 goto bad_pool;
Joe Thornbere49e5822012-07-27 15:08:16 +01004035 }
4036
Joe Thornber991d9fa2011-10-31 20:21:18 +00004037 r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
4038 if (r) {
4039 ti->error = "Couldn't open thin internal device";
Mike Snitzer80e96c52014-11-07 15:09:46 -05004040 goto bad_pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004041 }
4042
Mike Snitzer542f9032012-07-27 15:08:00 +01004043 r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
4044 if (r)
Mike Snitzer80e96c52014-11-07 15:09:46 -05004045 goto bad;
Mike Snitzer542f9032012-07-27 15:08:00 +01004046
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00004047 ti->num_flush_bios = 1;
Joe Thornber16ad3d12012-07-27 15:08:07 +01004048 ti->flush_supported = true;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00004049 ti->per_bio_data_size = sizeof(struct dm_thin_endio_hook);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004050
4051 /* In case the pool supports discards, pass them on. */
Mike Snitzerb60ab992013-09-19 18:49:11 -04004052 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004053 if (tc->pool->pf.discard_enabled) {
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01004054 ti->discards_supported = true;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00004055 ti->num_discard_bios = 1;
Joe Thornber34fbcf62015-04-16 12:58:35 +01004056 ti->split_discard_bios = false;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004057 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004058
Joe Thornber991d9fa2011-10-31 20:21:18 +00004059 mutex_unlock(&dm_thin_pool_table.mutex);
4060
Joe Thornber5e3283e2014-04-08 11:08:41 +01004061 spin_lock_irqsave(&tc->pool->lock, flags);
Mike Snitzer80e96c52014-11-07 15:09:46 -05004062 if (tc->pool->suspended) {
4063 spin_unlock_irqrestore(&tc->pool->lock, flags);
4064 mutex_lock(&dm_thin_pool_table.mutex); /* reacquire for __pool_dec */
4065 ti->error = "Unable to activate thin device while pool is suspended";
4066 r = -EINVAL;
4067 goto bad;
4068 }
Marc Dionne2b94e892014-12-17 07:59:59 -05004069 atomic_set(&tc->refcount, 1);
4070 init_completion(&tc->can_destroy);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004071 list_add_tail_rcu(&tc->list, &tc->pool->active_thins);
Joe Thornber5e3283e2014-04-08 11:08:41 +01004072 spin_unlock_irqrestore(&tc->pool->lock, flags);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004073 /*
4074 * This synchronize_rcu() call is needed here otherwise we risk a
4075 * wake_worker() call finding no bios to process (because the newly
4076 * added tc isn't yet visible). So this reduces latency since we
4077 * aren't then dependent on the periodic commit to wake_worker().
4078 */
4079 synchronize_rcu();
4080
Mike Snitzer80e96c52014-11-07 15:09:46 -05004081 dm_put(pool_md);
4082
Joe Thornber991d9fa2011-10-31 20:21:18 +00004083 return 0;
4084
Mike Snitzer80e96c52014-11-07 15:09:46 -05004085bad:
Mike Snitzer1acacc02014-02-19 20:32:33 -05004086 dm_pool_close_thin_device(tc->td);
Mike Snitzer80e96c52014-11-07 15:09:46 -05004087bad_pool:
Joe Thornber991d9fa2011-10-31 20:21:18 +00004088 __pool_dec(tc->pool);
4089bad_pool_lookup:
4090 dm_put(pool_md);
4091bad_common:
4092 dm_put_device(ti, tc->pool_dev);
4093bad_pool_dev:
Joe Thornber2dd9c252012-03-28 18:41:28 +01004094 if (tc->origin_dev)
4095 dm_put_device(ti, tc->origin_dev);
4096bad_origin_dev:
Joe Thornber991d9fa2011-10-31 20:21:18 +00004097 kfree(tc);
4098out_unlock:
4099 mutex_unlock(&dm_thin_pool_table.mutex);
4100
4101 return r;
4102}
4103
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004104static int thin_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004105{
Kent Overstreet4f024f32013-10-11 15:44:27 -07004106 bio->bi_iter.bi_sector = dm_target_offset(ti, bio->bi_iter.bi_sector);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004107
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004108 return thin_bio_map(ti, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004109}
4110
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004111static int thin_endio(struct dm_target *ti, struct bio *bio, int err)
Joe Thornbereb2aa482012-03-28 18:41:28 +01004112{
4113 unsigned long flags;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00004114 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01004115 struct list_head work;
Mike Snitzera24c2562012-06-03 00:30:00 +01004116 struct dm_thin_new_mapping *m, *tmp;
Joe Thornbereb2aa482012-03-28 18:41:28 +01004117 struct pool *pool = h->tc->pool;
4118
4119 if (h->shared_read_entry) {
4120 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01004121 dm_deferred_entry_dec(h->shared_read_entry, &work);
Joe Thornbereb2aa482012-03-28 18:41:28 +01004122
4123 spin_lock_irqsave(&pool->lock, flags);
4124 list_for_each_entry_safe(m, tmp, &work, list) {
4125 list_del(&m->list);
Joe Thornber50f3c3e2014-06-13 13:57:09 +01004126 __complete_mapping_preparation(m);
Joe Thornbereb2aa482012-03-28 18:41:28 +01004127 }
4128 spin_unlock_irqrestore(&pool->lock, flags);
4129 }
4130
Joe Thornber104655f2012-03-28 18:41:28 +01004131 if (h->all_io_entry) {
4132 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01004133 dm_deferred_entry_dec(h->all_io_entry, &work);
Joe Thornber563af182012-12-21 20:23:31 +00004134 if (!list_empty(&work)) {
4135 spin_lock_irqsave(&pool->lock, flags);
4136 list_for_each_entry_safe(m, tmp, &work, list)
Mike Snitzerdaec3382013-12-11 14:01:20 -05004137 list_add_tail(&m->list, &pool->prepared_discards);
Joe Thornber563af182012-12-21 20:23:31 +00004138 spin_unlock_irqrestore(&pool->lock, flags);
4139 wake_worker(pool);
4140 }
Joe Thornber104655f2012-03-28 18:41:28 +01004141 }
4142
Joe Thornber34fbcf62015-04-16 12:58:35 +01004143 if (h->cell)
4144 cell_defer_no_holder(h->tc, h->cell);
4145
Joe Thornbereb2aa482012-03-28 18:41:28 +01004146 return 0;
4147}
4148
Joe Thornber738211f2014-03-03 15:52:28 +00004149static void thin_presuspend(struct dm_target *ti)
4150{
4151 struct thin_c *tc = ti->private;
4152
4153 if (dm_noflush_suspending(ti))
4154 noflush_work(tc, do_noflush_start);
4155}
4156
Joe Thornber991d9fa2011-10-31 20:21:18 +00004157static void thin_postsuspend(struct dm_target *ti)
4158{
Joe Thornber738211f2014-03-03 15:52:28 +00004159 struct thin_c *tc = ti->private;
4160
4161 /*
4162 * The dm_noflush_suspending flag has been cleared by now, so
4163 * unfortunately we must always run this.
4164 */
4165 noflush_work(tc, do_noflush_stop);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004166}
4167
Joe Thornbere5aea7b2014-06-13 14:47:24 +01004168static int thin_preresume(struct dm_target *ti)
4169{
4170 struct thin_c *tc = ti->private;
4171
4172 if (tc->origin_dev)
4173 tc->origin_size = get_dev_size(tc->origin_dev->bdev);
4174
4175 return 0;
4176}
4177
Joe Thornber991d9fa2011-10-31 20:21:18 +00004178/*
4179 * <nr mapped sectors> <highest mapped sector>
4180 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004181static void thin_status(struct dm_target *ti, status_type_t type,
4182 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004183{
4184 int r;
4185 ssize_t sz = 0;
4186 dm_block_t mapped, highest;
4187 char buf[BDEVNAME_SIZE];
4188 struct thin_c *tc = ti->private;
4189
Joe Thornbere49e5822012-07-27 15:08:16 +01004190 if (get_pool_mode(tc->pool) == PM_FAIL) {
4191 DMEMIT("Fail");
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004192 return;
Joe Thornbere49e5822012-07-27 15:08:16 +01004193 }
4194
Joe Thornber991d9fa2011-10-31 20:21:18 +00004195 if (!tc->td)
4196 DMEMIT("-");
4197 else {
4198 switch (type) {
4199 case STATUSTYPE_INFO:
4200 r = dm_thin_get_mapped_count(tc->td, &mapped);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004201 if (r) {
4202 DMERR("dm_thin_get_mapped_count returned %d", r);
4203 goto err;
4204 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004205
4206 r = dm_thin_get_highest_mapped_block(tc->td, &highest);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004207 if (r < 0) {
4208 DMERR("dm_thin_get_highest_mapped_block returned %d", r);
4209 goto err;
4210 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004211
4212 DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
4213 if (r)
4214 DMEMIT("%llu", ((highest + 1) *
4215 tc->pool->sectors_per_block) - 1);
4216 else
4217 DMEMIT("-");
4218 break;
4219
4220 case STATUSTYPE_TABLE:
4221 DMEMIT("%s %lu",
4222 format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
4223 (unsigned long) tc->dev_id);
Joe Thornber2dd9c252012-03-28 18:41:28 +01004224 if (tc->origin_dev)
4225 DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
Joe Thornber991d9fa2011-10-31 20:21:18 +00004226 break;
4227 }
4228 }
4229
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004230 return;
4231
4232err:
4233 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00004234}
4235
Mike Snitzer36f12ae2014-10-09 15:24:12 -04004236static int thin_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
4237 struct bio_vec *biovec, int max_size)
4238{
4239 struct thin_c *tc = ti->private;
4240 struct request_queue *q = bdev_get_queue(tc->pool_dev->bdev);
4241
4242 if (!q->merge_bvec_fn)
4243 return max_size;
4244
4245 bvm->bi_bdev = tc->pool_dev->bdev;
4246 bvm->bi_sector = dm_target_offset(ti, bvm->bi_sector);
4247
4248 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
4249}
4250
Joe Thornber991d9fa2011-10-31 20:21:18 +00004251static int thin_iterate_devices(struct dm_target *ti,
4252 iterate_devices_callout_fn fn, void *data)
4253{
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004254 sector_t blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004255 struct thin_c *tc = ti->private;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004256 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004257
4258 /*
4259 * We can't call dm_pool_get_data_dev_size() since that blocks. So
4260 * we follow a more convoluted path through to the pool's target.
4261 */
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004262 if (!pool->ti)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004263 return 0; /* nothing is bound */
4264
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004265 blocks = pool->ti->len;
4266 (void) sector_div(blocks, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004267 if (blocks)
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004268 return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004269
4270 return 0;
4271}
4272
Joe Thornber34fbcf62015-04-16 12:58:35 +01004273static void thin_io_hints(struct dm_target *ti, struct queue_limits *limits)
4274{
4275 struct thin_c *tc = ti->private;
4276 struct pool *pool = tc->pool;
4277
4278 limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
4279 limits->max_discard_sectors = 2048 * 1024 * 16; /* 16G */
4280}
4281
Joe Thornber991d9fa2011-10-31 20:21:18 +00004282static struct target_type thin_target = {
4283 .name = "thin",
Mike Snitzere4c78e22015-07-15 11:40:24 -04004284 .version = {1, 16, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00004285 .module = THIS_MODULE,
4286 .ctr = thin_ctr,
4287 .dtr = thin_dtr,
4288 .map = thin_map,
Joe Thornbereb2aa482012-03-28 18:41:28 +01004289 .end_io = thin_endio,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01004290 .preresume = thin_preresume,
Joe Thornber738211f2014-03-03 15:52:28 +00004291 .presuspend = thin_presuspend,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004292 .postsuspend = thin_postsuspend,
4293 .status = thin_status,
Mike Snitzer36f12ae2014-10-09 15:24:12 -04004294 .merge = thin_merge,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004295 .iterate_devices = thin_iterate_devices,
Joe Thornber34fbcf62015-04-16 12:58:35 +01004296 .io_hints = thin_io_hints,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004297};
4298
4299/*----------------------------------------------------------------*/
4300
4301static int __init dm_thin_init(void)
4302{
4303 int r;
4304
4305 pool_table_init();
4306
4307 r = dm_register_target(&thin_target);
4308 if (r)
4309 return r;
4310
4311 r = dm_register_target(&pool_target);
4312 if (r)
Mike Snitzera24c2562012-06-03 00:30:00 +01004313 goto bad_pool_target;
4314
4315 r = -ENOMEM;
4316
Mike Snitzera24c2562012-06-03 00:30:00 +01004317 _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
4318 if (!_new_mapping_cache)
4319 goto bad_new_mapping_cache;
4320
Mike Snitzera24c2562012-06-03 00:30:00 +01004321 return 0;
4322
Mike Snitzera24c2562012-06-03 00:30:00 +01004323bad_new_mapping_cache:
Mike Snitzera24c2562012-06-03 00:30:00 +01004324 dm_unregister_target(&pool_target);
4325bad_pool_target:
4326 dm_unregister_target(&thin_target);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004327
4328 return r;
4329}
4330
4331static void dm_thin_exit(void)
4332{
4333 dm_unregister_target(&thin_target);
4334 dm_unregister_target(&pool_target);
Mike Snitzera24c2562012-06-03 00:30:00 +01004335
Mike Snitzera24c2562012-06-03 00:30:00 +01004336 kmem_cache_destroy(_new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004337}
4338
4339module_init(dm_thin_init);
4340module_exit(dm_thin_exit);
4341
Mike Snitzer80c57892014-05-20 13:38:33 -04004342module_param_named(no_space_timeout, no_space_timeout_secs, uint, S_IRUGO | S_IWUSR);
4343MODULE_PARM_DESC(no_space_timeout, "Out of data space queue IO timeout in seconds");
4344
Alasdair G Kergon7cab8bf2012-05-12 01:43:19 +01004345MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
Joe Thornber991d9fa2011-10-31 20:21:18 +00004346MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
4347MODULE_LICENSE("GPL");