blob: 5997d6808b57adfa1e71368ef658adc23c7bb3c9 [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"
Joe Thornber742c8fd2016-10-21 10:06:40 -04008#include "dm-bio-prison-v1.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;
Mike Snitzerc3667cc2016-03-10 11:31:35 -0500238 bool out_of_data_space:1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000239
Mike Snitzer44feb382012-10-12 21:02:10 +0100240 struct dm_bio_prison *prison;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000241 struct dm_kcopyd_client *copier;
242
Mike Snitzer72d711c2018-05-22 18:26:20 -0400243 struct work_struct worker;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000244 struct workqueue_struct *wq;
Joe Thornber7d327fe2014-10-06 15:45:59 +0100245 struct throttle throttle;
Joe Thornber905e51b2012-03-28 18:41:27 +0100246 struct delayed_work waker;
Joe Thornber85ad6432014-05-09 15:59:38 +0100247 struct delayed_work no_space_timeout;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000248
Joe Thornber905e51b2012-03-28 18:41:27 +0100249 unsigned long last_commit_jiffies;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100250 unsigned ref_count;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000251
252 spinlock_t lock;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000253 struct bio_list deferred_flush_bios;
254 struct list_head prepared_mappings;
Joe Thornber104655f2012-03-28 18:41:28 +0100255 struct list_head prepared_discards;
Joe Thornber2a0fbff2016-07-01 14:00:02 +0100256 struct list_head prepared_discards_pt2;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400257 struct list_head active_thins;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000258
Mike Snitzer44feb382012-10-12 21:02:10 +0100259 struct dm_deferred_set *shared_read_ds;
260 struct dm_deferred_set *all_io_ds;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000261
Mike Snitzera24c2562012-06-03 00:30:00 +0100262 struct dm_thin_new_mapping *next_mapping;
Joe Thornbere49e5822012-07-27 15:08:16 +0100263
264 process_bio_fn process_bio;
265 process_bio_fn process_discard;
266
Joe Thornbera374bb22014-10-10 13:43:14 +0100267 process_cell_fn process_cell;
268 process_cell_fn process_discard_cell;
269
Joe Thornbere49e5822012-07-27 15:08:16 +0100270 process_mapping_fn process_prepared_mapping;
271 process_mapping_fn process_prepared_discard;
Joe Thornber2a0fbff2016-07-01 14:00:02 +0100272 process_mapping_fn process_prepared_discard_pt2;
Joe Thornberac4c3f32014-10-10 16:42:10 +0100273
Joe Thornbera822c832015-07-03 10:22:42 +0100274 struct dm_bio_prison_cell **cell_sort_array;
Mike Snitzer72d711c2018-05-22 18:26:20 -0400275
276 mempool_t mapping_pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000277};
278
Joe Thornbere49e5822012-07-27 15:08:16 +0100279static enum pool_mode get_pool_mode(struct pool *pool);
Joe Thornberb5330652013-12-04 19:51:33 -0500280static void metadata_operation_failed(struct pool *pool, const char *op, int r);
Joe Thornbere49e5822012-07-27 15:08:16 +0100281
Joe Thornber991d9fa2011-10-31 20:21:18 +0000282/*
283 * Target context for a pool.
284 */
285struct pool_c {
286 struct dm_target *ti;
287 struct pool *pool;
288 struct dm_dev *data_dev;
289 struct dm_dev *metadata_dev;
290 struct dm_target_callbacks callbacks;
291
292 dm_block_t low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +0100293 struct pool_features requested_pf; /* Features requested during table load */
294 struct pool_features adjusted_pf; /* Features used after adjusting for constituent devices */
Joe Thornber991d9fa2011-10-31 20:21:18 +0000295};
296
297/*
298 * Target context for a thin.
299 */
300struct thin_c {
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400301 struct list_head list;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000302 struct dm_dev *pool_dev;
Joe Thornber2dd9c252012-03-28 18:41:28 +0100303 struct dm_dev *origin_dev;
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100304 sector_t origin_size;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000305 dm_thin_id dev_id;
306
307 struct pool *pool;
308 struct dm_thin_device *td;
Mike Snitzer583024d2014-10-28 20:58:45 -0400309 struct mapped_device *thin_md;
310
Joe Thornber738211f2014-03-03 15:52:28 +0000311 bool requeue_mode:1;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400312 spinlock_t lock;
Joe Thornbera374bb22014-10-10 13:43:14 +0100313 struct list_head deferred_cells;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400314 struct bio_list deferred_bio_list;
315 struct bio_list retry_on_resume_list;
Mike Snitzer67324ea2014-03-21 18:33:41 -0400316 struct rb_root sort_bio_list; /* sorted list of deferred bios */
Joe Thornberb10ebd32014-04-08 11:29:01 +0100317
318 /*
319 * Ensures the thin is not destroyed until the worker has finished
320 * iterating the active_thins list.
321 */
322 atomic_t refcount;
323 struct completion can_destroy;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000324};
325
326/*----------------------------------------------------------------*/
327
Joe Thornber34fbcf62015-04-16 12:58:35 +0100328static bool block_size_is_power_of_two(struct pool *pool)
329{
330 return pool->sectors_per_block_shift >= 0;
331}
332
333static sector_t block_to_sectors(struct pool *pool, dm_block_t b)
334{
335 return block_size_is_power_of_two(pool) ?
336 (b << pool->sectors_per_block_shift) :
337 (b * pool->sectors_per_block);
338}
339
Joe Thornber202bae52016-05-04 14:12:42 -0400340/*----------------------------------------------------------------*/
341
342struct discard_op {
343 struct thin_c *tc;
344 struct blk_plug plug;
345 struct bio *parent_bio;
346 struct bio *bio;
347};
348
349static void begin_discard(struct discard_op *op, struct thin_c *tc, struct bio *parent)
Joe Thornber34fbcf62015-04-16 12:58:35 +0100350{
Joe Thornber202bae52016-05-04 14:12:42 -0400351 BUG_ON(!parent);
352
353 op->tc = tc;
354 blk_start_plug(&op->plug);
355 op->parent_bio = parent;
356 op->bio = NULL;
357}
358
359static int issue_discard(struct discard_op *op, dm_block_t data_b, dm_block_t data_e)
360{
361 struct thin_c *tc = op->tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100362 sector_t s = block_to_sectors(tc->pool, data_b);
363 sector_t len = block_to_sectors(tc->pool, data_e - data_b);
364
Joe Thornber202bae52016-05-04 14:12:42 -0400365 return __blkdev_issue_discard(tc->pool_dev->bdev, s, len,
Mike Christie469e3212016-06-05 14:31:49 -0500366 GFP_NOWAIT, 0, &op->bio);
Joe Thornber202bae52016-05-04 14:12:42 -0400367}
368
369static void end_discard(struct discard_op *op, int r)
370{
371 if (op->bio) {
372 /*
373 * Even if one of the calls to issue_discard failed, we
374 * need to wait for the chain to complete.
375 */
376 bio_chain(op->bio, op->parent_bio);
Mike Christiee6047142016-06-05 14:32:04 -0500377 bio_set_op_attrs(op->bio, REQ_OP_DISCARD, 0);
Mike Christie4e49ea42016-06-05 14:31:41 -0500378 submit_bio(op->bio);
Mike Snitzer3dba53a92016-05-02 20:16:21 -0400379 }
Mike Snitzer3dba53a92016-05-02 20:16:21 -0400380
Joe Thornber202bae52016-05-04 14:12:42 -0400381 blk_finish_plug(&op->plug);
382
383 /*
384 * Even if r is set, there could be sub discards in flight that we
385 * need to wait for.
386 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200387 if (r && !op->parent_bio->bi_status)
388 op->parent_bio->bi_status = errno_to_blk_status(r);
Joe Thornber202bae52016-05-04 14:12:42 -0400389 bio_endio(op->parent_bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100390}
391
392/*----------------------------------------------------------------*/
393
Joe Thornber025b9682013-03-01 22:45:50 +0000394/*
395 * wake_worker() is used when new work is queued and when pool_resume is
396 * ready to continue deferred IO processing.
397 */
398static void wake_worker(struct pool *pool)
399{
400 queue_work(pool->wq, &pool->worker);
401}
402
403/*----------------------------------------------------------------*/
404
Joe Thornber6beca5e2013-03-01 22:45:50 +0000405static int bio_detain(struct pool *pool, struct dm_cell_key *key, struct bio *bio,
406 struct dm_bio_prison_cell **cell_result)
407{
408 int r;
409 struct dm_bio_prison_cell *cell_prealloc;
410
411 /*
412 * Allocate a cell from the prison's mempool.
413 * This might block but it can't fail.
414 */
415 cell_prealloc = dm_bio_prison_alloc_cell(pool->prison, GFP_NOIO);
416
417 r = dm_bio_detain(pool->prison, key, bio, cell_prealloc, cell_result);
418 if (r)
419 /*
420 * We reused an old cell; we can get rid of
421 * the new one.
422 */
423 dm_bio_prison_free_cell(pool->prison, cell_prealloc);
424
425 return r;
426}
427
428static void cell_release(struct pool *pool,
429 struct dm_bio_prison_cell *cell,
430 struct bio_list *bios)
431{
432 dm_cell_release(pool->prison, cell, bios);
433 dm_bio_prison_free_cell(pool->prison, cell);
434}
435
Joe Thornber2d759a42014-10-10 15:27:16 +0100436static void cell_visit_release(struct pool *pool,
437 void (*fn)(void *, struct dm_bio_prison_cell *),
438 void *context,
439 struct dm_bio_prison_cell *cell)
440{
441 dm_cell_visit_release(pool->prison, fn, context, cell);
442 dm_bio_prison_free_cell(pool->prison, cell);
443}
444
Joe Thornber6beca5e2013-03-01 22:45:50 +0000445static void cell_release_no_holder(struct pool *pool,
446 struct dm_bio_prison_cell *cell,
447 struct bio_list *bios)
448{
449 dm_cell_release_no_holder(pool->prison, cell, bios);
450 dm_bio_prison_free_cell(pool->prison, cell);
451}
452
Mike Snitzeraf918052014-05-22 14:32:51 -0400453static void cell_error_with_code(struct pool *pool,
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200454 struct dm_bio_prison_cell *cell, blk_status_t error_code)
Joe Thornber6beca5e2013-03-01 22:45:50 +0000455{
Mike Snitzeraf918052014-05-22 14:32:51 -0400456 dm_cell_error(pool->prison, cell, error_code);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000457 dm_bio_prison_free_cell(pool->prison, cell);
458}
459
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200460static blk_status_t get_pool_io_error_code(struct pool *pool)
Mike Snitzerc3667cc2016-03-10 11:31:35 -0500461{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200462 return pool->out_of_data_space ? BLK_STS_NOSPC : BLK_STS_IOERR;
Mike Snitzerc3667cc2016-03-10 11:31:35 -0500463}
464
Mike Snitzeraf918052014-05-22 14:32:51 -0400465static void cell_error(struct pool *pool, struct dm_bio_prison_cell *cell)
466{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200467 cell_error_with_code(pool, cell, get_pool_io_error_code(pool));
Mike Snitzeraf918052014-05-22 14:32:51 -0400468}
469
Joe Thornbera374bb22014-10-10 13:43:14 +0100470static void cell_success(struct pool *pool, struct dm_bio_prison_cell *cell)
471{
472 cell_error_with_code(pool, cell, 0);
473}
474
475static void cell_requeue(struct pool *pool, struct dm_bio_prison_cell *cell)
476{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200477 cell_error_with_code(pool, cell, BLK_STS_DM_REQUEUE);
Joe Thornbera374bb22014-10-10 13:43:14 +0100478}
479
Joe Thornber6beca5e2013-03-01 22:45:50 +0000480/*----------------------------------------------------------------*/
481
Joe Thornber991d9fa2011-10-31 20:21:18 +0000482/*
483 * A global list of pools that uses a struct mapped_device as a key.
484 */
485static struct dm_thin_pool_table {
486 struct mutex mutex;
487 struct list_head pools;
488} dm_thin_pool_table;
489
490static void pool_table_init(void)
491{
492 mutex_init(&dm_thin_pool_table.mutex);
493 INIT_LIST_HEAD(&dm_thin_pool_table.pools);
494}
495
Mike Snitzerd5ffebd2018-01-05 21:17:20 -0500496static void pool_table_exit(void)
497{
498 mutex_destroy(&dm_thin_pool_table.mutex);
499}
500
Joe Thornber991d9fa2011-10-31 20:21:18 +0000501static void __pool_table_insert(struct pool *pool)
502{
503 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
504 list_add(&pool->list, &dm_thin_pool_table.pools);
505}
506
507static void __pool_table_remove(struct pool *pool)
508{
509 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
510 list_del(&pool->list);
511}
512
513static struct pool *__pool_table_lookup(struct mapped_device *md)
514{
515 struct pool *pool = NULL, *tmp;
516
517 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
518
519 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
520 if (tmp->pool_md == md) {
521 pool = tmp;
522 break;
523 }
524 }
525
526 return pool;
527}
528
529static struct pool *__pool_table_lookup_metadata_dev(struct block_device *md_dev)
530{
531 struct pool *pool = NULL, *tmp;
532
533 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
534
535 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
536 if (tmp->md_dev == md_dev) {
537 pool = tmp;
538 break;
539 }
540 }
541
542 return pool;
543}
544
545/*----------------------------------------------------------------*/
546
Mike Snitzera24c2562012-06-03 00:30:00 +0100547struct dm_thin_endio_hook {
Joe Thornbereb2aa482012-03-28 18:41:28 +0100548 struct thin_c *tc;
Mike Snitzer44feb382012-10-12 21:02:10 +0100549 struct dm_deferred_entry *shared_read_entry;
550 struct dm_deferred_entry *all_io_entry;
Mike Snitzera24c2562012-06-03 00:30:00 +0100551 struct dm_thin_new_mapping *overwrite_mapping;
Mike Snitzer67324ea2014-03-21 18:33:41 -0400552 struct rb_node rb_node;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100553 struct dm_bio_prison_cell *cell;
Joe Thornbereb2aa482012-03-28 18:41:28 +0100554};
555
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400556static void __merge_bio_list(struct bio_list *bios, struct bio_list *master)
557{
558 bio_list_merge(bios, master);
559 bio_list_init(master);
560}
561
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200562static void error_bio_list(struct bio_list *bios, blk_status_t error)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000563{
564 struct bio *bio;
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400565
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200566 while ((bio = bio_list_pop(bios))) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200567 bio->bi_status = error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200568 bio_endio(bio);
569 }
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400570}
571
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200572static void error_thin_bio_list(struct thin_c *tc, struct bio_list *master,
573 blk_status_t error)
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400574{
Joe Thornber991d9fa2011-10-31 20:21:18 +0000575 struct bio_list bios;
Joe Thornber18adc572014-03-03 15:46:42 +0000576 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000577
578 bio_list_init(&bios);
Joe Thornber18adc572014-03-03 15:46:42 +0000579
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400580 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400581 __merge_bio_list(&bios, master);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400582 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000583
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400584 error_bio_list(&bios, error);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000585}
586
Joe Thornbera374bb22014-10-10 13:43:14 +0100587static void requeue_deferred_cells(struct thin_c *tc)
588{
589 struct pool *pool = tc->pool;
590 unsigned long flags;
591 struct list_head cells;
592 struct dm_bio_prison_cell *cell, *tmp;
593
594 INIT_LIST_HEAD(&cells);
595
596 spin_lock_irqsave(&tc->lock, flags);
597 list_splice_init(&tc->deferred_cells, &cells);
598 spin_unlock_irqrestore(&tc->lock, flags);
599
600 list_for_each_entry_safe(cell, tmp, &cells, user_list)
601 cell_requeue(pool, cell);
602}
603
Joe Thornber991d9fa2011-10-31 20:21:18 +0000604static void requeue_io(struct thin_c *tc)
605{
Joe Thornber3e1a0692014-03-03 16:03:26 +0000606 struct bio_list bios;
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400607 unsigned long flags;
Joe Thornber3e1a0692014-03-03 16:03:26 +0000608
609 bio_list_init(&bios);
610
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400611 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400612 __merge_bio_list(&bios, &tc->deferred_bio_list);
613 __merge_bio_list(&bios, &tc->retry_on_resume_list);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400614 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber3e1a0692014-03-03 16:03:26 +0000615
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200616 error_bio_list(&bios, BLK_STS_DM_REQUEUE);
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400617 requeue_deferred_cells(tc);
Joe Thornber3e1a0692014-03-03 16:03:26 +0000618}
619
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200620static void error_retry_list_with_code(struct pool *pool, blk_status_t error)
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400621{
622 struct thin_c *tc;
623
624 rcu_read_lock();
625 list_for_each_entry_rcu(tc, &pool->active_thins, list)
Mike Snitzer0a927c22015-07-21 13:20:46 -0400626 error_thin_bio_list(tc, &tc->retry_on_resume_list, error);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400627 rcu_read_unlock();
628}
629
Mike Snitzer0a927c22015-07-21 13:20:46 -0400630static void error_retry_list(struct pool *pool)
631{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200632 error_retry_list_with_code(pool, get_pool_io_error_code(pool));
Mike Snitzer0a927c22015-07-21 13:20:46 -0400633}
634
Joe Thornber991d9fa2011-10-31 20:21:18 +0000635/*
636 * This section of code contains the logic for processing a thin device's IO.
637 * Much of the code depends on pool object resources (lists, workqueues, etc)
638 * but most is exclusively called from the thin target rather than the thin-pool
639 * target.
640 */
641
642static dm_block_t get_bio_block(struct thin_c *tc, struct bio *bio)
643{
Mike Snitzer58f77a22013-03-01 22:45:45 +0000644 struct pool *pool = tc->pool;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700645 sector_t block_nr = bio->bi_iter.bi_sector;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100646
Mike Snitzer58f77a22013-03-01 22:45:45 +0000647 if (block_size_is_power_of_two(pool))
648 block_nr >>= pool->sectors_per_block_shift;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100649 else
Mike Snitzer58f77a22013-03-01 22:45:45 +0000650 (void) sector_div(block_nr, pool->sectors_per_block);
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100651
652 return block_nr;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000653}
654
Joe Thornber34fbcf62015-04-16 12:58:35 +0100655/*
656 * Returns the _complete_ blocks that this bio covers.
657 */
658static void get_bio_block_range(struct thin_c *tc, struct bio *bio,
659 dm_block_t *begin, dm_block_t *end)
660{
661 struct pool *pool = tc->pool;
662 sector_t b = bio->bi_iter.bi_sector;
663 sector_t e = b + (bio->bi_iter.bi_size >> SECTOR_SHIFT);
664
665 b += pool->sectors_per_block - 1ull; /* so we round up */
666
667 if (block_size_is_power_of_two(pool)) {
668 b >>= pool->sectors_per_block_shift;
669 e >>= pool->sectors_per_block_shift;
670 } else {
671 (void) sector_div(b, pool->sectors_per_block);
672 (void) sector_div(e, pool->sectors_per_block);
673 }
674
675 if (e < b)
676 /* Can happen if the bio is within a single block. */
677 e = b;
678
679 *begin = b;
680 *end = e;
681}
682
Joe Thornber991d9fa2011-10-31 20:21:18 +0000683static void remap(struct thin_c *tc, struct bio *bio, dm_block_t block)
684{
685 struct pool *pool = tc->pool;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700686 sector_t bi_sector = bio->bi_iter.bi_sector;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000687
Christoph Hellwig74d46992017-08-23 19:10:32 +0200688 bio_set_dev(bio, tc->pool_dev->bdev);
Mike Snitzer58f77a22013-03-01 22:45:45 +0000689 if (block_size_is_power_of_two(pool))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700690 bio->bi_iter.bi_sector =
691 (block << pool->sectors_per_block_shift) |
692 (bi_sector & (pool->sectors_per_block - 1));
Mike Snitzer58f77a22013-03-01 22:45:45 +0000693 else
Kent Overstreet4f024f32013-10-11 15:44:27 -0700694 bio->bi_iter.bi_sector = (block * pool->sectors_per_block) +
Mike Snitzer58f77a22013-03-01 22:45:45 +0000695 sector_div(bi_sector, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000696}
697
Joe Thornber2dd9c252012-03-28 18:41:28 +0100698static void remap_to_origin(struct thin_c *tc, struct bio *bio)
699{
Christoph Hellwig74d46992017-08-23 19:10:32 +0200700 bio_set_dev(bio, tc->origin_dev->bdev);
Joe Thornber2dd9c252012-03-28 18:41:28 +0100701}
702
Joe Thornber4afdd682012-07-27 15:08:14 +0100703static int bio_triggers_commit(struct thin_c *tc, struct bio *bio)
704{
Christoph Hellwigf73f44e2017-01-27 08:30:47 -0700705 return op_is_flush(bio->bi_opf) &&
Joe Thornber4afdd682012-07-27 15:08:14 +0100706 dm_thin_changed_this_transaction(tc->td);
707}
708
Joe Thornbere8088072012-12-21 20:23:31 +0000709static void inc_all_io_entry(struct pool *pool, struct bio *bio)
710{
711 struct dm_thin_endio_hook *h;
712
Mike Christiee6047142016-06-05 14:32:04 -0500713 if (bio_op(bio) == REQ_OP_DISCARD)
Joe Thornbere8088072012-12-21 20:23:31 +0000714 return;
715
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000716 h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbere8088072012-12-21 20:23:31 +0000717 h->all_io_entry = dm_deferred_entry_inc(pool->all_io_ds);
718}
719
Joe Thornber2dd9c252012-03-28 18:41:28 +0100720static void issue(struct thin_c *tc, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000721{
722 struct pool *pool = tc->pool;
723 unsigned long flags;
724
Joe Thornbere49e5822012-07-27 15:08:16 +0100725 if (!bio_triggers_commit(tc, bio)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000726 generic_make_request(bio);
Joe Thornbere49e5822012-07-27 15:08:16 +0100727 return;
728 }
729
730 /*
731 * Complete bio with an error if earlier I/O caused changes to
732 * the metadata that can't be committed e.g, due to I/O errors
733 * on the metadata device.
734 */
735 if (dm_thin_aborted_changes(tc->td)) {
736 bio_io_error(bio);
737 return;
738 }
739
740 /*
741 * Batch together any bios that trigger commits and then issue a
742 * single commit for them in process_deferred_bios().
743 */
744 spin_lock_irqsave(&pool->lock, flags);
745 bio_list_add(&pool->deferred_flush_bios, bio);
746 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000747}
748
Joe Thornber2dd9c252012-03-28 18:41:28 +0100749static void remap_to_origin_and_issue(struct thin_c *tc, struct bio *bio)
750{
751 remap_to_origin(tc, bio);
752 issue(tc, bio);
753}
754
755static void remap_and_issue(struct thin_c *tc, struct bio *bio,
756 dm_block_t block)
757{
758 remap(tc, bio, block);
759 issue(tc, bio);
760}
761
Joe Thornber991d9fa2011-10-31 20:21:18 +0000762/*----------------------------------------------------------------*/
763
764/*
765 * Bio endio functions.
766 */
Mike Snitzera24c2562012-06-03 00:30:00 +0100767struct dm_thin_new_mapping {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000768 struct list_head list;
769
Mike Snitzer7f214662013-12-17 13:43:31 -0500770 bool pass_discard:1;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100771 bool maybe_shared:1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000772
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100773 /*
774 * Track quiescing, copying and zeroing preparation actions. When this
775 * counter hits zero the block is prepared and can be inserted into the
776 * btree.
777 */
778 atomic_t prepare_actions;
779
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200780 blk_status_t status;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000781 struct thin_c *tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100782 dm_block_t virt_begin, virt_end;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000783 dm_block_t data_block;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100784 struct dm_bio_prison_cell *cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000785
786 /*
787 * If the bio covers the whole area of a block then we can avoid
788 * zeroing or copying. Instead this bio is hooked. The bio will
789 * still be in the cell, so care has to be taken to avoid issuing
790 * the bio twice.
791 */
792 struct bio *bio;
793 bio_end_io_t *saved_bi_end_io;
794};
795
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100796static void __complete_mapping_preparation(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000797{
798 struct pool *pool = m->tc->pool;
799
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100800 if (atomic_dec_and_test(&m->prepare_actions)) {
Mike Snitzerdaec3382013-12-11 14:01:20 -0500801 list_add_tail(&m->list, &pool->prepared_mappings);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000802 wake_worker(pool);
803 }
804}
805
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100806static void complete_mapping_preparation(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000807{
808 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000809 struct pool *pool = m->tc->pool;
810
Joe Thornber991d9fa2011-10-31 20:21:18 +0000811 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100812 __complete_mapping_preparation(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000813 spin_unlock_irqrestore(&pool->lock, flags);
814}
815
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100816static void copy_complete(int read_err, unsigned long write_err, void *context)
817{
818 struct dm_thin_new_mapping *m = context;
819
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200820 m->status = read_err || write_err ? BLK_STS_IOERR : 0;
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100821 complete_mapping_preparation(m);
822}
823
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200824static void overwrite_endio(struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000825{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000826 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100827 struct dm_thin_new_mapping *m = h->overwrite_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000828
Mike Snitzer8b908f82015-05-13 17:53:13 -0400829 bio->bi_end_io = m->saved_bi_end_io;
830
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200831 m->status = bio->bi_status;
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100832 complete_mapping_preparation(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000833}
834
Joe Thornber991d9fa2011-10-31 20:21:18 +0000835/*----------------------------------------------------------------*/
836
837/*
838 * Workqueue.
839 */
840
841/*
842 * Prepared mapping jobs.
843 */
844
845/*
Joe Thornber2d759a42014-10-10 15:27:16 +0100846 * This sends the bios in the cell, except the original holder, back
847 * to the deferred_bios list.
Joe Thornber991d9fa2011-10-31 20:21:18 +0000848 */
Joe Thornberf286ba02012-12-21 20:23:33 +0000849static void cell_defer_no_holder(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000850{
Joe Thornber991d9fa2011-10-31 20:21:18 +0000851 struct pool *pool = tc->pool;
852 unsigned long flags;
853
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400854 spin_lock_irqsave(&tc->lock, flags);
855 cell_release_no_holder(pool, cell, &tc->deferred_bio_list);
856 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000857
858 wake_worker(pool);
859}
860
Joe Thornbera374bb22014-10-10 13:43:14 +0100861static void thin_defer_bio(struct thin_c *tc, struct bio *bio);
862
Joe Thornber2d759a42014-10-10 15:27:16 +0100863struct remap_info {
864 struct thin_c *tc;
865 struct bio_list defer_bios;
866 struct bio_list issue_bios;
867};
868
869static void __inc_remap_and_issue_cell(void *context,
870 struct dm_bio_prison_cell *cell)
871{
872 struct remap_info *info = context;
873 struct bio *bio;
874
875 while ((bio = bio_list_pop(&cell->bios))) {
Christoph Hellwigf73f44e2017-01-27 08:30:47 -0700876 if (op_is_flush(bio->bi_opf) || bio_op(bio) == REQ_OP_DISCARD)
Joe Thornber2d759a42014-10-10 15:27:16 +0100877 bio_list_add(&info->defer_bios, bio);
878 else {
879 inc_all_io_entry(info->tc->pool, bio);
880
881 /*
882 * We can't issue the bios with the bio prison lock
883 * held, so we add them to a list to issue on
884 * return from this function.
885 */
886 bio_list_add(&info->issue_bios, bio);
887 }
888 }
889}
890
Joe Thornbera374bb22014-10-10 13:43:14 +0100891static void inc_remap_and_issue_cell(struct thin_c *tc,
892 struct dm_bio_prison_cell *cell,
893 dm_block_t block)
894{
895 struct bio *bio;
Joe Thornber2d759a42014-10-10 15:27:16 +0100896 struct remap_info info;
Joe Thornbera374bb22014-10-10 13:43:14 +0100897
Joe Thornber2d759a42014-10-10 15:27:16 +0100898 info.tc = tc;
899 bio_list_init(&info.defer_bios);
900 bio_list_init(&info.issue_bios);
Joe Thornbera374bb22014-10-10 13:43:14 +0100901
Joe Thornber2d759a42014-10-10 15:27:16 +0100902 /*
903 * We have to be careful to inc any bios we're about to issue
904 * before the cell is released, and avoid a race with new bios
905 * being added to the cell.
906 */
907 cell_visit_release(tc->pool, __inc_remap_and_issue_cell,
908 &info, cell);
909
910 while ((bio = bio_list_pop(&info.defer_bios)))
911 thin_defer_bio(tc, bio);
912
913 while ((bio = bio_list_pop(&info.issue_bios)))
914 remap_and_issue(info.tc, bio, block);
Joe Thornbera374bb22014-10-10 13:43:14 +0100915}
916
Joe Thornbere49e5822012-07-27 15:08:16 +0100917static void process_prepared_mapping_fail(struct dm_thin_new_mapping *m)
918{
Joe Thornber6beca5e2013-03-01 22:45:50 +0000919 cell_error(m->tc->pool, m->cell);
Joe Thornbere49e5822012-07-27 15:08:16 +0100920 list_del(&m->list);
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400921 mempool_free(m, &m->tc->pool->mapping_pool);
Joe Thornbere49e5822012-07-27 15:08:16 +0100922}
Joe Thornber025b9682013-03-01 22:45:50 +0000923
Mike Snitzera24c2562012-06-03 00:30:00 +0100924static void process_prepared_mapping(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000925{
926 struct thin_c *tc = m->tc;
Joe Thornber6beca5e2013-03-01 22:45:50 +0000927 struct pool *pool = tc->pool;
Mike Snitzer8b908f82015-05-13 17:53:13 -0400928 struct bio *bio = m->bio;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000929 int r;
930
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200931 if (m->status) {
Joe Thornber6beca5e2013-03-01 22:45:50 +0000932 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100933 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000934 }
935
936 /*
937 * Commit the prepared block into the mapping btree.
938 * Any I/O for this block arriving after this point will get
939 * remapped to it directly.
940 */
Joe Thornber34fbcf62015-04-16 12:58:35 +0100941 r = dm_thin_insert_block(tc->td, m->virt_begin, m->data_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000942 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -0500943 metadata_operation_failed(pool, "dm_thin_insert_block", r);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000944 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100945 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000946 }
947
948 /*
949 * Release any bios held while the block was being provisioned.
950 * If we are processing a write bio that completely covers the block,
951 * we already processed it so can ignore it now when processing
952 * the bios in the cell.
953 */
954 if (bio) {
Joe Thornber2d759a42014-10-10 15:27:16 +0100955 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200956 bio_endio(bio);
Joe Thornber2d759a42014-10-10 15:27:16 +0100957 } else {
958 inc_all_io_entry(tc->pool, m->cell->holder);
959 remap_and_issue(tc, m->cell->holder, m->data_block);
960 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
961 }
Joe Thornber991d9fa2011-10-31 20:21:18 +0000962
Joe Thornber905386f2012-07-27 15:08:05 +0100963out:
Joe Thornber991d9fa2011-10-31 20:21:18 +0000964 list_del(&m->list);
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400965 mempool_free(m, &pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000966}
967
Joe Thornber34fbcf62015-04-16 12:58:35 +0100968/*----------------------------------------------------------------*/
969
970static void free_discard_mapping(struct dm_thin_new_mapping *m)
971{
972 struct thin_c *tc = m->tc;
973 if (m->cell)
974 cell_defer_no_holder(tc, m->cell);
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400975 mempool_free(m, &tc->pool->mapping_pool);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100976}
977
Joe Thornbere49e5822012-07-27 15:08:16 +0100978static void process_prepared_discard_fail(struct dm_thin_new_mapping *m)
Joe Thornber104655f2012-03-28 18:41:28 +0100979{
Joe Thornbere49e5822012-07-27 15:08:16 +0100980 bio_io_error(m->bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100981 free_discard_mapping(m);
Joe Thornbere49e5822012-07-27 15:08:16 +0100982}
Joe Thornber104655f2012-03-28 18:41:28 +0100983
Joe Thornber34fbcf62015-04-16 12:58:35 +0100984static void process_prepared_discard_success(struct dm_thin_new_mapping *m)
Joe Thornbere49e5822012-07-27 15:08:16 +0100985{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200986 bio_endio(m->bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100987 free_discard_mapping(m);
Joe Thornber104655f2012-03-28 18:41:28 +0100988}
989
Joe Thornber34fbcf62015-04-16 12:58:35 +0100990static void process_prepared_discard_no_passdown(struct dm_thin_new_mapping *m)
Joe Thornbere49e5822012-07-27 15:08:16 +0100991{
992 int r;
993 struct thin_c *tc = m->tc;
994
Joe Thornber34fbcf62015-04-16 12:58:35 +0100995 r = dm_thin_remove_range(tc->td, m->cell->key.block_begin, m->cell->key.block_end);
996 if (r) {
997 metadata_operation_failed(tc->pool, "dm_thin_remove_range", r);
998 bio_io_error(m->bio);
999 } else
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001000 bio_endio(m->bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001001
Joe Thornber34fbcf62015-04-16 12:58:35 +01001002 cell_defer_no_holder(tc, m->cell);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001003 mempool_free(m, &tc->pool->mapping_pool);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001004}
1005
Joe Thornber202bae52016-05-04 14:12:42 -04001006/*----------------------------------------------------------------*/
1007
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001008static void passdown_double_checking_shared_status(struct dm_thin_new_mapping *m,
1009 struct bio *discard_parent)
Joe Thornber34fbcf62015-04-16 12:58:35 +01001010{
1011 /*
1012 * We've already unmapped this range of blocks, but before we
1013 * passdown we have to check that these blocks are now unused.
1014 */
Joe Thornber202bae52016-05-04 14:12:42 -04001015 int r = 0;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001016 bool used = true;
1017 struct thin_c *tc = m->tc;
1018 struct pool *pool = tc->pool;
1019 dm_block_t b = m->data_block, e, end = m->data_block + m->virt_end - m->virt_begin;
Joe Thornber202bae52016-05-04 14:12:42 -04001020 struct discard_op op;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001021
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001022 begin_discard(&op, tc, discard_parent);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001023 while (b != end) {
1024 /* find start of unmapped run */
1025 for (; b < end; b++) {
1026 r = dm_pool_block_is_used(pool->pmd, b, &used);
1027 if (r)
Joe Thornber202bae52016-05-04 14:12:42 -04001028 goto out;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001029
1030 if (!used)
1031 break;
1032 }
1033
1034 if (b == end)
1035 break;
1036
1037 /* find end of run */
1038 for (e = b + 1; e != end; e++) {
1039 r = dm_pool_block_is_used(pool->pmd, e, &used);
1040 if (r)
Joe Thornber202bae52016-05-04 14:12:42 -04001041 goto out;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001042
1043 if (used)
1044 break;
1045 }
1046
Joe Thornber202bae52016-05-04 14:12:42 -04001047 r = issue_discard(&op, b, e);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001048 if (r)
Joe Thornber202bae52016-05-04 14:12:42 -04001049 goto out;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001050
1051 b = e;
1052 }
Joe Thornber202bae52016-05-04 14:12:42 -04001053out:
1054 end_discard(&op, r);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001055}
1056
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001057static void queue_passdown_pt2(struct dm_thin_new_mapping *m)
1058{
1059 unsigned long flags;
1060 struct pool *pool = m->tc->pool;
1061
1062 spin_lock_irqsave(&pool->lock, flags);
1063 list_add_tail(&m->list, &pool->prepared_discards_pt2);
1064 spin_unlock_irqrestore(&pool->lock, flags);
1065 wake_worker(pool);
1066}
1067
1068static void passdown_endio(struct bio *bio)
1069{
1070 /*
1071 * It doesn't matter if the passdown discard failed, we still want
1072 * to unmap (we ignore err).
1073 */
1074 queue_passdown_pt2(bio->bi_private);
Dennis Yang948f5812017-04-18 15:27:06 +08001075 bio_put(bio);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001076}
1077
1078static void process_prepared_discard_passdown_pt1(struct dm_thin_new_mapping *m)
1079{
1080 int r;
1081 struct thin_c *tc = m->tc;
1082 struct pool *pool = tc->pool;
1083 struct bio *discard_parent;
1084 dm_block_t data_end = m->data_block + (m->virt_end - m->virt_begin);
1085
1086 /*
1087 * Only this thread allocates blocks, so we can be sure that the
1088 * newly unmapped blocks will not be allocated before the end of
1089 * the function.
1090 */
1091 r = dm_thin_remove_range(tc->td, m->virt_begin, m->virt_end);
1092 if (r) {
1093 metadata_operation_failed(pool, "dm_thin_remove_range", r);
1094 bio_io_error(m->bio);
1095 cell_defer_no_holder(tc, m->cell);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001096 mempool_free(m, &pool->mapping_pool);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001097 return;
1098 }
1099
Vallish Vaidyeshwara00a0ea32017-06-23 18:53:06 +00001100 /*
1101 * Increment the unmapped blocks. This prevents a race between the
1102 * passdown io and reallocation of freed blocks.
1103 */
1104 r = dm_pool_inc_data_range(pool->pmd, m->data_block, data_end);
1105 if (r) {
1106 metadata_operation_failed(pool, "dm_pool_inc_data_range", r);
1107 bio_io_error(m->bio);
1108 cell_defer_no_holder(tc, m->cell);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001109 mempool_free(m, &pool->mapping_pool);
Vallish Vaidyeshwara00a0ea32017-06-23 18:53:06 +00001110 return;
1111 }
1112
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001113 discard_parent = bio_alloc(GFP_NOIO, 1);
1114 if (!discard_parent) {
1115 DMWARN("%s: unable to allocate top level discard bio for passdown. Skipping passdown.",
1116 dm_device_name(tc->pool->pool_md));
1117 queue_passdown_pt2(m);
1118
1119 } else {
1120 discard_parent->bi_end_io = passdown_endio;
1121 discard_parent->bi_private = m;
1122
1123 if (m->maybe_shared)
1124 passdown_double_checking_shared_status(m, discard_parent);
1125 else {
1126 struct discard_op op;
1127
1128 begin_discard(&op, tc, discard_parent);
1129 r = issue_discard(&op, m->data_block, data_end);
1130 end_discard(&op, r);
1131 }
1132 }
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001133}
1134
1135static void process_prepared_discard_passdown_pt2(struct dm_thin_new_mapping *m)
Joe Thornber34fbcf62015-04-16 12:58:35 +01001136{
1137 int r;
1138 struct thin_c *tc = m->tc;
1139 struct pool *pool = tc->pool;
1140
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001141 /*
1142 * The passdown has completed, so now we can decrement all those
1143 * unmapped blocks.
1144 */
1145 r = dm_pool_dec_data_range(pool->pmd, m->data_block,
1146 m->data_block + (m->virt_end - m->virt_begin));
Joe Thornber202bae52016-05-04 14:12:42 -04001147 if (r) {
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001148 metadata_operation_failed(pool, "dm_pool_dec_data_range", r);
Joe Thornber202bae52016-05-04 14:12:42 -04001149 bio_io_error(m->bio);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001150 } else
1151 bio_endio(m->bio);
Joe Thornber202bae52016-05-04 14:12:42 -04001152
Joe Thornber34fbcf62015-04-16 12:58:35 +01001153 cell_defer_no_holder(tc, m->cell);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001154 mempool_free(m, &pool->mapping_pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01001155}
1156
Joe Thornber104655f2012-03-28 18:41:28 +01001157static void process_prepared(struct pool *pool, struct list_head *head,
Joe Thornbere49e5822012-07-27 15:08:16 +01001158 process_mapping_fn *fn)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001159{
1160 unsigned long flags;
1161 struct list_head maps;
Mike Snitzera24c2562012-06-03 00:30:00 +01001162 struct dm_thin_new_mapping *m, *tmp;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001163
1164 INIT_LIST_HEAD(&maps);
1165 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001166 list_splice_init(head, &maps);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001167 spin_unlock_irqrestore(&pool->lock, flags);
1168
1169 list_for_each_entry_safe(m, tmp, &maps, list)
Joe Thornbere49e5822012-07-27 15:08:16 +01001170 (*fn)(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001171}
1172
1173/*
1174 * Deferred bio jobs.
1175 */
Joe Thornber104655f2012-03-28 18:41:28 +01001176static int io_overlaps_block(struct pool *pool, struct bio *bio)
1177{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001178 return bio->bi_iter.bi_size ==
1179 (pool->sectors_per_block << SECTOR_SHIFT);
Joe Thornber104655f2012-03-28 18:41:28 +01001180}
1181
Joe Thornber991d9fa2011-10-31 20:21:18 +00001182static int io_overwrites_block(struct pool *pool, struct bio *bio)
1183{
Joe Thornber104655f2012-03-28 18:41:28 +01001184 return (bio_data_dir(bio) == WRITE) &&
1185 io_overlaps_block(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001186}
1187
1188static void save_and_set_endio(struct bio *bio, bio_end_io_t **save,
1189 bio_end_io_t *fn)
1190{
1191 *save = bio->bi_end_io;
1192 bio->bi_end_io = fn;
1193}
1194
1195static int ensure_next_mapping(struct pool *pool)
1196{
1197 if (pool->next_mapping)
1198 return 0;
1199
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001200 pool->next_mapping = mempool_alloc(&pool->mapping_pool, GFP_ATOMIC);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001201
1202 return pool->next_mapping ? 0 : -ENOMEM;
1203}
1204
Mike Snitzera24c2562012-06-03 00:30:00 +01001205static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001206{
Mike Snitzer16961b02013-12-17 13:19:11 -05001207 struct dm_thin_new_mapping *m = pool->next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001208
1209 BUG_ON(!pool->next_mapping);
1210
Mike Snitzer16961b02013-12-17 13:19:11 -05001211 memset(m, 0, sizeof(struct dm_thin_new_mapping));
1212 INIT_LIST_HEAD(&m->list);
1213 m->bio = NULL;
1214
Joe Thornber991d9fa2011-10-31 20:21:18 +00001215 pool->next_mapping = NULL;
1216
Mike Snitzer16961b02013-12-17 13:19:11 -05001217 return m;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001218}
1219
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001220static void ll_zero(struct thin_c *tc, struct dm_thin_new_mapping *m,
1221 sector_t begin, sector_t end)
1222{
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001223 struct dm_io_region to;
1224
1225 to.bdev = tc->pool_dev->bdev;
1226 to.sector = begin;
1227 to.count = end - begin;
1228
Mike Snitzer7209049d2018-07-31 17:27:02 -04001229 dm_kcopyd_zero(tc->pool->copier, 1, &to, 0, copy_complete, m);
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001230}
1231
Mike Snitzer452d7a62014-10-09 19:20:21 -04001232static void remap_and_issue_overwrite(struct thin_c *tc, struct bio *bio,
Joe Thornber34fbcf62015-04-16 12:58:35 +01001233 dm_block_t data_begin,
Mike Snitzer452d7a62014-10-09 19:20:21 -04001234 struct dm_thin_new_mapping *m)
1235{
1236 struct pool *pool = tc->pool;
1237 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1238
1239 h->overwrite_mapping = m;
1240 m->bio = bio;
1241 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
1242 inc_all_io_entry(pool, bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001243 remap_and_issue(tc, bio, data_begin);
Mike Snitzer452d7a62014-10-09 19:20:21 -04001244}
1245
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001246/*
1247 * A partial copy also needs to zero the uncopied region.
1248 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001249static void schedule_copy(struct thin_c *tc, dm_block_t virt_block,
Joe Thornber2dd9c252012-03-28 18:41:28 +01001250 struct dm_dev *origin, dm_block_t data_origin,
1251 dm_block_t data_dest,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001252 struct dm_bio_prison_cell *cell, struct bio *bio,
1253 sector_t len)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001254{
Joe Thornber991d9fa2011-10-31 20:21:18 +00001255 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001256 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001257
Joe Thornber991d9fa2011-10-31 20:21:18 +00001258 m->tc = tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001259 m->virt_begin = virt_block;
1260 m->virt_end = virt_block + 1u;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001261 m->data_block = data_dest;
1262 m->cell = cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001263
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001264 /*
1265 * quiesce action + copy action + an extra reference held for the
1266 * duration of this function (we may need to inc later for a
1267 * partial zero).
1268 */
1269 atomic_set(&m->prepare_actions, 3);
1270
Mike Snitzer44feb382012-10-12 21:02:10 +01001271 if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list))
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001272 complete_mapping_preparation(m); /* already quiesced */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001273
1274 /*
1275 * IO to pool_dev remaps to the pool target's data_dev.
1276 *
1277 * If the whole block of data is being overwritten, we can issue the
1278 * bio immediately. Otherwise we use kcopyd to clone the data first.
1279 */
Mike Snitzer452d7a62014-10-09 19:20:21 -04001280 if (io_overwrites_block(pool, bio))
1281 remap_and_issue_overwrite(tc, bio, data_dest, m);
1282 else {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001283 struct dm_io_region from, to;
1284
Joe Thornber2dd9c252012-03-28 18:41:28 +01001285 from.bdev = origin->bdev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001286 from.sector = data_origin * pool->sectors_per_block;
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001287 from.count = len;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001288
1289 to.bdev = tc->pool_dev->bdev;
1290 to.sector = data_dest * pool->sectors_per_block;
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001291 to.count = len;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001292
Mike Snitzer7209049d2018-07-31 17:27:02 -04001293 dm_kcopyd_copy(pool->copier, &from, 1, &to,
1294 0, copy_complete, m);
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001295
1296 /*
1297 * Do we need to zero a tail region?
1298 */
1299 if (len < pool->sectors_per_block && pool->pf.zero_new_blocks) {
1300 atomic_inc(&m->prepare_actions);
1301 ll_zero(tc, m,
1302 data_dest * pool->sectors_per_block + len,
1303 (data_dest + 1) * pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001304 }
1305 }
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001306
1307 complete_mapping_preparation(m); /* drop our ref */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001308}
1309
Joe Thornber2dd9c252012-03-28 18:41:28 +01001310static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block,
1311 dm_block_t data_origin, dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +01001312 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber2dd9c252012-03-28 18:41:28 +01001313{
1314 schedule_copy(tc, virt_block, tc->pool_dev,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001315 data_origin, data_dest, cell, bio,
1316 tc->pool->sectors_per_block);
Joe Thornber2dd9c252012-03-28 18:41:28 +01001317}
1318
Joe Thornber991d9fa2011-10-31 20:21:18 +00001319static void schedule_zero(struct thin_c *tc, dm_block_t virt_block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001320 dm_block_t data_block, struct dm_bio_prison_cell *cell,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001321 struct bio *bio)
1322{
1323 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001324 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001325
Joe Thornber50f3c3e2014-06-13 13:57:09 +01001326 atomic_set(&m->prepare_actions, 1); /* no need to quiesce */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001327 m->tc = tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001328 m->virt_begin = virt_block;
1329 m->virt_end = virt_block + 1u;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001330 m->data_block = data_block;
1331 m->cell = cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001332
1333 /*
1334 * If the whole block of data is being overwritten or we are not
1335 * zeroing pre-existing data, we can issue the bio immediately.
1336 * Otherwise we use kcopyd to zero the data first.
1337 */
Mike Snitzerf8ae7522015-05-14 11:28:37 -04001338 if (pool->pf.zero_new_blocks) {
1339 if (io_overwrites_block(pool, bio))
1340 remap_and_issue_overwrite(tc, bio, data_block, m);
1341 else
1342 ll_zero(tc, m, data_block * pool->sectors_per_block,
1343 (data_block + 1) * pool->sectors_per_block);
1344 } else
Joe Thornber991d9fa2011-10-31 20:21:18 +00001345 process_prepared_mapping(m);
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001346}
Joe Thornber991d9fa2011-10-31 20:21:18 +00001347
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001348static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
1349 dm_block_t data_dest,
1350 struct dm_bio_prison_cell *cell, struct bio *bio)
1351{
1352 struct pool *pool = tc->pool;
1353 sector_t virt_block_begin = virt_block * pool->sectors_per_block;
1354 sector_t virt_block_end = (virt_block + 1) * pool->sectors_per_block;
1355
1356 if (virt_block_end <= tc->origin_size)
1357 schedule_copy(tc, virt_block, tc->origin_dev,
1358 virt_block, data_dest, cell, bio,
1359 pool->sectors_per_block);
1360
1361 else if (virt_block_begin < tc->origin_size)
1362 schedule_copy(tc, virt_block, tc->origin_dev,
1363 virt_block, data_dest, cell, bio,
1364 tc->origin_size - virt_block_begin);
1365
1366 else
1367 schedule_zero(tc, virt_block, data_dest, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001368}
1369
Joe Thornber2c43fd22014-12-11 11:12:19 +00001370static void set_pool_mode(struct pool *pool, enum pool_mode new_mode);
1371
Mike Snitzera6855572018-06-26 12:04:23 -04001372static void requeue_bios(struct pool *pool);
1373
Joe Thornber2c43fd22014-12-11 11:12:19 +00001374static void check_for_space(struct pool *pool)
1375{
1376 int r;
1377 dm_block_t nr_free;
1378
1379 if (get_pool_mode(pool) != PM_OUT_OF_DATA_SPACE)
1380 return;
1381
1382 r = dm_pool_get_free_block_count(pool->pmd, &nr_free);
1383 if (r)
1384 return;
1385
Mike Snitzera6855572018-06-26 12:04:23 -04001386 if (nr_free) {
Joe Thornber2c43fd22014-12-11 11:12:19 +00001387 set_pool_mode(pool, PM_WRITE);
Mike Snitzera6855572018-06-26 12:04:23 -04001388 requeue_bios(pool);
1389 }
Joe Thornber2c43fd22014-12-11 11:12:19 +00001390}
1391
Joe Thornbere49e5822012-07-27 15:08:16 +01001392/*
1393 * A non-zero return indicates read_only or fail_io mode.
1394 * Many callers don't care about the return value.
1395 */
Joe Thornber020cc3b2013-12-04 15:05:36 -05001396static int commit(struct pool *pool)
Joe Thornbere49e5822012-07-27 15:08:16 +01001397{
1398 int r;
1399
Joe Thornber8d07e8a2014-05-06 16:28:14 +01001400 if (get_pool_mode(pool) >= PM_READ_ONLY)
Joe Thornbere49e5822012-07-27 15:08:16 +01001401 return -EINVAL;
1402
Joe Thornber020cc3b2013-12-04 15:05:36 -05001403 r = dm_pool_commit_metadata(pool->pmd);
Joe Thornberb5330652013-12-04 19:51:33 -05001404 if (r)
1405 metadata_operation_failed(pool, "dm_pool_commit_metadata", r);
Joe Thornber2c43fd22014-12-11 11:12:19 +00001406 else
1407 check_for_space(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01001408
1409 return r;
1410}
1411
Joe Thornber88a66212013-12-04 20:16:12 -05001412static void check_low_water_mark(struct pool *pool, dm_block_t free_blocks)
1413{
1414 unsigned long flags;
1415
1416 if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
1417 DMWARN("%s: reached low water mark for data device: sending event.",
1418 dm_device_name(pool->pool_md));
1419 spin_lock_irqsave(&pool->lock, flags);
1420 pool->low_water_triggered = true;
1421 spin_unlock_irqrestore(&pool->lock, flags);
1422 dm_table_event(pool->ti->table);
1423 }
1424}
1425
Joe Thornber991d9fa2011-10-31 20:21:18 +00001426static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
1427{
1428 int r;
1429 dm_block_t free_blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001430 struct pool *pool = tc->pool;
1431
Joe Thornber3e1a0692014-03-03 16:03:26 +00001432 if (WARN_ON(get_pool_mode(pool) != PM_WRITE))
Joe Thornber8d30abf2013-12-04 19:16:11 -05001433 return -EINVAL;
1434
Joe Thornber991d9fa2011-10-31 20:21:18 +00001435 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
Joe Thornberb5330652013-12-04 19:51:33 -05001436 if (r) {
1437 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001438 return r;
Joe Thornberb5330652013-12-04 19:51:33 -05001439 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001440
Joe Thornber88a66212013-12-04 20:16:12 -05001441 check_low_water_mark(pool, free_blocks);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001442
1443 if (!free_blocks) {
Mike Snitzer94563ba2013-08-22 09:56:18 -04001444 /*
1445 * Try to commit to see if that will free up some
1446 * more space.
1447 */
Joe Thornber020cc3b2013-12-04 15:05:36 -05001448 r = commit(pool);
1449 if (r)
1450 return r;
Mike Snitzer94563ba2013-08-22 09:56:18 -04001451
1452 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
Joe Thornberb5330652013-12-04 19:51:33 -05001453 if (r) {
1454 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
Mike Snitzer94563ba2013-08-22 09:56:18 -04001455 return r;
Joe Thornberb5330652013-12-04 19:51:33 -05001456 }
Mike Snitzer94563ba2013-08-22 09:56:18 -04001457
Mike Snitzer94563ba2013-08-22 09:56:18 -04001458 if (!free_blocks) {
Joe Thornber3e1a0692014-03-03 16:03:26 +00001459 set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001460 return -ENOSPC;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001461 }
1462 }
1463
1464 r = dm_pool_alloc_data_block(pool->pmd, result);
Mike Snitzer4a02b342013-12-03 12:20:57 -05001465 if (r) {
Mike Snitzera6855572018-06-26 12:04:23 -04001466 if (r == -ENOSPC)
1467 set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
1468 else
1469 metadata_operation_failed(pool, "dm_pool_alloc_data_block", r);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001470 return r;
Mike Snitzer4a02b342013-12-03 12:20:57 -05001471 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001472
1473 return 0;
1474}
1475
1476/*
1477 * If we have run out of space, queue bios until the device is
1478 * resumed, presumably after having been reloaded with more space.
1479 */
1480static void retry_on_resume(struct bio *bio)
1481{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001482 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001483 struct thin_c *tc = h->tc;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001484 unsigned long flags;
1485
Mike Snitzerc140e1c2014-03-20 21:17:14 -04001486 spin_lock_irqsave(&tc->lock, flags);
1487 bio_list_add(&tc->retry_on_resume_list, bio);
1488 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001489}
1490
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001491static blk_status_t should_error_unserviceable_bio(struct pool *pool)
Joe Thornber3e1a0692014-03-03 16:03:26 +00001492{
1493 enum pool_mode m = get_pool_mode(pool);
1494
1495 switch (m) {
1496 case PM_WRITE:
1497 /* Shouldn't get here */
1498 DMERR_LIMIT("bio unserviceable, yet pool is in PM_WRITE mode");
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001499 return BLK_STS_IOERR;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001500
1501 case PM_OUT_OF_DATA_SPACE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001502 return pool->pf.error_if_no_space ? BLK_STS_NOSPC : 0;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001503
1504 case PM_READ_ONLY:
1505 case PM_FAIL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001506 return BLK_STS_IOERR;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001507 default:
1508 /* Shouldn't get here */
1509 DMERR_LIMIT("bio unserviceable, yet pool has an unknown mode");
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001510 return BLK_STS_IOERR;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001511 }
1512}
1513
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001514static void handle_unserviceable_bio(struct pool *pool, struct bio *bio)
1515{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001516 blk_status_t error = should_error_unserviceable_bio(pool);
Mike Snitzeraf918052014-05-22 14:32:51 -04001517
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001518 if (error) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001519 bio->bi_status = error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001520 bio_endio(bio);
1521 } else
Mike Snitzer6d162022013-12-20 18:09:02 -05001522 retry_on_resume(bio);
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001523}
1524
Mike Snitzer399cadd2013-12-05 16:03:33 -05001525static void retry_bios_on_resume(struct pool *pool, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001526{
1527 struct bio *bio;
1528 struct bio_list bios;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001529 blk_status_t error;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001530
Mike Snitzeraf918052014-05-22 14:32:51 -04001531 error = should_error_unserviceable_bio(pool);
1532 if (error) {
1533 cell_error_with_code(pool, cell, error);
Joe Thornber3e1a0692014-03-03 16:03:26 +00001534 return;
1535 }
1536
Joe Thornber991d9fa2011-10-31 20:21:18 +00001537 bio_list_init(&bios);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001538 cell_release(pool, cell, &bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001539
Mike Snitzer9d094ee2014-10-19 08:23:09 -04001540 while ((bio = bio_list_pop(&bios)))
1541 retry_on_resume(bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001542}
1543
Joe Thornber34fbcf62015-04-16 12:58:35 +01001544static void process_discard_cell_no_passdown(struct thin_c *tc,
1545 struct dm_bio_prison_cell *virt_cell)
Joe Thornber104655f2012-03-28 18:41:28 +01001546{
Joe Thornber104655f2012-03-28 18:41:28 +01001547 struct pool *pool = tc->pool;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001548 struct dm_thin_new_mapping *m = get_next_mapping(pool);
1549
1550 /*
1551 * We don't need to lock the data blocks, since there's no
1552 * passdown. We only lock data blocks for allocation and breaking sharing.
1553 */
1554 m->tc = tc;
1555 m->virt_begin = virt_cell->key.block_begin;
1556 m->virt_end = virt_cell->key.block_end;
1557 m->cell = virt_cell;
1558 m->bio = virt_cell->holder;
1559
1560 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1561 pool->process_prepared_discard(m);
1562}
1563
Joe Thornber34fbcf62015-04-16 12:58:35 +01001564static void break_up_discard_bio(struct thin_c *tc, dm_block_t begin, dm_block_t end,
1565 struct bio *bio)
1566{
1567 struct pool *pool = tc->pool;
1568
1569 int r;
1570 bool maybe_shared;
1571 struct dm_cell_key data_key;
1572 struct dm_bio_prison_cell *data_cell;
Mike Snitzera24c2562012-06-03 00:30:00 +01001573 struct dm_thin_new_mapping *m;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001574 dm_block_t virt_begin, virt_end, data_begin;
Joe Thornber104655f2012-03-28 18:41:28 +01001575
Joe Thornber34fbcf62015-04-16 12:58:35 +01001576 while (begin != end) {
1577 r = ensure_next_mapping(pool);
1578 if (r)
1579 /* we did our best */
1580 return;
Joe Thornber104655f2012-03-28 18:41:28 +01001581
Joe Thornber34fbcf62015-04-16 12:58:35 +01001582 r = dm_thin_find_mapped_range(tc->td, begin, end, &virt_begin, &virt_end,
1583 &data_begin, &maybe_shared);
1584 if (r)
1585 /*
1586 * Silently fail, letting any mappings we've
1587 * created complete.
1588 */
Joe Thornber104655f2012-03-28 18:41:28 +01001589 break;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001590
1591 build_key(tc->td, PHYSICAL, data_begin, data_begin + (virt_end - virt_begin), &data_key);
1592 if (bio_detain(tc->pool, &data_key, NULL, &data_cell)) {
1593 /* contention, we'll give up with this range */
1594 begin = virt_end;
1595 continue;
Joe Thornber104655f2012-03-28 18:41:28 +01001596 }
1597
Joe Thornber104655f2012-03-28 18:41:28 +01001598 /*
Joe Thornber34fbcf62015-04-16 12:58:35 +01001599 * IO may still be going to the destination block. We must
1600 * quiesce before we can do the removal.
Joe Thornber104655f2012-03-28 18:41:28 +01001601 */
Joe Thornber34fbcf62015-04-16 12:58:35 +01001602 m = get_next_mapping(pool);
1603 m->tc = tc;
1604 m->maybe_shared = maybe_shared;
1605 m->virt_begin = virt_begin;
1606 m->virt_end = virt_end;
1607 m->data_block = data_begin;
1608 m->cell = data_cell;
1609 m->bio = bio;
Joe Thornber104655f2012-03-28 18:41:28 +01001610
Joe Thornber34fbcf62015-04-16 12:58:35 +01001611 /*
1612 * The parent bio must not complete before sub discard bios are
Joe Thornber202bae52016-05-04 14:12:42 -04001613 * chained to it (see end_discard's bio_chain)!
Joe Thornber34fbcf62015-04-16 12:58:35 +01001614 *
1615 * This per-mapping bi_remaining increment is paired with
1616 * the implicit decrement that occurs via bio_endio() in
Joe Thornber202bae52016-05-04 14:12:42 -04001617 * end_discard().
Joe Thornber34fbcf62015-04-16 12:58:35 +01001618 */
Mike Snitzer13e4f8a2016-05-04 15:05:44 -04001619 bio_inc_remaining(bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001620 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1621 pool->process_prepared_discard(m);
1622
1623 begin = virt_end;
Joe Thornber104655f2012-03-28 18:41:28 +01001624 }
1625}
1626
Joe Thornber34fbcf62015-04-16 12:58:35 +01001627static void process_discard_cell_passdown(struct thin_c *tc, struct dm_bio_prison_cell *virt_cell)
1628{
1629 struct bio *bio = virt_cell->holder;
1630 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1631
1632 /*
1633 * The virt_cell will only get freed once the origin bio completes.
1634 * This means it will remain locked while all the individual
1635 * passdown bios are in flight.
1636 */
1637 h->cell = virt_cell;
1638 break_up_discard_bio(tc, virt_cell->key.block_begin, virt_cell->key.block_end, bio);
1639
1640 /*
1641 * We complete the bio now, knowing that the bi_remaining field
1642 * will prevent completion until the sub range discards have
1643 * completed.
1644 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001645 bio_endio(bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001646}
1647
Joe Thornbera374bb22014-10-10 13:43:14 +01001648static void process_discard_bio(struct thin_c *tc, struct bio *bio)
1649{
Joe Thornber34fbcf62015-04-16 12:58:35 +01001650 dm_block_t begin, end;
1651 struct dm_cell_key virt_key;
1652 struct dm_bio_prison_cell *virt_cell;
Joe Thornbera374bb22014-10-10 13:43:14 +01001653
Joe Thornber34fbcf62015-04-16 12:58:35 +01001654 get_bio_block_range(tc, bio, &begin, &end);
1655 if (begin == end) {
1656 /*
1657 * The discard covers less than a block.
1658 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001659 bio_endio(bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001660 return;
1661 }
1662
1663 build_key(tc->td, VIRTUAL, begin, end, &virt_key);
1664 if (bio_detain(tc->pool, &virt_key, bio, &virt_cell))
1665 /*
1666 * Potential starvation issue: We're relying on the
1667 * fs/application being well behaved, and not trying to
1668 * send IO to a region at the same time as discarding it.
1669 * If they do this persistently then it's possible this
1670 * cell will never be granted.
1671 */
Joe Thornbera374bb22014-10-10 13:43:14 +01001672 return;
1673
Joe Thornber34fbcf62015-04-16 12:58:35 +01001674 tc->pool->process_discard_cell(tc, virt_cell);
Joe Thornbera374bb22014-10-10 13:43:14 +01001675}
1676
Joe Thornber991d9fa2011-10-31 20:21:18 +00001677static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzer44feb382012-10-12 21:02:10 +01001678 struct dm_cell_key *key,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001679 struct dm_thin_lookup_result *lookup_result,
Mike Snitzera24c2562012-06-03 00:30:00 +01001680 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001681{
1682 int r;
1683 dm_block_t data_block;
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001684 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001685
1686 r = alloc_data_block(tc, &data_block);
1687 switch (r) {
1688 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001689 schedule_internal_copy(tc, block, lookup_result->block,
1690 data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001691 break;
1692
1693 case -ENOSPC:
Mike Snitzer399cadd2013-12-05 16:03:33 -05001694 retry_bios_on_resume(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001695 break;
1696
1697 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001698 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1699 __func__, r);
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001700 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001701 break;
1702 }
1703}
1704
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001705static void __remap_and_issue_shared_cell(void *context,
1706 struct dm_bio_prison_cell *cell)
1707{
1708 struct remap_info *info = context;
1709 struct bio *bio;
1710
1711 while ((bio = bio_list_pop(&cell->bios))) {
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001712 if (bio_data_dir(bio) == WRITE || op_is_flush(bio->bi_opf) ||
1713 bio_op(bio) == REQ_OP_DISCARD)
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001714 bio_list_add(&info->defer_bios, bio);
1715 else {
Luis de Bethencourtbd6d1e02018-01-17 15:09:25 +00001716 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001717
1718 h->shared_read_entry = dm_deferred_entry_inc(info->tc->pool->shared_read_ds);
1719 inc_all_io_entry(info->tc->pool, bio);
1720 bio_list_add(&info->issue_bios, bio);
1721 }
1722 }
1723}
1724
1725static void remap_and_issue_shared_cell(struct thin_c *tc,
1726 struct dm_bio_prison_cell *cell,
1727 dm_block_t block)
1728{
1729 struct bio *bio;
1730 struct remap_info info;
1731
1732 info.tc = tc;
1733 bio_list_init(&info.defer_bios);
1734 bio_list_init(&info.issue_bios);
1735
1736 cell_visit_release(tc->pool, __remap_and_issue_shared_cell,
1737 &info, cell);
1738
1739 while ((bio = bio_list_pop(&info.defer_bios)))
1740 thin_defer_bio(tc, bio);
1741
1742 while ((bio = bio_list_pop(&info.issue_bios)))
1743 remap_and_issue(tc, bio, block);
1744}
1745
Joe Thornber991d9fa2011-10-31 20:21:18 +00001746static void process_shared_bio(struct thin_c *tc, struct bio *bio,
1747 dm_block_t block,
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001748 struct dm_thin_lookup_result *lookup_result,
1749 struct dm_bio_prison_cell *virt_cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001750{
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001751 struct dm_bio_prison_cell *data_cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001752 struct pool *pool = tc->pool;
Mike Snitzer44feb382012-10-12 21:02:10 +01001753 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001754
1755 /*
1756 * If cell is already occupied, then sharing is already in the process
1757 * of being broken so we have nothing further to do here.
1758 */
1759 build_data_key(tc->td, lookup_result->block, &key);
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001760 if (bio_detain(pool, &key, bio, &data_cell)) {
1761 cell_defer_no_holder(tc, virt_cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001762 return;
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001763 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001764
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001765 if (bio_data_dir(bio) == WRITE && bio->bi_iter.bi_size) {
1766 break_sharing(tc, bio, block, &key, lookup_result, data_cell);
1767 cell_defer_no_holder(tc, virt_cell);
1768 } else {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001769 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornber991d9fa2011-10-31 20:21:18 +00001770
Mike Snitzer44feb382012-10-12 21:02:10 +01001771 h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
Joe Thornbere8088072012-12-21 20:23:31 +00001772 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001773 remap_and_issue(tc, bio, lookup_result->block);
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001774
1775 remap_and_issue_shared_cell(tc, data_cell, lookup_result->block);
1776 remap_and_issue_shared_cell(tc, virt_cell, lookup_result->block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001777 }
1778}
1779
1780static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001781 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001782{
1783 int r;
1784 dm_block_t data_block;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001785 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001786
1787 /*
1788 * Remap empty bios (flushes) immediately, without provisioning.
1789 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07001790 if (!bio->bi_iter.bi_size) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001791 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001792 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001793
Joe Thornber991d9fa2011-10-31 20:21:18 +00001794 remap_and_issue(tc, bio, 0);
1795 return;
1796 }
1797
1798 /*
1799 * Fill read bios with zeroes and complete them immediately.
1800 */
1801 if (bio_data_dir(bio) == READ) {
1802 zero_fill_bio(bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001803 cell_defer_no_holder(tc, cell);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001804 bio_endio(bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001805 return;
1806 }
1807
1808 r = alloc_data_block(tc, &data_block);
1809 switch (r) {
1810 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001811 if (tc->origin_dev)
1812 schedule_external_copy(tc, block, data_block, cell, bio);
1813 else
1814 schedule_zero(tc, block, data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001815 break;
1816
1817 case -ENOSPC:
Mike Snitzer399cadd2013-12-05 16:03:33 -05001818 retry_bios_on_resume(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001819 break;
1820
1821 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001822 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1823 __func__, r);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001824 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001825 break;
1826 }
1827}
1828
Joe Thornbera374bb22014-10-10 13:43:14 +01001829static void process_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001830{
1831 int r;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001832 struct pool *pool = tc->pool;
Joe Thornbera374bb22014-10-10 13:43:14 +01001833 struct bio *bio = cell->holder;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001834 dm_block_t block = get_bio_block(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001835 struct dm_thin_lookup_result lookup_result;
1836
Joe Thornbera374bb22014-10-10 13:43:14 +01001837 if (tc->requeue_mode) {
1838 cell_requeue(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001839 return;
Joe Thornbera374bb22014-10-10 13:43:14 +01001840 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001841
1842 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1843 switch (r) {
1844 case 0:
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001845 if (lookup_result.shared)
1846 process_shared_bio(tc, bio, block, &lookup_result, cell);
1847 else {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001848 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001849 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbera374bb22014-10-10 13:43:14 +01001850 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001851 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001852 break;
1853
1854 case -ENODATA:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001855 if (bio_data_dir(bio) == READ && tc->origin_dev) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001856 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001857 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001858
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001859 if (bio_end_sector(bio) <= tc->origin_size)
1860 remap_to_origin_and_issue(tc, bio);
1861
1862 else if (bio->bi_iter.bi_sector < tc->origin_size) {
1863 zero_fill_bio(bio);
1864 bio->bi_iter.bi_size = (tc->origin_size - bio->bi_iter.bi_sector) << SECTOR_SHIFT;
1865 remap_to_origin_and_issue(tc, bio);
1866
1867 } else {
1868 zero_fill_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001869 bio_endio(bio);
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001870 }
Joe Thornber2dd9c252012-03-28 18:41:28 +01001871 } else
1872 provision_block(tc, bio, block, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001873 break;
1874
1875 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001876 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1877 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001878 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001879 bio_io_error(bio);
1880 break;
1881 }
1882}
1883
Joe Thornbera374bb22014-10-10 13:43:14 +01001884static void process_bio(struct thin_c *tc, struct bio *bio)
1885{
1886 struct pool *pool = tc->pool;
1887 dm_block_t block = get_bio_block(tc, bio);
1888 struct dm_bio_prison_cell *cell;
1889 struct dm_cell_key key;
1890
1891 /*
1892 * If cell is already occupied, then the block is already
1893 * being provisioned so we have nothing further to do here.
1894 */
1895 build_virtual_key(tc->td, block, &key);
1896 if (bio_detain(pool, &key, bio, &cell))
1897 return;
1898
1899 process_cell(tc, cell);
1900}
1901
1902static void __process_bio_read_only(struct thin_c *tc, struct bio *bio,
1903 struct dm_bio_prison_cell *cell)
Joe Thornbere49e5822012-07-27 15:08:16 +01001904{
1905 int r;
1906 int rw = bio_data_dir(bio);
1907 dm_block_t block = get_bio_block(tc, bio);
1908 struct dm_thin_lookup_result lookup_result;
1909
1910 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1911 switch (r) {
1912 case 0:
Joe Thornbera374bb22014-10-10 13:43:14 +01001913 if (lookup_result.shared && (rw == WRITE) && bio->bi_iter.bi_size) {
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001914 handle_unserviceable_bio(tc->pool, bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01001915 if (cell)
1916 cell_defer_no_holder(tc, cell);
1917 } else {
Joe Thornbere8088072012-12-21 20:23:31 +00001918 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001919 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbera374bb22014-10-10 13:43:14 +01001920 if (cell)
1921 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001922 }
Joe Thornbere49e5822012-07-27 15:08:16 +01001923 break;
1924
1925 case -ENODATA:
Joe Thornbera374bb22014-10-10 13:43:14 +01001926 if (cell)
1927 cell_defer_no_holder(tc, cell);
Joe Thornbere49e5822012-07-27 15:08:16 +01001928 if (rw != READ) {
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001929 handle_unserviceable_bio(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001930 break;
1931 }
1932
1933 if (tc->origin_dev) {
Joe Thornbere8088072012-12-21 20:23:31 +00001934 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001935 remap_to_origin_and_issue(tc, bio);
1936 break;
1937 }
1938
1939 zero_fill_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001940 bio_endio(bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001941 break;
1942
1943 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001944 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1945 __func__, r);
Joe Thornbera374bb22014-10-10 13:43:14 +01001946 if (cell)
1947 cell_defer_no_holder(tc, cell);
Joe Thornbere49e5822012-07-27 15:08:16 +01001948 bio_io_error(bio);
1949 break;
1950 }
1951}
1952
Joe Thornbera374bb22014-10-10 13:43:14 +01001953static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
1954{
1955 __process_bio_read_only(tc, bio, NULL);
1956}
1957
1958static void process_cell_read_only(struct thin_c *tc, struct dm_bio_prison_cell *cell)
1959{
1960 __process_bio_read_only(tc, cell->holder, cell);
1961}
1962
Joe Thornber3e1a0692014-03-03 16:03:26 +00001963static void process_bio_success(struct thin_c *tc, struct bio *bio)
1964{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001965 bio_endio(bio);
Joe Thornber3e1a0692014-03-03 16:03:26 +00001966}
1967
Joe Thornbere49e5822012-07-27 15:08:16 +01001968static void process_bio_fail(struct thin_c *tc, struct bio *bio)
1969{
1970 bio_io_error(bio);
1971}
1972
Joe Thornbera374bb22014-10-10 13:43:14 +01001973static void process_cell_success(struct thin_c *tc, struct dm_bio_prison_cell *cell)
1974{
1975 cell_success(tc->pool, cell);
1976}
1977
1978static void process_cell_fail(struct thin_c *tc, struct dm_bio_prison_cell *cell)
1979{
1980 cell_error(tc->pool, cell);
1981}
1982
Joe Thornberac8c3f32013-05-10 14:37:21 +01001983/*
1984 * FIXME: should we also commit due to size of transaction, measured in
1985 * metadata blocks?
1986 */
Joe Thornber905e51b2012-03-28 18:41:27 +01001987static int need_commit_due_to_time(struct pool *pool)
1988{
Manuel Schölling0f30af92014-05-22 22:42:37 +02001989 return !time_in_range(jiffies, pool->last_commit_jiffies,
1990 pool->last_commit_jiffies + COMMIT_PERIOD);
Joe Thornber905e51b2012-03-28 18:41:27 +01001991}
1992
Mike Snitzer67324ea2014-03-21 18:33:41 -04001993#define thin_pbd(node) rb_entry((node), struct dm_thin_endio_hook, rb_node)
1994#define thin_bio(pbd) dm_bio_from_per_bio_data((pbd), sizeof(struct dm_thin_endio_hook))
1995
1996static void __thin_bio_rb_add(struct thin_c *tc, struct bio *bio)
1997{
1998 struct rb_node **rbp, *parent;
1999 struct dm_thin_endio_hook *pbd;
2000 sector_t bi_sector = bio->bi_iter.bi_sector;
2001
2002 rbp = &tc->sort_bio_list.rb_node;
2003 parent = NULL;
2004 while (*rbp) {
2005 parent = *rbp;
2006 pbd = thin_pbd(parent);
2007
2008 if (bi_sector < thin_bio(pbd)->bi_iter.bi_sector)
2009 rbp = &(*rbp)->rb_left;
2010 else
2011 rbp = &(*rbp)->rb_right;
2012 }
2013
2014 pbd = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
2015 rb_link_node(&pbd->rb_node, parent, rbp);
2016 rb_insert_color(&pbd->rb_node, &tc->sort_bio_list);
2017}
2018
2019static void __extract_sorted_bios(struct thin_c *tc)
2020{
2021 struct rb_node *node;
2022 struct dm_thin_endio_hook *pbd;
2023 struct bio *bio;
2024
2025 for (node = rb_first(&tc->sort_bio_list); node; node = rb_next(node)) {
2026 pbd = thin_pbd(node);
2027 bio = thin_bio(pbd);
2028
2029 bio_list_add(&tc->deferred_bio_list, bio);
2030 rb_erase(&pbd->rb_node, &tc->sort_bio_list);
2031 }
2032
2033 WARN_ON(!RB_EMPTY_ROOT(&tc->sort_bio_list));
2034}
2035
2036static void __sort_thin_deferred_bios(struct thin_c *tc)
2037{
2038 struct bio *bio;
2039 struct bio_list bios;
2040
2041 bio_list_init(&bios);
2042 bio_list_merge(&bios, &tc->deferred_bio_list);
2043 bio_list_init(&tc->deferred_bio_list);
2044
2045 /* Sort deferred_bio_list using rb-tree */
2046 while ((bio = bio_list_pop(&bios)))
2047 __thin_bio_rb_add(tc, bio);
2048
2049 /*
2050 * Transfer the sorted bios in sort_bio_list back to
2051 * deferred_bio_list to allow lockless submission of
2052 * all bios.
2053 */
2054 __extract_sorted_bios(tc);
2055}
2056
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002057static void process_thin_deferred_bios(struct thin_c *tc)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002058{
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002059 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002060 unsigned long flags;
2061 struct bio *bio;
2062 struct bio_list bios;
Mike Snitzer67324ea2014-03-21 18:33:41 -04002063 struct blk_plug plug;
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002064 unsigned count = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002065
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002066 if (tc->requeue_mode) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002067 error_thin_bio_list(tc, &tc->deferred_bio_list,
2068 BLK_STS_DM_REQUEUE);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002069 return;
2070 }
2071
Joe Thornber991d9fa2011-10-31 20:21:18 +00002072 bio_list_init(&bios);
2073
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002074 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer67324ea2014-03-21 18:33:41 -04002075
2076 if (bio_list_empty(&tc->deferred_bio_list)) {
2077 spin_unlock_irqrestore(&tc->lock, flags);
2078 return;
2079 }
2080
2081 __sort_thin_deferred_bios(tc);
2082
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002083 bio_list_merge(&bios, &tc->deferred_bio_list);
2084 bio_list_init(&tc->deferred_bio_list);
Mike Snitzer67324ea2014-03-21 18:33:41 -04002085
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002086 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002087
Mike Snitzer67324ea2014-03-21 18:33:41 -04002088 blk_start_plug(&plug);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002089 while ((bio = bio_list_pop(&bios))) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002090 /*
2091 * If we've got no free new_mapping structs, and processing
2092 * this bio might require one, we pause until there are some
2093 * prepared mappings to process.
2094 */
2095 if (ensure_next_mapping(pool)) {
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002096 spin_lock_irqsave(&tc->lock, flags);
2097 bio_list_add(&tc->deferred_bio_list, bio);
2098 bio_list_merge(&tc->deferred_bio_list, &bios);
2099 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002100 break;
2101 }
Joe Thornber104655f2012-03-28 18:41:28 +01002102
Mike Christiee6047142016-06-05 14:32:04 -05002103 if (bio_op(bio) == REQ_OP_DISCARD)
Joe Thornbere49e5822012-07-27 15:08:16 +01002104 pool->process_discard(tc, bio);
Joe Thornber104655f2012-03-28 18:41:28 +01002105 else
Joe Thornbere49e5822012-07-27 15:08:16 +01002106 pool->process_bio(tc, bio);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002107
2108 if ((count++ & 127) == 0) {
Joe Thornber7d327fe2014-10-06 15:45:59 +01002109 throttle_work_update(&pool->throttle);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002110 dm_pool_issue_prefetches(pool->pmd);
2111 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002112 }
Mike Snitzer67324ea2014-03-21 18:33:41 -04002113 blk_finish_plug(&plug);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002114}
2115
Joe Thornberac4c3f32014-10-10 16:42:10 +01002116static int cmp_cells(const void *lhs, const void *rhs)
2117{
2118 struct dm_bio_prison_cell *lhs_cell = *((struct dm_bio_prison_cell **) lhs);
2119 struct dm_bio_prison_cell *rhs_cell = *((struct dm_bio_prison_cell **) rhs);
2120
2121 BUG_ON(!lhs_cell->holder);
2122 BUG_ON(!rhs_cell->holder);
2123
2124 if (lhs_cell->holder->bi_iter.bi_sector < rhs_cell->holder->bi_iter.bi_sector)
2125 return -1;
2126
2127 if (lhs_cell->holder->bi_iter.bi_sector > rhs_cell->holder->bi_iter.bi_sector)
2128 return 1;
2129
2130 return 0;
2131}
2132
2133static unsigned sort_cells(struct pool *pool, struct list_head *cells)
2134{
2135 unsigned count = 0;
2136 struct dm_bio_prison_cell *cell, *tmp;
2137
2138 list_for_each_entry_safe(cell, tmp, cells, user_list) {
2139 if (count >= CELL_SORT_ARRAY_SIZE)
2140 break;
2141
2142 pool->cell_sort_array[count++] = cell;
2143 list_del(&cell->user_list);
2144 }
2145
2146 sort(pool->cell_sort_array, count, sizeof(cell), cmp_cells, NULL);
2147
2148 return count;
2149}
2150
Joe Thornbera374bb22014-10-10 13:43:14 +01002151static void process_thin_deferred_cells(struct thin_c *tc)
2152{
2153 struct pool *pool = tc->pool;
2154 unsigned long flags;
2155 struct list_head cells;
Joe Thornberac4c3f32014-10-10 16:42:10 +01002156 struct dm_bio_prison_cell *cell;
2157 unsigned i, j, count;
Joe Thornbera374bb22014-10-10 13:43:14 +01002158
2159 INIT_LIST_HEAD(&cells);
2160
2161 spin_lock_irqsave(&tc->lock, flags);
2162 list_splice_init(&tc->deferred_cells, &cells);
2163 spin_unlock_irqrestore(&tc->lock, flags);
2164
2165 if (list_empty(&cells))
2166 return;
2167
Joe Thornberac4c3f32014-10-10 16:42:10 +01002168 do {
2169 count = sort_cells(tc->pool, &cells);
Joe Thornbera374bb22014-10-10 13:43:14 +01002170
Joe Thornberac4c3f32014-10-10 16:42:10 +01002171 for (i = 0; i < count; i++) {
2172 cell = pool->cell_sort_array[i];
2173 BUG_ON(!cell->holder);
2174
2175 /*
2176 * If we've got no free new_mapping structs, and processing
2177 * this bio might require one, we pause until there are some
2178 * prepared mappings to process.
2179 */
2180 if (ensure_next_mapping(pool)) {
2181 for (j = i; j < count; j++)
2182 list_add(&pool->cell_sort_array[j]->user_list, &cells);
2183
2184 spin_lock_irqsave(&tc->lock, flags);
2185 list_splice(&cells, &tc->deferred_cells);
2186 spin_unlock_irqrestore(&tc->lock, flags);
2187 return;
2188 }
2189
Mike Christiee6047142016-06-05 14:32:04 -05002190 if (bio_op(cell->holder) == REQ_OP_DISCARD)
Joe Thornberac4c3f32014-10-10 16:42:10 +01002191 pool->process_discard_cell(tc, cell);
2192 else
2193 pool->process_cell(tc, cell);
Joe Thornbera374bb22014-10-10 13:43:14 +01002194 }
Joe Thornberac4c3f32014-10-10 16:42:10 +01002195 } while (!list_empty(&cells));
Joe Thornbera374bb22014-10-10 13:43:14 +01002196}
2197
Joe Thornberb10ebd32014-04-08 11:29:01 +01002198static void thin_get(struct thin_c *tc);
2199static void thin_put(struct thin_c *tc);
2200
2201/*
2202 * We can't hold rcu_read_lock() around code that can block. So we
2203 * find a thin with the rcu lock held; bump a refcount; then drop
2204 * the lock.
2205 */
2206static struct thin_c *get_first_thin(struct pool *pool)
2207{
2208 struct thin_c *tc = NULL;
2209
2210 rcu_read_lock();
2211 if (!list_empty(&pool->active_thins)) {
2212 tc = list_entry_rcu(pool->active_thins.next, struct thin_c, list);
2213 thin_get(tc);
2214 }
2215 rcu_read_unlock();
2216
2217 return tc;
2218}
2219
2220static struct thin_c *get_next_thin(struct pool *pool, struct thin_c *tc)
2221{
2222 struct thin_c *old_tc = tc;
2223
2224 rcu_read_lock();
2225 list_for_each_entry_continue_rcu(tc, &pool->active_thins, list) {
2226 thin_get(tc);
2227 thin_put(old_tc);
2228 rcu_read_unlock();
2229 return tc;
2230 }
2231 thin_put(old_tc);
2232 rcu_read_unlock();
2233
2234 return NULL;
2235}
2236
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002237static void process_deferred_bios(struct pool *pool)
2238{
2239 unsigned long flags;
2240 struct bio *bio;
2241 struct bio_list bios;
2242 struct thin_c *tc;
2243
Joe Thornberb10ebd32014-04-08 11:29:01 +01002244 tc = get_first_thin(pool);
2245 while (tc) {
Joe Thornbera374bb22014-10-10 13:43:14 +01002246 process_thin_deferred_cells(tc);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002247 process_thin_deferred_bios(tc);
Joe Thornberb10ebd32014-04-08 11:29:01 +01002248 tc = get_next_thin(pool, tc);
2249 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002250
2251 /*
2252 * If there are any deferred flush bios, we must commit
2253 * the metadata before issuing them.
2254 */
2255 bio_list_init(&bios);
2256 spin_lock_irqsave(&pool->lock, flags);
2257 bio_list_merge(&bios, &pool->deferred_flush_bios);
2258 bio_list_init(&pool->deferred_flush_bios);
2259 spin_unlock_irqrestore(&pool->lock, flags);
2260
Mike Snitzer4d1662a2014-02-06 06:08:56 -05002261 if (bio_list_empty(&bios) &&
2262 !(dm_pool_changed_this_transaction(pool->pmd) && need_commit_due_to_time(pool)))
Joe Thornber991d9fa2011-10-31 20:21:18 +00002263 return;
2264
Joe Thornber020cc3b2013-12-04 15:05:36 -05002265 if (commit(pool)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002266 while ((bio = bio_list_pop(&bios)))
2267 bio_io_error(bio);
2268 return;
2269 }
Joe Thornber905e51b2012-03-28 18:41:27 +01002270 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002271
2272 while ((bio = bio_list_pop(&bios)))
2273 generic_make_request(bio);
2274}
2275
2276static void do_worker(struct work_struct *ws)
2277{
2278 struct pool *pool = container_of(ws, struct pool, worker);
2279
Joe Thornber7d327fe2014-10-06 15:45:59 +01002280 throttle_work_start(&pool->throttle);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002281 dm_pool_issue_prefetches(pool->pmd);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002282 throttle_work_update(&pool->throttle);
Joe Thornbere49e5822012-07-27 15:08:16 +01002283 process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002284 throttle_work_update(&pool->throttle);
Joe Thornbere49e5822012-07-27 15:08:16 +01002285 process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002286 throttle_work_update(&pool->throttle);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01002287 process_prepared(pool, &pool->prepared_discards_pt2, &pool->process_prepared_discard_pt2);
2288 throttle_work_update(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002289 process_deferred_bios(pool);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002290 throttle_work_complete(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002291}
2292
Joe Thornber905e51b2012-03-28 18:41:27 +01002293/*
2294 * We want to commit periodically so that not too much
2295 * unwritten data builds up.
2296 */
2297static void do_waker(struct work_struct *ws)
2298{
2299 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
2300 wake_worker(pool);
2301 queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
2302}
2303
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002304static void notify_of_pool_mode_change_to_oods(struct pool *pool);
2305
Joe Thornber85ad6432014-05-09 15:59:38 +01002306/*
2307 * We're holding onto IO to allow userland time to react. After the
2308 * timeout either the pool will have been resized (and thus back in
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002309 * PM_WRITE mode), or we degrade to PM_OUT_OF_DATA_SPACE w/ error_if_no_space.
Joe Thornber85ad6432014-05-09 15:59:38 +01002310 */
2311static void do_no_space_timeout(struct work_struct *ws)
2312{
2313 struct pool *pool = container_of(to_delayed_work(ws), struct pool,
2314 no_space_timeout);
2315
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002316 if (get_pool_mode(pool) == PM_OUT_OF_DATA_SPACE && !pool->pf.error_if_no_space) {
2317 pool->pf.error_if_no_space = true;
2318 notify_of_pool_mode_change_to_oods(pool);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002319 error_retry_list_with_code(pool, BLK_STS_NOSPC);
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002320 }
Joe Thornber85ad6432014-05-09 15:59:38 +01002321}
2322
Joe Thornber991d9fa2011-10-31 20:21:18 +00002323/*----------------------------------------------------------------*/
2324
Joe Thornbere7a3e872014-05-13 16:14:14 -04002325struct pool_work {
Joe Thornber738211f2014-03-03 15:52:28 +00002326 struct work_struct worker;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002327 struct completion complete;
Joe Thornber738211f2014-03-03 15:52:28 +00002328};
2329
Joe Thornbere7a3e872014-05-13 16:14:14 -04002330static struct pool_work *to_pool_work(struct work_struct *ws)
Joe Thornber738211f2014-03-03 15:52:28 +00002331{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002332 return container_of(ws, struct pool_work, worker);
2333}
2334
2335static void pool_work_complete(struct pool_work *pw)
2336{
2337 complete(&pw->complete);
2338}
2339
2340static void pool_work_wait(struct pool_work *pw, struct pool *pool,
2341 void (*fn)(struct work_struct *))
2342{
2343 INIT_WORK_ONSTACK(&pw->worker, fn);
2344 init_completion(&pw->complete);
2345 queue_work(pool->wq, &pw->worker);
2346 wait_for_completion(&pw->complete);
2347}
2348
2349/*----------------------------------------------------------------*/
2350
2351struct noflush_work {
2352 struct pool_work pw;
2353 struct thin_c *tc;
2354};
2355
2356static struct noflush_work *to_noflush(struct work_struct *ws)
2357{
2358 return container_of(to_pool_work(ws), struct noflush_work, pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002359}
2360
2361static void do_noflush_start(struct work_struct *ws)
2362{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002363 struct noflush_work *w = to_noflush(ws);
Joe Thornber738211f2014-03-03 15:52:28 +00002364 w->tc->requeue_mode = true;
2365 requeue_io(w->tc);
Joe Thornbere7a3e872014-05-13 16:14:14 -04002366 pool_work_complete(&w->pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002367}
2368
2369static void do_noflush_stop(struct work_struct *ws)
2370{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002371 struct noflush_work *w = to_noflush(ws);
Joe Thornber738211f2014-03-03 15:52:28 +00002372 w->tc->requeue_mode = false;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002373 pool_work_complete(&w->pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002374}
2375
2376static void noflush_work(struct thin_c *tc, void (*fn)(struct work_struct *))
2377{
2378 struct noflush_work w;
2379
Joe Thornber738211f2014-03-03 15:52:28 +00002380 w.tc = tc;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002381 pool_work_wait(&w.pw, tc->pool, fn);
Joe Thornber738211f2014-03-03 15:52:28 +00002382}
2383
2384/*----------------------------------------------------------------*/
2385
Joe Thornbere49e5822012-07-27 15:08:16 +01002386static enum pool_mode get_pool_mode(struct pool *pool)
2387{
2388 return pool->pf.mode;
2389}
2390
Joe Thornber3e1a0692014-03-03 16:03:26 +00002391static void notify_of_pool_mode_change(struct pool *pool, const char *new_mode)
2392{
2393 dm_table_event(pool->ti->table);
2394 DMINFO("%s: switching pool to %s mode",
2395 dm_device_name(pool->pool_md), new_mode);
2396}
2397
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002398static void notify_of_pool_mode_change_to_oods(struct pool *pool)
2399{
2400 if (!pool->pf.error_if_no_space)
2401 notify_of_pool_mode_change(pool, "out-of-data-space (queue IO)");
2402 else
2403 notify_of_pool_mode_change(pool, "out-of-data-space (error IO)");
2404}
2405
Joe Thornber34fbcf62015-04-16 12:58:35 +01002406static bool passdown_enabled(struct pool_c *pt)
2407{
2408 return pt->adjusted_pf.discard_passdown;
2409}
2410
2411static void set_discard_callbacks(struct pool *pool)
2412{
2413 struct pool_c *pt = pool->ti->private;
2414
2415 if (passdown_enabled(pt)) {
2416 pool->process_discard_cell = process_discard_cell_passdown;
Joe Thornber2a0fbff2016-07-01 14:00:02 +01002417 pool->process_prepared_discard = process_prepared_discard_passdown_pt1;
2418 pool->process_prepared_discard_pt2 = process_prepared_discard_passdown_pt2;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002419 } else {
2420 pool->process_discard_cell = process_discard_cell_no_passdown;
2421 pool->process_prepared_discard = process_prepared_discard_no_passdown;
2422 }
2423}
2424
Mike Snitzer8b64e882013-12-20 14:27:28 -05002425static void set_pool_mode(struct pool *pool, enum pool_mode new_mode)
Joe Thornbere49e5822012-07-27 15:08:16 +01002426{
Mike Snitzercdc2b412014-02-14 18:10:55 -05002427 struct pool_c *pt = pool->ti->private;
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002428 bool needs_check = dm_pool_metadata_needs_check(pool->pmd);
2429 enum pool_mode old_mode = get_pool_mode(pool);
Mark Rutland6aa7de02017-10-23 14:07:29 -07002430 unsigned long no_space_timeout = READ_ONCE(no_space_timeout_secs) * HZ;
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002431
2432 /*
2433 * Never allow the pool to transition to PM_WRITE mode if user
2434 * intervention is required to verify metadata and data consistency.
2435 */
2436 if (new_mode == PM_WRITE && needs_check) {
2437 DMERR("%s: unable to switch pool to write mode until repaired.",
2438 dm_device_name(pool->pool_md));
2439 if (old_mode != new_mode)
2440 new_mode = old_mode;
2441 else
2442 new_mode = PM_READ_ONLY;
2443 }
2444 /*
2445 * If we were in PM_FAIL mode, rollback of metadata failed. We're
2446 * not going to recover without a thin_repair. So we never let the
2447 * pool move out of the old mode.
2448 */
2449 if (old_mode == PM_FAIL)
2450 new_mode = old_mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002451
Mike Snitzer8b64e882013-12-20 14:27:28 -05002452 switch (new_mode) {
Joe Thornbere49e5822012-07-27 15:08:16 +01002453 case PM_FAIL:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002454 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002455 notify_of_pool_mode_change(pool, "failure");
Joe Thornber5383ef32013-12-04 16:30:01 -05002456 dm_pool_metadata_read_only(pool->pmd);
Joe Thornbere49e5822012-07-27 15:08:16 +01002457 pool->process_bio = process_bio_fail;
2458 pool->process_discard = process_bio_fail;
Joe Thornbera374bb22014-10-10 13:43:14 +01002459 pool->process_cell = process_cell_fail;
2460 pool->process_discard_cell = process_cell_fail;
Joe Thornbere49e5822012-07-27 15:08:16 +01002461 pool->process_prepared_mapping = process_prepared_mapping_fail;
2462 pool->process_prepared_discard = process_prepared_discard_fail;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002463
2464 error_retry_list(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01002465 break;
2466
2467 case PM_READ_ONLY:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002468 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002469 notify_of_pool_mode_change(pool, "read-only");
2470 dm_pool_metadata_read_only(pool->pmd);
2471 pool->process_bio = process_bio_read_only;
2472 pool->process_discard = process_bio_success;
Joe Thornbera374bb22014-10-10 13:43:14 +01002473 pool->process_cell = process_cell_read_only;
2474 pool->process_discard_cell = process_cell_success;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002475 pool->process_prepared_mapping = process_prepared_mapping_fail;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002476 pool->process_prepared_discard = process_prepared_discard_success;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002477
2478 error_retry_list(pool);
2479 break;
2480
2481 case PM_OUT_OF_DATA_SPACE:
2482 /*
2483 * Ideally we'd never hit this state; the low water mark
2484 * would trigger userland to extend the pool before we
2485 * completely run out of data space. However, many small
2486 * IOs to unprovisioned space can consume data space at an
2487 * alarming rate. Adjust your low water mark if you're
2488 * frequently seeing this mode.
2489 */
2490 if (old_mode != new_mode)
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002491 notify_of_pool_mode_change_to_oods(pool);
Mike Snitzerc3667cc2016-03-10 11:31:35 -05002492 pool->out_of_data_space = true;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002493 pool->process_bio = process_bio_read_only;
Joe Thornbera374bb22014-10-10 13:43:14 +01002494 pool->process_discard = process_discard_bio;
2495 pool->process_cell = process_cell_read_only;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002496 pool->process_prepared_mapping = process_prepared_mapping;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002497 set_discard_callbacks(pool);
Joe Thornber85ad6432014-05-09 15:59:38 +01002498
Mike Snitzer80c57892014-05-20 13:38:33 -04002499 if (!pool->pf.error_if_no_space && no_space_timeout)
2500 queue_delayed_work(pool->wq, &pool->no_space_timeout, no_space_timeout);
Joe Thornbere49e5822012-07-27 15:08:16 +01002501 break;
2502
2503 case PM_WRITE:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002504 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002505 notify_of_pool_mode_change(pool, "write");
Mike Snitzerc3667cc2016-03-10 11:31:35 -05002506 pool->out_of_data_space = false;
Mike Snitzer172c2382015-11-06 10:53:01 -05002507 pool->pf.error_if_no_space = pt->requested_pf.error_if_no_space;
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002508 dm_pool_metadata_read_write(pool->pmd);
Joe Thornbere49e5822012-07-27 15:08:16 +01002509 pool->process_bio = process_bio;
Joe Thornbera374bb22014-10-10 13:43:14 +01002510 pool->process_discard = process_discard_bio;
2511 pool->process_cell = process_cell;
Joe Thornbere49e5822012-07-27 15:08:16 +01002512 pool->process_prepared_mapping = process_prepared_mapping;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002513 set_discard_callbacks(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01002514 break;
2515 }
Mike Snitzer8b64e882013-12-20 14:27:28 -05002516
2517 pool->pf.mode = new_mode;
Mike Snitzercdc2b412014-02-14 18:10:55 -05002518 /*
2519 * The pool mode may have changed, sync it so bind_control_target()
2520 * doesn't cause an unexpected mode transition on resume.
2521 */
2522 pt->adjusted_pf.mode = new_mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002523}
2524
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002525static void abort_transaction(struct pool *pool)
2526{
2527 const char *dev_name = dm_device_name(pool->pool_md);
2528
2529 DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
2530 if (dm_pool_abort_metadata(pool->pmd)) {
2531 DMERR("%s: failed to abort metadata transaction", dev_name);
2532 set_pool_mode(pool, PM_FAIL);
2533 }
2534
2535 if (dm_pool_metadata_set_needs_check(pool->pmd)) {
2536 DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
2537 set_pool_mode(pool, PM_FAIL);
2538 }
2539}
2540
Joe Thornberb5330652013-12-04 19:51:33 -05002541static void metadata_operation_failed(struct pool *pool, const char *op, int r)
2542{
2543 DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
2544 dm_device_name(pool->pool_md), op, r);
2545
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002546 abort_transaction(pool);
Joe Thornberb5330652013-12-04 19:51:33 -05002547 set_pool_mode(pool, PM_READ_ONLY);
2548}
2549
Joe Thornbere49e5822012-07-27 15:08:16 +01002550/*----------------------------------------------------------------*/
2551
Joe Thornber991d9fa2011-10-31 20:21:18 +00002552/*
2553 * Mapping functions.
2554 */
2555
2556/*
2557 * Called only while mapping a thin bio to hand it over to the workqueue.
2558 */
2559static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
2560{
2561 unsigned long flags;
2562 struct pool *pool = tc->pool;
2563
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002564 spin_lock_irqsave(&tc->lock, flags);
2565 bio_list_add(&tc->deferred_bio_list, bio);
2566 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002567
2568 wake_worker(pool);
2569}
2570
Joe Thornber7d327fe2014-10-06 15:45:59 +01002571static void thin_defer_bio_with_throttle(struct thin_c *tc, struct bio *bio)
2572{
2573 struct pool *pool = tc->pool;
2574
2575 throttle_lock(&pool->throttle);
2576 thin_defer_bio(tc, bio);
2577 throttle_unlock(&pool->throttle);
2578}
2579
Joe Thornbera374bb22014-10-10 13:43:14 +01002580static void thin_defer_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2581{
2582 unsigned long flags;
2583 struct pool *pool = tc->pool;
2584
2585 throttle_lock(&pool->throttle);
2586 spin_lock_irqsave(&tc->lock, flags);
2587 list_add_tail(&cell->user_list, &tc->deferred_cells);
2588 spin_unlock_irqrestore(&tc->lock, flags);
2589 throttle_unlock(&pool->throttle);
2590
2591 wake_worker(pool);
2592}
2593
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002594static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
Joe Thornbereb2aa482012-03-28 18:41:28 +01002595{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002596 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01002597
2598 h->tc = tc;
2599 h->shared_read_entry = NULL;
Joe Thornbere8088072012-12-21 20:23:31 +00002600 h->all_io_entry = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002601 h->overwrite_mapping = NULL;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002602 h->cell = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002603}
2604
Joe Thornber991d9fa2011-10-31 20:21:18 +00002605/*
2606 * Non-blocking function called from the thin target's map function.
2607 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002608static int thin_bio_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002609{
2610 int r;
2611 struct thin_c *tc = ti->private;
2612 dm_block_t block = get_bio_block(tc, bio);
2613 struct dm_thin_device *td = tc->td;
2614 struct dm_thin_lookup_result result;
Joe Thornbera374bb22014-10-10 13:43:14 +01002615 struct dm_bio_prison_cell *virt_cell, *data_cell;
Joe Thornbere8088072012-12-21 20:23:31 +00002616 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002617
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002618 thin_hook_bio(tc, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01002619
Joe Thornber738211f2014-03-03 15:52:28 +00002620 if (tc->requeue_mode) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002621 bio->bi_status = BLK_STS_DM_REQUEUE;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002622 bio_endio(bio);
Joe Thornber738211f2014-03-03 15:52:28 +00002623 return DM_MAPIO_SUBMITTED;
2624 }
2625
Joe Thornbere49e5822012-07-27 15:08:16 +01002626 if (get_pool_mode(tc->pool) == PM_FAIL) {
2627 bio_io_error(bio);
2628 return DM_MAPIO_SUBMITTED;
2629 }
2630
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07002631 if (op_is_flush(bio->bi_opf) || bio_op(bio) == REQ_OP_DISCARD) {
Joe Thornber7d327fe2014-10-06 15:45:59 +01002632 thin_defer_bio_with_throttle(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002633 return DM_MAPIO_SUBMITTED;
2634 }
2635
Joe Thornberc822ed962014-10-10 09:41:09 +01002636 /*
2637 * We must hold the virtual cell before doing the lookup, otherwise
2638 * there's a race with discard.
2639 */
2640 build_virtual_key(tc->td, block, &key);
Joe Thornbera374bb22014-10-10 13:43:14 +01002641 if (bio_detain(tc->pool, &key, bio, &virt_cell))
Joe Thornberc822ed962014-10-10 09:41:09 +01002642 return DM_MAPIO_SUBMITTED;
2643
Joe Thornber991d9fa2011-10-31 20:21:18 +00002644 r = dm_thin_find_block(td, block, 0, &result);
2645
2646 /*
2647 * Note that we defer readahead too.
2648 */
2649 switch (r) {
2650 case 0:
2651 if (unlikely(result.shared)) {
2652 /*
2653 * We have a race condition here between the
2654 * result.shared value returned by the lookup and
2655 * snapshot creation, which may cause new
2656 * sharing.
2657 *
2658 * To avoid this always quiesce the origin before
2659 * taking the snap. You want to do this anyway to
2660 * ensure a consistent application view
2661 * (i.e. lockfs).
2662 *
2663 * More distant ancestors are irrelevant. The
2664 * shared flag will be set in their case.
2665 */
Joe Thornbera374bb22014-10-10 13:43:14 +01002666 thin_defer_cell(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002667 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002668 }
Joe Thornbere8088072012-12-21 20:23:31 +00002669
Joe Thornbere8088072012-12-21 20:23:31 +00002670 build_data_key(tc->td, result.block, &key);
Joe Thornbera374bb22014-10-10 13:43:14 +01002671 if (bio_detain(tc->pool, &key, bio, &data_cell)) {
2672 cell_defer_no_holder(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002673 return DM_MAPIO_SUBMITTED;
2674 }
2675
2676 inc_all_io_entry(tc->pool, bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01002677 cell_defer_no_holder(tc, data_cell);
2678 cell_defer_no_holder(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002679
2680 remap(tc, bio, result.block);
2681 return DM_MAPIO_REMAPPED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002682
2683 case -ENODATA:
Joe Thornbere49e5822012-07-27 15:08:16 +01002684 case -EWOULDBLOCK:
Joe Thornbera374bb22014-10-10 13:43:14 +01002685 thin_defer_cell(tc, virt_cell);
Joe Thornber2aab3852012-12-21 20:23:33 +00002686 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01002687
2688 default:
2689 /*
2690 * Must always call bio_io_error on failure.
2691 * dm_thin_find_block can fail with -EINVAL if the
2692 * pool is switched to fail-io mode.
2693 */
2694 bio_io_error(bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01002695 cell_defer_no_holder(tc, virt_cell);
Joe Thornber2aab3852012-12-21 20:23:33 +00002696 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002697 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002698}
2699
2700static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
2701{
Joe Thornber991d9fa2011-10-31 20:21:18 +00002702 struct pool_c *pt = container_of(cb, struct pool_c, callbacks);
Mike Snitzer760fe672014-03-20 08:36:47 -04002703 struct request_queue *q;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002704
Mike Snitzer760fe672014-03-20 08:36:47 -04002705 if (get_pool_mode(pt->pool) == PM_OUT_OF_DATA_SPACE)
2706 return 1;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002707
Mike Snitzer760fe672014-03-20 08:36:47 -04002708 q = bdev_get_queue(pt->data_dev->bdev);
Jan Karadc3b17c2017-02-02 15:56:50 +01002709 return bdi_congested(q->backing_dev_info, bdi_bits);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002710}
2711
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002712static void requeue_bios(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002713{
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002714 unsigned long flags;
2715 struct thin_c *tc;
2716
2717 rcu_read_lock();
2718 list_for_each_entry_rcu(tc, &pool->active_thins, list) {
2719 spin_lock_irqsave(&tc->lock, flags);
2720 bio_list_merge(&tc->deferred_bio_list, &tc->retry_on_resume_list);
2721 bio_list_init(&tc->retry_on_resume_list);
2722 spin_unlock_irqrestore(&tc->lock, flags);
2723 }
2724 rcu_read_unlock();
Joe Thornber991d9fa2011-10-31 20:21:18 +00002725}
2726
2727/*----------------------------------------------------------------
2728 * Binding of control targets to a pool object
2729 *--------------------------------------------------------------*/
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002730static bool data_dev_supports_discard(struct pool_c *pt)
2731{
2732 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
2733
2734 return q && blk_queue_discard(q);
2735}
2736
Joe Thornber58051b92013-03-20 17:21:25 +00002737static bool is_factor(sector_t block_size, uint32_t n)
2738{
2739 return !sector_div(block_size, n);
2740}
2741
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002742/*
2743 * If discard_passdown was enabled verify that the data device
Mike Snitzer0424caa2012-09-26 23:45:47 +01002744 * supports discards. Disable discard_passdown if not.
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002745 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01002746static void disable_passdown_if_not_supported(struct pool_c *pt)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002747{
Mike Snitzer0424caa2012-09-26 23:45:47 +01002748 struct pool *pool = pt->pool;
2749 struct block_device *data_bdev = pt->data_dev->bdev;
2750 struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002751 const char *reason = NULL;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002752 char buf[BDEVNAME_SIZE];
2753
Mike Snitzer0424caa2012-09-26 23:45:47 +01002754 if (!pt->adjusted_pf.discard_passdown)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002755 return;
2756
Mike Snitzer0424caa2012-09-26 23:45:47 +01002757 if (!data_dev_supports_discard(pt))
2758 reason = "discard unsupported";
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002759
Mike Snitzer0424caa2012-09-26 23:45:47 +01002760 else if (data_limits->max_discard_sectors < pool->sectors_per_block)
2761 reason = "max discard sectors smaller than a block";
2762
Mike Snitzer0424caa2012-09-26 23:45:47 +01002763 if (reason) {
2764 DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason);
2765 pt->adjusted_pf.discard_passdown = false;
2766 }
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002767}
2768
Joe Thornber991d9fa2011-10-31 20:21:18 +00002769static int bind_control_target(struct pool *pool, struct dm_target *ti)
2770{
2771 struct pool_c *pt = ti->private;
2772
Joe Thornbere49e5822012-07-27 15:08:16 +01002773 /*
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002774 * We want to make sure that a pool in PM_FAIL mode is never upgraded.
Joe Thornbere49e5822012-07-27 15:08:16 +01002775 */
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002776 enum pool_mode old_mode = get_pool_mode(pool);
Mike Snitzer0424caa2012-09-26 23:45:47 +01002777 enum pool_mode new_mode = pt->adjusted_pf.mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002778
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002779 /*
Mike Snitzer8b64e882013-12-20 14:27:28 -05002780 * Don't change the pool's mode until set_pool_mode() below.
2781 * Otherwise the pool's process_* function pointers may
2782 * not match the desired pool mode.
2783 */
2784 pt->adjusted_pf.mode = old_mode;
2785
2786 pool->ti = ti;
2787 pool->pf = pt->adjusted_pf;
2788 pool->low_water_blocks = pt->low_water_blocks;
2789
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002790 set_pool_mode(pool, new_mode);
Mike Snitzerf4026932012-05-19 01:01:01 +01002791
Joe Thornber991d9fa2011-10-31 20:21:18 +00002792 return 0;
2793}
2794
2795static void unbind_control_target(struct pool *pool, struct dm_target *ti)
2796{
2797 if (pool->ti == ti)
2798 pool->ti = NULL;
2799}
2800
2801/*----------------------------------------------------------------
2802 * Pool creation
2803 *--------------------------------------------------------------*/
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002804/* Initialize pool features. */
2805static void pool_features_init(struct pool_features *pf)
2806{
Joe Thornbere49e5822012-07-27 15:08:16 +01002807 pf->mode = PM_WRITE;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002808 pf->zero_new_blocks = true;
2809 pf->discard_enabled = true;
2810 pf->discard_passdown = true;
Mike Snitzer787a996c2013-12-06 16:21:43 -05002811 pf->error_if_no_space = false;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002812}
2813
Joe Thornber991d9fa2011-10-31 20:21:18 +00002814static void __pool_destroy(struct pool *pool)
2815{
2816 __pool_table_remove(pool);
2817
Joe Thornbera822c832015-07-03 10:22:42 +01002818 vfree(pool->cell_sort_array);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002819 if (dm_pool_metadata_close(pool->pmd) < 0)
2820 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
2821
Mike Snitzer44feb382012-10-12 21:02:10 +01002822 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002823 dm_kcopyd_client_destroy(pool->copier);
2824
2825 if (pool->wq)
2826 destroy_workqueue(pool->wq);
2827
2828 if (pool->next_mapping)
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002829 mempool_free(pool->next_mapping, &pool->mapping_pool);
2830 mempool_exit(&pool->mapping_pool);
Mike Snitzer44feb382012-10-12 21:02:10 +01002831 dm_deferred_set_destroy(pool->shared_read_ds);
2832 dm_deferred_set_destroy(pool->all_io_ds);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002833 kfree(pool);
2834}
2835
Mike Snitzera24c2562012-06-03 00:30:00 +01002836static struct kmem_cache *_new_mapping_cache;
Mike Snitzera24c2562012-06-03 00:30:00 +01002837
Joe Thornber991d9fa2011-10-31 20:21:18 +00002838static struct pool *pool_create(struct mapped_device *pool_md,
2839 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002840 unsigned long block_size,
2841 int read_only, char **error)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002842{
2843 int r;
2844 void *err_p;
2845 struct pool *pool;
2846 struct dm_pool_metadata *pmd;
Joe Thornbere49e5822012-07-27 15:08:16 +01002847 bool format_device = read_only ? false : true;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002848
Joe Thornbere49e5822012-07-27 15:08:16 +01002849 pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002850 if (IS_ERR(pmd)) {
2851 *error = "Error creating metadata object";
2852 return (struct pool *)pmd;
2853 }
2854
Kent Overstreetd3775352018-06-05 05:26:33 -04002855 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002856 if (!pool) {
2857 *error = "Error allocating memory for pool";
2858 err_p = ERR_PTR(-ENOMEM);
2859 goto bad_pool;
2860 }
2861
2862 pool->pmd = pmd;
2863 pool->sectors_per_block = block_size;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +01002864 if (block_size & (block_size - 1))
2865 pool->sectors_per_block_shift = -1;
2866 else
2867 pool->sectors_per_block_shift = __ffs(block_size);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002868 pool->low_water_blocks = 0;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002869 pool_features_init(&pool->pf);
Joe Thornbera195db22014-10-06 16:30:06 -04002870 pool->prison = dm_bio_prison_create();
Joe Thornber991d9fa2011-10-31 20:21:18 +00002871 if (!pool->prison) {
2872 *error = "Error creating pool's bio prison";
2873 err_p = ERR_PTR(-ENOMEM);
2874 goto bad_prison;
2875 }
2876
Mikulas Patockadf5d2e92013-03-01 22:45:49 +00002877 pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002878 if (IS_ERR(pool->copier)) {
2879 r = PTR_ERR(pool->copier);
2880 *error = "Error creating pool's kcopyd client";
2881 err_p = ERR_PTR(r);
2882 goto bad_kcopyd_client;
2883 }
2884
2885 /*
2886 * Create singlethreaded workqueue that will service all devices
2887 * that use this metadata.
2888 */
2889 pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
2890 if (!pool->wq) {
2891 *error = "Error creating pool's workqueue";
2892 err_p = ERR_PTR(-ENOMEM);
2893 goto bad_wq;
2894 }
2895
Joe Thornber7d327fe2014-10-06 15:45:59 +01002896 throttle_init(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002897 INIT_WORK(&pool->worker, do_worker);
Joe Thornber905e51b2012-03-28 18:41:27 +01002898 INIT_DELAYED_WORK(&pool->waker, do_waker);
Joe Thornber85ad6432014-05-09 15:59:38 +01002899 INIT_DELAYED_WORK(&pool->no_space_timeout, do_no_space_timeout);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002900 spin_lock_init(&pool->lock);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002901 bio_list_init(&pool->deferred_flush_bios);
2902 INIT_LIST_HEAD(&pool->prepared_mappings);
Joe Thornber104655f2012-03-28 18:41:28 +01002903 INIT_LIST_HEAD(&pool->prepared_discards);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01002904 INIT_LIST_HEAD(&pool->prepared_discards_pt2);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002905 INIT_LIST_HEAD(&pool->active_thins);
Joe Thornber88a66212013-12-04 20:16:12 -05002906 pool->low_water_triggered = false;
Mike Snitzer80e96c52014-11-07 15:09:46 -05002907 pool->suspended = true;
Mike Snitzerc3667cc2016-03-10 11:31:35 -05002908 pool->out_of_data_space = false;
Mike Snitzer44feb382012-10-12 21:02:10 +01002909
2910 pool->shared_read_ds = dm_deferred_set_create();
2911 if (!pool->shared_read_ds) {
2912 *error = "Error creating pool's shared read deferred set";
2913 err_p = ERR_PTR(-ENOMEM);
2914 goto bad_shared_read_ds;
2915 }
2916
2917 pool->all_io_ds = dm_deferred_set_create();
2918 if (!pool->all_io_ds) {
2919 *error = "Error creating pool's all io deferred set";
2920 err_p = ERR_PTR(-ENOMEM);
2921 goto bad_all_io_ds;
2922 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002923
2924 pool->next_mapping = NULL;
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002925 r = mempool_init_slab_pool(&pool->mapping_pool, MAPPING_POOL_SIZE,
2926 _new_mapping_cache);
2927 if (r) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002928 *error = "Error creating pool's mapping mempool";
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002929 err_p = ERR_PTR(r);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002930 goto bad_mapping_pool;
2931 }
2932
Kees Cook42bc47b2018-06-12 14:27:11 -07002933 pool->cell_sort_array =
2934 vmalloc(array_size(CELL_SORT_ARRAY_SIZE,
2935 sizeof(*pool->cell_sort_array)));
Joe Thornbera822c832015-07-03 10:22:42 +01002936 if (!pool->cell_sort_array) {
2937 *error = "Error allocating cell sort array";
2938 err_p = ERR_PTR(-ENOMEM);
2939 goto bad_sort_array;
2940 }
2941
Joe Thornber991d9fa2011-10-31 20:21:18 +00002942 pool->ref_count = 1;
Joe Thornber905e51b2012-03-28 18:41:27 +01002943 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002944 pool->pool_md = pool_md;
2945 pool->md_dev = metadata_dev;
2946 __pool_table_insert(pool);
2947
2948 return pool;
2949
Joe Thornbera822c832015-07-03 10:22:42 +01002950bad_sort_array:
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002951 mempool_exit(&pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002952bad_mapping_pool:
Mike Snitzer44feb382012-10-12 21:02:10 +01002953 dm_deferred_set_destroy(pool->all_io_ds);
2954bad_all_io_ds:
2955 dm_deferred_set_destroy(pool->shared_read_ds);
2956bad_shared_read_ds:
Joe Thornber991d9fa2011-10-31 20:21:18 +00002957 destroy_workqueue(pool->wq);
2958bad_wq:
2959 dm_kcopyd_client_destroy(pool->copier);
2960bad_kcopyd_client:
Mike Snitzer44feb382012-10-12 21:02:10 +01002961 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002962bad_prison:
2963 kfree(pool);
2964bad_pool:
2965 if (dm_pool_metadata_close(pmd))
2966 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
2967
2968 return err_p;
2969}
2970
2971static void __pool_inc(struct pool *pool)
2972{
2973 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
2974 pool->ref_count++;
2975}
2976
2977static void __pool_dec(struct pool *pool)
2978{
2979 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
2980 BUG_ON(!pool->ref_count);
2981 if (!--pool->ref_count)
2982 __pool_destroy(pool);
2983}
2984
2985static struct pool *__pool_find(struct mapped_device *pool_md,
2986 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002987 unsigned long block_size, int read_only,
2988 char **error, int *created)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002989{
2990 struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
2991
2992 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01002993 if (pool->pool_md != pool_md) {
2994 *error = "metadata device already in use by a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00002995 return ERR_PTR(-EBUSY);
Mike Snitzerf09996c2012-07-27 15:07:59 +01002996 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002997 __pool_inc(pool);
2998
2999 } else {
3000 pool = __pool_table_lookup(pool_md);
3001 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01003002 if (pool->md_dev != metadata_dev) {
3003 *error = "different pool cannot replace a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00003004 return ERR_PTR(-EINVAL);
Mike Snitzerf09996c2012-07-27 15:07:59 +01003005 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003006 __pool_inc(pool);
3007
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003008 } else {
Joe Thornbere49e5822012-07-27 15:08:16 +01003009 pool = pool_create(pool_md, metadata_dev, block_size, read_only, error);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003010 *created = 1;
3011 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003012 }
3013
3014 return pool;
3015}
3016
3017/*----------------------------------------------------------------
3018 * Pool target methods
3019 *--------------------------------------------------------------*/
3020static void pool_dtr(struct dm_target *ti)
3021{
3022 struct pool_c *pt = ti->private;
3023
3024 mutex_lock(&dm_thin_pool_table.mutex);
3025
3026 unbind_control_target(pt->pool, ti);
3027 __pool_dec(pt->pool);
3028 dm_put_device(ti, pt->metadata_dev);
3029 dm_put_device(ti, pt->data_dev);
3030 kfree(pt);
3031
3032 mutex_unlock(&dm_thin_pool_table.mutex);
3033}
3034
Joe Thornber991d9fa2011-10-31 20:21:18 +00003035static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
3036 struct dm_target *ti)
3037{
3038 int r;
3039 unsigned argc;
3040 const char *arg_name;
3041
Eric Biggers5916a222017-06-22 11:32:45 -07003042 static const struct dm_arg _args[] = {
Mike Snitzer74aa45c2014-01-15 19:07:58 -05003043 {0, 4, "Invalid number of pool feature arguments"},
Joe Thornber991d9fa2011-10-31 20:21:18 +00003044 };
3045
3046 /*
3047 * No feature arguments supplied.
3048 */
3049 if (!as->argc)
3050 return 0;
3051
3052 r = dm_read_arg_group(_args, as, &argc, &ti->error);
3053 if (r)
3054 return -EINVAL;
3055
3056 while (argc && !r) {
3057 arg_name = dm_shift_arg(as);
3058 argc--;
3059
Joe Thornbere49e5822012-07-27 15:08:16 +01003060 if (!strcasecmp(arg_name, "skip_block_zeroing"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003061 pf->zero_new_blocks = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003062
Joe Thornbere49e5822012-07-27 15:08:16 +01003063 else if (!strcasecmp(arg_name, "ignore_discard"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003064 pf->discard_enabled = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01003065
3066 else if (!strcasecmp(arg_name, "no_discard_passdown"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003067 pf->discard_passdown = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01003068
3069 else if (!strcasecmp(arg_name, "read_only"))
3070 pf->mode = PM_READ_ONLY;
3071
Mike Snitzer787a996c2013-12-06 16:21:43 -05003072 else if (!strcasecmp(arg_name, "error_if_no_space"))
3073 pf->error_if_no_space = true;
3074
Joe Thornbere49e5822012-07-27 15:08:16 +01003075 else {
3076 ti->error = "Unrecognised pool feature requested";
3077 r = -EINVAL;
3078 break;
3079 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003080 }
3081
3082 return r;
3083}
3084
Joe Thornberac8c3f32013-05-10 14:37:21 +01003085static void metadata_low_callback(void *context)
3086{
3087 struct pool *pool = context;
3088
3089 DMWARN("%s: reached low water mark for metadata device: sending event.",
3090 dm_device_name(pool->pool_md));
3091
3092 dm_table_event(pool->ti->table);
3093}
3094
Mike Snitzer7d489352014-02-12 23:58:15 -05003095static sector_t get_dev_size(struct block_device *bdev)
Joe Thornberb17446d2013-05-10 14:37:18 +01003096{
Mike Snitzer7d489352014-02-12 23:58:15 -05003097 return i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
3098}
3099
3100static void warn_if_metadata_device_too_big(struct block_device *bdev)
3101{
3102 sector_t metadata_dev_size = get_dev_size(bdev);
Joe Thornberb17446d2013-05-10 14:37:18 +01003103 char buffer[BDEVNAME_SIZE];
3104
Mike Snitzer7d489352014-02-12 23:58:15 -05003105 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING)
Joe Thornberb17446d2013-05-10 14:37:18 +01003106 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
3107 bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS);
Mike Snitzer7d489352014-02-12 23:58:15 -05003108}
3109
3110static sector_t get_metadata_dev_size(struct block_device *bdev)
3111{
3112 sector_t metadata_dev_size = get_dev_size(bdev);
3113
3114 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS)
3115 metadata_dev_size = THIN_METADATA_MAX_SECTORS;
Joe Thornberb17446d2013-05-10 14:37:18 +01003116
3117 return metadata_dev_size;
3118}
3119
Joe Thornber24347e92013-05-10 14:37:19 +01003120static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
3121{
3122 sector_t metadata_dev_size = get_metadata_dev_size(bdev);
3123
Mike Snitzer7d489352014-02-12 23:58:15 -05003124 sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE);
Joe Thornber24347e92013-05-10 14:37:19 +01003125
3126 return metadata_dev_size;
3127}
3128
Joe Thornber991d9fa2011-10-31 20:21:18 +00003129/*
Joe Thornberac8c3f32013-05-10 14:37:21 +01003130 * When a metadata threshold is crossed a dm event is triggered, and
3131 * userland should respond by growing the metadata device. We could let
3132 * userland set the threshold, like we do with the data threshold, but I'm
3133 * not sure they know enough to do this well.
3134 */
3135static dm_block_t calc_metadata_threshold(struct pool_c *pt)
3136{
3137 /*
3138 * 4M is ample for all ops with the possible exception of thin
3139 * device deletion which is harmless if it fails (just retry the
3140 * delete after you've grown the device).
3141 */
3142 dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
3143 return min((dm_block_t)1024ULL /* 4M */, quarter);
3144}
3145
3146/*
Joe Thornber991d9fa2011-10-31 20:21:18 +00003147 * thin-pool <metadata dev> <data dev>
3148 * <data block size (sectors)>
3149 * <low water mark (blocks)>
3150 * [<#feature args> [<arg>]*]
3151 *
3152 * Optional feature arguments are:
3153 * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003154 * ignore_discard: disable discard
3155 * no_discard_passdown: don't pass discards down to the data device
Mike Snitzer787a996c2013-12-06 16:21:43 -05003156 * read_only: Don't allow any changes to be made to the pool metadata.
3157 * error_if_no_space: error IOs, instead of queueing, if no space.
Joe Thornber991d9fa2011-10-31 20:21:18 +00003158 */
3159static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv)
3160{
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003161 int r, pool_created = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003162 struct pool_c *pt;
3163 struct pool *pool;
3164 struct pool_features pf;
3165 struct dm_arg_set as;
3166 struct dm_dev *data_dev;
3167 unsigned long block_size;
3168 dm_block_t low_water_blocks;
3169 struct dm_dev *metadata_dev;
Joe Thornber5d0db962013-05-10 14:37:19 +01003170 fmode_t metadata_mode;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003171
3172 /*
3173 * FIXME Remove validation from scope of lock.
3174 */
3175 mutex_lock(&dm_thin_pool_table.mutex);
3176
3177 if (argc < 4) {
3178 ti->error = "Invalid argument count";
3179 r = -EINVAL;
3180 goto out_unlock;
3181 }
Joe Thornber5d0db962013-05-10 14:37:19 +01003182
Joe Thornber991d9fa2011-10-31 20:21:18 +00003183 as.argc = argc;
3184 as.argv = argv;
3185
Joe Thornber5d0db962013-05-10 14:37:19 +01003186 /*
3187 * Set default pool features.
3188 */
3189 pool_features_init(&pf);
3190
3191 dm_consume_args(&as, 4);
3192 r = parse_pool_features(&as, &pf, ti);
3193 if (r)
3194 goto out_unlock;
3195
3196 metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
3197 r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003198 if (r) {
3199 ti->error = "Error opening metadata block device";
3200 goto out_unlock;
3201 }
Mike Snitzer7d489352014-02-12 23:58:15 -05003202 warn_if_metadata_device_too_big(metadata_dev->bdev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003203
3204 r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
3205 if (r) {
3206 ti->error = "Error getting data device";
3207 goto out_metadata;
3208 }
3209
3210 if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
3211 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
3212 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01003213 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00003214 ti->error = "Invalid block size";
3215 r = -EINVAL;
3216 goto out;
3217 }
3218
3219 if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
3220 ti->error = "Invalid low water mark";
3221 r = -EINVAL;
3222 goto out;
3223 }
3224
Joe Thornber991d9fa2011-10-31 20:21:18 +00003225 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
3226 if (!pt) {
3227 r = -ENOMEM;
3228 goto out;
3229 }
3230
3231 pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev,
Joe Thornbere49e5822012-07-27 15:08:16 +01003232 block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003233 if (IS_ERR(pool)) {
3234 r = PTR_ERR(pool);
3235 goto out_free_pt;
3236 }
3237
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003238 /*
3239 * 'pool_created' reflects whether this is the first table load.
3240 * Top level discard support is not allowed to be changed after
3241 * initial load. This would require a pool reload to trigger thin
3242 * device changes.
3243 */
3244 if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
3245 ti->error = "Discard support cannot be disabled once enabled";
3246 r = -EINVAL;
3247 goto out_flags_changed;
3248 }
3249
Joe Thornber991d9fa2011-10-31 20:21:18 +00003250 pt->pool = pool;
3251 pt->ti = ti;
3252 pt->metadata_dev = metadata_dev;
3253 pt->data_dev = data_dev;
3254 pt->low_water_blocks = low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01003255 pt->adjusted_pf = pt->requested_pf = pf;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00003256 ti->num_flush_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003257
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003258 /*
3259 * Only need to enable discards if the pool should pass
3260 * them down to the data device. The thin device's discard
3261 * processing will cause mappings to be removed from the btree.
3262 */
3263 if (pf.discard_enabled && pf.discard_passdown) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00003264 ti->num_discard_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003265
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003266 /*
3267 * Setting 'discards_supported' circumvents the normal
3268 * stacking of discard limits (this keeps the pool and
3269 * thin devices' discard limits consistent).
3270 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01003271 ti->discards_supported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003272 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003273 ti->private = pt;
3274
Joe Thornberac8c3f32013-05-10 14:37:21 +01003275 r = dm_pool_register_metadata_threshold(pt->pool->pmd,
3276 calc_metadata_threshold(pt),
3277 metadata_low_callback,
3278 pool);
3279 if (r)
Mike Snitzerba30670f2015-10-13 12:04:28 -04003280 goto out_flags_changed;
Joe Thornberac8c3f32013-05-10 14:37:21 +01003281
Joe Thornber991d9fa2011-10-31 20:21:18 +00003282 pt->callbacks.congested_fn = pool_is_congested;
3283 dm_table_add_target_callbacks(ti->table, &pt->callbacks);
3284
3285 mutex_unlock(&dm_thin_pool_table.mutex);
3286
3287 return 0;
3288
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003289out_flags_changed:
3290 __pool_dec(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003291out_free_pt:
3292 kfree(pt);
3293out:
3294 dm_put_device(ti, data_dev);
3295out_metadata:
3296 dm_put_device(ti, metadata_dev);
3297out_unlock:
3298 mutex_unlock(&dm_thin_pool_table.mutex);
3299
3300 return r;
3301}
3302
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00003303static int pool_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003304{
3305 int r;
3306 struct pool_c *pt = ti->private;
3307 struct pool *pool = pt->pool;
3308 unsigned long flags;
3309
3310 /*
3311 * As this is a singleton target, ti->begin is always zero.
3312 */
3313 spin_lock_irqsave(&pool->lock, flags);
Christoph Hellwig74d46992017-08-23 19:10:32 +02003314 bio_set_dev(bio, pt->data_dev->bdev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003315 r = DM_MAPIO_REMAPPED;
3316 spin_unlock_irqrestore(&pool->lock, flags);
3317
3318 return r;
3319}
3320
Joe Thornberb17446d2013-05-10 14:37:18 +01003321static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
3322{
3323 int r;
3324 struct pool_c *pt = ti->private;
3325 struct pool *pool = pt->pool;
3326 sector_t data_size = ti->len;
3327 dm_block_t sb_data_size;
3328
3329 *need_commit = false;
3330
3331 (void) sector_div(data_size, pool->sectors_per_block);
3332
3333 r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
3334 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003335 DMERR("%s: failed to retrieve data device size",
3336 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01003337 return r;
3338 }
3339
3340 if (data_size < sb_data_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003341 DMERR("%s: pool target (%llu blocks) too small: expected %llu",
3342 dm_device_name(pool->pool_md),
Joe Thornberb17446d2013-05-10 14:37:18 +01003343 (unsigned long long)data_size, sb_data_size);
3344 return -EINVAL;
3345
3346 } else if (data_size > sb_data_size) {
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05003347 if (dm_pool_metadata_needs_check(pool->pmd)) {
3348 DMERR("%s: unable to grow the data device until repaired.",
3349 dm_device_name(pool->pool_md));
3350 return 0;
3351 }
3352
Mike Snitzer6f7f51d2013-12-04 10:25:53 -05003353 if (sb_data_size)
3354 DMINFO("%s: growing the data device from %llu to %llu blocks",
3355 dm_device_name(pool->pool_md),
3356 sb_data_size, (unsigned long long)data_size);
Joe Thornberb17446d2013-05-10 14:37:18 +01003357 r = dm_pool_resize_data_dev(pool->pmd, data_size);
3358 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -05003359 metadata_operation_failed(pool, "dm_pool_resize_data_dev", r);
Joe Thornberb17446d2013-05-10 14:37:18 +01003360 return r;
3361 }
3362
3363 *need_commit = true;
3364 }
3365
3366 return 0;
3367}
3368
Joe Thornber24347e92013-05-10 14:37:19 +01003369static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
3370{
3371 int r;
3372 struct pool_c *pt = ti->private;
3373 struct pool *pool = pt->pool;
3374 dm_block_t metadata_dev_size, sb_metadata_dev_size;
3375
3376 *need_commit = false;
3377
Alasdair G Kergon610bba82013-05-19 18:57:50 +01003378 metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
Joe Thornber24347e92013-05-10 14:37:19 +01003379
3380 r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
3381 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003382 DMERR("%s: failed to retrieve metadata device size",
3383 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01003384 return r;
3385 }
3386
3387 if (metadata_dev_size < sb_metadata_dev_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003388 DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
3389 dm_device_name(pool->pool_md),
Joe Thornber24347e92013-05-10 14:37:19 +01003390 metadata_dev_size, sb_metadata_dev_size);
3391 return -EINVAL;
3392
3393 } else if (metadata_dev_size > sb_metadata_dev_size) {
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05003394 if (dm_pool_metadata_needs_check(pool->pmd)) {
3395 DMERR("%s: unable to grow the metadata device until repaired.",
3396 dm_device_name(pool->pool_md));
3397 return 0;
3398 }
3399
Mike Snitzer7d489352014-02-12 23:58:15 -05003400 warn_if_metadata_device_too_big(pool->md_dev);
Mike Snitzer6f7f51d2013-12-04 10:25:53 -05003401 DMINFO("%s: growing the metadata device from %llu to %llu blocks",
3402 dm_device_name(pool->pool_md),
3403 sb_metadata_dev_size, metadata_dev_size);
Joe Thornber24347e92013-05-10 14:37:19 +01003404 r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
3405 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -05003406 metadata_operation_failed(pool, "dm_pool_resize_metadata_dev", r);
Joe Thornber24347e92013-05-10 14:37:19 +01003407 return r;
3408 }
3409
3410 *need_commit = true;
3411 }
3412
3413 return 0;
3414}
3415
Joe Thornber991d9fa2011-10-31 20:21:18 +00003416/*
3417 * Retrieves the number of blocks of the data device from
3418 * the superblock and compares it to the actual device size,
3419 * thus resizing the data device in case it has grown.
3420 *
3421 * This both copes with opening preallocated data devices in the ctr
3422 * being followed by a resume
3423 * -and-
3424 * calling the resume method individually after userspace has
3425 * grown the data device in reaction to a table event.
3426 */
3427static int pool_preresume(struct dm_target *ti)
3428{
3429 int r;
Joe Thornber24347e92013-05-10 14:37:19 +01003430 bool need_commit1, need_commit2;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003431 struct pool_c *pt = ti->private;
3432 struct pool *pool = pt->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003433
3434 /*
3435 * Take control of the pool object.
3436 */
3437 r = bind_control_target(pool, ti);
3438 if (r)
3439 return r;
3440
Joe Thornberb17446d2013-05-10 14:37:18 +01003441 r = maybe_resize_data_dev(ti, &need_commit1);
3442 if (r)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003443 return r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003444
Joe Thornber24347e92013-05-10 14:37:19 +01003445 r = maybe_resize_metadata_dev(ti, &need_commit2);
3446 if (r)
3447 return r;
3448
3449 if (need_commit1 || need_commit2)
Joe Thornber020cc3b2013-12-04 15:05:36 -05003450 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003451
3452 return 0;
3453}
3454
Mike Snitzer583024d2014-10-28 20:58:45 -04003455static void pool_suspend_active_thins(struct pool *pool)
3456{
3457 struct thin_c *tc;
3458
3459 /* Suspend all active thin devices */
3460 tc = get_first_thin(pool);
3461 while (tc) {
3462 dm_internal_suspend_noflush(tc->thin_md);
3463 tc = get_next_thin(pool, tc);
3464 }
3465}
3466
3467static void pool_resume_active_thins(struct pool *pool)
3468{
3469 struct thin_c *tc;
3470
3471 /* Resume all active thin devices */
3472 tc = get_first_thin(pool);
3473 while (tc) {
3474 dm_internal_resume(tc->thin_md);
3475 tc = get_next_thin(pool, tc);
3476 }
3477}
3478
Joe Thornber991d9fa2011-10-31 20:21:18 +00003479static void pool_resume(struct dm_target *ti)
3480{
3481 struct pool_c *pt = ti->private;
3482 struct pool *pool = pt->pool;
3483 unsigned long flags;
3484
Mike Snitzer583024d2014-10-28 20:58:45 -04003485 /*
3486 * Must requeue active_thins' bios and then resume
3487 * active_thins _before_ clearing 'suspend' flag.
3488 */
3489 requeue_bios(pool);
3490 pool_resume_active_thins(pool);
3491
Joe Thornber991d9fa2011-10-31 20:21:18 +00003492 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber88a66212013-12-04 20:16:12 -05003493 pool->low_water_triggered = false;
Mike Snitzer80e96c52014-11-07 15:09:46 -05003494 pool->suspended = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003495 spin_unlock_irqrestore(&pool->lock, flags);
Mike Snitzer80e96c52014-11-07 15:09:46 -05003496
Joe Thornber905e51b2012-03-28 18:41:27 +01003497 do_waker(&pool->waker.work);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003498}
3499
Mike Snitzer80e96c52014-11-07 15:09:46 -05003500static void pool_presuspend(struct dm_target *ti)
3501{
3502 struct pool_c *pt = ti->private;
3503 struct pool *pool = pt->pool;
3504 unsigned long flags;
3505
3506 spin_lock_irqsave(&pool->lock, flags);
3507 pool->suspended = true;
3508 spin_unlock_irqrestore(&pool->lock, flags);
Mike Snitzer583024d2014-10-28 20:58:45 -04003509
3510 pool_suspend_active_thins(pool);
Mike Snitzer80e96c52014-11-07 15:09:46 -05003511}
3512
3513static void pool_presuspend_undo(struct dm_target *ti)
3514{
3515 struct pool_c *pt = ti->private;
3516 struct pool *pool = pt->pool;
3517 unsigned long flags;
3518
Mike Snitzer583024d2014-10-28 20:58:45 -04003519 pool_resume_active_thins(pool);
3520
Mike Snitzer80e96c52014-11-07 15:09:46 -05003521 spin_lock_irqsave(&pool->lock, flags);
3522 pool->suspended = false;
3523 spin_unlock_irqrestore(&pool->lock, flags);
3524}
3525
Joe Thornber991d9fa2011-10-31 20:21:18 +00003526static void pool_postsuspend(struct dm_target *ti)
3527{
Joe Thornber991d9fa2011-10-31 20:21:18 +00003528 struct pool_c *pt = ti->private;
3529 struct pool *pool = pt->pool;
3530
Nikolay Borisov18d03e82015-12-17 18:03:35 +02003531 cancel_delayed_work_sync(&pool->waker);
3532 cancel_delayed_work_sync(&pool->no_space_timeout);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003533 flush_workqueue(pool->wq);
Joe Thornber020cc3b2013-12-04 15:05:36 -05003534 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003535}
3536
3537static int check_arg_count(unsigned argc, unsigned args_required)
3538{
3539 if (argc != args_required) {
3540 DMWARN("Message received with %u arguments instead of %u.",
3541 argc, args_required);
3542 return -EINVAL;
3543 }
3544
3545 return 0;
3546}
3547
3548static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
3549{
3550 if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
3551 *dev_id <= MAX_DEV_ID)
3552 return 0;
3553
3554 if (warning)
3555 DMWARN("Message received with invalid device id: %s", arg);
3556
3557 return -EINVAL;
3558}
3559
3560static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool)
3561{
3562 dm_thin_id dev_id;
3563 int r;
3564
3565 r = check_arg_count(argc, 2);
3566 if (r)
3567 return r;
3568
3569 r = read_dev_id(argv[1], &dev_id, 1);
3570 if (r)
3571 return r;
3572
3573 r = dm_pool_create_thin(pool->pmd, dev_id);
3574 if (r) {
3575 DMWARN("Creation of new thinly-provisioned device with id %s failed.",
3576 argv[1]);
3577 return r;
3578 }
3579
3580 return 0;
3581}
3582
3583static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3584{
3585 dm_thin_id dev_id;
3586 dm_thin_id origin_dev_id;
3587 int r;
3588
3589 r = check_arg_count(argc, 3);
3590 if (r)
3591 return r;
3592
3593 r = read_dev_id(argv[1], &dev_id, 1);
3594 if (r)
3595 return r;
3596
3597 r = read_dev_id(argv[2], &origin_dev_id, 1);
3598 if (r)
3599 return r;
3600
3601 r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
3602 if (r) {
3603 DMWARN("Creation of new snapshot %s of device %s failed.",
3604 argv[1], argv[2]);
3605 return r;
3606 }
3607
3608 return 0;
3609}
3610
3611static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool)
3612{
3613 dm_thin_id dev_id;
3614 int r;
3615
3616 r = check_arg_count(argc, 2);
3617 if (r)
3618 return r;
3619
3620 r = read_dev_id(argv[1], &dev_id, 1);
3621 if (r)
3622 return r;
3623
3624 r = dm_pool_delete_thin_device(pool->pmd, dev_id);
3625 if (r)
3626 DMWARN("Deletion of thin device %s failed.", argv[1]);
3627
3628 return r;
3629}
3630
3631static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool)
3632{
3633 dm_thin_id old_id, new_id;
3634 int r;
3635
3636 r = check_arg_count(argc, 3);
3637 if (r)
3638 return r;
3639
3640 if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
3641 DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
3642 return -EINVAL;
3643 }
3644
3645 if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
3646 DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
3647 return -EINVAL;
3648 }
3649
3650 r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
3651 if (r) {
3652 DMWARN("Failed to change transaction id from %s to %s.",
3653 argv[1], argv[2]);
3654 return r;
3655 }
3656
3657 return 0;
3658}
3659
Joe Thornbercc8394d2012-06-03 00:30:01 +01003660static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3661{
3662 int r;
3663
3664 r = check_arg_count(argc, 1);
3665 if (r)
3666 return r;
3667
Joe Thornber020cc3b2013-12-04 15:05:36 -05003668 (void) commit(pool);
Joe Thornber0d200ae2012-07-03 12:55:31 +01003669
Joe Thornbercc8394d2012-06-03 00:30:01 +01003670 r = dm_pool_reserve_metadata_snap(pool->pmd);
3671 if (r)
3672 DMWARN("reserve_metadata_snap message failed.");
3673
3674 return r;
3675}
3676
3677static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3678{
3679 int r;
3680
3681 r = check_arg_count(argc, 1);
3682 if (r)
3683 return r;
3684
3685 r = dm_pool_release_metadata_snap(pool->pmd);
3686 if (r)
3687 DMWARN("release_metadata_snap message failed.");
3688
3689 return r;
3690}
3691
Joe Thornber991d9fa2011-10-31 20:21:18 +00003692/*
3693 * Messages supported:
3694 * create_thin <dev_id>
3695 * create_snap <dev_id> <origin_id>
3696 * delete <dev_id>
Joe Thornber991d9fa2011-10-31 20:21:18 +00003697 * set_transaction_id <current_trans_id> <new_trans_id>
Joe Thornbercc8394d2012-06-03 00:30:01 +01003698 * reserve_metadata_snap
3699 * release_metadata_snap
Joe Thornber991d9fa2011-10-31 20:21:18 +00003700 */
Mike Snitzer1eb5fa82018-02-28 15:59:59 -05003701static int pool_message(struct dm_target *ti, unsigned argc, char **argv,
3702 char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003703{
3704 int r = -EINVAL;
3705 struct pool_c *pt = ti->private;
3706 struct pool *pool = pt->pool;
3707
Joe Thornber2a7eaea2015-01-26 11:38:21 +00003708 if (get_pool_mode(pool) >= PM_READ_ONLY) {
3709 DMERR("%s: unable to service pool target messages in READ_ONLY or FAIL mode",
3710 dm_device_name(pool->pool_md));
Mike Snitzerfd467692015-06-09 12:31:26 -04003711 return -EOPNOTSUPP;
Joe Thornber2a7eaea2015-01-26 11:38:21 +00003712 }
3713
Joe Thornber991d9fa2011-10-31 20:21:18 +00003714 if (!strcasecmp(argv[0], "create_thin"))
3715 r = process_create_thin_mesg(argc, argv, pool);
3716
3717 else if (!strcasecmp(argv[0], "create_snap"))
3718 r = process_create_snap_mesg(argc, argv, pool);
3719
3720 else if (!strcasecmp(argv[0], "delete"))
3721 r = process_delete_mesg(argc, argv, pool);
3722
3723 else if (!strcasecmp(argv[0], "set_transaction_id"))
3724 r = process_set_transaction_id_mesg(argc, argv, pool);
3725
Joe Thornbercc8394d2012-06-03 00:30:01 +01003726 else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
3727 r = process_reserve_metadata_snap_mesg(argc, argv, pool);
3728
3729 else if (!strcasecmp(argv[0], "release_metadata_snap"))
3730 r = process_release_metadata_snap_mesg(argc, argv, pool);
3731
Joe Thornber991d9fa2011-10-31 20:21:18 +00003732 else
3733 DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
3734
Joe Thornbere49e5822012-07-27 15:08:16 +01003735 if (!r)
Joe Thornber020cc3b2013-12-04 15:05:36 -05003736 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003737
3738 return r;
3739}
3740
Joe Thornbere49e5822012-07-27 15:08:16 +01003741static void emit_flags(struct pool_features *pf, char *result,
3742 unsigned sz, unsigned maxlen)
3743{
3744 unsigned count = !pf->zero_new_blocks + !pf->discard_enabled +
Mike Snitzer787a996c2013-12-06 16:21:43 -05003745 !pf->discard_passdown + (pf->mode == PM_READ_ONLY) +
3746 pf->error_if_no_space;
Joe Thornbere49e5822012-07-27 15:08:16 +01003747 DMEMIT("%u ", count);
3748
3749 if (!pf->zero_new_blocks)
3750 DMEMIT("skip_block_zeroing ");
3751
3752 if (!pf->discard_enabled)
3753 DMEMIT("ignore_discard ");
3754
3755 if (!pf->discard_passdown)
3756 DMEMIT("no_discard_passdown ");
3757
3758 if (pf->mode == PM_READ_ONLY)
3759 DMEMIT("read_only ");
Mike Snitzer787a996c2013-12-06 16:21:43 -05003760
3761 if (pf->error_if_no_space)
3762 DMEMIT("error_if_no_space ");
Joe Thornbere49e5822012-07-27 15:08:16 +01003763}
3764
Joe Thornber991d9fa2011-10-31 20:21:18 +00003765/*
3766 * Status line is:
3767 * <transaction id> <used metadata sectors>/<total metadata sectors>
3768 * <used data sectors>/<total data sectors> <held metadata root>
Mike Snitzere4c78e22015-07-15 11:40:24 -04003769 * <pool mode> <discard config> <no space config> <needs_check>
Joe Thornber991d9fa2011-10-31 20:21:18 +00003770 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003771static void pool_status(struct dm_target *ti, status_type_t type,
3772 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003773{
Joe Thornbere49e5822012-07-27 15:08:16 +01003774 int r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003775 unsigned sz = 0;
3776 uint64_t transaction_id;
3777 dm_block_t nr_free_blocks_data;
3778 dm_block_t nr_free_blocks_metadata;
3779 dm_block_t nr_blocks_data;
3780 dm_block_t nr_blocks_metadata;
3781 dm_block_t held_root;
3782 char buf[BDEVNAME_SIZE];
3783 char buf2[BDEVNAME_SIZE];
3784 struct pool_c *pt = ti->private;
3785 struct pool *pool = pt->pool;
3786
3787 switch (type) {
3788 case STATUSTYPE_INFO:
Joe Thornbere49e5822012-07-27 15:08:16 +01003789 if (get_pool_mode(pool) == PM_FAIL) {
3790 DMEMIT("Fail");
3791 break;
3792 }
3793
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01003794 /* Commit to ensure statistics aren't out-of-date */
3795 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
Joe Thornber020cc3b2013-12-04 15:05:36 -05003796 (void) commit(pool);
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01003797
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003798 r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
3799 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003800 DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
3801 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003802 goto err;
3803 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003804
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003805 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
3806 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003807 DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
3808 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003809 goto err;
3810 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003811
3812 r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003813 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003814 DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
3815 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003816 goto err;
3817 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003818
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003819 r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
3820 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003821 DMERR("%s: dm_pool_get_free_block_count returned %d",
3822 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003823 goto err;
3824 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003825
3826 r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003827 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003828 DMERR("%s: dm_pool_get_data_dev_size returned %d",
3829 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003830 goto err;
3831 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003832
Joe Thornbercc8394d2012-06-03 00:30:01 +01003833 r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003834 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003835 DMERR("%s: dm_pool_get_metadata_snap returned %d",
3836 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003837 goto err;
3838 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003839
3840 DMEMIT("%llu %llu/%llu %llu/%llu ",
3841 (unsigned long long)transaction_id,
3842 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
3843 (unsigned long long)nr_blocks_metadata,
3844 (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
3845 (unsigned long long)nr_blocks_data);
3846
3847 if (held_root)
Joe Thornbere49e5822012-07-27 15:08:16 +01003848 DMEMIT("%llu ", held_root);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003849 else
Joe Thornbere49e5822012-07-27 15:08:16 +01003850 DMEMIT("- ");
3851
Joe Thornber3e1a0692014-03-03 16:03:26 +00003852 if (pool->pf.mode == PM_OUT_OF_DATA_SPACE)
3853 DMEMIT("out_of_data_space ");
3854 else if (pool->pf.mode == PM_READ_ONLY)
Joe Thornbere49e5822012-07-27 15:08:16 +01003855 DMEMIT("ro ");
3856 else
3857 DMEMIT("rw ");
3858
Mike Snitzer018debe2012-12-21 20:23:32 +00003859 if (!pool->pf.discard_enabled)
Mike Snitzer787a996c2013-12-06 16:21:43 -05003860 DMEMIT("ignore_discard ");
Mike Snitzer018debe2012-12-21 20:23:32 +00003861 else if (pool->pf.discard_passdown)
Mike Snitzer787a996c2013-12-06 16:21:43 -05003862 DMEMIT("discard_passdown ");
Joe Thornbere49e5822012-07-27 15:08:16 +01003863 else
Mike Snitzer787a996c2013-12-06 16:21:43 -05003864 DMEMIT("no_discard_passdown ");
3865
3866 if (pool->pf.error_if_no_space)
3867 DMEMIT("error_if_no_space ");
3868 else
3869 DMEMIT("queue_if_no_space ");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003870
Mike Snitzere4c78e22015-07-15 11:40:24 -04003871 if (dm_pool_metadata_needs_check(pool->pmd))
3872 DMEMIT("needs_check ");
3873 else
3874 DMEMIT("- ");
3875
Andy Grover63c8ecb2018-07-27 15:51:57 -07003876 DMEMIT("%llu ", (unsigned long long)calc_metadata_threshold(pt));
3877
Joe Thornber991d9fa2011-10-31 20:21:18 +00003878 break;
3879
3880 case STATUSTYPE_TABLE:
3881 DMEMIT("%s %s %lu %llu ",
3882 format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
3883 format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
3884 (unsigned long)pool->sectors_per_block,
3885 (unsigned long long)pt->low_water_blocks);
Mike Snitzer0424caa2012-09-26 23:45:47 +01003886 emit_flags(&pt->requested_pf, result, sz, maxlen);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003887 break;
3888 }
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003889 return;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003890
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003891err:
3892 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003893}
3894
3895static int pool_iterate_devices(struct dm_target *ti,
3896 iterate_devices_callout_fn fn, void *data)
3897{
3898 struct pool_c *pt = ti->private;
3899
3900 return fn(ti, pt->data_dev, 0, ti->len, data);
3901}
3902
Joe Thornber991d9fa2011-10-31 20:21:18 +00003903static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
3904{
3905 struct pool_c *pt = ti->private;
3906 struct pool *pool = pt->pool;
Mike Snitzer604ea902014-10-09 18:43:25 -04003907 sector_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
3908
3909 /*
Mike Snitzerd200c302014-11-20 18:07:43 -05003910 * If max_sectors is smaller than pool->sectors_per_block adjust it
3911 * to the highest possible power-of-2 factor of pool->sectors_per_block.
3912 * This is especially beneficial when the pool's data device is a RAID
3913 * device that has a full stripe width that matches pool->sectors_per_block
3914 * -- because even though partial RAID stripe-sized IOs will be issued to a
3915 * single RAID stripe; when aggregated they will end on a full RAID stripe
3916 * boundary.. which avoids additional partial RAID stripe writes cascading
Mike Snitzer604ea902014-10-09 18:43:25 -04003917 */
Mike Snitzer604ea902014-10-09 18:43:25 -04003918 if (limits->max_sectors < pool->sectors_per_block) {
3919 while (!is_factor(pool->sectors_per_block, limits->max_sectors)) {
3920 if ((limits->max_sectors & (limits->max_sectors - 1)) == 0)
3921 limits->max_sectors--;
3922 limits->max_sectors = rounddown_pow_of_two(limits->max_sectors);
3923 }
Mike Snitzer604ea902014-10-09 18:43:25 -04003924 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003925
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04003926 /*
3927 * If the system-determined stacked limits are compatible with the
3928 * pool's blocksize (io_opt is a factor) do not override them.
3929 */
3930 if (io_opt_sectors < pool->sectors_per_block ||
Mike Snitzer604ea902014-10-09 18:43:25 -04003931 !is_factor(io_opt_sectors, pool->sectors_per_block)) {
3932 if (is_factor(pool->sectors_per_block, limits->max_sectors))
3933 blk_limits_io_min(limits, limits->max_sectors << SECTOR_SHIFT);
3934 else
3935 blk_limits_io_min(limits, pool->sectors_per_block << SECTOR_SHIFT);
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04003936 blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
3937 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01003938
3939 /*
3940 * pt->adjusted_pf is a staging area for the actual features to use.
3941 * They get transferred to the live pool in bind_control_target()
3942 * called from pool_preresume().
3943 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04003944 if (!pt->adjusted_pf.discard_enabled) {
3945 /*
3946 * Must explicitly disallow stacking discard limits otherwise the
3947 * block layer will stack them if pool's data device has support.
3948 * QUEUE_FLAG_DISCARD wouldn't be set but there is no way for the
3949 * user to see that, so make sure to set all discard limits to 0.
3950 */
3951 limits->discard_granularity = 0;
Mike Snitzer0424caa2012-09-26 23:45:47 +01003952 return;
Mike Snitzerb60ab992013-09-19 18:49:11 -04003953 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01003954
3955 disable_passdown_if_not_supported(pt);
3956
Joe Thornber34fbcf62015-04-16 12:58:35 +01003957 /*
3958 * The pool uses the same discard limits as the underlying data
3959 * device. DM core has already set this up.
3960 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00003961}
3962
3963static struct target_type pool_target = {
3964 .name = "thin-pool",
3965 .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
3966 DM_TARGET_IMMUTABLE,
Andy Grover63c8ecb2018-07-27 15:51:57 -07003967 .version = {1, 20, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00003968 .module = THIS_MODULE,
3969 .ctr = pool_ctr,
3970 .dtr = pool_dtr,
3971 .map = pool_map,
Mike Snitzer80e96c52014-11-07 15:09:46 -05003972 .presuspend = pool_presuspend,
3973 .presuspend_undo = pool_presuspend_undo,
Joe Thornber991d9fa2011-10-31 20:21:18 +00003974 .postsuspend = pool_postsuspend,
3975 .preresume = pool_preresume,
3976 .resume = pool_resume,
3977 .message = pool_message,
3978 .status = pool_status,
Joe Thornber991d9fa2011-10-31 20:21:18 +00003979 .iterate_devices = pool_iterate_devices,
3980 .io_hints = pool_io_hints,
3981};
3982
3983/*----------------------------------------------------------------
3984 * Thin target methods
3985 *--------------------------------------------------------------*/
Joe Thornberb10ebd32014-04-08 11:29:01 +01003986static void thin_get(struct thin_c *tc)
3987{
3988 atomic_inc(&tc->refcount);
3989}
3990
3991static void thin_put(struct thin_c *tc)
3992{
3993 if (atomic_dec_and_test(&tc->refcount))
3994 complete(&tc->can_destroy);
3995}
3996
Joe Thornber991d9fa2011-10-31 20:21:18 +00003997static void thin_dtr(struct dm_target *ti)
3998{
3999 struct thin_c *tc = ti->private;
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004000 unsigned long flags;
4001
4002 spin_lock_irqsave(&tc->pool->lock, flags);
4003 list_del_rcu(&tc->list);
4004 spin_unlock_irqrestore(&tc->pool->lock, flags);
4005 synchronize_rcu();
Joe Thornber991d9fa2011-10-31 20:21:18 +00004006
Mikulas Patocka17181fb2014-11-05 17:00:13 -05004007 thin_put(tc);
4008 wait_for_completion(&tc->can_destroy);
4009
Joe Thornber991d9fa2011-10-31 20:21:18 +00004010 mutex_lock(&dm_thin_pool_table.mutex);
4011
4012 __pool_dec(tc->pool);
4013 dm_pool_close_thin_device(tc->td);
4014 dm_put_device(ti, tc->pool_dev);
Joe Thornber2dd9c252012-03-28 18:41:28 +01004015 if (tc->origin_dev)
4016 dm_put_device(ti, tc->origin_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004017 kfree(tc);
4018
4019 mutex_unlock(&dm_thin_pool_table.mutex);
4020}
4021
4022/*
4023 * Thin target parameters:
4024 *
Joe Thornber2dd9c252012-03-28 18:41:28 +01004025 * <pool_dev> <dev_id> [origin_dev]
Joe Thornber991d9fa2011-10-31 20:21:18 +00004026 *
4027 * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
4028 * dev_id: the internal device identifier
Joe Thornber2dd9c252012-03-28 18:41:28 +01004029 * origin_dev: a device external to the pool that should act as the origin
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004030 *
4031 * If the pool device has discards disabled, they get disabled for the thin
4032 * device as well.
Joe Thornber991d9fa2011-10-31 20:21:18 +00004033 */
4034static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
4035{
4036 int r;
4037 struct thin_c *tc;
Joe Thornber2dd9c252012-03-28 18:41:28 +01004038 struct dm_dev *pool_dev, *origin_dev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004039 struct mapped_device *pool_md;
Joe Thornber5e3283e2014-04-08 11:08:41 +01004040 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004041
4042 mutex_lock(&dm_thin_pool_table.mutex);
4043
Joe Thornber2dd9c252012-03-28 18:41:28 +01004044 if (argc != 2 && argc != 3) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00004045 ti->error = "Invalid argument count";
4046 r = -EINVAL;
4047 goto out_unlock;
4048 }
4049
4050 tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
4051 if (!tc) {
4052 ti->error = "Out of memory";
4053 r = -ENOMEM;
4054 goto out_unlock;
4055 }
Mike Snitzer583024d2014-10-28 20:58:45 -04004056 tc->thin_md = dm_table_get_md(ti->table);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004057 spin_lock_init(&tc->lock);
Joe Thornbera374bb22014-10-10 13:43:14 +01004058 INIT_LIST_HEAD(&tc->deferred_cells);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004059 bio_list_init(&tc->deferred_bio_list);
4060 bio_list_init(&tc->retry_on_resume_list);
Mike Snitzer67324ea2014-03-21 18:33:41 -04004061 tc->sort_bio_list = RB_ROOT;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004062
Joe Thornber2dd9c252012-03-28 18:41:28 +01004063 if (argc == 3) {
4064 r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
4065 if (r) {
4066 ti->error = "Error opening origin device";
4067 goto bad_origin_dev;
4068 }
4069 tc->origin_dev = origin_dev;
4070 }
4071
Joe Thornber991d9fa2011-10-31 20:21:18 +00004072 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
4073 if (r) {
4074 ti->error = "Error opening pool device";
4075 goto bad_pool_dev;
4076 }
4077 tc->pool_dev = pool_dev;
4078
4079 if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
4080 ti->error = "Invalid device id";
4081 r = -EINVAL;
4082 goto bad_common;
4083 }
4084
4085 pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
4086 if (!pool_md) {
4087 ti->error = "Couldn't get pool mapped device";
4088 r = -EINVAL;
4089 goto bad_common;
4090 }
4091
4092 tc->pool = __pool_table_lookup(pool_md);
4093 if (!tc->pool) {
4094 ti->error = "Couldn't find pool object";
4095 r = -EINVAL;
4096 goto bad_pool_lookup;
4097 }
4098 __pool_inc(tc->pool);
4099
Joe Thornbere49e5822012-07-27 15:08:16 +01004100 if (get_pool_mode(tc->pool) == PM_FAIL) {
4101 ti->error = "Couldn't open thin device, Pool is in fail mode";
Mike Snitzer1acacc02014-02-19 20:32:33 -05004102 r = -EINVAL;
Mike Snitzer80e96c52014-11-07 15:09:46 -05004103 goto bad_pool;
Joe Thornbere49e5822012-07-27 15:08:16 +01004104 }
4105
Joe Thornber991d9fa2011-10-31 20:21:18 +00004106 r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
4107 if (r) {
4108 ti->error = "Couldn't open thin internal device";
Mike Snitzer80e96c52014-11-07 15:09:46 -05004109 goto bad_pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004110 }
4111
Mike Snitzer542f9032012-07-27 15:08:00 +01004112 r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
4113 if (r)
Mike Snitzer80e96c52014-11-07 15:09:46 -05004114 goto bad;
Mike Snitzer542f9032012-07-27 15:08:00 +01004115
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00004116 ti->num_flush_bios = 1;
Joe Thornber16ad3d12012-07-27 15:08:07 +01004117 ti->flush_supported = true;
Mike Snitzer30187e12016-01-31 13:28:26 -05004118 ti->per_io_data_size = sizeof(struct dm_thin_endio_hook);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004119
4120 /* In case the pool supports discards, pass them on. */
4121 if (tc->pool->pf.discard_enabled) {
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01004122 ti->discards_supported = true;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00004123 ti->num_discard_bios = 1;
Joe Thornber34fbcf62015-04-16 12:58:35 +01004124 ti->split_discard_bios = false;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004125 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004126
Joe Thornber991d9fa2011-10-31 20:21:18 +00004127 mutex_unlock(&dm_thin_pool_table.mutex);
4128
Joe Thornber5e3283e2014-04-08 11:08:41 +01004129 spin_lock_irqsave(&tc->pool->lock, flags);
Mike Snitzer80e96c52014-11-07 15:09:46 -05004130 if (tc->pool->suspended) {
4131 spin_unlock_irqrestore(&tc->pool->lock, flags);
4132 mutex_lock(&dm_thin_pool_table.mutex); /* reacquire for __pool_dec */
4133 ti->error = "Unable to activate thin device while pool is suspended";
4134 r = -EINVAL;
4135 goto bad;
4136 }
Marc Dionne2b94e892014-12-17 07:59:59 -05004137 atomic_set(&tc->refcount, 1);
4138 init_completion(&tc->can_destroy);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004139 list_add_tail_rcu(&tc->list, &tc->pool->active_thins);
Joe Thornber5e3283e2014-04-08 11:08:41 +01004140 spin_unlock_irqrestore(&tc->pool->lock, flags);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004141 /*
4142 * This synchronize_rcu() call is needed here otherwise we risk a
4143 * wake_worker() call finding no bios to process (because the newly
4144 * added tc isn't yet visible). So this reduces latency since we
4145 * aren't then dependent on the periodic commit to wake_worker().
4146 */
4147 synchronize_rcu();
4148
Mike Snitzer80e96c52014-11-07 15:09:46 -05004149 dm_put(pool_md);
4150
Joe Thornber991d9fa2011-10-31 20:21:18 +00004151 return 0;
4152
Mike Snitzer80e96c52014-11-07 15:09:46 -05004153bad:
Mike Snitzer1acacc02014-02-19 20:32:33 -05004154 dm_pool_close_thin_device(tc->td);
Mike Snitzer80e96c52014-11-07 15:09:46 -05004155bad_pool:
Joe Thornber991d9fa2011-10-31 20:21:18 +00004156 __pool_dec(tc->pool);
4157bad_pool_lookup:
4158 dm_put(pool_md);
4159bad_common:
4160 dm_put_device(ti, tc->pool_dev);
4161bad_pool_dev:
Joe Thornber2dd9c252012-03-28 18:41:28 +01004162 if (tc->origin_dev)
4163 dm_put_device(ti, tc->origin_dev);
4164bad_origin_dev:
Joe Thornber991d9fa2011-10-31 20:21:18 +00004165 kfree(tc);
4166out_unlock:
4167 mutex_unlock(&dm_thin_pool_table.mutex);
4168
4169 return r;
4170}
4171
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004172static int thin_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004173{
Kent Overstreet4f024f32013-10-11 15:44:27 -07004174 bio->bi_iter.bi_sector = dm_target_offset(ti, bio->bi_iter.bi_sector);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004175
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004176 return thin_bio_map(ti, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004177}
4178
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02004179static int thin_endio(struct dm_target *ti, struct bio *bio,
4180 blk_status_t *err)
Joe Thornbereb2aa482012-03-28 18:41:28 +01004181{
4182 unsigned long flags;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00004183 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01004184 struct list_head work;
Mike Snitzera24c2562012-06-03 00:30:00 +01004185 struct dm_thin_new_mapping *m, *tmp;
Joe Thornbereb2aa482012-03-28 18:41:28 +01004186 struct pool *pool = h->tc->pool;
4187
4188 if (h->shared_read_entry) {
4189 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01004190 dm_deferred_entry_dec(h->shared_read_entry, &work);
Joe Thornbereb2aa482012-03-28 18:41:28 +01004191
4192 spin_lock_irqsave(&pool->lock, flags);
4193 list_for_each_entry_safe(m, tmp, &work, list) {
4194 list_del(&m->list);
Joe Thornber50f3c3e2014-06-13 13:57:09 +01004195 __complete_mapping_preparation(m);
Joe Thornbereb2aa482012-03-28 18:41:28 +01004196 }
4197 spin_unlock_irqrestore(&pool->lock, flags);
4198 }
4199
Joe Thornber104655f2012-03-28 18:41:28 +01004200 if (h->all_io_entry) {
4201 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01004202 dm_deferred_entry_dec(h->all_io_entry, &work);
Joe Thornber563af182012-12-21 20:23:31 +00004203 if (!list_empty(&work)) {
4204 spin_lock_irqsave(&pool->lock, flags);
4205 list_for_each_entry_safe(m, tmp, &work, list)
Mike Snitzerdaec3382013-12-11 14:01:20 -05004206 list_add_tail(&m->list, &pool->prepared_discards);
Joe Thornber563af182012-12-21 20:23:31 +00004207 spin_unlock_irqrestore(&pool->lock, flags);
4208 wake_worker(pool);
4209 }
Joe Thornber104655f2012-03-28 18:41:28 +01004210 }
4211
Joe Thornber34fbcf62015-04-16 12:58:35 +01004212 if (h->cell)
4213 cell_defer_no_holder(h->tc, h->cell);
4214
Christoph Hellwig1be56902017-06-03 09:38:03 +02004215 return DM_ENDIO_DONE;
Joe Thornbereb2aa482012-03-28 18:41:28 +01004216}
4217
Joe Thornber738211f2014-03-03 15:52:28 +00004218static void thin_presuspend(struct dm_target *ti)
4219{
4220 struct thin_c *tc = ti->private;
4221
4222 if (dm_noflush_suspending(ti))
4223 noflush_work(tc, do_noflush_start);
4224}
4225
Joe Thornber991d9fa2011-10-31 20:21:18 +00004226static void thin_postsuspend(struct dm_target *ti)
4227{
Joe Thornber738211f2014-03-03 15:52:28 +00004228 struct thin_c *tc = ti->private;
4229
4230 /*
4231 * The dm_noflush_suspending flag has been cleared by now, so
4232 * unfortunately we must always run this.
4233 */
4234 noflush_work(tc, do_noflush_stop);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004235}
4236
Joe Thornbere5aea7b2014-06-13 14:47:24 +01004237static int thin_preresume(struct dm_target *ti)
4238{
4239 struct thin_c *tc = ti->private;
4240
4241 if (tc->origin_dev)
4242 tc->origin_size = get_dev_size(tc->origin_dev->bdev);
4243
4244 return 0;
4245}
4246
Joe Thornber991d9fa2011-10-31 20:21:18 +00004247/*
4248 * <nr mapped sectors> <highest mapped sector>
4249 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004250static void thin_status(struct dm_target *ti, status_type_t type,
4251 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004252{
4253 int r;
4254 ssize_t sz = 0;
4255 dm_block_t mapped, highest;
4256 char buf[BDEVNAME_SIZE];
4257 struct thin_c *tc = ti->private;
4258
Joe Thornbere49e5822012-07-27 15:08:16 +01004259 if (get_pool_mode(tc->pool) == PM_FAIL) {
4260 DMEMIT("Fail");
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004261 return;
Joe Thornbere49e5822012-07-27 15:08:16 +01004262 }
4263
Joe Thornber991d9fa2011-10-31 20:21:18 +00004264 if (!tc->td)
4265 DMEMIT("-");
4266 else {
4267 switch (type) {
4268 case STATUSTYPE_INFO:
4269 r = dm_thin_get_mapped_count(tc->td, &mapped);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004270 if (r) {
4271 DMERR("dm_thin_get_mapped_count returned %d", r);
4272 goto err;
4273 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004274
4275 r = dm_thin_get_highest_mapped_block(tc->td, &highest);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004276 if (r < 0) {
4277 DMERR("dm_thin_get_highest_mapped_block returned %d", r);
4278 goto err;
4279 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004280
4281 DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
4282 if (r)
4283 DMEMIT("%llu", ((highest + 1) *
4284 tc->pool->sectors_per_block) - 1);
4285 else
4286 DMEMIT("-");
4287 break;
4288
4289 case STATUSTYPE_TABLE:
4290 DMEMIT("%s %lu",
4291 format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
4292 (unsigned long) tc->dev_id);
Joe Thornber2dd9c252012-03-28 18:41:28 +01004293 if (tc->origin_dev)
4294 DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
Joe Thornber991d9fa2011-10-31 20:21:18 +00004295 break;
4296 }
4297 }
4298
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004299 return;
4300
4301err:
4302 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00004303}
4304
4305static int thin_iterate_devices(struct dm_target *ti,
4306 iterate_devices_callout_fn fn, void *data)
4307{
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004308 sector_t blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004309 struct thin_c *tc = ti->private;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004310 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004311
4312 /*
4313 * We can't call dm_pool_get_data_dev_size() since that blocks. So
4314 * we follow a more convoluted path through to the pool's target.
4315 */
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004316 if (!pool->ti)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004317 return 0; /* nothing is bound */
4318
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004319 blocks = pool->ti->len;
4320 (void) sector_div(blocks, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004321 if (blocks)
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004322 return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004323
4324 return 0;
4325}
4326
Joe Thornber34fbcf62015-04-16 12:58:35 +01004327static void thin_io_hints(struct dm_target *ti, struct queue_limits *limits)
4328{
4329 struct thin_c *tc = ti->private;
4330 struct pool *pool = tc->pool;
Mike Snitzer21607672015-09-08 08:56:13 -04004331
Mike Snitzer0fcb04d2015-11-23 13:44:38 -05004332 if (!pool->pf.discard_enabled)
4333 return;
Joe Thornber34fbcf62015-04-16 12:58:35 +01004334
4335 limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
4336 limits->max_discard_sectors = 2048 * 1024 * 16; /* 16G */
4337}
4338
Joe Thornber991d9fa2011-10-31 20:21:18 +00004339static struct target_type thin_target = {
4340 .name = "thin",
Andy Grover63c8ecb2018-07-27 15:51:57 -07004341 .version = {1, 20, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00004342 .module = THIS_MODULE,
4343 .ctr = thin_ctr,
4344 .dtr = thin_dtr,
4345 .map = thin_map,
Joe Thornbereb2aa482012-03-28 18:41:28 +01004346 .end_io = thin_endio,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01004347 .preresume = thin_preresume,
Joe Thornber738211f2014-03-03 15:52:28 +00004348 .presuspend = thin_presuspend,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004349 .postsuspend = thin_postsuspend,
4350 .status = thin_status,
4351 .iterate_devices = thin_iterate_devices,
Joe Thornber34fbcf62015-04-16 12:58:35 +01004352 .io_hints = thin_io_hints,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004353};
4354
4355/*----------------------------------------------------------------*/
4356
4357static int __init dm_thin_init(void)
4358{
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08004359 int r = -ENOMEM;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004360
4361 pool_table_init();
4362
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08004363 _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
4364 if (!_new_mapping_cache)
4365 return r;
4366
Joe Thornber991d9fa2011-10-31 20:21:18 +00004367 r = dm_register_target(&thin_target);
4368 if (r)
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08004369 goto bad_new_mapping_cache;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004370
4371 r = dm_register_target(&pool_target);
4372 if (r)
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08004373 goto bad_thin_target;
Mike Snitzera24c2562012-06-03 00:30:00 +01004374
Mike Snitzera24c2562012-06-03 00:30:00 +01004375 return 0;
4376
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08004377bad_thin_target:
Mike Snitzera24c2562012-06-03 00:30:00 +01004378 dm_unregister_target(&thin_target);
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08004379bad_new_mapping_cache:
4380 kmem_cache_destroy(_new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004381
4382 return r;
4383}
4384
4385static void dm_thin_exit(void)
4386{
4387 dm_unregister_target(&thin_target);
4388 dm_unregister_target(&pool_target);
Mike Snitzera24c2562012-06-03 00:30:00 +01004389
Mike Snitzera24c2562012-06-03 00:30:00 +01004390 kmem_cache_destroy(_new_mapping_cache);
Mike Snitzerd5ffebd2018-01-05 21:17:20 -05004391
4392 pool_table_exit();
Joe Thornber991d9fa2011-10-31 20:21:18 +00004393}
4394
4395module_init(dm_thin_init);
4396module_exit(dm_thin_exit);
4397
Mike Snitzer80c57892014-05-20 13:38:33 -04004398module_param_named(no_space_timeout, no_space_timeout_secs, uint, S_IRUGO | S_IWUSR);
4399MODULE_PARM_DESC(no_space_timeout, "Out of data space queue IO timeout in seconds");
4400
Alasdair G Kergon7cab8bf2012-05-12 01:43:19 +01004401MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
Joe Thornber991d9fa2011-10-31 20:21:18 +00004402MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
4403MODULE_LICENSE("GPL");