blob: 23a7e108352aa889e3700ba4d4b9e84413b4de04 [file] [log] [blame]
Joe Thornber991d9fa2011-10-31 20:21:18 +00001/*
Joe Thornbere49e5822012-07-27 15:08:16 +01002 * Copyright (C) 2011-2012 Red Hat UK.
Joe Thornber991d9fa2011-10-31 20:21:18 +00003 *
4 * This file is released under the GPL.
5 */
6
7#include "dm-thin-metadata.h"
Mike Snitzer4f81a412012-10-12 21:02:13 +01008#include "dm-bio-prison.h"
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01009#include "dm.h"
Joe Thornber991d9fa2011-10-31 20:21:18 +000010
11#include <linux/device-mapper.h>
12#include <linux/dm-io.h>
13#include <linux/dm-kcopyd.h>
Manuel Schölling0f30af92014-05-22 22:42:37 +020014#include <linux/jiffies.h>
Mike Snitzer604ea902014-10-09 18:43:25 -040015#include <linux/log2.h>
Joe Thornber991d9fa2011-10-31 20:21:18 +000016#include <linux/list.h>
Mike Snitzerc140e1c2014-03-20 21:17:14 -040017#include <linux/rculist.h>
Joe Thornber991d9fa2011-10-31 20:21:18 +000018#include <linux/init.h>
19#include <linux/module.h>
20#include <linux/slab.h>
Joe Thornbera822c832015-07-03 10:22:42 +010021#include <linux/vmalloc.h>
Joe Thornberac4c3f32014-10-10 16:42:10 +010022#include <linux/sort.h>
Mike Snitzer67324ea2014-03-21 18:33:41 -040023#include <linux/rbtree.h>
Joe Thornber991d9fa2011-10-31 20:21:18 +000024
25#define DM_MSG_PREFIX "thin"
26
27/*
28 * Tunable constants
29 */
Alasdair G Kergon7768ed32012-07-27 15:07:57 +010030#define ENDIO_HOOK_POOL_SIZE 1024
Joe Thornber991d9fa2011-10-31 20:21:18 +000031#define MAPPING_POOL_SIZE 1024
Joe Thornber905e51b2012-03-28 18:41:27 +010032#define COMMIT_PERIOD HZ
Mike Snitzer80c57892014-05-20 13:38:33 -040033#define NO_SPACE_TIMEOUT_SECS 60
34
35static unsigned no_space_timeout_secs = NO_SPACE_TIMEOUT_SECS;
Joe Thornber991d9fa2011-10-31 20:21:18 +000036
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000037DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle,
38 "A percentage of time allocated for copy on write");
39
Joe Thornber991d9fa2011-10-31 20:21:18 +000040/*
41 * The block size of the device holding pool data must be
42 * between 64KB and 1GB.
43 */
44#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (64 * 1024 >> SECTOR_SHIFT)
45#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
46
47/*
Joe Thornber991d9fa2011-10-31 20:21:18 +000048 * Device id is restricted to 24 bits.
49 */
50#define MAX_DEV_ID ((1 << 24) - 1)
51
52/*
53 * How do we handle breaking sharing of data blocks?
54 * =================================================
55 *
56 * We use a standard copy-on-write btree to store the mappings for the
57 * devices (note I'm talking about copy-on-write of the metadata here, not
58 * the data). When you take an internal snapshot you clone the root node
59 * of the origin btree. After this there is no concept of an origin or a
60 * snapshot. They are just two device trees that happen to point to the
61 * same data blocks.
62 *
63 * When we get a write in we decide if it's to a shared data block using
64 * some timestamp magic. If it is, we have to break sharing.
65 *
66 * Let's say we write to a shared block in what was the origin. The
67 * steps are:
68 *
69 * i) plug io further to this physical block. (see bio_prison code).
70 *
71 * ii) quiesce any read io to that shared data block. Obviously
Mike Snitzer44feb382012-10-12 21:02:10 +010072 * including all devices that share this block. (see dm_deferred_set code)
Joe Thornber991d9fa2011-10-31 20:21:18 +000073 *
74 * iii) copy the data block to a newly allocate block. This step can be
75 * missed out if the io covers the block. (schedule_copy).
76 *
77 * iv) insert the new mapping into the origin's btree
Joe Thornberfe878f32012-03-28 18:41:24 +010078 * (process_prepared_mapping). This act of inserting breaks some
Joe Thornber991d9fa2011-10-31 20:21:18 +000079 * sharing of btree nodes between the two devices. Breaking sharing only
80 * effects the btree of that specific device. Btrees for the other
81 * devices that share the block never change. The btree for the origin
82 * device as it was after the last commit is untouched, ie. we're using
83 * persistent data structures in the functional programming sense.
84 *
85 * v) unplug io to this physical block, including the io that triggered
86 * the breaking of sharing.
87 *
88 * Steps (ii) and (iii) occur in parallel.
89 *
90 * The metadata _doesn't_ need to be committed before the io continues. We
91 * get away with this because the io is always written to a _new_ block.
92 * If there's a crash, then:
93 *
94 * - The origin mapping will point to the old origin block (the shared
95 * one). This will contain the data as it was before the io that triggered
96 * the breaking of sharing came in.
97 *
98 * - The snap mapping still points to the old block. As it would after
99 * the commit.
100 *
101 * The downside of this scheme is the timestamp magic isn't perfect, and
102 * will continue to think that data block in the snapshot device is shared
103 * even after the write to the origin has broken sharing. I suspect data
104 * blocks will typically be shared by many different devices, so we're
105 * breaking sharing n + 1 times, rather than n, where n is the number of
106 * devices that reference this data block. At the moment I think the
107 * benefits far, far outweigh the disadvantages.
108 */
109
110/*----------------------------------------------------------------*/
111
112/*
Joe Thornber991d9fa2011-10-31 20:21:18 +0000113 * Key building.
114 */
Joe Thornber34fbcf62015-04-16 12:58:35 +0100115enum lock_space {
116 VIRTUAL,
117 PHYSICAL
118};
119
120static void build_key(struct dm_thin_device *td, enum lock_space ls,
121 dm_block_t b, dm_block_t e, struct dm_cell_key *key)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000122{
Joe Thornber34fbcf62015-04-16 12:58:35 +0100123 key->virtual = (ls == VIRTUAL);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000124 key->dev = dm_thin_dev_id(td);
Joe Thornber5f274d82014-09-17 10:17:39 +0100125 key->block_begin = b;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100126 key->block_end = e;
127}
128
129static void build_data_key(struct dm_thin_device *td, dm_block_t b,
130 struct dm_cell_key *key)
131{
132 build_key(td, PHYSICAL, b, b + 1llu, key);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000133}
134
135static void build_virtual_key(struct dm_thin_device *td, dm_block_t b,
Mike Snitzer44feb382012-10-12 21:02:10 +0100136 struct dm_cell_key *key)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000137{
Joe Thornber34fbcf62015-04-16 12:58:35 +0100138 build_key(td, VIRTUAL, b, b + 1llu, key);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000139}
140
141/*----------------------------------------------------------------*/
142
Joe Thornber7d327fe2014-10-06 15:45:59 +0100143#define THROTTLE_THRESHOLD (1 * HZ)
144
145struct throttle {
146 struct rw_semaphore lock;
147 unsigned long threshold;
148 bool throttle_applied;
149};
150
151static void throttle_init(struct throttle *t)
152{
153 init_rwsem(&t->lock);
154 t->throttle_applied = false;
155}
156
157static void throttle_work_start(struct throttle *t)
158{
159 t->threshold = jiffies + THROTTLE_THRESHOLD;
160}
161
162static void throttle_work_update(struct throttle *t)
163{
164 if (!t->throttle_applied && jiffies > t->threshold) {
165 down_write(&t->lock);
166 t->throttle_applied = true;
167 }
168}
169
170static void throttle_work_complete(struct throttle *t)
171{
172 if (t->throttle_applied) {
173 t->throttle_applied = false;
174 up_write(&t->lock);
175 }
176}
177
178static void throttle_lock(struct throttle *t)
179{
180 down_read(&t->lock);
181}
182
183static void throttle_unlock(struct throttle *t)
184{
185 up_read(&t->lock);
186}
187
188/*----------------------------------------------------------------*/
189
Joe Thornber991d9fa2011-10-31 20:21:18 +0000190/*
191 * A pool device ties together a metadata device and a data device. It
192 * also provides the interface for creating and destroying internal
193 * devices.
194 */
Mike Snitzera24c2562012-06-03 00:30:00 +0100195struct dm_thin_new_mapping;
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100196
Joe Thornbere49e5822012-07-27 15:08:16 +0100197/*
Joe Thornber3e1a0692014-03-03 16:03:26 +0000198 * The pool runs in 4 modes. Ordered in degraded order for comparisons.
Joe Thornbere49e5822012-07-27 15:08:16 +0100199 */
200enum pool_mode {
201 PM_WRITE, /* metadata may be changed */
Joe Thornber3e1a0692014-03-03 16:03:26 +0000202 PM_OUT_OF_DATA_SPACE, /* metadata may be changed, though data may not be allocated */
Joe Thornbera9537db2018-09-10 16:50:09 +0100203
204 /*
205 * Like READ_ONLY, except may switch back to WRITE on metadata resize. Reported as READ_ONLY.
206 */
207 PM_OUT_OF_METADATA_SPACE,
Joe Thornbere49e5822012-07-27 15:08:16 +0100208 PM_READ_ONLY, /* metadata may not be changed */
Joe Thornbera9537db2018-09-10 16:50:09 +0100209
Joe Thornbere49e5822012-07-27 15:08:16 +0100210 PM_FAIL, /* all I/O fails */
211};
212
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100213struct pool_features {
Joe Thornbere49e5822012-07-27 15:08:16 +0100214 enum pool_mode mode;
215
Mike Snitzer9bc142d2012-09-26 23:45:46 +0100216 bool zero_new_blocks:1;
217 bool discard_enabled:1;
218 bool discard_passdown:1;
Mike Snitzer787a996c2013-12-06 16:21:43 -0500219 bool error_if_no_space:1;
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100220};
221
Joe Thornbere49e5822012-07-27 15:08:16 +0100222struct thin_c;
223typedef void (*process_bio_fn)(struct thin_c *tc, struct bio *bio);
Joe Thornbera374bb22014-10-10 13:43:14 +0100224typedef void (*process_cell_fn)(struct thin_c *tc, struct dm_bio_prison_cell *cell);
Joe Thornbere49e5822012-07-27 15:08:16 +0100225typedef void (*process_mapping_fn)(struct dm_thin_new_mapping *m);
226
Joe Thornberac4c3f32014-10-10 16:42:10 +0100227#define CELL_SORT_ARRAY_SIZE 8192
228
Joe Thornber991d9fa2011-10-31 20:21:18 +0000229struct pool {
230 struct list_head list;
231 struct dm_target *ti; /* Only set if a pool target is bound */
232
233 struct mapped_device *pool_md;
234 struct block_device *md_dev;
235 struct dm_pool_metadata *pmd;
236
Joe Thornber991d9fa2011-10-31 20:21:18 +0000237 dm_block_t low_water_blocks;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100238 uint32_t sectors_per_block;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100239 int sectors_per_block_shift;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000240
Joe Thornber67e2e2b2012-03-28 18:41:29 +0100241 struct pool_features pf;
Joe Thornber88a66212013-12-04 20:16:12 -0500242 bool low_water_triggered:1; /* A dm event has been sent */
Mike Snitzer80e96c52014-11-07 15:09:46 -0500243 bool suspended:1;
Mike Snitzerc3667cc2016-03-10 11:31:35 -0500244 bool out_of_data_space:1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000245
Mike Snitzer44feb382012-10-12 21:02:10 +0100246 struct dm_bio_prison *prison;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000247 struct dm_kcopyd_client *copier;
248
249 struct workqueue_struct *wq;
Joe Thornber7d327fe2014-10-06 15:45:59 +0100250 struct throttle throttle;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000251 struct work_struct worker;
Joe Thornber905e51b2012-03-28 18:41:27 +0100252 struct delayed_work waker;
Joe Thornber85ad643b2014-05-09 15:59:38 +0100253 struct delayed_work no_space_timeout;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000254
Joe Thornber905e51b2012-03-28 18:41:27 +0100255 unsigned long last_commit_jiffies;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100256 unsigned ref_count;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000257
258 spinlock_t lock;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000259 struct bio_list deferred_flush_bios;
Nikos Tsironis8934c922019-02-14 20:38:47 +0200260 struct bio_list deferred_flush_completions;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000261 struct list_head prepared_mappings;
Joe Thornber104655f2012-03-28 18:41:28 +0100262 struct list_head prepared_discards;
Joe Thornber2a0fbff2016-07-01 14:00:02 +0100263 struct list_head prepared_discards_pt2;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400264 struct list_head active_thins;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000265
Mike Snitzer44feb382012-10-12 21:02:10 +0100266 struct dm_deferred_set *shared_read_ds;
267 struct dm_deferred_set *all_io_ds;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000268
Mike Snitzera24c2562012-06-03 00:30:00 +0100269 struct dm_thin_new_mapping *next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000270 mempool_t *mapping_pool;
Joe Thornbere49e5822012-07-27 15:08:16 +0100271
272 process_bio_fn process_bio;
273 process_bio_fn process_discard;
274
Joe Thornbera374bb22014-10-10 13:43:14 +0100275 process_cell_fn process_cell;
276 process_cell_fn process_discard_cell;
277
Joe Thornbere49e5822012-07-27 15:08:16 +0100278 process_mapping_fn process_prepared_mapping;
279 process_mapping_fn process_prepared_discard;
Joe Thornber2a0fbff2016-07-01 14:00:02 +0100280 process_mapping_fn process_prepared_discard_pt2;
Joe Thornberac4c3f32014-10-10 16:42:10 +0100281
Joe Thornbera822c832015-07-03 10:22:42 +0100282 struct dm_bio_prison_cell **cell_sort_array;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000283};
284
Joe Thornbere49e5822012-07-27 15:08:16 +0100285static enum pool_mode get_pool_mode(struct pool *pool);
Joe Thornberb5330652013-12-04 19:51:33 -0500286static void metadata_operation_failed(struct pool *pool, const char *op, int r);
Joe Thornbere49e5822012-07-27 15:08:16 +0100287
Joe Thornber991d9fa2011-10-31 20:21:18 +0000288/*
289 * Target context for a pool.
290 */
291struct pool_c {
292 struct dm_target *ti;
293 struct pool *pool;
294 struct dm_dev *data_dev;
295 struct dm_dev *metadata_dev;
296 struct dm_target_callbacks callbacks;
297
298 dm_block_t low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +0100299 struct pool_features requested_pf; /* Features requested during table load */
300 struct pool_features adjusted_pf; /* Features used after adjusting for constituent devices */
Joe Thornber991d9fa2011-10-31 20:21:18 +0000301};
302
303/*
304 * Target context for a thin.
305 */
306struct thin_c {
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400307 struct list_head list;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000308 struct dm_dev *pool_dev;
Joe Thornber2dd9c252012-03-28 18:41:28 +0100309 struct dm_dev *origin_dev;
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100310 sector_t origin_size;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000311 dm_thin_id dev_id;
312
313 struct pool *pool;
314 struct dm_thin_device *td;
Mike Snitzer583024d2014-10-28 20:58:45 -0400315 struct mapped_device *thin_md;
316
Joe Thornber738211f2014-03-03 15:52:28 +0000317 bool requeue_mode:1;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400318 spinlock_t lock;
Joe Thornbera374bb22014-10-10 13:43:14 +0100319 struct list_head deferred_cells;
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400320 struct bio_list deferred_bio_list;
321 struct bio_list retry_on_resume_list;
Mike Snitzer67324ea2014-03-21 18:33:41 -0400322 struct rb_root sort_bio_list; /* sorted list of deferred bios */
Joe Thornberb10ebd32014-04-08 11:29:01 +0100323
324 /*
325 * Ensures the thin is not destroyed until the worker has finished
326 * iterating the active_thins list.
327 */
328 atomic_t refcount;
329 struct completion can_destroy;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000330};
331
332/*----------------------------------------------------------------*/
333
Joe Thornber34fbcf62015-04-16 12:58:35 +0100334static bool block_size_is_power_of_two(struct pool *pool)
335{
336 return pool->sectors_per_block_shift >= 0;
337}
338
339static sector_t block_to_sectors(struct pool *pool, dm_block_t b)
340{
341 return block_size_is_power_of_two(pool) ?
342 (b << pool->sectors_per_block_shift) :
343 (b * pool->sectors_per_block);
344}
345
Joe Thornber202bae52016-05-04 14:12:42 -0400346/*----------------------------------------------------------------*/
347
348struct discard_op {
349 struct thin_c *tc;
350 struct blk_plug plug;
351 struct bio *parent_bio;
352 struct bio *bio;
353};
354
355static void begin_discard(struct discard_op *op, struct thin_c *tc, struct bio *parent)
Joe Thornber34fbcf62015-04-16 12:58:35 +0100356{
Joe Thornber202bae52016-05-04 14:12:42 -0400357 BUG_ON(!parent);
358
359 op->tc = tc;
360 blk_start_plug(&op->plug);
361 op->parent_bio = parent;
362 op->bio = NULL;
363}
364
365static int issue_discard(struct discard_op *op, dm_block_t data_b, dm_block_t data_e)
366{
367 struct thin_c *tc = op->tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100368 sector_t s = block_to_sectors(tc->pool, data_b);
369 sector_t len = block_to_sectors(tc->pool, data_e - data_b);
370
Joe Thornber202bae52016-05-04 14:12:42 -0400371 return __blkdev_issue_discard(tc->pool_dev->bdev, s, len,
Mike Christie469e3212016-06-05 14:31:49 -0500372 GFP_NOWAIT, 0, &op->bio);
Joe Thornber202bae52016-05-04 14:12:42 -0400373}
374
375static void end_discard(struct discard_op *op, int r)
376{
377 if (op->bio) {
378 /*
379 * Even if one of the calls to issue_discard failed, we
380 * need to wait for the chain to complete.
381 */
382 bio_chain(op->bio, op->parent_bio);
Mike Christiee6047142016-06-05 14:32:04 -0500383 bio_set_op_attrs(op->bio, REQ_OP_DISCARD, 0);
Mike Christie4e49ea42016-06-05 14:31:41 -0500384 submit_bio(op->bio);
Mike Snitzer3dba53a92016-05-02 20:16:21 -0400385 }
Mike Snitzer3dba53a92016-05-02 20:16:21 -0400386
Joe Thornber202bae52016-05-04 14:12:42 -0400387 blk_finish_plug(&op->plug);
388
389 /*
390 * Even if r is set, there could be sub discards in flight that we
391 * need to wait for.
392 */
393 if (r && !op->parent_bio->bi_error)
394 op->parent_bio->bi_error = r;
395 bio_endio(op->parent_bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +0100396}
397
398/*----------------------------------------------------------------*/
399
Joe Thornber025b9682013-03-01 22:45:50 +0000400/*
401 * wake_worker() is used when new work is queued and when pool_resume is
402 * ready to continue deferred IO processing.
403 */
404static void wake_worker(struct pool *pool)
405{
406 queue_work(pool->wq, &pool->worker);
407}
408
409/*----------------------------------------------------------------*/
410
Joe Thornber6beca5e2013-03-01 22:45:50 +0000411static int bio_detain(struct pool *pool, struct dm_cell_key *key, struct bio *bio,
412 struct dm_bio_prison_cell **cell_result)
413{
414 int r;
415 struct dm_bio_prison_cell *cell_prealloc;
416
417 /*
418 * Allocate a cell from the prison's mempool.
419 * This might block but it can't fail.
420 */
421 cell_prealloc = dm_bio_prison_alloc_cell(pool->prison, GFP_NOIO);
422
423 r = dm_bio_detain(pool->prison, key, bio, cell_prealloc, cell_result);
424 if (r)
425 /*
426 * We reused an old cell; we can get rid of
427 * the new one.
428 */
429 dm_bio_prison_free_cell(pool->prison, cell_prealloc);
430
431 return r;
432}
433
434static void cell_release(struct pool *pool,
435 struct dm_bio_prison_cell *cell,
436 struct bio_list *bios)
437{
438 dm_cell_release(pool->prison, cell, bios);
439 dm_bio_prison_free_cell(pool->prison, cell);
440}
441
Joe Thornber2d759a42014-10-10 15:27:16 +0100442static void cell_visit_release(struct pool *pool,
443 void (*fn)(void *, struct dm_bio_prison_cell *),
444 void *context,
445 struct dm_bio_prison_cell *cell)
446{
447 dm_cell_visit_release(pool->prison, fn, context, cell);
448 dm_bio_prison_free_cell(pool->prison, cell);
449}
450
Joe Thornber6beca5e2013-03-01 22:45:50 +0000451static void cell_release_no_holder(struct pool *pool,
452 struct dm_bio_prison_cell *cell,
453 struct bio_list *bios)
454{
455 dm_cell_release_no_holder(pool->prison, cell, bios);
456 dm_bio_prison_free_cell(pool->prison, cell);
457}
458
Mike Snitzeraf918052014-05-22 14:32:51 -0400459static void cell_error_with_code(struct pool *pool,
460 struct dm_bio_prison_cell *cell, int error_code)
Joe Thornber6beca5e2013-03-01 22:45:50 +0000461{
Mike Snitzeraf918052014-05-22 14:32:51 -0400462 dm_cell_error(pool->prison, cell, error_code);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000463 dm_bio_prison_free_cell(pool->prison, cell);
464}
465
Mike Snitzerc3667cc2016-03-10 11:31:35 -0500466static int get_pool_io_error_code(struct pool *pool)
467{
468 return pool->out_of_data_space ? -ENOSPC : -EIO;
469}
470
Mike Snitzeraf918052014-05-22 14:32:51 -0400471static void cell_error(struct pool *pool, struct dm_bio_prison_cell *cell)
472{
Mike Snitzerc3667cc2016-03-10 11:31:35 -0500473 int error = get_pool_io_error_code(pool);
474
475 cell_error_with_code(pool, cell, error);
Mike Snitzeraf918052014-05-22 14:32:51 -0400476}
477
Joe Thornbera374bb22014-10-10 13:43:14 +0100478static void cell_success(struct pool *pool, struct dm_bio_prison_cell *cell)
479{
480 cell_error_with_code(pool, cell, 0);
481}
482
483static void cell_requeue(struct pool *pool, struct dm_bio_prison_cell *cell)
484{
485 cell_error_with_code(pool, cell, DM_ENDIO_REQUEUE);
486}
487
Joe Thornber6beca5e2013-03-01 22:45:50 +0000488/*----------------------------------------------------------------*/
489
Joe Thornber991d9fa2011-10-31 20:21:18 +0000490/*
491 * A global list of pools that uses a struct mapped_device as a key.
492 */
493static struct dm_thin_pool_table {
494 struct mutex mutex;
495 struct list_head pools;
496} dm_thin_pool_table;
497
498static void pool_table_init(void)
499{
500 mutex_init(&dm_thin_pool_table.mutex);
501 INIT_LIST_HEAD(&dm_thin_pool_table.pools);
502}
503
504static void __pool_table_insert(struct pool *pool)
505{
506 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
507 list_add(&pool->list, &dm_thin_pool_table.pools);
508}
509
510static void __pool_table_remove(struct pool *pool)
511{
512 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
513 list_del(&pool->list);
514}
515
516static struct pool *__pool_table_lookup(struct mapped_device *md)
517{
518 struct pool *pool = NULL, *tmp;
519
520 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
521
522 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
523 if (tmp->pool_md == md) {
524 pool = tmp;
525 break;
526 }
527 }
528
529 return pool;
530}
531
532static struct pool *__pool_table_lookup_metadata_dev(struct block_device *md_dev)
533{
534 struct pool *pool = NULL, *tmp;
535
536 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
537
538 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
539 if (tmp->md_dev == md_dev) {
540 pool = tmp;
541 break;
542 }
543 }
544
545 return pool;
546}
547
548/*----------------------------------------------------------------*/
549
Mike Snitzera24c2562012-06-03 00:30:00 +0100550struct dm_thin_endio_hook {
Joe Thornbereb2aa482012-03-28 18:41:28 +0100551 struct thin_c *tc;
Mike Snitzer44feb382012-10-12 21:02:10 +0100552 struct dm_deferred_entry *shared_read_entry;
553 struct dm_deferred_entry *all_io_entry;
Mike Snitzera24c2562012-06-03 00:30:00 +0100554 struct dm_thin_new_mapping *overwrite_mapping;
Mike Snitzer67324ea2014-03-21 18:33:41 -0400555 struct rb_node rb_node;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100556 struct dm_bio_prison_cell *cell;
Joe Thornbereb2aa482012-03-28 18:41:28 +0100557};
558
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400559static void __merge_bio_list(struct bio_list *bios, struct bio_list *master)
560{
561 bio_list_merge(bios, master);
562 bio_list_init(master);
563}
564
565static void error_bio_list(struct bio_list *bios, int error)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000566{
567 struct bio *bio;
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400568
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200569 while ((bio = bio_list_pop(bios))) {
570 bio->bi_error = error;
571 bio_endio(bio);
572 }
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400573}
574
575static void error_thin_bio_list(struct thin_c *tc, struct bio_list *master, int error)
576{
Joe Thornber991d9fa2011-10-31 20:21:18 +0000577 struct bio_list bios;
Joe Thornber18adc572014-03-03 15:46:42 +0000578 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000579
580 bio_list_init(&bios);
Joe Thornber18adc572014-03-03 15:46:42 +0000581
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400582 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400583 __merge_bio_list(&bios, master);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400584 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000585
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400586 error_bio_list(&bios, error);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000587}
588
Joe Thornbera374bb22014-10-10 13:43:14 +0100589static void requeue_deferred_cells(struct thin_c *tc)
590{
591 struct pool *pool = tc->pool;
592 unsigned long flags;
593 struct list_head cells;
594 struct dm_bio_prison_cell *cell, *tmp;
595
596 INIT_LIST_HEAD(&cells);
597
598 spin_lock_irqsave(&tc->lock, flags);
599 list_splice_init(&tc->deferred_cells, &cells);
600 spin_unlock_irqrestore(&tc->lock, flags);
601
602 list_for_each_entry_safe(cell, tmp, &cells, user_list)
603 cell_requeue(pool, cell);
604}
605
Joe Thornber991d9fa2011-10-31 20:21:18 +0000606static void requeue_io(struct thin_c *tc)
607{
Joe Thornber3e1a0692014-03-03 16:03:26 +0000608 struct bio_list bios;
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400609 unsigned long flags;
Joe Thornber3e1a0692014-03-03 16:03:26 +0000610
611 bio_list_init(&bios);
612
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400613 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400614 __merge_bio_list(&bios, &tc->deferred_bio_list);
615 __merge_bio_list(&bios, &tc->retry_on_resume_list);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400616 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber3e1a0692014-03-03 16:03:26 +0000617
Mike Snitzer42d6a8c2014-10-19 07:52:44 -0400618 error_bio_list(&bios, DM_ENDIO_REQUEUE);
619 requeue_deferred_cells(tc);
Joe Thornber3e1a0692014-03-03 16:03:26 +0000620}
621
Mike Snitzer0a927c22015-07-21 13:20:46 -0400622static void error_retry_list_with_code(struct pool *pool, int error)
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400623{
624 struct thin_c *tc;
625
626 rcu_read_lock();
627 list_for_each_entry_rcu(tc, &pool->active_thins, list)
Mike Snitzer0a927c22015-07-21 13:20:46 -0400628 error_thin_bio_list(tc, &tc->retry_on_resume_list, error);
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400629 rcu_read_unlock();
630}
631
Mike Snitzer0a927c22015-07-21 13:20:46 -0400632static void error_retry_list(struct pool *pool)
633{
Mike Snitzerc3667cc2016-03-10 11:31:35 -0500634 int error = get_pool_io_error_code(pool);
635
Amitoj Kaur Chawla813923b2016-04-11 11:37:08 +0530636 error_retry_list_with_code(pool, error);
Mike Snitzer0a927c22015-07-21 13:20:46 -0400637}
638
Joe Thornber991d9fa2011-10-31 20:21:18 +0000639/*
640 * This section of code contains the logic for processing a thin device's IO.
641 * Much of the code depends on pool object resources (lists, workqueues, etc)
642 * but most is exclusively called from the thin target rather than the thin-pool
643 * target.
644 */
645
646static dm_block_t get_bio_block(struct thin_c *tc, struct bio *bio)
647{
Mike Snitzer58f77a22013-03-01 22:45:45 +0000648 struct pool *pool = tc->pool;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700649 sector_t block_nr = bio->bi_iter.bi_sector;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100650
Mike Snitzer58f77a22013-03-01 22:45:45 +0000651 if (block_size_is_power_of_two(pool))
652 block_nr >>= pool->sectors_per_block_shift;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +0100653 else
Mike Snitzer58f77a22013-03-01 22:45:45 +0000654 (void) sector_div(block_nr, pool->sectors_per_block);
Mike Snitzer55f2b8b2012-07-27 15:08:02 +0100655
656 return block_nr;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000657}
658
Joe Thornber34fbcf62015-04-16 12:58:35 +0100659/*
660 * Returns the _complete_ blocks that this bio covers.
661 */
662static void get_bio_block_range(struct thin_c *tc, struct bio *bio,
663 dm_block_t *begin, dm_block_t *end)
664{
665 struct pool *pool = tc->pool;
666 sector_t b = bio->bi_iter.bi_sector;
667 sector_t e = b + (bio->bi_iter.bi_size >> SECTOR_SHIFT);
668
669 b += pool->sectors_per_block - 1ull; /* so we round up */
670
671 if (block_size_is_power_of_two(pool)) {
672 b >>= pool->sectors_per_block_shift;
673 e >>= pool->sectors_per_block_shift;
674 } else {
675 (void) sector_div(b, pool->sectors_per_block);
676 (void) sector_div(e, pool->sectors_per_block);
677 }
678
679 if (e < b)
680 /* Can happen if the bio is within a single block. */
681 e = b;
682
683 *begin = b;
684 *end = e;
685}
686
Joe Thornber991d9fa2011-10-31 20:21:18 +0000687static void remap(struct thin_c *tc, struct bio *bio, dm_block_t block)
688{
689 struct pool *pool = tc->pool;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700690 sector_t bi_sector = bio->bi_iter.bi_sector;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000691
692 bio->bi_bdev = tc->pool_dev->bdev;
Mike Snitzer58f77a22013-03-01 22:45:45 +0000693 if (block_size_is_power_of_two(pool))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700694 bio->bi_iter.bi_sector =
695 (block << pool->sectors_per_block_shift) |
696 (bi_sector & (pool->sectors_per_block - 1));
Mike Snitzer58f77a22013-03-01 22:45:45 +0000697 else
Kent Overstreet4f024f32013-10-11 15:44:27 -0700698 bio->bi_iter.bi_sector = (block * pool->sectors_per_block) +
Mike Snitzer58f77a22013-03-01 22:45:45 +0000699 sector_div(bi_sector, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000700}
701
Joe Thornber2dd9c252012-03-28 18:41:28 +0100702static void remap_to_origin(struct thin_c *tc, struct bio *bio)
703{
704 bio->bi_bdev = tc->origin_dev->bdev;
705}
706
Joe Thornber4afdd682012-07-27 15:08:14 +0100707static int bio_triggers_commit(struct thin_c *tc, struct bio *bio)
708{
Jens Axboe1eff9d32016-08-05 15:35:16 -0600709 return (bio->bi_opf & (REQ_PREFLUSH | REQ_FUA)) &&
Joe Thornber4afdd682012-07-27 15:08:14 +0100710 dm_thin_changed_this_transaction(tc->td);
711}
712
Joe Thornbere8088072012-12-21 20:23:31 +0000713static void inc_all_io_entry(struct pool *pool, struct bio *bio)
714{
715 struct dm_thin_endio_hook *h;
716
Mike Christiee6047142016-06-05 14:32:04 -0500717 if (bio_op(bio) == REQ_OP_DISCARD)
Joe Thornbere8088072012-12-21 20:23:31 +0000718 return;
719
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000720 h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbere8088072012-12-21 20:23:31 +0000721 h->all_io_entry = dm_deferred_entry_inc(pool->all_io_ds);
722}
723
Joe Thornber2dd9c252012-03-28 18:41:28 +0100724static void issue(struct thin_c *tc, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000725{
726 struct pool *pool = tc->pool;
727 unsigned long flags;
728
Joe Thornbere49e5822012-07-27 15:08:16 +0100729 if (!bio_triggers_commit(tc, bio)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000730 generic_make_request(bio);
Joe Thornbere49e5822012-07-27 15:08:16 +0100731 return;
732 }
733
734 /*
735 * Complete bio with an error if earlier I/O caused changes to
736 * the metadata that can't be committed e.g, due to I/O errors
737 * on the metadata device.
738 */
739 if (dm_thin_aborted_changes(tc->td)) {
740 bio_io_error(bio);
741 return;
742 }
743
744 /*
745 * Batch together any bios that trigger commits and then issue a
746 * single commit for them in process_deferred_bios().
747 */
748 spin_lock_irqsave(&pool->lock, flags);
749 bio_list_add(&pool->deferred_flush_bios, bio);
750 spin_unlock_irqrestore(&pool->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000751}
752
Joe Thornber2dd9c252012-03-28 18:41:28 +0100753static void remap_to_origin_and_issue(struct thin_c *tc, struct bio *bio)
754{
755 remap_to_origin(tc, bio);
756 issue(tc, bio);
757}
758
759static void remap_and_issue(struct thin_c *tc, struct bio *bio,
760 dm_block_t block)
761{
762 remap(tc, bio, block);
763 issue(tc, bio);
764}
765
Joe Thornber991d9fa2011-10-31 20:21:18 +0000766/*----------------------------------------------------------------*/
767
768/*
769 * Bio endio functions.
770 */
Mike Snitzera24c2562012-06-03 00:30:00 +0100771struct dm_thin_new_mapping {
Joe Thornber991d9fa2011-10-31 20:21:18 +0000772 struct list_head list;
773
Mike Snitzer7f214662013-12-17 13:43:31 -0500774 bool pass_discard:1;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100775 bool maybe_shared:1;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000776
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100777 /*
778 * Track quiescing, copying and zeroing preparation actions. When this
779 * counter hits zero the block is prepared and can be inserted into the
780 * btree.
781 */
782 atomic_t prepare_actions;
783
Mike Snitzer7f214662013-12-17 13:43:31 -0500784 int err;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000785 struct thin_c *tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100786 dm_block_t virt_begin, virt_end;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000787 dm_block_t data_block;
Joe Thornber34fbcf62015-04-16 12:58:35 +0100788 struct dm_bio_prison_cell *cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000789
790 /*
791 * If the bio covers the whole area of a block then we can avoid
792 * zeroing or copying. Instead this bio is hooked. The bio will
793 * still be in the cell, so care has to be taken to avoid issuing
794 * the bio twice.
795 */
796 struct bio *bio;
797 bio_end_io_t *saved_bi_end_io;
798};
799
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100800static void __complete_mapping_preparation(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000801{
802 struct pool *pool = m->tc->pool;
803
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100804 if (atomic_dec_and_test(&m->prepare_actions)) {
Mike Snitzerdaec3382013-12-11 14:01:20 -0500805 list_add_tail(&m->list, &pool->prepared_mappings);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000806 wake_worker(pool);
807 }
808}
809
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100810static void complete_mapping_preparation(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000811{
812 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000813 struct pool *pool = m->tc->pool;
814
Joe Thornber991d9fa2011-10-31 20:21:18 +0000815 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber50f3c3e2014-06-13 13:57:09 +0100816 __complete_mapping_preparation(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000817 spin_unlock_irqrestore(&pool->lock, flags);
818}
819
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100820static void copy_complete(int read_err, unsigned long write_err, void *context)
821{
822 struct dm_thin_new_mapping *m = context;
823
824 m->err = read_err || write_err ? -EIO : 0;
825 complete_mapping_preparation(m);
826}
827
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200828static void overwrite_endio(struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000829{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +0000830 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Mike Snitzera24c2562012-06-03 00:30:00 +0100831 struct dm_thin_new_mapping *m = h->overwrite_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000832
Mike Snitzer8b908f82015-05-13 17:53:13 -0400833 bio->bi_end_io = m->saved_bi_end_io;
834
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200835 m->err = bio->bi_error;
Joe Thornbere5aea7b2014-06-13 14:47:24 +0100836 complete_mapping_preparation(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000837}
838
Joe Thornber991d9fa2011-10-31 20:21:18 +0000839/*----------------------------------------------------------------*/
840
841/*
842 * Workqueue.
843 */
844
845/*
846 * Prepared mapping jobs.
847 */
848
849/*
Joe Thornber2d759a42014-10-10 15:27:16 +0100850 * This sends the bios in the cell, except the original holder, back
851 * to the deferred_bios list.
Joe Thornber991d9fa2011-10-31 20:21:18 +0000852 */
Joe Thornberf286ba02012-12-21 20:23:33 +0000853static void cell_defer_no_holder(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000854{
Joe Thornber991d9fa2011-10-31 20:21:18 +0000855 struct pool *pool = tc->pool;
856 unsigned long flags;
857
Mike Snitzerc140e1c2014-03-20 21:17:14 -0400858 spin_lock_irqsave(&tc->lock, flags);
859 cell_release_no_holder(pool, cell, &tc->deferred_bio_list);
860 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000861
862 wake_worker(pool);
863}
864
Joe Thornbera374bb22014-10-10 13:43:14 +0100865static void thin_defer_bio(struct thin_c *tc, struct bio *bio);
866
Joe Thornber2d759a42014-10-10 15:27:16 +0100867struct remap_info {
868 struct thin_c *tc;
869 struct bio_list defer_bios;
870 struct bio_list issue_bios;
871};
872
873static void __inc_remap_and_issue_cell(void *context,
874 struct dm_bio_prison_cell *cell)
875{
876 struct remap_info *info = context;
877 struct bio *bio;
878
879 while ((bio = bio_list_pop(&cell->bios))) {
Jens Axboe1eff9d32016-08-05 15:35:16 -0600880 if (bio->bi_opf & (REQ_PREFLUSH | REQ_FUA) ||
Mike Christiee6047142016-06-05 14:32:04 -0500881 bio_op(bio) == REQ_OP_DISCARD)
Joe Thornber2d759a42014-10-10 15:27:16 +0100882 bio_list_add(&info->defer_bios, bio);
883 else {
884 inc_all_io_entry(info->tc->pool, bio);
885
886 /*
887 * We can't issue the bios with the bio prison lock
888 * held, so we add them to a list to issue on
889 * return from this function.
890 */
891 bio_list_add(&info->issue_bios, bio);
892 }
893 }
894}
895
Joe Thornbera374bb22014-10-10 13:43:14 +0100896static void inc_remap_and_issue_cell(struct thin_c *tc,
897 struct dm_bio_prison_cell *cell,
898 dm_block_t block)
899{
900 struct bio *bio;
Joe Thornber2d759a42014-10-10 15:27:16 +0100901 struct remap_info info;
Joe Thornbera374bb22014-10-10 13:43:14 +0100902
Joe Thornber2d759a42014-10-10 15:27:16 +0100903 info.tc = tc;
904 bio_list_init(&info.defer_bios);
905 bio_list_init(&info.issue_bios);
Joe Thornbera374bb22014-10-10 13:43:14 +0100906
Joe Thornber2d759a42014-10-10 15:27:16 +0100907 /*
908 * We have to be careful to inc any bios we're about to issue
909 * before the cell is released, and avoid a race with new bios
910 * being added to the cell.
911 */
912 cell_visit_release(tc->pool, __inc_remap_and_issue_cell,
913 &info, cell);
914
915 while ((bio = bio_list_pop(&info.defer_bios)))
916 thin_defer_bio(tc, bio);
917
918 while ((bio = bio_list_pop(&info.issue_bios)))
919 remap_and_issue(info.tc, bio, block);
Joe Thornbera374bb22014-10-10 13:43:14 +0100920}
921
Joe Thornbere49e5822012-07-27 15:08:16 +0100922static void process_prepared_mapping_fail(struct dm_thin_new_mapping *m)
923{
Joe Thornber6beca5e2013-03-01 22:45:50 +0000924 cell_error(m->tc->pool, m->cell);
Joe Thornbere49e5822012-07-27 15:08:16 +0100925 list_del(&m->list);
926 mempool_free(m, m->tc->pool->mapping_pool);
927}
Joe Thornber025b9682013-03-01 22:45:50 +0000928
Nikos Tsironis8934c922019-02-14 20:38:47 +0200929static void complete_overwrite_bio(struct thin_c *tc, struct bio *bio)
930{
931 struct pool *pool = tc->pool;
932 unsigned long flags;
933
934 /*
935 * If the bio has the REQ_FUA flag set we must commit the metadata
936 * before signaling its completion.
937 */
938 if (!bio_triggers_commit(tc, bio)) {
939 bio_endio(bio);
940 return;
941 }
942
943 /*
944 * Complete bio with an error if earlier I/O caused changes to the
945 * metadata that can't be committed, e.g, due to I/O errors on the
946 * metadata device.
947 */
948 if (dm_thin_aborted_changes(tc->td)) {
949 bio_io_error(bio);
950 return;
951 }
952
953 /*
954 * Batch together any bios that trigger commits and then issue a
955 * single commit for them in process_deferred_bios().
956 */
957 spin_lock_irqsave(&pool->lock, flags);
958 bio_list_add(&pool->deferred_flush_completions, bio);
959 spin_unlock_irqrestore(&pool->lock, flags);
960}
961
Mike Snitzera24c2562012-06-03 00:30:00 +0100962static void process_prepared_mapping(struct dm_thin_new_mapping *m)
Joe Thornber991d9fa2011-10-31 20:21:18 +0000963{
964 struct thin_c *tc = m->tc;
Joe Thornber6beca5e2013-03-01 22:45:50 +0000965 struct pool *pool = tc->pool;
Mike Snitzer8b908f82015-05-13 17:53:13 -0400966 struct bio *bio = m->bio;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000967 int r;
968
Joe Thornber991d9fa2011-10-31 20:21:18 +0000969 if (m->err) {
Joe Thornber6beca5e2013-03-01 22:45:50 +0000970 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100971 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000972 }
973
974 /*
975 * Commit the prepared block into the mapping btree.
976 * Any I/O for this block arriving after this point will get
977 * remapped to it directly.
978 */
Joe Thornber34fbcf62015-04-16 12:58:35 +0100979 r = dm_thin_insert_block(tc->td, m->virt_begin, m->data_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +0000980 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -0500981 metadata_operation_failed(pool, "dm_thin_insert_block", r);
Joe Thornber6beca5e2013-03-01 22:45:50 +0000982 cell_error(pool, m->cell);
Joe Thornber905386f2012-07-27 15:08:05 +0100983 goto out;
Joe Thornber991d9fa2011-10-31 20:21:18 +0000984 }
985
986 /*
987 * Release any bios held while the block was being provisioned.
988 * If we are processing a write bio that completely covers the block,
989 * we already processed it so can ignore it now when processing
990 * the bios in the cell.
991 */
992 if (bio) {
Joe Thornber2d759a42014-10-10 15:27:16 +0100993 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
Nikos Tsironis8934c922019-02-14 20:38:47 +0200994 complete_overwrite_bio(tc, bio);
Joe Thornber2d759a42014-10-10 15:27:16 +0100995 } else {
996 inc_all_io_entry(tc->pool, m->cell->holder);
997 remap_and_issue(tc, m->cell->holder, m->data_block);
998 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
999 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001000
Joe Thornber905386f2012-07-27 15:08:05 +01001001out:
Joe Thornber991d9fa2011-10-31 20:21:18 +00001002 list_del(&m->list);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001003 mempool_free(m, pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001004}
1005
Joe Thornber34fbcf62015-04-16 12:58:35 +01001006/*----------------------------------------------------------------*/
1007
1008static void free_discard_mapping(struct dm_thin_new_mapping *m)
1009{
1010 struct thin_c *tc = m->tc;
1011 if (m->cell)
1012 cell_defer_no_holder(tc, m->cell);
1013 mempool_free(m, tc->pool->mapping_pool);
1014}
1015
Joe Thornbere49e5822012-07-27 15:08:16 +01001016static void process_prepared_discard_fail(struct dm_thin_new_mapping *m)
Joe Thornber104655f2012-03-28 18:41:28 +01001017{
Joe Thornbere49e5822012-07-27 15:08:16 +01001018 bio_io_error(m->bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001019 free_discard_mapping(m);
Joe Thornbere49e5822012-07-27 15:08:16 +01001020}
Joe Thornber104655f2012-03-28 18:41:28 +01001021
Joe Thornber34fbcf62015-04-16 12:58:35 +01001022static void process_prepared_discard_success(struct dm_thin_new_mapping *m)
Joe Thornbere49e5822012-07-27 15:08:16 +01001023{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001024 bio_endio(m->bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001025 free_discard_mapping(m);
Joe Thornber104655f2012-03-28 18:41:28 +01001026}
1027
Joe Thornber34fbcf62015-04-16 12:58:35 +01001028static void process_prepared_discard_no_passdown(struct dm_thin_new_mapping *m)
Joe Thornbere49e5822012-07-27 15:08:16 +01001029{
1030 int r;
1031 struct thin_c *tc = m->tc;
1032
Joe Thornber34fbcf62015-04-16 12:58:35 +01001033 r = dm_thin_remove_range(tc->td, m->cell->key.block_begin, m->cell->key.block_end);
1034 if (r) {
1035 metadata_operation_failed(tc->pool, "dm_thin_remove_range", r);
1036 bio_io_error(m->bio);
1037 } else
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001038 bio_endio(m->bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01001039
Joe Thornber34fbcf62015-04-16 12:58:35 +01001040 cell_defer_no_holder(tc, m->cell);
1041 mempool_free(m, tc->pool->mapping_pool);
1042}
1043
Joe Thornber202bae52016-05-04 14:12:42 -04001044/*----------------------------------------------------------------*/
1045
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001046static void passdown_double_checking_shared_status(struct dm_thin_new_mapping *m,
1047 struct bio *discard_parent)
Joe Thornber34fbcf62015-04-16 12:58:35 +01001048{
1049 /*
1050 * We've already unmapped this range of blocks, but before we
1051 * passdown we have to check that these blocks are now unused.
1052 */
Joe Thornber202bae52016-05-04 14:12:42 -04001053 int r = 0;
Joe Thornber5675a522019-01-15 13:27:01 -05001054 bool shared = true;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001055 struct thin_c *tc = m->tc;
1056 struct pool *pool = tc->pool;
1057 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 -04001058 struct discard_op op;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001059
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001060 begin_discard(&op, tc, discard_parent);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001061 while (b != end) {
1062 /* find start of unmapped run */
1063 for (; b < end; b++) {
Joe Thornber5675a522019-01-15 13:27:01 -05001064 r = dm_pool_block_is_shared(pool->pmd, b, &shared);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001065 if (r)
Joe Thornber202bae52016-05-04 14:12:42 -04001066 goto out;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001067
Joe Thornber5675a522019-01-15 13:27:01 -05001068 if (!shared)
Joe Thornber34fbcf62015-04-16 12:58:35 +01001069 break;
1070 }
1071
1072 if (b == end)
1073 break;
1074
1075 /* find end of run */
1076 for (e = b + 1; e != end; e++) {
Joe Thornber5675a522019-01-15 13:27:01 -05001077 r = dm_pool_block_is_shared(pool->pmd, e, &shared);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001078 if (r)
Joe Thornber202bae52016-05-04 14:12:42 -04001079 goto out;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001080
Joe Thornber5675a522019-01-15 13:27:01 -05001081 if (shared)
Joe Thornber34fbcf62015-04-16 12:58:35 +01001082 break;
1083 }
1084
Joe Thornber202bae52016-05-04 14:12:42 -04001085 r = issue_discard(&op, b, e);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001086 if (r)
Joe Thornber202bae52016-05-04 14:12:42 -04001087 goto out;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001088
1089 b = e;
1090 }
Joe Thornber202bae52016-05-04 14:12:42 -04001091out:
1092 end_discard(&op, r);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001093}
1094
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001095static void queue_passdown_pt2(struct dm_thin_new_mapping *m)
1096{
1097 unsigned long flags;
1098 struct pool *pool = m->tc->pool;
1099
1100 spin_lock_irqsave(&pool->lock, flags);
1101 list_add_tail(&m->list, &pool->prepared_discards_pt2);
1102 spin_unlock_irqrestore(&pool->lock, flags);
1103 wake_worker(pool);
1104}
1105
1106static void passdown_endio(struct bio *bio)
1107{
1108 /*
1109 * It doesn't matter if the passdown discard failed, we still want
1110 * to unmap (we ignore err).
1111 */
1112 queue_passdown_pt2(bio->bi_private);
Dennis Yang17731312017-04-18 15:27:06 +08001113 bio_put(bio);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001114}
1115
1116static void process_prepared_discard_passdown_pt1(struct dm_thin_new_mapping *m)
1117{
1118 int r;
1119 struct thin_c *tc = m->tc;
1120 struct pool *pool = tc->pool;
1121 struct bio *discard_parent;
1122 dm_block_t data_end = m->data_block + (m->virt_end - m->virt_begin);
1123
1124 /*
1125 * Only this thread allocates blocks, so we can be sure that the
1126 * newly unmapped blocks will not be allocated before the end of
1127 * the function.
1128 */
1129 r = dm_thin_remove_range(tc->td, m->virt_begin, m->virt_end);
1130 if (r) {
1131 metadata_operation_failed(pool, "dm_thin_remove_range", r);
1132 bio_io_error(m->bio);
1133 cell_defer_no_holder(tc, m->cell);
1134 mempool_free(m, pool->mapping_pool);
1135 return;
1136 }
1137
Vallish Vaidyeshwara1c0fa382017-06-23 18:53:06 +00001138 /*
1139 * Increment the unmapped blocks. This prevents a race between the
1140 * passdown io and reallocation of freed blocks.
1141 */
1142 r = dm_pool_inc_data_range(pool->pmd, m->data_block, data_end);
1143 if (r) {
1144 metadata_operation_failed(pool, "dm_pool_inc_data_range", r);
1145 bio_io_error(m->bio);
1146 cell_defer_no_holder(tc, m->cell);
1147 mempool_free(m, pool->mapping_pool);
1148 return;
1149 }
1150
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001151 discard_parent = bio_alloc(GFP_NOIO, 1);
1152 if (!discard_parent) {
1153 DMWARN("%s: unable to allocate top level discard bio for passdown. Skipping passdown.",
1154 dm_device_name(tc->pool->pool_md));
1155 queue_passdown_pt2(m);
1156
1157 } else {
1158 discard_parent->bi_end_io = passdown_endio;
1159 discard_parent->bi_private = m;
1160
1161 if (m->maybe_shared)
1162 passdown_double_checking_shared_status(m, discard_parent);
1163 else {
1164 struct discard_op op;
1165
1166 begin_discard(&op, tc, discard_parent);
1167 r = issue_discard(&op, m->data_block, data_end);
1168 end_discard(&op, r);
1169 }
1170 }
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001171}
1172
1173static void process_prepared_discard_passdown_pt2(struct dm_thin_new_mapping *m)
Joe Thornber34fbcf62015-04-16 12:58:35 +01001174{
1175 int r;
1176 struct thin_c *tc = m->tc;
1177 struct pool *pool = tc->pool;
1178
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001179 /*
1180 * The passdown has completed, so now we can decrement all those
1181 * unmapped blocks.
1182 */
1183 r = dm_pool_dec_data_range(pool->pmd, m->data_block,
1184 m->data_block + (m->virt_end - m->virt_begin));
Joe Thornber202bae52016-05-04 14:12:42 -04001185 if (r) {
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001186 metadata_operation_failed(pool, "dm_pool_dec_data_range", r);
Joe Thornber202bae52016-05-04 14:12:42 -04001187 bio_io_error(m->bio);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01001188 } else
1189 bio_endio(m->bio);
Joe Thornber202bae52016-05-04 14:12:42 -04001190
Joe Thornber34fbcf62015-04-16 12:58:35 +01001191 cell_defer_no_holder(tc, m->cell);
1192 mempool_free(m, pool->mapping_pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01001193}
1194
Joe Thornber104655f2012-03-28 18:41:28 +01001195static void process_prepared(struct pool *pool, struct list_head *head,
Joe Thornbere49e5822012-07-27 15:08:16 +01001196 process_mapping_fn *fn)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001197{
1198 unsigned long flags;
1199 struct list_head maps;
Mike Snitzera24c2562012-06-03 00:30:00 +01001200 struct dm_thin_new_mapping *m, *tmp;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001201
1202 INIT_LIST_HEAD(&maps);
1203 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber104655f2012-03-28 18:41:28 +01001204 list_splice_init(head, &maps);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001205 spin_unlock_irqrestore(&pool->lock, flags);
1206
1207 list_for_each_entry_safe(m, tmp, &maps, list)
Joe Thornbere49e5822012-07-27 15:08:16 +01001208 (*fn)(m);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001209}
1210
1211/*
1212 * Deferred bio jobs.
1213 */
Joe Thornber104655f2012-03-28 18:41:28 +01001214static int io_overlaps_block(struct pool *pool, struct bio *bio)
1215{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001216 return bio->bi_iter.bi_size ==
1217 (pool->sectors_per_block << SECTOR_SHIFT);
Joe Thornber104655f2012-03-28 18:41:28 +01001218}
1219
Joe Thornber991d9fa2011-10-31 20:21:18 +00001220static int io_overwrites_block(struct pool *pool, struct bio *bio)
1221{
Joe Thornber104655f2012-03-28 18:41:28 +01001222 return (bio_data_dir(bio) == WRITE) &&
1223 io_overlaps_block(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001224}
1225
1226static void save_and_set_endio(struct bio *bio, bio_end_io_t **save,
1227 bio_end_io_t *fn)
1228{
1229 *save = bio->bi_end_io;
1230 bio->bi_end_io = fn;
1231}
1232
1233static int ensure_next_mapping(struct pool *pool)
1234{
1235 if (pool->next_mapping)
1236 return 0;
1237
1238 pool->next_mapping = mempool_alloc(pool->mapping_pool, GFP_ATOMIC);
1239
1240 return pool->next_mapping ? 0 : -ENOMEM;
1241}
1242
Mike Snitzera24c2562012-06-03 00:30:00 +01001243static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001244{
Mike Snitzer16961b02013-12-17 13:19:11 -05001245 struct dm_thin_new_mapping *m = pool->next_mapping;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001246
1247 BUG_ON(!pool->next_mapping);
1248
Mike Snitzer16961b02013-12-17 13:19:11 -05001249 memset(m, 0, sizeof(struct dm_thin_new_mapping));
1250 INIT_LIST_HEAD(&m->list);
1251 m->bio = NULL;
1252
Joe Thornber991d9fa2011-10-31 20:21:18 +00001253 pool->next_mapping = NULL;
1254
Mike Snitzer16961b02013-12-17 13:19:11 -05001255 return m;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001256}
1257
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001258static void ll_zero(struct thin_c *tc, struct dm_thin_new_mapping *m,
1259 sector_t begin, sector_t end)
1260{
1261 int r;
1262 struct dm_io_region to;
1263
1264 to.bdev = tc->pool_dev->bdev;
1265 to.sector = begin;
1266 to.count = end - begin;
1267
1268 r = dm_kcopyd_zero(tc->pool->copier, 1, &to, 0, copy_complete, m);
1269 if (r < 0) {
1270 DMERR_LIMIT("dm_kcopyd_zero() failed");
1271 copy_complete(1, 1, m);
1272 }
1273}
1274
Mike Snitzer452d7a62014-10-09 19:20:21 -04001275static void remap_and_issue_overwrite(struct thin_c *tc, struct bio *bio,
Joe Thornber34fbcf62015-04-16 12:58:35 +01001276 dm_block_t data_begin,
Mike Snitzer452d7a62014-10-09 19:20:21 -04001277 struct dm_thin_new_mapping *m)
1278{
1279 struct pool *pool = tc->pool;
1280 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1281
1282 h->overwrite_mapping = m;
1283 m->bio = bio;
1284 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
1285 inc_all_io_entry(pool, bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001286 remap_and_issue(tc, bio, data_begin);
Mike Snitzer452d7a62014-10-09 19:20:21 -04001287}
1288
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001289/*
1290 * A partial copy also needs to zero the uncopied region.
1291 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001292static void schedule_copy(struct thin_c *tc, dm_block_t virt_block,
Joe Thornber2dd9c252012-03-28 18:41:28 +01001293 struct dm_dev *origin, dm_block_t data_origin,
1294 dm_block_t data_dest,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001295 struct dm_bio_prison_cell *cell, struct bio *bio,
1296 sector_t len)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001297{
1298 int r;
1299 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001300 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001301
Joe Thornber991d9fa2011-10-31 20:21:18 +00001302 m->tc = tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001303 m->virt_begin = virt_block;
1304 m->virt_end = virt_block + 1u;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001305 m->data_block = data_dest;
1306 m->cell = cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001307
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001308 /*
1309 * quiesce action + copy action + an extra reference held for the
1310 * duration of this function (we may need to inc later for a
1311 * partial zero).
1312 */
1313 atomic_set(&m->prepare_actions, 3);
1314
Mike Snitzer44feb382012-10-12 21:02:10 +01001315 if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list))
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001316 complete_mapping_preparation(m); /* already quiesced */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001317
1318 /*
1319 * IO to pool_dev remaps to the pool target's data_dev.
1320 *
1321 * If the whole block of data is being overwritten, we can issue the
1322 * bio immediately. Otherwise we use kcopyd to clone the data first.
1323 */
Mike Snitzer452d7a62014-10-09 19:20:21 -04001324 if (io_overwrites_block(pool, bio))
1325 remap_and_issue_overwrite(tc, bio, data_dest, m);
1326 else {
Joe Thornber991d9fa2011-10-31 20:21:18 +00001327 struct dm_io_region from, to;
1328
Joe Thornber2dd9c252012-03-28 18:41:28 +01001329 from.bdev = origin->bdev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001330 from.sector = data_origin * pool->sectors_per_block;
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001331 from.count = len;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001332
1333 to.bdev = tc->pool_dev->bdev;
1334 to.sector = data_dest * pool->sectors_per_block;
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001335 to.count = len;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001336
1337 r = dm_kcopyd_copy(pool->copier, &from, 1, &to,
1338 0, copy_complete, m);
1339 if (r < 0) {
Mike Snitzerc3977412012-12-21 20:23:34 +00001340 DMERR_LIMIT("dm_kcopyd_copy() failed");
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001341 copy_complete(1, 1, m);
1342
1343 /*
1344 * We allow the zero to be issued, to simplify the
1345 * error path. Otherwise we'd need to start
1346 * worrying about decrementing the prepare_actions
1347 * counter.
1348 */
1349 }
1350
1351 /*
1352 * Do we need to zero a tail region?
1353 */
1354 if (len < pool->sectors_per_block && pool->pf.zero_new_blocks) {
1355 atomic_inc(&m->prepare_actions);
1356 ll_zero(tc, m,
1357 data_dest * pool->sectors_per_block + len,
1358 (data_dest + 1) * pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001359 }
1360 }
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001361
1362 complete_mapping_preparation(m); /* drop our ref */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001363}
1364
Joe Thornber2dd9c252012-03-28 18:41:28 +01001365static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block,
1366 dm_block_t data_origin, dm_block_t data_dest,
Mike Snitzera24c2562012-06-03 00:30:00 +01001367 struct dm_bio_prison_cell *cell, struct bio *bio)
Joe Thornber2dd9c252012-03-28 18:41:28 +01001368{
1369 schedule_copy(tc, virt_block, tc->pool_dev,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001370 data_origin, data_dest, cell, bio,
1371 tc->pool->sectors_per_block);
Joe Thornber2dd9c252012-03-28 18:41:28 +01001372}
1373
Joe Thornber991d9fa2011-10-31 20:21:18 +00001374static void schedule_zero(struct thin_c *tc, dm_block_t virt_block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001375 dm_block_t data_block, struct dm_bio_prison_cell *cell,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001376 struct bio *bio)
1377{
1378 struct pool *pool = tc->pool;
Mike Snitzera24c2562012-06-03 00:30:00 +01001379 struct dm_thin_new_mapping *m = get_next_mapping(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001380
Joe Thornber50f3c3e2014-06-13 13:57:09 +01001381 atomic_set(&m->prepare_actions, 1); /* no need to quiesce */
Joe Thornber991d9fa2011-10-31 20:21:18 +00001382 m->tc = tc;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001383 m->virt_begin = virt_block;
1384 m->virt_end = virt_block + 1u;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001385 m->data_block = data_block;
1386 m->cell = cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001387
1388 /*
1389 * If the whole block of data is being overwritten or we are not
1390 * zeroing pre-existing data, we can issue the bio immediately.
1391 * Otherwise we use kcopyd to zero the data first.
1392 */
Mike Snitzerf8ae7522015-05-14 11:28:37 -04001393 if (pool->pf.zero_new_blocks) {
1394 if (io_overwrites_block(pool, bio))
1395 remap_and_issue_overwrite(tc, bio, data_block, m);
1396 else
1397 ll_zero(tc, m, data_block * pool->sectors_per_block,
1398 (data_block + 1) * pool->sectors_per_block);
1399 } else
Joe Thornber991d9fa2011-10-31 20:21:18 +00001400 process_prepared_mapping(m);
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001401}
Joe Thornber991d9fa2011-10-31 20:21:18 +00001402
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001403static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
1404 dm_block_t data_dest,
1405 struct dm_bio_prison_cell *cell, struct bio *bio)
1406{
1407 struct pool *pool = tc->pool;
1408 sector_t virt_block_begin = virt_block * pool->sectors_per_block;
1409 sector_t virt_block_end = (virt_block + 1) * pool->sectors_per_block;
1410
1411 if (virt_block_end <= tc->origin_size)
1412 schedule_copy(tc, virt_block, tc->origin_dev,
1413 virt_block, data_dest, cell, bio,
1414 pool->sectors_per_block);
1415
1416 else if (virt_block_begin < tc->origin_size)
1417 schedule_copy(tc, virt_block, tc->origin_dev,
1418 virt_block, data_dest, cell, bio,
1419 tc->origin_size - virt_block_begin);
1420
1421 else
1422 schedule_zero(tc, virt_block, data_dest, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001423}
1424
Joe Thornber2c43fd22014-12-11 11:12:19 +00001425static void set_pool_mode(struct pool *pool, enum pool_mode new_mode);
1426
Mike Snitzerf2bc5d12018-06-26 12:04:23 -04001427static void requeue_bios(struct pool *pool);
1428
Joe Thornbera9537db2018-09-10 16:50:09 +01001429static bool is_read_only_pool_mode(enum pool_mode mode)
1430{
1431 return (mode == PM_OUT_OF_METADATA_SPACE || mode == PM_READ_ONLY);
1432}
1433
1434static bool is_read_only(struct pool *pool)
1435{
1436 return is_read_only_pool_mode(get_pool_mode(pool));
1437}
1438
1439static void check_for_metadata_space(struct pool *pool)
1440{
1441 int r;
1442 const char *ooms_reason = NULL;
1443 dm_block_t nr_free;
1444
1445 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free);
1446 if (r)
1447 ooms_reason = "Could not get free metadata blocks";
1448 else if (!nr_free)
1449 ooms_reason = "No free metadata blocks";
1450
1451 if (ooms_reason && !is_read_only(pool)) {
1452 DMERR("%s", ooms_reason);
1453 set_pool_mode(pool, PM_OUT_OF_METADATA_SPACE);
1454 }
1455}
1456
1457static void check_for_data_space(struct pool *pool)
Joe Thornber2c43fd22014-12-11 11:12:19 +00001458{
1459 int r;
1460 dm_block_t nr_free;
1461
1462 if (get_pool_mode(pool) != PM_OUT_OF_DATA_SPACE)
1463 return;
1464
1465 r = dm_pool_get_free_block_count(pool->pmd, &nr_free);
1466 if (r)
1467 return;
1468
Mike Snitzerf2bc5d12018-06-26 12:04:23 -04001469 if (nr_free) {
Joe Thornber2c43fd22014-12-11 11:12:19 +00001470 set_pool_mode(pool, PM_WRITE);
Mike Snitzerf2bc5d12018-06-26 12:04:23 -04001471 requeue_bios(pool);
1472 }
Joe Thornber2c43fd22014-12-11 11:12:19 +00001473}
1474
Joe Thornbere49e5822012-07-27 15:08:16 +01001475/*
1476 * A non-zero return indicates read_only or fail_io mode.
1477 * Many callers don't care about the return value.
1478 */
Joe Thornber020cc3b2013-12-04 15:05:36 -05001479static int commit(struct pool *pool)
Joe Thornbere49e5822012-07-27 15:08:16 +01001480{
1481 int r;
1482
Joe Thornbera9537db2018-09-10 16:50:09 +01001483 if (get_pool_mode(pool) >= PM_OUT_OF_METADATA_SPACE)
Joe Thornbere49e5822012-07-27 15:08:16 +01001484 return -EINVAL;
1485
Joe Thornber020cc3b2013-12-04 15:05:36 -05001486 r = dm_pool_commit_metadata(pool->pmd);
Joe Thornberb5330652013-12-04 19:51:33 -05001487 if (r)
1488 metadata_operation_failed(pool, "dm_pool_commit_metadata", r);
Joe Thornbera9537db2018-09-10 16:50:09 +01001489 else {
1490 check_for_metadata_space(pool);
1491 check_for_data_space(pool);
1492 }
Joe Thornbere49e5822012-07-27 15:08:16 +01001493
1494 return r;
1495}
1496
Joe Thornber88a66212013-12-04 20:16:12 -05001497static void check_low_water_mark(struct pool *pool, dm_block_t free_blocks)
1498{
1499 unsigned long flags;
1500
1501 if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
1502 DMWARN("%s: reached low water mark for data device: sending event.",
1503 dm_device_name(pool->pool_md));
1504 spin_lock_irqsave(&pool->lock, flags);
1505 pool->low_water_triggered = true;
1506 spin_unlock_irqrestore(&pool->lock, flags);
1507 dm_table_event(pool->ti->table);
1508 }
1509}
1510
Joe Thornber991d9fa2011-10-31 20:21:18 +00001511static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
1512{
1513 int r;
1514 dm_block_t free_blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001515 struct pool *pool = tc->pool;
1516
Joe Thornber3e1a0692014-03-03 16:03:26 +00001517 if (WARN_ON(get_pool_mode(pool) != PM_WRITE))
Joe Thornber8d30abf2013-12-04 19:16:11 -05001518 return -EINVAL;
1519
Joe Thornber991d9fa2011-10-31 20:21:18 +00001520 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
Joe Thornberb5330652013-12-04 19:51:33 -05001521 if (r) {
1522 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001523 return r;
Joe Thornberb5330652013-12-04 19:51:33 -05001524 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001525
Joe Thornber88a66212013-12-04 20:16:12 -05001526 check_low_water_mark(pool, free_blocks);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001527
1528 if (!free_blocks) {
Mike Snitzer94563ba2013-08-22 09:56:18 -04001529 /*
1530 * Try to commit to see if that will free up some
1531 * more space.
1532 */
Joe Thornber020cc3b2013-12-04 15:05:36 -05001533 r = commit(pool);
1534 if (r)
1535 return r;
Mike Snitzer94563ba2013-08-22 09:56:18 -04001536
1537 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
Joe Thornberb5330652013-12-04 19:51:33 -05001538 if (r) {
1539 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
Mike Snitzer94563ba2013-08-22 09:56:18 -04001540 return r;
Joe Thornberb5330652013-12-04 19:51:33 -05001541 }
Mike Snitzer94563ba2013-08-22 09:56:18 -04001542
Mike Snitzer94563ba2013-08-22 09:56:18 -04001543 if (!free_blocks) {
Joe Thornber3e1a0692014-03-03 16:03:26 +00001544 set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001545 return -ENOSPC;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001546 }
1547 }
1548
1549 r = dm_pool_alloc_data_block(pool->pmd, result);
Mike Snitzer4a02b342013-12-03 12:20:57 -05001550 if (r) {
Mike Snitzerf2bc5d12018-06-26 12:04:23 -04001551 if (r == -ENOSPC)
1552 set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
1553 else
1554 metadata_operation_failed(pool, "dm_pool_alloc_data_block", r);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001555 return r;
Mike Snitzer4a02b342013-12-03 12:20:57 -05001556 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001557
Joe Thornbera9537db2018-09-10 16:50:09 +01001558 r = dm_pool_get_free_metadata_block_count(pool->pmd, &free_blocks);
1559 if (r) {
1560 metadata_operation_failed(pool, "dm_pool_get_free_metadata_block_count", r);
1561 return r;
1562 }
1563
1564 if (!free_blocks) {
1565 /* Let's commit before we use up the metadata reserve. */
1566 r = commit(pool);
1567 if (r)
1568 return r;
1569 }
1570
Joe Thornber991d9fa2011-10-31 20:21:18 +00001571 return 0;
1572}
1573
1574/*
1575 * If we have run out of space, queue bios until the device is
1576 * resumed, presumably after having been reloaded with more space.
1577 */
1578static void retry_on_resume(struct bio *bio)
1579{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001580 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01001581 struct thin_c *tc = h->tc;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001582 unsigned long flags;
1583
Mike Snitzerc140e1c2014-03-20 21:17:14 -04001584 spin_lock_irqsave(&tc->lock, flags);
1585 bio_list_add(&tc->retry_on_resume_list, bio);
1586 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001587}
1588
Mike Snitzeraf918052014-05-22 14:32:51 -04001589static int should_error_unserviceable_bio(struct pool *pool)
Joe Thornber3e1a0692014-03-03 16:03:26 +00001590{
1591 enum pool_mode m = get_pool_mode(pool);
1592
1593 switch (m) {
1594 case PM_WRITE:
1595 /* Shouldn't get here */
1596 DMERR_LIMIT("bio unserviceable, yet pool is in PM_WRITE mode");
Mike Snitzeraf918052014-05-22 14:32:51 -04001597 return -EIO;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001598
1599 case PM_OUT_OF_DATA_SPACE:
Mike Snitzeraf918052014-05-22 14:32:51 -04001600 return pool->pf.error_if_no_space ? -ENOSPC : 0;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001601
Joe Thornbera9537db2018-09-10 16:50:09 +01001602 case PM_OUT_OF_METADATA_SPACE:
Joe Thornber3e1a0692014-03-03 16:03:26 +00001603 case PM_READ_ONLY:
1604 case PM_FAIL:
Mike Snitzeraf918052014-05-22 14:32:51 -04001605 return -EIO;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001606 default:
1607 /* Shouldn't get here */
1608 DMERR_LIMIT("bio unserviceable, yet pool has an unknown mode");
Mike Snitzeraf918052014-05-22 14:32:51 -04001609 return -EIO;
Joe Thornber3e1a0692014-03-03 16:03:26 +00001610 }
1611}
1612
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001613static void handle_unserviceable_bio(struct pool *pool, struct bio *bio)
1614{
Mike Snitzeraf918052014-05-22 14:32:51 -04001615 int error = should_error_unserviceable_bio(pool);
1616
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001617 if (error) {
1618 bio->bi_error = error;
1619 bio_endio(bio);
1620 } else
Mike Snitzer6d162022013-12-20 18:09:02 -05001621 retry_on_resume(bio);
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05001622}
1623
Mike Snitzer399cadd2013-12-05 16:03:33 -05001624static void retry_bios_on_resume(struct pool *pool, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001625{
1626 struct bio *bio;
1627 struct bio_list bios;
Mike Snitzeraf918052014-05-22 14:32:51 -04001628 int error;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001629
Mike Snitzeraf918052014-05-22 14:32:51 -04001630 error = should_error_unserviceable_bio(pool);
1631 if (error) {
1632 cell_error_with_code(pool, cell, error);
Joe Thornber3e1a0692014-03-03 16:03:26 +00001633 return;
1634 }
1635
Joe Thornber991d9fa2011-10-31 20:21:18 +00001636 bio_list_init(&bios);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001637 cell_release(pool, cell, &bios);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001638
Mike Snitzer9d094ee2014-10-19 08:23:09 -04001639 while ((bio = bio_list_pop(&bios)))
1640 retry_on_resume(bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001641}
1642
Joe Thornber34fbcf62015-04-16 12:58:35 +01001643static void process_discard_cell_no_passdown(struct thin_c *tc,
1644 struct dm_bio_prison_cell *virt_cell)
Joe Thornber104655f2012-03-28 18:41:28 +01001645{
Joe Thornber104655f2012-03-28 18:41:28 +01001646 struct pool *pool = tc->pool;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001647 struct dm_thin_new_mapping *m = get_next_mapping(pool);
1648
1649 /*
1650 * We don't need to lock the data blocks, since there's no
1651 * passdown. We only lock data blocks for allocation and breaking sharing.
1652 */
1653 m->tc = tc;
1654 m->virt_begin = virt_cell->key.block_begin;
1655 m->virt_end = virt_cell->key.block_end;
1656 m->cell = virt_cell;
1657 m->bio = virt_cell->holder;
1658
1659 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1660 pool->process_prepared_discard(m);
1661}
1662
Joe Thornber34fbcf62015-04-16 12:58:35 +01001663static void break_up_discard_bio(struct thin_c *tc, dm_block_t begin, dm_block_t end,
1664 struct bio *bio)
1665{
1666 struct pool *pool = tc->pool;
1667
1668 int r;
1669 bool maybe_shared;
1670 struct dm_cell_key data_key;
1671 struct dm_bio_prison_cell *data_cell;
Mike Snitzera24c2562012-06-03 00:30:00 +01001672 struct dm_thin_new_mapping *m;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001673 dm_block_t virt_begin, virt_end, data_begin;
Joe Thornber104655f2012-03-28 18:41:28 +01001674
Joe Thornber34fbcf62015-04-16 12:58:35 +01001675 while (begin != end) {
1676 r = ensure_next_mapping(pool);
1677 if (r)
1678 /* we did our best */
1679 return;
Joe Thornber104655f2012-03-28 18:41:28 +01001680
Joe Thornber34fbcf62015-04-16 12:58:35 +01001681 r = dm_thin_find_mapped_range(tc->td, begin, end, &virt_begin, &virt_end,
1682 &data_begin, &maybe_shared);
1683 if (r)
1684 /*
1685 * Silently fail, letting any mappings we've
1686 * created complete.
1687 */
Joe Thornber104655f2012-03-28 18:41:28 +01001688 break;
Joe Thornber34fbcf62015-04-16 12:58:35 +01001689
1690 build_key(tc->td, PHYSICAL, data_begin, data_begin + (virt_end - virt_begin), &data_key);
1691 if (bio_detain(tc->pool, &data_key, NULL, &data_cell)) {
1692 /* contention, we'll give up with this range */
1693 begin = virt_end;
1694 continue;
Joe Thornber104655f2012-03-28 18:41:28 +01001695 }
1696
Joe Thornber104655f2012-03-28 18:41:28 +01001697 /*
Joe Thornber34fbcf62015-04-16 12:58:35 +01001698 * IO may still be going to the destination block. We must
1699 * quiesce before we can do the removal.
Joe Thornber104655f2012-03-28 18:41:28 +01001700 */
Joe Thornber34fbcf62015-04-16 12:58:35 +01001701 m = get_next_mapping(pool);
1702 m->tc = tc;
1703 m->maybe_shared = maybe_shared;
1704 m->virt_begin = virt_begin;
1705 m->virt_end = virt_end;
1706 m->data_block = data_begin;
1707 m->cell = data_cell;
1708 m->bio = bio;
Joe Thornber104655f2012-03-28 18:41:28 +01001709
Joe Thornber34fbcf62015-04-16 12:58:35 +01001710 /*
1711 * The parent bio must not complete before sub discard bios are
Joe Thornber202bae52016-05-04 14:12:42 -04001712 * chained to it (see end_discard's bio_chain)!
Joe Thornber34fbcf62015-04-16 12:58:35 +01001713 *
1714 * This per-mapping bi_remaining increment is paired with
1715 * the implicit decrement that occurs via bio_endio() in
Joe Thornber202bae52016-05-04 14:12:42 -04001716 * end_discard().
Joe Thornber34fbcf62015-04-16 12:58:35 +01001717 */
Mike Snitzer13e4f8a2016-05-04 15:05:44 -04001718 bio_inc_remaining(bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001719 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1720 pool->process_prepared_discard(m);
1721
1722 begin = virt_end;
Joe Thornber104655f2012-03-28 18:41:28 +01001723 }
1724}
1725
Joe Thornber34fbcf62015-04-16 12:58:35 +01001726static void process_discard_cell_passdown(struct thin_c *tc, struct dm_bio_prison_cell *virt_cell)
1727{
1728 struct bio *bio = virt_cell->holder;
1729 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1730
1731 /*
1732 * The virt_cell will only get freed once the origin bio completes.
1733 * This means it will remain locked while all the individual
1734 * passdown bios are in flight.
1735 */
1736 h->cell = virt_cell;
1737 break_up_discard_bio(tc, virt_cell->key.block_begin, virt_cell->key.block_end, bio);
1738
1739 /*
1740 * We complete the bio now, knowing that the bi_remaining field
1741 * will prevent completion until the sub range discards have
1742 * completed.
1743 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001744 bio_endio(bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001745}
1746
Joe Thornbera374bb22014-10-10 13:43:14 +01001747static void process_discard_bio(struct thin_c *tc, struct bio *bio)
1748{
Joe Thornber34fbcf62015-04-16 12:58:35 +01001749 dm_block_t begin, end;
1750 struct dm_cell_key virt_key;
1751 struct dm_bio_prison_cell *virt_cell;
Joe Thornbera374bb22014-10-10 13:43:14 +01001752
Joe Thornber34fbcf62015-04-16 12:58:35 +01001753 get_bio_block_range(tc, bio, &begin, &end);
1754 if (begin == end) {
1755 /*
1756 * The discard covers less than a block.
1757 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001758 bio_endio(bio);
Joe Thornber34fbcf62015-04-16 12:58:35 +01001759 return;
1760 }
1761
1762 build_key(tc->td, VIRTUAL, begin, end, &virt_key);
1763 if (bio_detain(tc->pool, &virt_key, bio, &virt_cell))
1764 /*
1765 * Potential starvation issue: We're relying on the
1766 * fs/application being well behaved, and not trying to
1767 * send IO to a region at the same time as discarding it.
1768 * If they do this persistently then it's possible this
1769 * cell will never be granted.
1770 */
Joe Thornbera374bb22014-10-10 13:43:14 +01001771 return;
1772
Joe Thornber34fbcf62015-04-16 12:58:35 +01001773 tc->pool->process_discard_cell(tc, virt_cell);
Joe Thornbera374bb22014-10-10 13:43:14 +01001774}
1775
Joe Thornber991d9fa2011-10-31 20:21:18 +00001776static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzer44feb382012-10-12 21:02:10 +01001777 struct dm_cell_key *key,
Joe Thornber991d9fa2011-10-31 20:21:18 +00001778 struct dm_thin_lookup_result *lookup_result,
Mike Snitzera24c2562012-06-03 00:30:00 +01001779 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001780{
1781 int r;
1782 dm_block_t data_block;
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001783 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001784
1785 r = alloc_data_block(tc, &data_block);
1786 switch (r) {
1787 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001788 schedule_internal_copy(tc, block, lookup_result->block,
1789 data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001790 break;
1791
1792 case -ENOSPC:
Mike Snitzer399cadd2013-12-05 16:03:33 -05001793 retry_bios_on_resume(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001794 break;
1795
1796 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001797 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1798 __func__, r);
Mike Snitzerd6fc2042013-08-21 17:40:11 -04001799 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001800 break;
1801 }
1802}
1803
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001804static void __remap_and_issue_shared_cell(void *context,
1805 struct dm_bio_prison_cell *cell)
1806{
1807 struct remap_info *info = context;
1808 struct bio *bio;
1809
1810 while ((bio = bio_list_pop(&cell->bios))) {
1811 if ((bio_data_dir(bio) == WRITE) ||
Jens Axboe1eff9d32016-08-05 15:35:16 -06001812 (bio->bi_opf & (REQ_PREFLUSH | REQ_FUA) ||
Mike Christiee6047142016-06-05 14:32:04 -05001813 bio_op(bio) == REQ_OP_DISCARD))
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001814 bio_list_add(&info->defer_bios, bio);
1815 else {
1816 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));;
1817
1818 h->shared_read_entry = dm_deferred_entry_inc(info->tc->pool->shared_read_ds);
1819 inc_all_io_entry(info->tc->pool, bio);
1820 bio_list_add(&info->issue_bios, bio);
1821 }
1822 }
1823}
1824
1825static void remap_and_issue_shared_cell(struct thin_c *tc,
1826 struct dm_bio_prison_cell *cell,
1827 dm_block_t block)
1828{
1829 struct bio *bio;
1830 struct remap_info info;
1831
1832 info.tc = tc;
1833 bio_list_init(&info.defer_bios);
1834 bio_list_init(&info.issue_bios);
1835
1836 cell_visit_release(tc->pool, __remap_and_issue_shared_cell,
1837 &info, cell);
1838
1839 while ((bio = bio_list_pop(&info.defer_bios)))
1840 thin_defer_bio(tc, bio);
1841
1842 while ((bio = bio_list_pop(&info.issue_bios)))
1843 remap_and_issue(tc, bio, block);
1844}
1845
Joe Thornber991d9fa2011-10-31 20:21:18 +00001846static void process_shared_bio(struct thin_c *tc, struct bio *bio,
1847 dm_block_t block,
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001848 struct dm_thin_lookup_result *lookup_result,
1849 struct dm_bio_prison_cell *virt_cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001850{
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001851 struct dm_bio_prison_cell *data_cell;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001852 struct pool *pool = tc->pool;
Mike Snitzer44feb382012-10-12 21:02:10 +01001853 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001854
1855 /*
1856 * If cell is already occupied, then sharing is already in the process
1857 * of being broken so we have nothing further to do here.
1858 */
1859 build_data_key(tc->td, lookup_result->block, &key);
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001860 if (bio_detain(pool, &key, bio, &data_cell)) {
1861 cell_defer_no_holder(tc, virt_cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001862 return;
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001863 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001864
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001865 if (bio_data_dir(bio) == WRITE && bio->bi_iter.bi_size) {
1866 break_sharing(tc, bio, block, &key, lookup_result, data_cell);
1867 cell_defer_no_holder(tc, virt_cell);
1868 } else {
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00001869 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornber991d9fa2011-10-31 20:21:18 +00001870
Mike Snitzer44feb382012-10-12 21:02:10 +01001871 h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
Joe Thornbere8088072012-12-21 20:23:31 +00001872 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001873 remap_and_issue(tc, bio, lookup_result->block);
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001874
1875 remap_and_issue_shared_cell(tc, data_cell, lookup_result->block);
1876 remap_and_issue_shared_cell(tc, virt_cell, lookup_result->block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001877 }
1878}
1879
1880static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
Mike Snitzera24c2562012-06-03 00:30:00 +01001881 struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001882{
1883 int r;
1884 dm_block_t data_block;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001885 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001886
1887 /*
1888 * Remap empty bios (flushes) immediately, without provisioning.
1889 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07001890 if (!bio->bi_iter.bi_size) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001891 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001892 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001893
Joe Thornber991d9fa2011-10-31 20:21:18 +00001894 remap_and_issue(tc, bio, 0);
1895 return;
1896 }
1897
1898 /*
1899 * Fill read bios with zeroes and complete them immediately.
1900 */
1901 if (bio_data_dir(bio) == READ) {
1902 zero_fill_bio(bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001903 cell_defer_no_holder(tc, cell);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001904 bio_endio(bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001905 return;
1906 }
1907
1908 r = alloc_data_block(tc, &data_block);
1909 switch (r) {
1910 case 0:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001911 if (tc->origin_dev)
1912 schedule_external_copy(tc, block, data_block, cell, bio);
1913 else
1914 schedule_zero(tc, block, data_block, cell, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001915 break;
1916
1917 case -ENOSPC:
Mike Snitzer399cadd2013-12-05 16:03:33 -05001918 retry_bios_on_resume(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001919 break;
1920
1921 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001922 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1923 __func__, r);
Joe Thornber6beca5e2013-03-01 22:45:50 +00001924 cell_error(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001925 break;
1926 }
1927}
1928
Joe Thornbera374bb22014-10-10 13:43:14 +01001929static void process_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
Joe Thornber991d9fa2011-10-31 20:21:18 +00001930{
1931 int r;
Joe Thornber6beca5e2013-03-01 22:45:50 +00001932 struct pool *pool = tc->pool;
Joe Thornbera374bb22014-10-10 13:43:14 +01001933 struct bio *bio = cell->holder;
Joe Thornber991d9fa2011-10-31 20:21:18 +00001934 dm_block_t block = get_bio_block(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001935 struct dm_thin_lookup_result lookup_result;
1936
Joe Thornbera374bb22014-10-10 13:43:14 +01001937 if (tc->requeue_mode) {
1938 cell_requeue(pool, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001939 return;
Joe Thornbera374bb22014-10-10 13:43:14 +01001940 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001941
1942 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1943 switch (r) {
1944 case 0:
Joe Thornber23ca2bb2014-10-15 14:46:58 +01001945 if (lookup_result.shared)
1946 process_shared_bio(tc, bio, block, &lookup_result, cell);
1947 else {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001948 inc_all_io_entry(pool, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001949 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbera374bb22014-10-10 13:43:14 +01001950 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00001951 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00001952 break;
1953
1954 case -ENODATA:
Joe Thornber2dd9c252012-03-28 18:41:28 +01001955 if (bio_data_dir(bio) == READ && tc->origin_dev) {
Joe Thornber6beca5e2013-03-01 22:45:50 +00001956 inc_all_io_entry(pool, bio);
Joe Thornberf286ba02012-12-21 20:23:33 +00001957 cell_defer_no_holder(tc, cell);
Joe Thornbere8088072012-12-21 20:23:31 +00001958
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001959 if (bio_end_sector(bio) <= tc->origin_size)
1960 remap_to_origin_and_issue(tc, bio);
1961
1962 else if (bio->bi_iter.bi_sector < tc->origin_size) {
1963 zero_fill_bio(bio);
1964 bio->bi_iter.bi_size = (tc->origin_size - bio->bi_iter.bi_sector) << SECTOR_SHIFT;
1965 remap_to_origin_and_issue(tc, bio);
1966
1967 } else {
1968 zero_fill_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001969 bio_endio(bio);
Joe Thornbere5aea7b2014-06-13 14:47:24 +01001970 }
Joe Thornber2dd9c252012-03-28 18:41:28 +01001971 } else
1972 provision_block(tc, bio, block, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001973 break;
1974
1975 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00001976 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1977 __func__, r);
Joe Thornberf286ba02012-12-21 20:23:33 +00001978 cell_defer_no_holder(tc, cell);
Joe Thornber991d9fa2011-10-31 20:21:18 +00001979 bio_io_error(bio);
1980 break;
1981 }
1982}
1983
Joe Thornbera374bb22014-10-10 13:43:14 +01001984static void process_bio(struct thin_c *tc, struct bio *bio)
1985{
1986 struct pool *pool = tc->pool;
1987 dm_block_t block = get_bio_block(tc, bio);
1988 struct dm_bio_prison_cell *cell;
1989 struct dm_cell_key key;
1990
1991 /*
1992 * If cell is already occupied, then the block is already
1993 * being provisioned so we have nothing further to do here.
1994 */
1995 build_virtual_key(tc->td, block, &key);
1996 if (bio_detain(pool, &key, bio, &cell))
1997 return;
1998
1999 process_cell(tc, cell);
2000}
2001
2002static void __process_bio_read_only(struct thin_c *tc, struct bio *bio,
2003 struct dm_bio_prison_cell *cell)
Joe Thornbere49e5822012-07-27 15:08:16 +01002004{
2005 int r;
2006 int rw = bio_data_dir(bio);
2007 dm_block_t block = get_bio_block(tc, bio);
2008 struct dm_thin_lookup_result lookup_result;
2009
2010 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
2011 switch (r) {
2012 case 0:
Joe Thornbera374bb22014-10-10 13:43:14 +01002013 if (lookup_result.shared && (rw == WRITE) && bio->bi_iter.bi_size) {
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05002014 handle_unserviceable_bio(tc->pool, bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01002015 if (cell)
2016 cell_defer_no_holder(tc, cell);
2017 } else {
Joe Thornbere8088072012-12-21 20:23:31 +00002018 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01002019 remap_and_issue(tc, bio, lookup_result.block);
Joe Thornbera374bb22014-10-10 13:43:14 +01002020 if (cell)
2021 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
Joe Thornbere8088072012-12-21 20:23:31 +00002022 }
Joe Thornbere49e5822012-07-27 15:08:16 +01002023 break;
2024
2025 case -ENODATA:
Joe Thornbera374bb22014-10-10 13:43:14 +01002026 if (cell)
2027 cell_defer_no_holder(tc, cell);
Joe Thornbere49e5822012-07-27 15:08:16 +01002028 if (rw != READ) {
Mike Snitzer8c0f0e82013-12-05 15:47:24 -05002029 handle_unserviceable_bio(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01002030 break;
2031 }
2032
2033 if (tc->origin_dev) {
Joe Thornbere8088072012-12-21 20:23:31 +00002034 inc_all_io_entry(tc->pool, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01002035 remap_to_origin_and_issue(tc, bio);
2036 break;
2037 }
2038
2039 zero_fill_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002040 bio_endio(bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01002041 break;
2042
2043 default:
Mike Snitzerc3977412012-12-21 20:23:34 +00002044 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
2045 __func__, r);
Joe Thornbera374bb22014-10-10 13:43:14 +01002046 if (cell)
2047 cell_defer_no_holder(tc, cell);
Joe Thornbere49e5822012-07-27 15:08:16 +01002048 bio_io_error(bio);
2049 break;
2050 }
2051}
2052
Joe Thornbera374bb22014-10-10 13:43:14 +01002053static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
2054{
2055 __process_bio_read_only(tc, bio, NULL);
2056}
2057
2058static void process_cell_read_only(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2059{
2060 __process_bio_read_only(tc, cell->holder, cell);
2061}
2062
Joe Thornber3e1a0692014-03-03 16:03:26 +00002063static void process_bio_success(struct thin_c *tc, struct bio *bio)
2064{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002065 bio_endio(bio);
Joe Thornber3e1a0692014-03-03 16:03:26 +00002066}
2067
Joe Thornbere49e5822012-07-27 15:08:16 +01002068static void process_bio_fail(struct thin_c *tc, struct bio *bio)
2069{
2070 bio_io_error(bio);
2071}
2072
Joe Thornbera374bb22014-10-10 13:43:14 +01002073static void process_cell_success(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2074{
2075 cell_success(tc->pool, cell);
2076}
2077
2078static void process_cell_fail(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2079{
2080 cell_error(tc->pool, cell);
2081}
2082
Joe Thornberac8c3f32013-05-10 14:37:21 +01002083/*
2084 * FIXME: should we also commit due to size of transaction, measured in
2085 * metadata blocks?
2086 */
Joe Thornber905e51b2012-03-28 18:41:27 +01002087static int need_commit_due_to_time(struct pool *pool)
2088{
Manuel Schölling0f30af92014-05-22 22:42:37 +02002089 return !time_in_range(jiffies, pool->last_commit_jiffies,
2090 pool->last_commit_jiffies + COMMIT_PERIOD);
Joe Thornber905e51b2012-03-28 18:41:27 +01002091}
2092
Mike Snitzer67324ea2014-03-21 18:33:41 -04002093#define thin_pbd(node) rb_entry((node), struct dm_thin_endio_hook, rb_node)
2094#define thin_bio(pbd) dm_bio_from_per_bio_data((pbd), sizeof(struct dm_thin_endio_hook))
2095
2096static void __thin_bio_rb_add(struct thin_c *tc, struct bio *bio)
2097{
2098 struct rb_node **rbp, *parent;
2099 struct dm_thin_endio_hook *pbd;
2100 sector_t bi_sector = bio->bi_iter.bi_sector;
2101
2102 rbp = &tc->sort_bio_list.rb_node;
2103 parent = NULL;
2104 while (*rbp) {
2105 parent = *rbp;
2106 pbd = thin_pbd(parent);
2107
2108 if (bi_sector < thin_bio(pbd)->bi_iter.bi_sector)
2109 rbp = &(*rbp)->rb_left;
2110 else
2111 rbp = &(*rbp)->rb_right;
2112 }
2113
2114 pbd = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
2115 rb_link_node(&pbd->rb_node, parent, rbp);
2116 rb_insert_color(&pbd->rb_node, &tc->sort_bio_list);
2117}
2118
2119static void __extract_sorted_bios(struct thin_c *tc)
2120{
2121 struct rb_node *node;
2122 struct dm_thin_endio_hook *pbd;
2123 struct bio *bio;
2124
2125 for (node = rb_first(&tc->sort_bio_list); node; node = rb_next(node)) {
2126 pbd = thin_pbd(node);
2127 bio = thin_bio(pbd);
2128
2129 bio_list_add(&tc->deferred_bio_list, bio);
2130 rb_erase(&pbd->rb_node, &tc->sort_bio_list);
2131 }
2132
2133 WARN_ON(!RB_EMPTY_ROOT(&tc->sort_bio_list));
2134}
2135
2136static void __sort_thin_deferred_bios(struct thin_c *tc)
2137{
2138 struct bio *bio;
2139 struct bio_list bios;
2140
2141 bio_list_init(&bios);
2142 bio_list_merge(&bios, &tc->deferred_bio_list);
2143 bio_list_init(&tc->deferred_bio_list);
2144
2145 /* Sort deferred_bio_list using rb-tree */
2146 while ((bio = bio_list_pop(&bios)))
2147 __thin_bio_rb_add(tc, bio);
2148
2149 /*
2150 * Transfer the sorted bios in sort_bio_list back to
2151 * deferred_bio_list to allow lockless submission of
2152 * all bios.
2153 */
2154 __extract_sorted_bios(tc);
2155}
2156
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002157static void process_thin_deferred_bios(struct thin_c *tc)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002158{
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002159 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002160 unsigned long flags;
2161 struct bio *bio;
2162 struct bio_list bios;
Mike Snitzer67324ea2014-03-21 18:33:41 -04002163 struct blk_plug plug;
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002164 unsigned count = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002165
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002166 if (tc->requeue_mode) {
Mike Snitzer42d6a8c2014-10-19 07:52:44 -04002167 error_thin_bio_list(tc, &tc->deferred_bio_list, DM_ENDIO_REQUEUE);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002168 return;
2169 }
2170
Joe Thornber991d9fa2011-10-31 20:21:18 +00002171 bio_list_init(&bios);
2172
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002173 spin_lock_irqsave(&tc->lock, flags);
Mike Snitzer67324ea2014-03-21 18:33:41 -04002174
2175 if (bio_list_empty(&tc->deferred_bio_list)) {
2176 spin_unlock_irqrestore(&tc->lock, flags);
2177 return;
2178 }
2179
2180 __sort_thin_deferred_bios(tc);
2181
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002182 bio_list_merge(&bios, &tc->deferred_bio_list);
2183 bio_list_init(&tc->deferred_bio_list);
Mike Snitzer67324ea2014-03-21 18:33:41 -04002184
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002185 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002186
Mike Snitzer67324ea2014-03-21 18:33:41 -04002187 blk_start_plug(&plug);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002188 while ((bio = bio_list_pop(&bios))) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00002189 /*
2190 * If we've got no free new_mapping structs, and processing
2191 * this bio might require one, we pause until there are some
2192 * prepared mappings to process.
2193 */
2194 if (ensure_next_mapping(pool)) {
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002195 spin_lock_irqsave(&tc->lock, flags);
2196 bio_list_add(&tc->deferred_bio_list, bio);
2197 bio_list_merge(&tc->deferred_bio_list, &bios);
2198 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002199 break;
2200 }
Joe Thornber104655f2012-03-28 18:41:28 +01002201
Mike Christiee6047142016-06-05 14:32:04 -05002202 if (bio_op(bio) == REQ_OP_DISCARD)
Joe Thornbere49e5822012-07-27 15:08:16 +01002203 pool->process_discard(tc, bio);
Joe Thornber104655f2012-03-28 18:41:28 +01002204 else
Joe Thornbere49e5822012-07-27 15:08:16 +01002205 pool->process_bio(tc, bio);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002206
2207 if ((count++ & 127) == 0) {
Joe Thornber7d327fe2014-10-06 15:45:59 +01002208 throttle_work_update(&pool->throttle);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002209 dm_pool_issue_prefetches(pool->pmd);
2210 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002211 }
Mike Snitzer67324ea2014-03-21 18:33:41 -04002212 blk_finish_plug(&plug);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002213}
2214
Joe Thornberac4c3f32014-10-10 16:42:10 +01002215static int cmp_cells(const void *lhs, const void *rhs)
2216{
2217 struct dm_bio_prison_cell *lhs_cell = *((struct dm_bio_prison_cell **) lhs);
2218 struct dm_bio_prison_cell *rhs_cell = *((struct dm_bio_prison_cell **) rhs);
2219
2220 BUG_ON(!lhs_cell->holder);
2221 BUG_ON(!rhs_cell->holder);
2222
2223 if (lhs_cell->holder->bi_iter.bi_sector < rhs_cell->holder->bi_iter.bi_sector)
2224 return -1;
2225
2226 if (lhs_cell->holder->bi_iter.bi_sector > rhs_cell->holder->bi_iter.bi_sector)
2227 return 1;
2228
2229 return 0;
2230}
2231
2232static unsigned sort_cells(struct pool *pool, struct list_head *cells)
2233{
2234 unsigned count = 0;
2235 struct dm_bio_prison_cell *cell, *tmp;
2236
2237 list_for_each_entry_safe(cell, tmp, cells, user_list) {
2238 if (count >= CELL_SORT_ARRAY_SIZE)
2239 break;
2240
2241 pool->cell_sort_array[count++] = cell;
2242 list_del(&cell->user_list);
2243 }
2244
2245 sort(pool->cell_sort_array, count, sizeof(cell), cmp_cells, NULL);
2246
2247 return count;
2248}
2249
Joe Thornbera374bb22014-10-10 13:43:14 +01002250static void process_thin_deferred_cells(struct thin_c *tc)
2251{
2252 struct pool *pool = tc->pool;
2253 unsigned long flags;
2254 struct list_head cells;
Joe Thornberac4c3f32014-10-10 16:42:10 +01002255 struct dm_bio_prison_cell *cell;
2256 unsigned i, j, count;
Joe Thornbera374bb22014-10-10 13:43:14 +01002257
2258 INIT_LIST_HEAD(&cells);
2259
2260 spin_lock_irqsave(&tc->lock, flags);
2261 list_splice_init(&tc->deferred_cells, &cells);
2262 spin_unlock_irqrestore(&tc->lock, flags);
2263
2264 if (list_empty(&cells))
2265 return;
2266
Joe Thornberac4c3f32014-10-10 16:42:10 +01002267 do {
2268 count = sort_cells(tc->pool, &cells);
Joe Thornbera374bb22014-10-10 13:43:14 +01002269
Joe Thornberac4c3f32014-10-10 16:42:10 +01002270 for (i = 0; i < count; i++) {
2271 cell = pool->cell_sort_array[i];
2272 BUG_ON(!cell->holder);
2273
2274 /*
2275 * If we've got no free new_mapping structs, and processing
2276 * this bio might require one, we pause until there are some
2277 * prepared mappings to process.
2278 */
2279 if (ensure_next_mapping(pool)) {
2280 for (j = i; j < count; j++)
2281 list_add(&pool->cell_sort_array[j]->user_list, &cells);
2282
2283 spin_lock_irqsave(&tc->lock, flags);
2284 list_splice(&cells, &tc->deferred_cells);
2285 spin_unlock_irqrestore(&tc->lock, flags);
2286 return;
2287 }
2288
Mike Christiee6047142016-06-05 14:32:04 -05002289 if (bio_op(cell->holder) == REQ_OP_DISCARD)
Joe Thornberac4c3f32014-10-10 16:42:10 +01002290 pool->process_discard_cell(tc, cell);
2291 else
2292 pool->process_cell(tc, cell);
Joe Thornbera374bb22014-10-10 13:43:14 +01002293 }
Joe Thornberac4c3f32014-10-10 16:42:10 +01002294 } while (!list_empty(&cells));
Joe Thornbera374bb22014-10-10 13:43:14 +01002295}
2296
Joe Thornberb10ebd32014-04-08 11:29:01 +01002297static void thin_get(struct thin_c *tc);
2298static void thin_put(struct thin_c *tc);
2299
2300/*
2301 * We can't hold rcu_read_lock() around code that can block. So we
2302 * find a thin with the rcu lock held; bump a refcount; then drop
2303 * the lock.
2304 */
2305static struct thin_c *get_first_thin(struct pool *pool)
2306{
2307 struct thin_c *tc = NULL;
2308
2309 rcu_read_lock();
2310 if (!list_empty(&pool->active_thins)) {
2311 tc = list_entry_rcu(pool->active_thins.next, struct thin_c, list);
2312 thin_get(tc);
2313 }
2314 rcu_read_unlock();
2315
2316 return tc;
2317}
2318
2319static struct thin_c *get_next_thin(struct pool *pool, struct thin_c *tc)
2320{
2321 struct thin_c *old_tc = tc;
2322
2323 rcu_read_lock();
2324 list_for_each_entry_continue_rcu(tc, &pool->active_thins, list) {
2325 thin_get(tc);
2326 thin_put(old_tc);
2327 rcu_read_unlock();
2328 return tc;
2329 }
2330 thin_put(old_tc);
2331 rcu_read_unlock();
2332
2333 return NULL;
2334}
2335
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002336static void process_deferred_bios(struct pool *pool)
2337{
2338 unsigned long flags;
2339 struct bio *bio;
Nikos Tsironis8934c922019-02-14 20:38:47 +02002340 struct bio_list bios, bio_completions;
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002341 struct thin_c *tc;
2342
Joe Thornberb10ebd32014-04-08 11:29:01 +01002343 tc = get_first_thin(pool);
2344 while (tc) {
Joe Thornbera374bb22014-10-10 13:43:14 +01002345 process_thin_deferred_cells(tc);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002346 process_thin_deferred_bios(tc);
Joe Thornberb10ebd32014-04-08 11:29:01 +01002347 tc = get_next_thin(pool, tc);
2348 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002349
2350 /*
Nikos Tsironis8934c922019-02-14 20:38:47 +02002351 * If there are any deferred flush bios, we must commit the metadata
2352 * before issuing them or signaling their completion.
Joe Thornber991d9fa2011-10-31 20:21:18 +00002353 */
2354 bio_list_init(&bios);
Nikos Tsironis8934c922019-02-14 20:38:47 +02002355 bio_list_init(&bio_completions);
2356
Joe Thornber991d9fa2011-10-31 20:21:18 +00002357 spin_lock_irqsave(&pool->lock, flags);
2358 bio_list_merge(&bios, &pool->deferred_flush_bios);
2359 bio_list_init(&pool->deferred_flush_bios);
Nikos Tsironis8934c922019-02-14 20:38:47 +02002360
2361 bio_list_merge(&bio_completions, &pool->deferred_flush_completions);
2362 bio_list_init(&pool->deferred_flush_completions);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002363 spin_unlock_irqrestore(&pool->lock, flags);
2364
Nikos Tsironis8934c922019-02-14 20:38:47 +02002365 if (bio_list_empty(&bios) && bio_list_empty(&bio_completions) &&
Mike Snitzer4d1662a2014-02-06 06:08:56 -05002366 !(dm_pool_changed_this_transaction(pool->pmd) && need_commit_due_to_time(pool)))
Joe Thornber991d9fa2011-10-31 20:21:18 +00002367 return;
2368
Joe Thornber020cc3b2013-12-04 15:05:36 -05002369 if (commit(pool)) {
Nikos Tsironis8934c922019-02-14 20:38:47 +02002370 bio_list_merge(&bios, &bio_completions);
2371
Joe Thornber991d9fa2011-10-31 20:21:18 +00002372 while ((bio = bio_list_pop(&bios)))
2373 bio_io_error(bio);
2374 return;
2375 }
Joe Thornber905e51b2012-03-28 18:41:27 +01002376 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002377
Nikos Tsironis8934c922019-02-14 20:38:47 +02002378 while ((bio = bio_list_pop(&bio_completions)))
2379 bio_endio(bio);
2380
Joe Thornber991d9fa2011-10-31 20:21:18 +00002381 while ((bio = bio_list_pop(&bios)))
2382 generic_make_request(bio);
2383}
2384
2385static void do_worker(struct work_struct *ws)
2386{
2387 struct pool *pool = container_of(ws, struct pool, worker);
2388
Joe Thornber7d327fe2014-10-06 15:45:59 +01002389 throttle_work_start(&pool->throttle);
Joe Thornber8a01a6a2014-10-06 15:28:30 +01002390 dm_pool_issue_prefetches(pool->pmd);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002391 throttle_work_update(&pool->throttle);
Joe Thornbere49e5822012-07-27 15:08:16 +01002392 process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002393 throttle_work_update(&pool->throttle);
Joe Thornbere49e5822012-07-27 15:08:16 +01002394 process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002395 throttle_work_update(&pool->throttle);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01002396 process_prepared(pool, &pool->prepared_discards_pt2, &pool->process_prepared_discard_pt2);
2397 throttle_work_update(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002398 process_deferred_bios(pool);
Joe Thornber7d327fe2014-10-06 15:45:59 +01002399 throttle_work_complete(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002400}
2401
Joe Thornber905e51b2012-03-28 18:41:27 +01002402/*
2403 * We want to commit periodically so that not too much
2404 * unwritten data builds up.
2405 */
2406static void do_waker(struct work_struct *ws)
2407{
2408 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
2409 wake_worker(pool);
2410 queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
2411}
2412
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002413static void notify_of_pool_mode_change_to_oods(struct pool *pool);
2414
Joe Thornber85ad643b2014-05-09 15:59:38 +01002415/*
2416 * We're holding onto IO to allow userland time to react. After the
2417 * timeout either the pool will have been resized (and thus back in
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002418 * PM_WRITE mode), or we degrade to PM_OUT_OF_DATA_SPACE w/ error_if_no_space.
Joe Thornber85ad643b2014-05-09 15:59:38 +01002419 */
2420static void do_no_space_timeout(struct work_struct *ws)
2421{
2422 struct pool *pool = container_of(to_delayed_work(ws), struct pool,
2423 no_space_timeout);
2424
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002425 if (get_pool_mode(pool) == PM_OUT_OF_DATA_SPACE && !pool->pf.error_if_no_space) {
2426 pool->pf.error_if_no_space = true;
2427 notify_of_pool_mode_change_to_oods(pool);
Mike Snitzer0a927c22015-07-21 13:20:46 -04002428 error_retry_list_with_code(pool, -ENOSPC);
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002429 }
Joe Thornber85ad643b2014-05-09 15:59:38 +01002430}
2431
Joe Thornber991d9fa2011-10-31 20:21:18 +00002432/*----------------------------------------------------------------*/
2433
Joe Thornbere7a3e872014-05-13 16:14:14 -04002434struct pool_work {
Joe Thornber738211f2014-03-03 15:52:28 +00002435 struct work_struct worker;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002436 struct completion complete;
Joe Thornber738211f2014-03-03 15:52:28 +00002437};
2438
Joe Thornbere7a3e872014-05-13 16:14:14 -04002439static struct pool_work *to_pool_work(struct work_struct *ws)
Joe Thornber738211f2014-03-03 15:52:28 +00002440{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002441 return container_of(ws, struct pool_work, worker);
2442}
2443
2444static void pool_work_complete(struct pool_work *pw)
2445{
2446 complete(&pw->complete);
2447}
2448
2449static void pool_work_wait(struct pool_work *pw, struct pool *pool,
2450 void (*fn)(struct work_struct *))
2451{
2452 INIT_WORK_ONSTACK(&pw->worker, fn);
2453 init_completion(&pw->complete);
2454 queue_work(pool->wq, &pw->worker);
2455 wait_for_completion(&pw->complete);
2456}
2457
2458/*----------------------------------------------------------------*/
2459
2460struct noflush_work {
2461 struct pool_work pw;
2462 struct thin_c *tc;
2463};
2464
2465static struct noflush_work *to_noflush(struct work_struct *ws)
2466{
2467 return container_of(to_pool_work(ws), struct noflush_work, pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002468}
2469
2470static void do_noflush_start(struct work_struct *ws)
2471{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002472 struct noflush_work *w = to_noflush(ws);
Joe Thornber738211f2014-03-03 15:52:28 +00002473 w->tc->requeue_mode = true;
2474 requeue_io(w->tc);
Joe Thornbere7a3e872014-05-13 16:14:14 -04002475 pool_work_complete(&w->pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002476}
2477
2478static void do_noflush_stop(struct work_struct *ws)
2479{
Joe Thornbere7a3e872014-05-13 16:14:14 -04002480 struct noflush_work *w = to_noflush(ws);
Joe Thornber738211f2014-03-03 15:52:28 +00002481 w->tc->requeue_mode = false;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002482 pool_work_complete(&w->pw);
Joe Thornber738211f2014-03-03 15:52:28 +00002483}
2484
2485static void noflush_work(struct thin_c *tc, void (*fn)(struct work_struct *))
2486{
2487 struct noflush_work w;
2488
Joe Thornber738211f2014-03-03 15:52:28 +00002489 w.tc = tc;
Joe Thornbere7a3e872014-05-13 16:14:14 -04002490 pool_work_wait(&w.pw, tc->pool, fn);
Joe Thornber738211f2014-03-03 15:52:28 +00002491}
2492
2493/*----------------------------------------------------------------*/
2494
Joe Thornbere49e5822012-07-27 15:08:16 +01002495static enum pool_mode get_pool_mode(struct pool *pool)
2496{
2497 return pool->pf.mode;
2498}
2499
Joe Thornber3e1a0692014-03-03 16:03:26 +00002500static void notify_of_pool_mode_change(struct pool *pool, const char *new_mode)
2501{
2502 dm_table_event(pool->ti->table);
2503 DMINFO("%s: switching pool to %s mode",
2504 dm_device_name(pool->pool_md), new_mode);
2505}
2506
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002507static void notify_of_pool_mode_change_to_oods(struct pool *pool)
2508{
2509 if (!pool->pf.error_if_no_space)
2510 notify_of_pool_mode_change(pool, "out-of-data-space (queue IO)");
2511 else
2512 notify_of_pool_mode_change(pool, "out-of-data-space (error IO)");
2513}
2514
Joe Thornber34fbcf62015-04-16 12:58:35 +01002515static bool passdown_enabled(struct pool_c *pt)
2516{
2517 return pt->adjusted_pf.discard_passdown;
2518}
2519
2520static void set_discard_callbacks(struct pool *pool)
2521{
2522 struct pool_c *pt = pool->ti->private;
2523
2524 if (passdown_enabled(pt)) {
2525 pool->process_discard_cell = process_discard_cell_passdown;
Joe Thornber2a0fbff2016-07-01 14:00:02 +01002526 pool->process_prepared_discard = process_prepared_discard_passdown_pt1;
2527 pool->process_prepared_discard_pt2 = process_prepared_discard_passdown_pt2;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002528 } else {
2529 pool->process_discard_cell = process_discard_cell_no_passdown;
2530 pool->process_prepared_discard = process_prepared_discard_no_passdown;
2531 }
2532}
2533
Mike Snitzer8b64e882013-12-20 14:27:28 -05002534static void set_pool_mode(struct pool *pool, enum pool_mode new_mode)
Joe Thornbere49e5822012-07-27 15:08:16 +01002535{
Mike Snitzercdc2b412014-02-14 18:10:55 -05002536 struct pool_c *pt = pool->ti->private;
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002537 bool needs_check = dm_pool_metadata_needs_check(pool->pmd);
2538 enum pool_mode old_mode = get_pool_mode(pool);
Mike Snitzer80c57892014-05-20 13:38:33 -04002539 unsigned long no_space_timeout = ACCESS_ONCE(no_space_timeout_secs) * HZ;
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002540
2541 /*
2542 * Never allow the pool to transition to PM_WRITE mode if user
2543 * intervention is required to verify metadata and data consistency.
2544 */
2545 if (new_mode == PM_WRITE && needs_check) {
2546 DMERR("%s: unable to switch pool to write mode until repaired.",
2547 dm_device_name(pool->pool_md));
2548 if (old_mode != new_mode)
2549 new_mode = old_mode;
2550 else
2551 new_mode = PM_READ_ONLY;
2552 }
2553 /*
2554 * If we were in PM_FAIL mode, rollback of metadata failed. We're
2555 * not going to recover without a thin_repair. So we never let the
2556 * pool move out of the old mode.
2557 */
2558 if (old_mode == PM_FAIL)
2559 new_mode = old_mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002560
Mike Snitzer8b64e882013-12-20 14:27:28 -05002561 switch (new_mode) {
Joe Thornbere49e5822012-07-27 15:08:16 +01002562 case PM_FAIL:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002563 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002564 notify_of_pool_mode_change(pool, "failure");
Joe Thornber5383ef32013-12-04 16:30:01 -05002565 dm_pool_metadata_read_only(pool->pmd);
Joe Thornbere49e5822012-07-27 15:08:16 +01002566 pool->process_bio = process_bio_fail;
2567 pool->process_discard = process_bio_fail;
Joe Thornbera374bb22014-10-10 13:43:14 +01002568 pool->process_cell = process_cell_fail;
2569 pool->process_discard_cell = process_cell_fail;
Joe Thornbere49e5822012-07-27 15:08:16 +01002570 pool->process_prepared_mapping = process_prepared_mapping_fail;
2571 pool->process_prepared_discard = process_prepared_discard_fail;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002572
2573 error_retry_list(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01002574 break;
2575
Joe Thornbera9537db2018-09-10 16:50:09 +01002576 case PM_OUT_OF_METADATA_SPACE:
Joe Thornbere49e5822012-07-27 15:08:16 +01002577 case PM_READ_ONLY:
Joe Thornbera9537db2018-09-10 16:50:09 +01002578 if (!is_read_only_pool_mode(old_mode))
Joe Thornber3e1a0692014-03-03 16:03:26 +00002579 notify_of_pool_mode_change(pool, "read-only");
2580 dm_pool_metadata_read_only(pool->pmd);
2581 pool->process_bio = process_bio_read_only;
2582 pool->process_discard = process_bio_success;
Joe Thornbera374bb22014-10-10 13:43:14 +01002583 pool->process_cell = process_cell_read_only;
2584 pool->process_discard_cell = process_cell_success;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002585 pool->process_prepared_mapping = process_prepared_mapping_fail;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002586 pool->process_prepared_discard = process_prepared_discard_success;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002587
2588 error_retry_list(pool);
2589 break;
2590
2591 case PM_OUT_OF_DATA_SPACE:
2592 /*
2593 * Ideally we'd never hit this state; the low water mark
2594 * would trigger userland to extend the pool before we
2595 * completely run out of data space. However, many small
2596 * IOs to unprovisioned space can consume data space at an
2597 * alarming rate. Adjust your low water mark if you're
2598 * frequently seeing this mode.
2599 */
2600 if (old_mode != new_mode)
Mike Snitzerbcc696f2015-07-15 16:52:04 -04002601 notify_of_pool_mode_change_to_oods(pool);
Mike Snitzerc3667cc2016-03-10 11:31:35 -05002602 pool->out_of_data_space = true;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002603 pool->process_bio = process_bio_read_only;
Joe Thornbera374bb22014-10-10 13:43:14 +01002604 pool->process_discard = process_discard_bio;
2605 pool->process_cell = process_cell_read_only;
Joe Thornber3e1a0692014-03-03 16:03:26 +00002606 pool->process_prepared_mapping = process_prepared_mapping;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002607 set_discard_callbacks(pool);
Joe Thornber85ad643b2014-05-09 15:59:38 +01002608
Mike Snitzer80c57892014-05-20 13:38:33 -04002609 if (!pool->pf.error_if_no_space && no_space_timeout)
2610 queue_delayed_work(pool->wq, &pool->no_space_timeout, no_space_timeout);
Joe Thornbere49e5822012-07-27 15:08:16 +01002611 break;
2612
2613 case PM_WRITE:
Mike Snitzer8b64e882013-12-20 14:27:28 -05002614 if (old_mode != new_mode)
Joe Thornber3e1a0692014-03-03 16:03:26 +00002615 notify_of_pool_mode_change(pool, "write");
Hou Tao9a3f8fd52018-08-02 16:18:24 +08002616 if (old_mode == PM_OUT_OF_DATA_SPACE)
2617 cancel_delayed_work_sync(&pool->no_space_timeout);
Mike Snitzerc3667cc2016-03-10 11:31:35 -05002618 pool->out_of_data_space = false;
Mike Snitzer172c2382015-11-06 10:53:01 -05002619 pool->pf.error_if_no_space = pt->requested_pf.error_if_no_space;
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002620 dm_pool_metadata_read_write(pool->pmd);
Joe Thornbere49e5822012-07-27 15:08:16 +01002621 pool->process_bio = process_bio;
Joe Thornbera374bb22014-10-10 13:43:14 +01002622 pool->process_discard = process_discard_bio;
2623 pool->process_cell = process_cell;
Joe Thornbere49e5822012-07-27 15:08:16 +01002624 pool->process_prepared_mapping = process_prepared_mapping;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002625 set_discard_callbacks(pool);
Joe Thornbere49e5822012-07-27 15:08:16 +01002626 break;
2627 }
Mike Snitzer8b64e882013-12-20 14:27:28 -05002628
2629 pool->pf.mode = new_mode;
Mike Snitzercdc2b412014-02-14 18:10:55 -05002630 /*
2631 * The pool mode may have changed, sync it so bind_control_target()
2632 * doesn't cause an unexpected mode transition on resume.
2633 */
2634 pt->adjusted_pf.mode = new_mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002635}
2636
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002637static void abort_transaction(struct pool *pool)
2638{
2639 const char *dev_name = dm_device_name(pool->pool_md);
2640
2641 DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
2642 if (dm_pool_abort_metadata(pool->pmd)) {
2643 DMERR("%s: failed to abort metadata transaction", dev_name);
2644 set_pool_mode(pool, PM_FAIL);
2645 }
2646
2647 if (dm_pool_metadata_set_needs_check(pool->pmd)) {
2648 DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
2649 set_pool_mode(pool, PM_FAIL);
2650 }
2651}
2652
Joe Thornberb5330652013-12-04 19:51:33 -05002653static void metadata_operation_failed(struct pool *pool, const char *op, int r)
2654{
2655 DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
2656 dm_device_name(pool->pool_md), op, r);
2657
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002658 abort_transaction(pool);
Joe Thornberb5330652013-12-04 19:51:33 -05002659 set_pool_mode(pool, PM_READ_ONLY);
2660}
2661
Joe Thornbere49e5822012-07-27 15:08:16 +01002662/*----------------------------------------------------------------*/
2663
Joe Thornber991d9fa2011-10-31 20:21:18 +00002664/*
2665 * Mapping functions.
2666 */
2667
2668/*
2669 * Called only while mapping a thin bio to hand it over to the workqueue.
2670 */
2671static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
2672{
2673 unsigned long flags;
2674 struct pool *pool = tc->pool;
2675
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002676 spin_lock_irqsave(&tc->lock, flags);
2677 bio_list_add(&tc->deferred_bio_list, bio);
2678 spin_unlock_irqrestore(&tc->lock, flags);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002679
2680 wake_worker(pool);
2681}
2682
Joe Thornber7d327fe2014-10-06 15:45:59 +01002683static void thin_defer_bio_with_throttle(struct thin_c *tc, struct bio *bio)
2684{
2685 struct pool *pool = tc->pool;
2686
2687 throttle_lock(&pool->throttle);
2688 thin_defer_bio(tc, bio);
2689 throttle_unlock(&pool->throttle);
2690}
2691
Joe Thornbera374bb22014-10-10 13:43:14 +01002692static void thin_defer_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2693{
2694 unsigned long flags;
2695 struct pool *pool = tc->pool;
2696
2697 throttle_lock(&pool->throttle);
2698 spin_lock_irqsave(&tc->lock, flags);
2699 list_add_tail(&cell->user_list, &tc->deferred_cells);
2700 spin_unlock_irqrestore(&tc->lock, flags);
2701 throttle_unlock(&pool->throttle);
2702
2703 wake_worker(pool);
2704}
2705
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002706static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
Joe Thornbereb2aa482012-03-28 18:41:28 +01002707{
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002708 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01002709
2710 h->tc = tc;
2711 h->shared_read_entry = NULL;
Joe Thornbere8088072012-12-21 20:23:31 +00002712 h->all_io_entry = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002713 h->overwrite_mapping = NULL;
Joe Thornber34fbcf62015-04-16 12:58:35 +01002714 h->cell = NULL;
Joe Thornbereb2aa482012-03-28 18:41:28 +01002715}
2716
Joe Thornber991d9fa2011-10-31 20:21:18 +00002717/*
2718 * Non-blocking function called from the thin target's map function.
2719 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002720static int thin_bio_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002721{
2722 int r;
2723 struct thin_c *tc = ti->private;
2724 dm_block_t block = get_bio_block(tc, bio);
2725 struct dm_thin_device *td = tc->td;
2726 struct dm_thin_lookup_result result;
Joe Thornbera374bb22014-10-10 13:43:14 +01002727 struct dm_bio_prison_cell *virt_cell, *data_cell;
Joe Thornbere8088072012-12-21 20:23:31 +00002728 struct dm_cell_key key;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002729
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00002730 thin_hook_bio(tc, bio);
Joe Thornbere49e5822012-07-27 15:08:16 +01002731
Joe Thornber738211f2014-03-03 15:52:28 +00002732 if (tc->requeue_mode) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002733 bio->bi_error = DM_ENDIO_REQUEUE;
2734 bio_endio(bio);
Joe Thornber738211f2014-03-03 15:52:28 +00002735 return DM_MAPIO_SUBMITTED;
2736 }
2737
Joe Thornbere49e5822012-07-27 15:08:16 +01002738 if (get_pool_mode(tc->pool) == PM_FAIL) {
2739 bio_io_error(bio);
2740 return DM_MAPIO_SUBMITTED;
2741 }
2742
Jens Axboe1eff9d32016-08-05 15:35:16 -06002743 if (bio->bi_opf & (REQ_PREFLUSH | REQ_FUA) ||
Mike Christiee6047142016-06-05 14:32:04 -05002744 bio_op(bio) == REQ_OP_DISCARD) {
Joe Thornber7d327fe2014-10-06 15:45:59 +01002745 thin_defer_bio_with_throttle(tc, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002746 return DM_MAPIO_SUBMITTED;
2747 }
2748
Joe Thornberc822ed92014-10-10 09:41:09 +01002749 /*
2750 * We must hold the virtual cell before doing the lookup, otherwise
2751 * there's a race with discard.
2752 */
2753 build_virtual_key(tc->td, block, &key);
Joe Thornbera374bb22014-10-10 13:43:14 +01002754 if (bio_detain(tc->pool, &key, bio, &virt_cell))
Joe Thornberc822ed92014-10-10 09:41:09 +01002755 return DM_MAPIO_SUBMITTED;
2756
Joe Thornber991d9fa2011-10-31 20:21:18 +00002757 r = dm_thin_find_block(td, block, 0, &result);
2758
2759 /*
2760 * Note that we defer readahead too.
2761 */
2762 switch (r) {
2763 case 0:
2764 if (unlikely(result.shared)) {
2765 /*
2766 * We have a race condition here between the
2767 * result.shared value returned by the lookup and
2768 * snapshot creation, which may cause new
2769 * sharing.
2770 *
2771 * To avoid this always quiesce the origin before
2772 * taking the snap. You want to do this anyway to
2773 * ensure a consistent application view
2774 * (i.e. lockfs).
2775 *
2776 * More distant ancestors are irrelevant. The
2777 * shared flag will be set in their case.
2778 */
Joe Thornbera374bb22014-10-10 13:43:14 +01002779 thin_defer_cell(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002780 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002781 }
Joe Thornbere8088072012-12-21 20:23:31 +00002782
Joe Thornbere8088072012-12-21 20:23:31 +00002783 build_data_key(tc->td, result.block, &key);
Joe Thornbera374bb22014-10-10 13:43:14 +01002784 if (bio_detain(tc->pool, &key, bio, &data_cell)) {
2785 cell_defer_no_holder(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002786 return DM_MAPIO_SUBMITTED;
2787 }
2788
2789 inc_all_io_entry(tc->pool, bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01002790 cell_defer_no_holder(tc, data_cell);
2791 cell_defer_no_holder(tc, virt_cell);
Joe Thornbere8088072012-12-21 20:23:31 +00002792
2793 remap(tc, bio, result.block);
2794 return DM_MAPIO_REMAPPED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002795
2796 case -ENODATA:
Joe Thornbere49e5822012-07-27 15:08:16 +01002797 case -EWOULDBLOCK:
Joe Thornbera374bb22014-10-10 13:43:14 +01002798 thin_defer_cell(tc, virt_cell);
Joe Thornber2aab3852012-12-21 20:23:33 +00002799 return DM_MAPIO_SUBMITTED;
Joe Thornbere49e5822012-07-27 15:08:16 +01002800
2801 default:
2802 /*
2803 * Must always call bio_io_error on failure.
2804 * dm_thin_find_block can fail with -EINVAL if the
2805 * pool is switched to fail-io mode.
2806 */
2807 bio_io_error(bio);
Joe Thornbera374bb22014-10-10 13:43:14 +01002808 cell_defer_no_holder(tc, virt_cell);
Joe Thornber2aab3852012-12-21 20:23:33 +00002809 return DM_MAPIO_SUBMITTED;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002810 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00002811}
2812
2813static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
2814{
Joe Thornber991d9fa2011-10-31 20:21:18 +00002815 struct pool_c *pt = container_of(cb, struct pool_c, callbacks);
Mike Snitzer760fe672014-03-20 08:36:47 -04002816 struct request_queue *q;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002817
Mike Snitzer760fe672014-03-20 08:36:47 -04002818 if (get_pool_mode(pt->pool) == PM_OUT_OF_DATA_SPACE)
2819 return 1;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002820
Mike Snitzer760fe672014-03-20 08:36:47 -04002821 q = bdev_get_queue(pt->data_dev->bdev);
2822 return bdi_congested(&q->backing_dev_info, bdi_bits);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002823}
2824
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002825static void requeue_bios(struct pool *pool)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002826{
Mike Snitzerc140e1c2014-03-20 21:17:14 -04002827 unsigned long flags;
2828 struct thin_c *tc;
2829
2830 rcu_read_lock();
2831 list_for_each_entry_rcu(tc, &pool->active_thins, list) {
2832 spin_lock_irqsave(&tc->lock, flags);
2833 bio_list_merge(&tc->deferred_bio_list, &tc->retry_on_resume_list);
2834 bio_list_init(&tc->retry_on_resume_list);
2835 spin_unlock_irqrestore(&tc->lock, flags);
2836 }
2837 rcu_read_unlock();
Joe Thornber991d9fa2011-10-31 20:21:18 +00002838}
2839
2840/*----------------------------------------------------------------
2841 * Binding of control targets to a pool object
2842 *--------------------------------------------------------------*/
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002843static bool data_dev_supports_discard(struct pool_c *pt)
2844{
2845 struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
2846
2847 return q && blk_queue_discard(q);
2848}
2849
Joe Thornber58051b92013-03-20 17:21:25 +00002850static bool is_factor(sector_t block_size, uint32_t n)
2851{
2852 return !sector_div(block_size, n);
2853}
2854
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002855/*
2856 * If discard_passdown was enabled verify that the data device
Mike Snitzer0424caa2012-09-26 23:45:47 +01002857 * supports discards. Disable discard_passdown if not.
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002858 */
Mike Snitzer0424caa2012-09-26 23:45:47 +01002859static void disable_passdown_if_not_supported(struct pool_c *pt)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002860{
Mike Snitzer0424caa2012-09-26 23:45:47 +01002861 struct pool *pool = pt->pool;
2862 struct block_device *data_bdev = pt->data_dev->bdev;
2863 struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
Mike Snitzer0424caa2012-09-26 23:45:47 +01002864 const char *reason = NULL;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002865 char buf[BDEVNAME_SIZE];
2866
Mike Snitzer0424caa2012-09-26 23:45:47 +01002867 if (!pt->adjusted_pf.discard_passdown)
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002868 return;
2869
Mike Snitzer0424caa2012-09-26 23:45:47 +01002870 if (!data_dev_supports_discard(pt))
2871 reason = "discard unsupported";
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002872
Mike Snitzer0424caa2012-09-26 23:45:47 +01002873 else if (data_limits->max_discard_sectors < pool->sectors_per_block)
2874 reason = "max discard sectors smaller than a block";
2875
Mike Snitzer0424caa2012-09-26 23:45:47 +01002876 if (reason) {
2877 DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason);
2878 pt->adjusted_pf.discard_passdown = false;
2879 }
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002880}
2881
Joe Thornber991d9fa2011-10-31 20:21:18 +00002882static int bind_control_target(struct pool *pool, struct dm_target *ti)
2883{
2884 struct pool_c *pt = ti->private;
2885
Joe Thornbere49e5822012-07-27 15:08:16 +01002886 /*
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002887 * We want to make sure that a pool in PM_FAIL mode is never upgraded.
Joe Thornbere49e5822012-07-27 15:08:16 +01002888 */
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05002889 enum pool_mode old_mode = get_pool_mode(pool);
Mike Snitzer0424caa2012-09-26 23:45:47 +01002890 enum pool_mode new_mode = pt->adjusted_pf.mode;
Joe Thornbere49e5822012-07-27 15:08:16 +01002891
Joe Thornber9b7aaa62013-12-04 16:58:19 -05002892 /*
Mike Snitzer8b64e882013-12-20 14:27:28 -05002893 * Don't change the pool's mode until set_pool_mode() below.
2894 * Otherwise the pool's process_* function pointers may
2895 * not match the desired pool mode.
2896 */
2897 pt->adjusted_pf.mode = old_mode;
2898
2899 pool->ti = ti;
2900 pool->pf = pt->adjusted_pf;
2901 pool->low_water_blocks = pt->low_water_blocks;
2902
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002903 set_pool_mode(pool, new_mode);
Mike Snitzerf4026932012-05-19 01:01:01 +01002904
Joe Thornber991d9fa2011-10-31 20:21:18 +00002905 return 0;
2906}
2907
2908static void unbind_control_target(struct pool *pool, struct dm_target *ti)
2909{
2910 if (pool->ti == ti)
2911 pool->ti = NULL;
2912}
2913
2914/*----------------------------------------------------------------
2915 * Pool creation
2916 *--------------------------------------------------------------*/
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002917/* Initialize pool features. */
2918static void pool_features_init(struct pool_features *pf)
2919{
Joe Thornbere49e5822012-07-27 15:08:16 +01002920 pf->mode = PM_WRITE;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01002921 pf->zero_new_blocks = true;
2922 pf->discard_enabled = true;
2923 pf->discard_passdown = true;
Mike Snitzer787a996c2013-12-06 16:21:43 -05002924 pf->error_if_no_space = false;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002925}
2926
Joe Thornber991d9fa2011-10-31 20:21:18 +00002927static void __pool_destroy(struct pool *pool)
2928{
2929 __pool_table_remove(pool);
2930
Joe Thornbera822c832015-07-03 10:22:42 +01002931 vfree(pool->cell_sort_array);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002932 if (dm_pool_metadata_close(pool->pmd) < 0)
2933 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
2934
Mike Snitzer44feb382012-10-12 21:02:10 +01002935 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002936 dm_kcopyd_client_destroy(pool->copier);
2937
2938 if (pool->wq)
2939 destroy_workqueue(pool->wq);
2940
2941 if (pool->next_mapping)
2942 mempool_free(pool->next_mapping, pool->mapping_pool);
2943 mempool_destroy(pool->mapping_pool);
Mike Snitzer44feb382012-10-12 21:02:10 +01002944 dm_deferred_set_destroy(pool->shared_read_ds);
2945 dm_deferred_set_destroy(pool->all_io_ds);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002946 kfree(pool);
2947}
2948
Mike Snitzera24c2562012-06-03 00:30:00 +01002949static struct kmem_cache *_new_mapping_cache;
Mike Snitzera24c2562012-06-03 00:30:00 +01002950
Joe Thornber991d9fa2011-10-31 20:21:18 +00002951static struct pool *pool_create(struct mapped_device *pool_md,
2952 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01002953 unsigned long block_size,
2954 int read_only, char **error)
Joe Thornber991d9fa2011-10-31 20:21:18 +00002955{
2956 int r;
2957 void *err_p;
2958 struct pool *pool;
2959 struct dm_pool_metadata *pmd;
Joe Thornbere49e5822012-07-27 15:08:16 +01002960 bool format_device = read_only ? false : true;
Joe Thornber991d9fa2011-10-31 20:21:18 +00002961
Joe Thornbere49e5822012-07-27 15:08:16 +01002962 pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002963 if (IS_ERR(pmd)) {
2964 *error = "Error creating metadata object";
2965 return (struct pool *)pmd;
2966 }
2967
2968 pool = kmalloc(sizeof(*pool), GFP_KERNEL);
2969 if (!pool) {
2970 *error = "Error allocating memory for pool";
2971 err_p = ERR_PTR(-ENOMEM);
2972 goto bad_pool;
2973 }
2974
2975 pool->pmd = pmd;
2976 pool->sectors_per_block = block_size;
Mikulas Patockaf9a8e0c2012-07-27 15:08:03 +01002977 if (block_size & (block_size - 1))
2978 pool->sectors_per_block_shift = -1;
2979 else
2980 pool->sectors_per_block_shift = __ffs(block_size);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002981 pool->low_water_blocks = 0;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01002982 pool_features_init(&pool->pf);
Joe Thornbera195db22014-10-06 16:30:06 -04002983 pool->prison = dm_bio_prison_create();
Joe Thornber991d9fa2011-10-31 20:21:18 +00002984 if (!pool->prison) {
2985 *error = "Error creating pool's bio prison";
2986 err_p = ERR_PTR(-ENOMEM);
2987 goto bad_prison;
2988 }
2989
Mikulas Patockadf5d2e92013-03-01 22:45:49 +00002990 pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00002991 if (IS_ERR(pool->copier)) {
2992 r = PTR_ERR(pool->copier);
2993 *error = "Error creating pool's kcopyd client";
2994 err_p = ERR_PTR(r);
2995 goto bad_kcopyd_client;
2996 }
2997
2998 /*
2999 * Create singlethreaded workqueue that will service all devices
3000 * that use this metadata.
3001 */
3002 pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
3003 if (!pool->wq) {
3004 *error = "Error creating pool's workqueue";
3005 err_p = ERR_PTR(-ENOMEM);
3006 goto bad_wq;
3007 }
3008
Joe Thornber7d327fe2014-10-06 15:45:59 +01003009 throttle_init(&pool->throttle);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003010 INIT_WORK(&pool->worker, do_worker);
Joe Thornber905e51b2012-03-28 18:41:27 +01003011 INIT_DELAYED_WORK(&pool->waker, do_waker);
Joe Thornber85ad643b2014-05-09 15:59:38 +01003012 INIT_DELAYED_WORK(&pool->no_space_timeout, do_no_space_timeout);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003013 spin_lock_init(&pool->lock);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003014 bio_list_init(&pool->deferred_flush_bios);
Nikos Tsironis8934c922019-02-14 20:38:47 +02003015 bio_list_init(&pool->deferred_flush_completions);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003016 INIT_LIST_HEAD(&pool->prepared_mappings);
Joe Thornber104655f2012-03-28 18:41:28 +01003017 INIT_LIST_HEAD(&pool->prepared_discards);
Joe Thornber2a0fbff2016-07-01 14:00:02 +01003018 INIT_LIST_HEAD(&pool->prepared_discards_pt2);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04003019 INIT_LIST_HEAD(&pool->active_thins);
Joe Thornber88a66212013-12-04 20:16:12 -05003020 pool->low_water_triggered = false;
Mike Snitzer80e96c52014-11-07 15:09:46 -05003021 pool->suspended = true;
Mike Snitzerc3667cc2016-03-10 11:31:35 -05003022 pool->out_of_data_space = false;
Mike Snitzer44feb382012-10-12 21:02:10 +01003023
3024 pool->shared_read_ds = dm_deferred_set_create();
3025 if (!pool->shared_read_ds) {
3026 *error = "Error creating pool's shared read deferred set";
3027 err_p = ERR_PTR(-ENOMEM);
3028 goto bad_shared_read_ds;
3029 }
3030
3031 pool->all_io_ds = dm_deferred_set_create();
3032 if (!pool->all_io_ds) {
3033 *error = "Error creating pool's all io deferred set";
3034 err_p = ERR_PTR(-ENOMEM);
3035 goto bad_all_io_ds;
3036 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003037
3038 pool->next_mapping = NULL;
Mike Snitzera24c2562012-06-03 00:30:00 +01003039 pool->mapping_pool = mempool_create_slab_pool(MAPPING_POOL_SIZE,
3040 _new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003041 if (!pool->mapping_pool) {
3042 *error = "Error creating pool's mapping mempool";
3043 err_p = ERR_PTR(-ENOMEM);
3044 goto bad_mapping_pool;
3045 }
3046
Joe Thornbera822c832015-07-03 10:22:42 +01003047 pool->cell_sort_array = vmalloc(sizeof(*pool->cell_sort_array) * CELL_SORT_ARRAY_SIZE);
3048 if (!pool->cell_sort_array) {
3049 *error = "Error allocating cell sort array";
3050 err_p = ERR_PTR(-ENOMEM);
3051 goto bad_sort_array;
3052 }
3053
Joe Thornber991d9fa2011-10-31 20:21:18 +00003054 pool->ref_count = 1;
Joe Thornber905e51b2012-03-28 18:41:27 +01003055 pool->last_commit_jiffies = jiffies;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003056 pool->pool_md = pool_md;
3057 pool->md_dev = metadata_dev;
3058 __pool_table_insert(pool);
3059
3060 return pool;
3061
Joe Thornbera822c832015-07-03 10:22:42 +01003062bad_sort_array:
3063 mempool_destroy(pool->mapping_pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003064bad_mapping_pool:
Mike Snitzer44feb382012-10-12 21:02:10 +01003065 dm_deferred_set_destroy(pool->all_io_ds);
3066bad_all_io_ds:
3067 dm_deferred_set_destroy(pool->shared_read_ds);
3068bad_shared_read_ds:
Joe Thornber991d9fa2011-10-31 20:21:18 +00003069 destroy_workqueue(pool->wq);
3070bad_wq:
3071 dm_kcopyd_client_destroy(pool->copier);
3072bad_kcopyd_client:
Mike Snitzer44feb382012-10-12 21:02:10 +01003073 dm_bio_prison_destroy(pool->prison);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003074bad_prison:
3075 kfree(pool);
3076bad_pool:
3077 if (dm_pool_metadata_close(pmd))
3078 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
3079
3080 return err_p;
3081}
3082
3083static void __pool_inc(struct pool *pool)
3084{
3085 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
3086 pool->ref_count++;
3087}
3088
3089static void __pool_dec(struct pool *pool)
3090{
3091 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
3092 BUG_ON(!pool->ref_count);
3093 if (!--pool->ref_count)
3094 __pool_destroy(pool);
3095}
3096
3097static struct pool *__pool_find(struct mapped_device *pool_md,
3098 struct block_device *metadata_dev,
Joe Thornbere49e5822012-07-27 15:08:16 +01003099 unsigned long block_size, int read_only,
3100 char **error, int *created)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003101{
3102 struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
3103
3104 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01003105 if (pool->pool_md != pool_md) {
3106 *error = "metadata device already in use by a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00003107 return ERR_PTR(-EBUSY);
Mike Snitzerf09996c2012-07-27 15:07:59 +01003108 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003109 __pool_inc(pool);
3110
3111 } else {
3112 pool = __pool_table_lookup(pool_md);
3113 if (pool) {
Mike Snitzerf09996c2012-07-27 15:07:59 +01003114 if (pool->md_dev != metadata_dev) {
3115 *error = "different pool cannot replace a pool";
Joe Thornber991d9fa2011-10-31 20:21:18 +00003116 return ERR_PTR(-EINVAL);
Mike Snitzerf09996c2012-07-27 15:07:59 +01003117 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003118 __pool_inc(pool);
3119
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003120 } else {
Joe Thornbere49e5822012-07-27 15:08:16 +01003121 pool = pool_create(pool_md, metadata_dev, block_size, read_only, error);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003122 *created = 1;
3123 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003124 }
3125
3126 return pool;
3127}
3128
3129/*----------------------------------------------------------------
3130 * Pool target methods
3131 *--------------------------------------------------------------*/
3132static void pool_dtr(struct dm_target *ti)
3133{
3134 struct pool_c *pt = ti->private;
3135
3136 mutex_lock(&dm_thin_pool_table.mutex);
3137
3138 unbind_control_target(pt->pool, ti);
3139 __pool_dec(pt->pool);
3140 dm_put_device(ti, pt->metadata_dev);
3141 dm_put_device(ti, pt->data_dev);
3142 kfree(pt);
3143
3144 mutex_unlock(&dm_thin_pool_table.mutex);
3145}
3146
Joe Thornber991d9fa2011-10-31 20:21:18 +00003147static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
3148 struct dm_target *ti)
3149{
3150 int r;
3151 unsigned argc;
3152 const char *arg_name;
3153
3154 static struct dm_arg _args[] = {
Mike Snitzer74aa45c2014-01-15 19:07:58 -05003155 {0, 4, "Invalid number of pool feature arguments"},
Joe Thornber991d9fa2011-10-31 20:21:18 +00003156 };
3157
3158 /*
3159 * No feature arguments supplied.
3160 */
3161 if (!as->argc)
3162 return 0;
3163
3164 r = dm_read_arg_group(_args, as, &argc, &ti->error);
3165 if (r)
3166 return -EINVAL;
3167
3168 while (argc && !r) {
3169 arg_name = dm_shift_arg(as);
3170 argc--;
3171
Joe Thornbere49e5822012-07-27 15:08:16 +01003172 if (!strcasecmp(arg_name, "skip_block_zeroing"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003173 pf->zero_new_blocks = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003174
Joe Thornbere49e5822012-07-27 15:08:16 +01003175 else if (!strcasecmp(arg_name, "ignore_discard"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003176 pf->discard_enabled = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01003177
3178 else if (!strcasecmp(arg_name, "no_discard_passdown"))
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003179 pf->discard_passdown = false;
Joe Thornbere49e5822012-07-27 15:08:16 +01003180
3181 else if (!strcasecmp(arg_name, "read_only"))
3182 pf->mode = PM_READ_ONLY;
3183
Mike Snitzer787a996c2013-12-06 16:21:43 -05003184 else if (!strcasecmp(arg_name, "error_if_no_space"))
3185 pf->error_if_no_space = true;
3186
Joe Thornbere49e5822012-07-27 15:08:16 +01003187 else {
3188 ti->error = "Unrecognised pool feature requested";
3189 r = -EINVAL;
3190 break;
3191 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003192 }
3193
3194 return r;
3195}
3196
Joe Thornberac8c3f32013-05-10 14:37:21 +01003197static void metadata_low_callback(void *context)
3198{
3199 struct pool *pool = context;
3200
3201 DMWARN("%s: reached low water mark for metadata device: sending event.",
3202 dm_device_name(pool->pool_md));
3203
3204 dm_table_event(pool->ti->table);
3205}
3206
Mike Snitzer7d489352014-02-12 23:58:15 -05003207static sector_t get_dev_size(struct block_device *bdev)
Joe Thornberb17446d2013-05-10 14:37:18 +01003208{
Mike Snitzer7d489352014-02-12 23:58:15 -05003209 return i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
3210}
3211
3212static void warn_if_metadata_device_too_big(struct block_device *bdev)
3213{
3214 sector_t metadata_dev_size = get_dev_size(bdev);
Joe Thornberb17446d2013-05-10 14:37:18 +01003215 char buffer[BDEVNAME_SIZE];
3216
Mike Snitzer7d489352014-02-12 23:58:15 -05003217 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING)
Joe Thornberb17446d2013-05-10 14:37:18 +01003218 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
3219 bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS);
Mike Snitzer7d489352014-02-12 23:58:15 -05003220}
3221
3222static sector_t get_metadata_dev_size(struct block_device *bdev)
3223{
3224 sector_t metadata_dev_size = get_dev_size(bdev);
3225
3226 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS)
3227 metadata_dev_size = THIN_METADATA_MAX_SECTORS;
Joe Thornberb17446d2013-05-10 14:37:18 +01003228
3229 return metadata_dev_size;
3230}
3231
Joe Thornber24347e92013-05-10 14:37:19 +01003232static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
3233{
3234 sector_t metadata_dev_size = get_metadata_dev_size(bdev);
3235
Mike Snitzer7d489352014-02-12 23:58:15 -05003236 sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE);
Joe Thornber24347e92013-05-10 14:37:19 +01003237
3238 return metadata_dev_size;
3239}
3240
Joe Thornber991d9fa2011-10-31 20:21:18 +00003241/*
Joe Thornberac8c3f32013-05-10 14:37:21 +01003242 * When a metadata threshold is crossed a dm event is triggered, and
3243 * userland should respond by growing the metadata device. We could let
3244 * userland set the threshold, like we do with the data threshold, but I'm
3245 * not sure they know enough to do this well.
3246 */
3247static dm_block_t calc_metadata_threshold(struct pool_c *pt)
3248{
3249 /*
3250 * 4M is ample for all ops with the possible exception of thin
3251 * device deletion which is harmless if it fails (just retry the
3252 * delete after you've grown the device).
3253 */
3254 dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
3255 return min((dm_block_t)1024ULL /* 4M */, quarter);
3256}
3257
3258/*
Joe Thornber991d9fa2011-10-31 20:21:18 +00003259 * thin-pool <metadata dev> <data dev>
3260 * <data block size (sectors)>
3261 * <low water mark (blocks)>
3262 * [<#feature args> [<arg>]*]
3263 *
3264 * Optional feature arguments are:
3265 * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003266 * ignore_discard: disable discard
3267 * no_discard_passdown: don't pass discards down to the data device
Mike Snitzer787a996c2013-12-06 16:21:43 -05003268 * read_only: Don't allow any changes to be made to the pool metadata.
3269 * error_if_no_space: error IOs, instead of queueing, if no space.
Joe Thornber991d9fa2011-10-31 20:21:18 +00003270 */
3271static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv)
3272{
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003273 int r, pool_created = 0;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003274 struct pool_c *pt;
3275 struct pool *pool;
3276 struct pool_features pf;
3277 struct dm_arg_set as;
3278 struct dm_dev *data_dev;
3279 unsigned long block_size;
3280 dm_block_t low_water_blocks;
3281 struct dm_dev *metadata_dev;
Joe Thornber5d0db962013-05-10 14:37:19 +01003282 fmode_t metadata_mode;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003283
3284 /*
3285 * FIXME Remove validation from scope of lock.
3286 */
3287 mutex_lock(&dm_thin_pool_table.mutex);
3288
3289 if (argc < 4) {
3290 ti->error = "Invalid argument count";
3291 r = -EINVAL;
3292 goto out_unlock;
3293 }
Joe Thornber5d0db962013-05-10 14:37:19 +01003294
Joe Thornber991d9fa2011-10-31 20:21:18 +00003295 as.argc = argc;
3296 as.argv = argv;
3297
Jason Cai (Xiang Feng)83d68492019-01-20 22:39:13 +08003298 /* make sure metadata and data are different devices */
3299 if (!strcmp(argv[0], argv[1])) {
3300 ti->error = "Error setting metadata or data device";
3301 r = -EINVAL;
3302 goto out_unlock;
3303 }
3304
Joe Thornber5d0db962013-05-10 14:37:19 +01003305 /*
3306 * Set default pool features.
3307 */
3308 pool_features_init(&pf);
3309
3310 dm_consume_args(&as, 4);
3311 r = parse_pool_features(&as, &pf, ti);
3312 if (r)
3313 goto out_unlock;
3314
3315 metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
3316 r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003317 if (r) {
3318 ti->error = "Error opening metadata block device";
3319 goto out_unlock;
3320 }
Mike Snitzer7d489352014-02-12 23:58:15 -05003321 warn_if_metadata_device_too_big(metadata_dev->bdev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003322
3323 r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
3324 if (r) {
3325 ti->error = "Error getting data device";
3326 goto out_metadata;
3327 }
3328
3329 if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
3330 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
3331 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01003332 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00003333 ti->error = "Invalid block size";
3334 r = -EINVAL;
3335 goto out;
3336 }
3337
3338 if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
3339 ti->error = "Invalid low water mark";
3340 r = -EINVAL;
3341 goto out;
3342 }
3343
Joe Thornber991d9fa2011-10-31 20:21:18 +00003344 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
3345 if (!pt) {
3346 r = -ENOMEM;
3347 goto out;
3348 }
3349
3350 pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev,
Joe Thornbere49e5822012-07-27 15:08:16 +01003351 block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003352 if (IS_ERR(pool)) {
3353 r = PTR_ERR(pool);
3354 goto out_free_pt;
3355 }
3356
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003357 /*
3358 * 'pool_created' reflects whether this is the first table load.
3359 * Top level discard support is not allowed to be changed after
3360 * initial load. This would require a pool reload to trigger thin
3361 * device changes.
3362 */
3363 if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
3364 ti->error = "Discard support cannot be disabled once enabled";
3365 r = -EINVAL;
3366 goto out_flags_changed;
3367 }
3368
Joe Thornber991d9fa2011-10-31 20:21:18 +00003369 pt->pool = pool;
3370 pt->ti = ti;
3371 pt->metadata_dev = metadata_dev;
3372 pt->data_dev = data_dev;
3373 pt->low_water_blocks = low_water_blocks;
Mike Snitzer0424caa2012-09-26 23:45:47 +01003374 pt->adjusted_pf = pt->requested_pf = pf;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00003375 ti->num_flush_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003376
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003377 /*
3378 * Only need to enable discards if the pool should pass
3379 * them down to the data device. The thin device's discard
3380 * processing will cause mappings to be removed from the btree.
3381 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04003382 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003383 if (pf.discard_enabled && pf.discard_passdown) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00003384 ti->num_discard_bios = 1;
Mike Snitzer9bc142d2012-09-26 23:45:46 +01003385
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003386 /*
3387 * Setting 'discards_supported' circumvents the normal
3388 * stacking of discard limits (this keeps the pool and
3389 * thin devices' discard limits consistent).
3390 */
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01003391 ti->discards_supported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003392 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003393 ti->private = pt;
3394
Joe Thornberac8c3f32013-05-10 14:37:21 +01003395 r = dm_pool_register_metadata_threshold(pt->pool->pmd,
3396 calc_metadata_threshold(pt),
3397 metadata_low_callback,
3398 pool);
3399 if (r)
Mike Snitzerba306702015-10-13 12:04:28 -04003400 goto out_flags_changed;
Joe Thornberac8c3f32013-05-10 14:37:21 +01003401
Joe Thornber991d9fa2011-10-31 20:21:18 +00003402 pt->callbacks.congested_fn = pool_is_congested;
3403 dm_table_add_target_callbacks(ti->table, &pt->callbacks);
3404
3405 mutex_unlock(&dm_thin_pool_table.mutex);
3406
3407 return 0;
3408
Joe Thornber67e2e2b2012-03-28 18:41:29 +01003409out_flags_changed:
3410 __pool_dec(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003411out_free_pt:
3412 kfree(pt);
3413out:
3414 dm_put_device(ti, data_dev);
3415out_metadata:
3416 dm_put_device(ti, metadata_dev);
3417out_unlock:
3418 mutex_unlock(&dm_thin_pool_table.mutex);
3419
3420 return r;
3421}
3422
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00003423static int pool_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003424{
3425 int r;
3426 struct pool_c *pt = ti->private;
3427 struct pool *pool = pt->pool;
3428 unsigned long flags;
3429
3430 /*
3431 * As this is a singleton target, ti->begin is always zero.
3432 */
3433 spin_lock_irqsave(&pool->lock, flags);
3434 bio->bi_bdev = pt->data_dev->bdev;
3435 r = DM_MAPIO_REMAPPED;
3436 spin_unlock_irqrestore(&pool->lock, flags);
3437
3438 return r;
3439}
3440
Joe Thornberb17446d2013-05-10 14:37:18 +01003441static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
3442{
3443 int r;
3444 struct pool_c *pt = ti->private;
3445 struct pool *pool = pt->pool;
3446 sector_t data_size = ti->len;
3447 dm_block_t sb_data_size;
3448
3449 *need_commit = false;
3450
3451 (void) sector_div(data_size, pool->sectors_per_block);
3452
3453 r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
3454 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003455 DMERR("%s: failed to retrieve data device size",
3456 dm_device_name(pool->pool_md));
Joe Thornberb17446d2013-05-10 14:37:18 +01003457 return r;
3458 }
3459
3460 if (data_size < sb_data_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003461 DMERR("%s: pool target (%llu blocks) too small: expected %llu",
3462 dm_device_name(pool->pool_md),
Joe Thornberb17446d2013-05-10 14:37:18 +01003463 (unsigned long long)data_size, sb_data_size);
3464 return -EINVAL;
3465
3466 } else if (data_size > sb_data_size) {
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05003467 if (dm_pool_metadata_needs_check(pool->pmd)) {
3468 DMERR("%s: unable to grow the data device until repaired.",
3469 dm_device_name(pool->pool_md));
3470 return 0;
3471 }
3472
Mike Snitzer6f7f51d2013-12-04 10:25:53 -05003473 if (sb_data_size)
3474 DMINFO("%s: growing the data device from %llu to %llu blocks",
3475 dm_device_name(pool->pool_md),
3476 sb_data_size, (unsigned long long)data_size);
Joe Thornberb17446d2013-05-10 14:37:18 +01003477 r = dm_pool_resize_data_dev(pool->pmd, data_size);
3478 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -05003479 metadata_operation_failed(pool, "dm_pool_resize_data_dev", r);
Joe Thornberb17446d2013-05-10 14:37:18 +01003480 return r;
3481 }
3482
3483 *need_commit = true;
3484 }
3485
3486 return 0;
3487}
3488
Joe Thornber24347e92013-05-10 14:37:19 +01003489static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
3490{
3491 int r;
3492 struct pool_c *pt = ti->private;
3493 struct pool *pool = pt->pool;
3494 dm_block_t metadata_dev_size, sb_metadata_dev_size;
3495
3496 *need_commit = false;
3497
Alasdair G Kergon610bba82013-05-19 18:57:50 +01003498 metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
Joe Thornber24347e92013-05-10 14:37:19 +01003499
3500 r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
3501 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003502 DMERR("%s: failed to retrieve metadata device size",
3503 dm_device_name(pool->pool_md));
Joe Thornber24347e92013-05-10 14:37:19 +01003504 return r;
3505 }
3506
3507 if (metadata_dev_size < sb_metadata_dev_size) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003508 DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
3509 dm_device_name(pool->pool_md),
Joe Thornber24347e92013-05-10 14:37:19 +01003510 metadata_dev_size, sb_metadata_dev_size);
3511 return -EINVAL;
3512
3513 } else if (metadata_dev_size > sb_metadata_dev_size) {
Mike Snitzer07f2b6e2014-02-14 11:58:41 -05003514 if (dm_pool_metadata_needs_check(pool->pmd)) {
3515 DMERR("%s: unable to grow the metadata device until repaired.",
3516 dm_device_name(pool->pool_md));
3517 return 0;
3518 }
3519
Mike Snitzer7d489352014-02-12 23:58:15 -05003520 warn_if_metadata_device_too_big(pool->md_dev);
Mike Snitzer6f7f51d2013-12-04 10:25:53 -05003521 DMINFO("%s: growing the metadata device from %llu to %llu blocks",
3522 dm_device_name(pool->pool_md),
3523 sb_metadata_dev_size, metadata_dev_size);
Joe Thornbera9537db2018-09-10 16:50:09 +01003524
3525 if (get_pool_mode(pool) == PM_OUT_OF_METADATA_SPACE)
3526 set_pool_mode(pool, PM_WRITE);
3527
Joe Thornber24347e92013-05-10 14:37:19 +01003528 r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
3529 if (r) {
Joe Thornberb5330652013-12-04 19:51:33 -05003530 metadata_operation_failed(pool, "dm_pool_resize_metadata_dev", r);
Joe Thornber24347e92013-05-10 14:37:19 +01003531 return r;
3532 }
3533
3534 *need_commit = true;
3535 }
3536
3537 return 0;
3538}
3539
Joe Thornber991d9fa2011-10-31 20:21:18 +00003540/*
3541 * Retrieves the number of blocks of the data device from
3542 * the superblock and compares it to the actual device size,
3543 * thus resizing the data device in case it has grown.
3544 *
3545 * This both copes with opening preallocated data devices in the ctr
3546 * being followed by a resume
3547 * -and-
3548 * calling the resume method individually after userspace has
3549 * grown the data device in reaction to a table event.
3550 */
3551static int pool_preresume(struct dm_target *ti)
3552{
3553 int r;
Joe Thornber24347e92013-05-10 14:37:19 +01003554 bool need_commit1, need_commit2;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003555 struct pool_c *pt = ti->private;
3556 struct pool *pool = pt->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003557
3558 /*
3559 * Take control of the pool object.
3560 */
3561 r = bind_control_target(pool, ti);
3562 if (r)
3563 return r;
3564
Joe Thornberb17446d2013-05-10 14:37:18 +01003565 r = maybe_resize_data_dev(ti, &need_commit1);
3566 if (r)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003567 return r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003568
Joe Thornber24347e92013-05-10 14:37:19 +01003569 r = maybe_resize_metadata_dev(ti, &need_commit2);
3570 if (r)
3571 return r;
3572
3573 if (need_commit1 || need_commit2)
Joe Thornber020cc3b2013-12-04 15:05:36 -05003574 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003575
3576 return 0;
3577}
3578
Mike Snitzer583024d2014-10-28 20:58:45 -04003579static void pool_suspend_active_thins(struct pool *pool)
3580{
3581 struct thin_c *tc;
3582
3583 /* Suspend all active thin devices */
3584 tc = get_first_thin(pool);
3585 while (tc) {
3586 dm_internal_suspend_noflush(tc->thin_md);
3587 tc = get_next_thin(pool, tc);
3588 }
3589}
3590
3591static void pool_resume_active_thins(struct pool *pool)
3592{
3593 struct thin_c *tc;
3594
3595 /* Resume all active thin devices */
3596 tc = get_first_thin(pool);
3597 while (tc) {
3598 dm_internal_resume(tc->thin_md);
3599 tc = get_next_thin(pool, tc);
3600 }
3601}
3602
Joe Thornber991d9fa2011-10-31 20:21:18 +00003603static void pool_resume(struct dm_target *ti)
3604{
3605 struct pool_c *pt = ti->private;
3606 struct pool *pool = pt->pool;
3607 unsigned long flags;
3608
Mike Snitzer583024d2014-10-28 20:58:45 -04003609 /*
3610 * Must requeue active_thins' bios and then resume
3611 * active_thins _before_ clearing 'suspend' flag.
3612 */
3613 requeue_bios(pool);
3614 pool_resume_active_thins(pool);
3615
Joe Thornber991d9fa2011-10-31 20:21:18 +00003616 spin_lock_irqsave(&pool->lock, flags);
Joe Thornber88a66212013-12-04 20:16:12 -05003617 pool->low_water_triggered = false;
Mike Snitzer80e96c52014-11-07 15:09:46 -05003618 pool->suspended = false;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003619 spin_unlock_irqrestore(&pool->lock, flags);
Mike Snitzer80e96c52014-11-07 15:09:46 -05003620
Joe Thornber905e51b2012-03-28 18:41:27 +01003621 do_waker(&pool->waker.work);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003622}
3623
Mike Snitzer80e96c52014-11-07 15:09:46 -05003624static void pool_presuspend(struct dm_target *ti)
3625{
3626 struct pool_c *pt = ti->private;
3627 struct pool *pool = pt->pool;
3628 unsigned long flags;
3629
3630 spin_lock_irqsave(&pool->lock, flags);
3631 pool->suspended = true;
3632 spin_unlock_irqrestore(&pool->lock, flags);
Mike Snitzer583024d2014-10-28 20:58:45 -04003633
3634 pool_suspend_active_thins(pool);
Mike Snitzer80e96c52014-11-07 15:09:46 -05003635}
3636
3637static void pool_presuspend_undo(struct dm_target *ti)
3638{
3639 struct pool_c *pt = ti->private;
3640 struct pool *pool = pt->pool;
3641 unsigned long flags;
3642
Mike Snitzer583024d2014-10-28 20:58:45 -04003643 pool_resume_active_thins(pool);
3644
Mike Snitzer80e96c52014-11-07 15:09:46 -05003645 spin_lock_irqsave(&pool->lock, flags);
3646 pool->suspended = false;
3647 spin_unlock_irqrestore(&pool->lock, flags);
3648}
3649
Joe Thornber991d9fa2011-10-31 20:21:18 +00003650static void pool_postsuspend(struct dm_target *ti)
3651{
Joe Thornber991d9fa2011-10-31 20:21:18 +00003652 struct pool_c *pt = ti->private;
3653 struct pool *pool = pt->pool;
3654
Nikolay Borisov18d03e82015-12-17 18:03:35 +02003655 cancel_delayed_work_sync(&pool->waker);
3656 cancel_delayed_work_sync(&pool->no_space_timeout);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003657 flush_workqueue(pool->wq);
Joe Thornber020cc3b2013-12-04 15:05:36 -05003658 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003659}
3660
3661static int check_arg_count(unsigned argc, unsigned args_required)
3662{
3663 if (argc != args_required) {
3664 DMWARN("Message received with %u arguments instead of %u.",
3665 argc, args_required);
3666 return -EINVAL;
3667 }
3668
3669 return 0;
3670}
3671
3672static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
3673{
3674 if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
3675 *dev_id <= MAX_DEV_ID)
3676 return 0;
3677
3678 if (warning)
3679 DMWARN("Message received with invalid device id: %s", arg);
3680
3681 return -EINVAL;
3682}
3683
3684static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool)
3685{
3686 dm_thin_id dev_id;
3687 int r;
3688
3689 r = check_arg_count(argc, 2);
3690 if (r)
3691 return r;
3692
3693 r = read_dev_id(argv[1], &dev_id, 1);
3694 if (r)
3695 return r;
3696
3697 r = dm_pool_create_thin(pool->pmd, dev_id);
3698 if (r) {
3699 DMWARN("Creation of new thinly-provisioned device with id %s failed.",
3700 argv[1]);
3701 return r;
3702 }
3703
3704 return 0;
3705}
3706
3707static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3708{
3709 dm_thin_id dev_id;
3710 dm_thin_id origin_dev_id;
3711 int r;
3712
3713 r = check_arg_count(argc, 3);
3714 if (r)
3715 return r;
3716
3717 r = read_dev_id(argv[1], &dev_id, 1);
3718 if (r)
3719 return r;
3720
3721 r = read_dev_id(argv[2], &origin_dev_id, 1);
3722 if (r)
3723 return r;
3724
3725 r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
3726 if (r) {
3727 DMWARN("Creation of new snapshot %s of device %s failed.",
3728 argv[1], argv[2]);
3729 return r;
3730 }
3731
3732 return 0;
3733}
3734
3735static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool)
3736{
3737 dm_thin_id dev_id;
3738 int r;
3739
3740 r = check_arg_count(argc, 2);
3741 if (r)
3742 return r;
3743
3744 r = read_dev_id(argv[1], &dev_id, 1);
3745 if (r)
3746 return r;
3747
3748 r = dm_pool_delete_thin_device(pool->pmd, dev_id);
3749 if (r)
3750 DMWARN("Deletion of thin device %s failed.", argv[1]);
3751
3752 return r;
3753}
3754
3755static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool)
3756{
3757 dm_thin_id old_id, new_id;
3758 int r;
3759
3760 r = check_arg_count(argc, 3);
3761 if (r)
3762 return r;
3763
3764 if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
3765 DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
3766 return -EINVAL;
3767 }
3768
3769 if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
3770 DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
3771 return -EINVAL;
3772 }
3773
3774 r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
3775 if (r) {
3776 DMWARN("Failed to change transaction id from %s to %s.",
3777 argv[1], argv[2]);
3778 return r;
3779 }
3780
3781 return 0;
3782}
3783
Joe Thornbercc8394d2012-06-03 00:30:01 +01003784static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3785{
3786 int r;
3787
3788 r = check_arg_count(argc, 1);
3789 if (r)
3790 return r;
3791
Joe Thornber020cc3b2013-12-04 15:05:36 -05003792 (void) commit(pool);
Joe Thornber0d200ae2012-07-03 12:55:31 +01003793
Joe Thornbercc8394d2012-06-03 00:30:01 +01003794 r = dm_pool_reserve_metadata_snap(pool->pmd);
3795 if (r)
3796 DMWARN("reserve_metadata_snap message failed.");
3797
3798 return r;
3799}
3800
3801static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
3802{
3803 int r;
3804
3805 r = check_arg_count(argc, 1);
3806 if (r)
3807 return r;
3808
3809 r = dm_pool_release_metadata_snap(pool->pmd);
3810 if (r)
3811 DMWARN("release_metadata_snap message failed.");
3812
3813 return r;
3814}
3815
Joe Thornber991d9fa2011-10-31 20:21:18 +00003816/*
3817 * Messages supported:
3818 * create_thin <dev_id>
3819 * create_snap <dev_id> <origin_id>
3820 * delete <dev_id>
Joe Thornber991d9fa2011-10-31 20:21:18 +00003821 * set_transaction_id <current_trans_id> <new_trans_id>
Joe Thornbercc8394d2012-06-03 00:30:01 +01003822 * reserve_metadata_snap
3823 * release_metadata_snap
Joe Thornber991d9fa2011-10-31 20:21:18 +00003824 */
3825static int pool_message(struct dm_target *ti, unsigned argc, char **argv)
3826{
3827 int r = -EINVAL;
3828 struct pool_c *pt = ti->private;
3829 struct pool *pool = pt->pool;
3830
Joe Thornbera9537db2018-09-10 16:50:09 +01003831 if (get_pool_mode(pool) >= PM_OUT_OF_METADATA_SPACE) {
Joe Thornber2a7eaea2015-01-26 11:38:21 +00003832 DMERR("%s: unable to service pool target messages in READ_ONLY or FAIL mode",
3833 dm_device_name(pool->pool_md));
Mike Snitzerfd467692015-06-09 12:31:26 -04003834 return -EOPNOTSUPP;
Joe Thornber2a7eaea2015-01-26 11:38:21 +00003835 }
3836
Joe Thornber991d9fa2011-10-31 20:21:18 +00003837 if (!strcasecmp(argv[0], "create_thin"))
3838 r = process_create_thin_mesg(argc, argv, pool);
3839
3840 else if (!strcasecmp(argv[0], "create_snap"))
3841 r = process_create_snap_mesg(argc, argv, pool);
3842
3843 else if (!strcasecmp(argv[0], "delete"))
3844 r = process_delete_mesg(argc, argv, pool);
3845
3846 else if (!strcasecmp(argv[0], "set_transaction_id"))
3847 r = process_set_transaction_id_mesg(argc, argv, pool);
3848
Joe Thornbercc8394d2012-06-03 00:30:01 +01003849 else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
3850 r = process_reserve_metadata_snap_mesg(argc, argv, pool);
3851
3852 else if (!strcasecmp(argv[0], "release_metadata_snap"))
3853 r = process_release_metadata_snap_mesg(argc, argv, pool);
3854
Joe Thornber991d9fa2011-10-31 20:21:18 +00003855 else
3856 DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
3857
Joe Thornbere49e5822012-07-27 15:08:16 +01003858 if (!r)
Joe Thornber020cc3b2013-12-04 15:05:36 -05003859 (void) commit(pool);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003860
3861 return r;
3862}
3863
Joe Thornbere49e5822012-07-27 15:08:16 +01003864static void emit_flags(struct pool_features *pf, char *result,
3865 unsigned sz, unsigned maxlen)
3866{
3867 unsigned count = !pf->zero_new_blocks + !pf->discard_enabled +
Mike Snitzer787a996c2013-12-06 16:21:43 -05003868 !pf->discard_passdown + (pf->mode == PM_READ_ONLY) +
3869 pf->error_if_no_space;
Joe Thornbere49e5822012-07-27 15:08:16 +01003870 DMEMIT("%u ", count);
3871
3872 if (!pf->zero_new_blocks)
3873 DMEMIT("skip_block_zeroing ");
3874
3875 if (!pf->discard_enabled)
3876 DMEMIT("ignore_discard ");
3877
3878 if (!pf->discard_passdown)
3879 DMEMIT("no_discard_passdown ");
3880
3881 if (pf->mode == PM_READ_ONLY)
3882 DMEMIT("read_only ");
Mike Snitzer787a996c2013-12-06 16:21:43 -05003883
3884 if (pf->error_if_no_space)
3885 DMEMIT("error_if_no_space ");
Joe Thornbere49e5822012-07-27 15:08:16 +01003886}
3887
Joe Thornber991d9fa2011-10-31 20:21:18 +00003888/*
3889 * Status line is:
3890 * <transaction id> <used metadata sectors>/<total metadata sectors>
3891 * <used data sectors>/<total data sectors> <held metadata root>
Mike Snitzere4c78e22015-07-15 11:40:24 -04003892 * <pool mode> <discard config> <no space config> <needs_check>
Joe Thornber991d9fa2011-10-31 20:21:18 +00003893 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003894static void pool_status(struct dm_target *ti, status_type_t type,
3895 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00003896{
Joe Thornbere49e5822012-07-27 15:08:16 +01003897 int r;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003898 unsigned sz = 0;
3899 uint64_t transaction_id;
3900 dm_block_t nr_free_blocks_data;
3901 dm_block_t nr_free_blocks_metadata;
3902 dm_block_t nr_blocks_data;
3903 dm_block_t nr_blocks_metadata;
3904 dm_block_t held_root;
Joe Thornbera9537db2018-09-10 16:50:09 +01003905 enum pool_mode mode;
Joe Thornber991d9fa2011-10-31 20:21:18 +00003906 char buf[BDEVNAME_SIZE];
3907 char buf2[BDEVNAME_SIZE];
3908 struct pool_c *pt = ti->private;
3909 struct pool *pool = pt->pool;
3910
3911 switch (type) {
3912 case STATUSTYPE_INFO:
Joe Thornbere49e5822012-07-27 15:08:16 +01003913 if (get_pool_mode(pool) == PM_FAIL) {
3914 DMEMIT("Fail");
3915 break;
3916 }
3917
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01003918 /* Commit to ensure statistics aren't out-of-date */
3919 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
Joe Thornber020cc3b2013-12-04 15:05:36 -05003920 (void) commit(pool);
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01003921
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003922 r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
3923 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003924 DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
3925 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003926 goto err;
3927 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003928
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003929 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
3930 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003931 DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
3932 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003933 goto err;
3934 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003935
3936 r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003937 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003938 DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
3939 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003940 goto err;
3941 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003942
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003943 r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
3944 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003945 DMERR("%s: dm_pool_get_free_block_count returned %d",
3946 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003947 goto err;
3948 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003949
3950 r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003951 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003952 DMERR("%s: dm_pool_get_data_dev_size returned %d",
3953 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003954 goto err;
3955 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003956
Joe Thornbercc8394d2012-06-03 00:30:01 +01003957 r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003958 if (r) {
Mike Snitzer4fa59712013-08-21 17:30:40 -04003959 DMERR("%s: dm_pool_get_metadata_snap returned %d",
3960 dm_device_name(pool->pool_md), r);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00003961 goto err;
3962 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00003963
3964 DMEMIT("%llu %llu/%llu %llu/%llu ",
3965 (unsigned long long)transaction_id,
3966 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
3967 (unsigned long long)nr_blocks_metadata,
3968 (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
3969 (unsigned long long)nr_blocks_data);
3970
3971 if (held_root)
Joe Thornbere49e5822012-07-27 15:08:16 +01003972 DMEMIT("%llu ", held_root);
Joe Thornber991d9fa2011-10-31 20:21:18 +00003973 else
Joe Thornbere49e5822012-07-27 15:08:16 +01003974 DMEMIT("- ");
3975
Joe Thornbera9537db2018-09-10 16:50:09 +01003976 mode = get_pool_mode(pool);
3977 if (mode == PM_OUT_OF_DATA_SPACE)
Joe Thornber3e1a0692014-03-03 16:03:26 +00003978 DMEMIT("out_of_data_space ");
Joe Thornbera9537db2018-09-10 16:50:09 +01003979 else if (is_read_only_pool_mode(mode))
Joe Thornbere49e5822012-07-27 15:08:16 +01003980 DMEMIT("ro ");
3981 else
3982 DMEMIT("rw ");
3983
Mike Snitzer018debe2012-12-21 20:23:32 +00003984 if (!pool->pf.discard_enabled)
Mike Snitzer787a996c2013-12-06 16:21:43 -05003985 DMEMIT("ignore_discard ");
Mike Snitzer018debe2012-12-21 20:23:32 +00003986 else if (pool->pf.discard_passdown)
Mike Snitzer787a996c2013-12-06 16:21:43 -05003987 DMEMIT("discard_passdown ");
Joe Thornbere49e5822012-07-27 15:08:16 +01003988 else
Mike Snitzer787a996c2013-12-06 16:21:43 -05003989 DMEMIT("no_discard_passdown ");
3990
3991 if (pool->pf.error_if_no_space)
3992 DMEMIT("error_if_no_space ");
3993 else
3994 DMEMIT("queue_if_no_space ");
Joe Thornber991d9fa2011-10-31 20:21:18 +00003995
Mike Snitzere4c78e22015-07-15 11:40:24 -04003996 if (dm_pool_metadata_needs_check(pool->pmd))
3997 DMEMIT("needs_check ");
3998 else
3999 DMEMIT("- ");
4000
Joe Thornber991d9fa2011-10-31 20:21:18 +00004001 break;
4002
4003 case STATUSTYPE_TABLE:
4004 DMEMIT("%s %s %lu %llu ",
4005 format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
4006 format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
4007 (unsigned long)pool->sectors_per_block,
4008 (unsigned long long)pt->low_water_blocks);
Mike Snitzer0424caa2012-09-26 23:45:47 +01004009 emit_flags(&pt->requested_pf, result, sz, maxlen);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004010 break;
4011 }
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004012 return;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004013
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004014err:
4015 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00004016}
4017
4018static int pool_iterate_devices(struct dm_target *ti,
4019 iterate_devices_callout_fn fn, void *data)
4020{
4021 struct pool_c *pt = ti->private;
4022
4023 return fn(ti, pt->data_dev, 0, ti->len, data);
4024}
4025
Joe Thornber991d9fa2011-10-31 20:21:18 +00004026static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
4027{
4028 struct pool_c *pt = ti->private;
4029 struct pool *pool = pt->pool;
Mike Snitzer604ea902014-10-09 18:43:25 -04004030 sector_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
4031
4032 /*
Mike Snitzerd200c302014-11-20 18:07:43 -05004033 * If max_sectors is smaller than pool->sectors_per_block adjust it
4034 * to the highest possible power-of-2 factor of pool->sectors_per_block.
4035 * This is especially beneficial when the pool's data device is a RAID
4036 * device that has a full stripe width that matches pool->sectors_per_block
4037 * -- because even though partial RAID stripe-sized IOs will be issued to a
4038 * single RAID stripe; when aggregated they will end on a full RAID stripe
4039 * boundary.. which avoids additional partial RAID stripe writes cascading
Mike Snitzer604ea902014-10-09 18:43:25 -04004040 */
Mike Snitzer604ea902014-10-09 18:43:25 -04004041 if (limits->max_sectors < pool->sectors_per_block) {
4042 while (!is_factor(pool->sectors_per_block, limits->max_sectors)) {
4043 if ((limits->max_sectors & (limits->max_sectors - 1)) == 0)
4044 limits->max_sectors--;
4045 limits->max_sectors = rounddown_pow_of_two(limits->max_sectors);
4046 }
Mike Snitzer604ea902014-10-09 18:43:25 -04004047 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004048
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04004049 /*
4050 * If the system-determined stacked limits are compatible with the
4051 * pool's blocksize (io_opt is a factor) do not override them.
4052 */
4053 if (io_opt_sectors < pool->sectors_per_block ||
Mike Snitzer604ea902014-10-09 18:43:25 -04004054 !is_factor(io_opt_sectors, pool->sectors_per_block)) {
4055 if (is_factor(pool->sectors_per_block, limits->max_sectors))
4056 blk_limits_io_min(limits, limits->max_sectors << SECTOR_SHIFT);
4057 else
4058 blk_limits_io_min(limits, pool->sectors_per_block << SECTOR_SHIFT);
Mike Snitzer0cc67cd2013-08-20 15:02:41 -04004059 blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
4060 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01004061
4062 /*
4063 * pt->adjusted_pf is a staging area for the actual features to use.
4064 * They get transferred to the live pool in bind_control_target()
4065 * called from pool_preresume().
4066 */
Mike Snitzerb60ab992013-09-19 18:49:11 -04004067 if (!pt->adjusted_pf.discard_enabled) {
4068 /*
4069 * Must explicitly disallow stacking discard limits otherwise the
4070 * block layer will stack them if pool's data device has support.
4071 * QUEUE_FLAG_DISCARD wouldn't be set but there is no way for the
4072 * user to see that, so make sure to set all discard limits to 0.
4073 */
4074 limits->discard_granularity = 0;
Mike Snitzer0424caa2012-09-26 23:45:47 +01004075 return;
Mike Snitzerb60ab992013-09-19 18:49:11 -04004076 }
Mike Snitzer0424caa2012-09-26 23:45:47 +01004077
4078 disable_passdown_if_not_supported(pt);
4079
Joe Thornber34fbcf62015-04-16 12:58:35 +01004080 /*
4081 * The pool uses the same discard limits as the underlying data
4082 * device. DM core has already set this up.
4083 */
Joe Thornber991d9fa2011-10-31 20:21:18 +00004084}
4085
4086static struct target_type pool_target = {
4087 .name = "thin-pool",
4088 .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
4089 DM_TARGET_IMMUTABLE,
Joe Thornber202bae52016-05-04 14:12:42 -04004090 .version = {1, 19, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00004091 .module = THIS_MODULE,
4092 .ctr = pool_ctr,
4093 .dtr = pool_dtr,
4094 .map = pool_map,
Mike Snitzer80e96c52014-11-07 15:09:46 -05004095 .presuspend = pool_presuspend,
4096 .presuspend_undo = pool_presuspend_undo,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004097 .postsuspend = pool_postsuspend,
4098 .preresume = pool_preresume,
4099 .resume = pool_resume,
4100 .message = pool_message,
4101 .status = pool_status,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004102 .iterate_devices = pool_iterate_devices,
4103 .io_hints = pool_io_hints,
4104};
4105
4106/*----------------------------------------------------------------
4107 * Thin target methods
4108 *--------------------------------------------------------------*/
Joe Thornberb10ebd32014-04-08 11:29:01 +01004109static void thin_get(struct thin_c *tc)
4110{
4111 atomic_inc(&tc->refcount);
4112}
4113
4114static void thin_put(struct thin_c *tc)
4115{
4116 if (atomic_dec_and_test(&tc->refcount))
4117 complete(&tc->can_destroy);
4118}
4119
Joe Thornber991d9fa2011-10-31 20:21:18 +00004120static void thin_dtr(struct dm_target *ti)
4121{
4122 struct thin_c *tc = ti->private;
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004123 unsigned long flags;
4124
4125 spin_lock_irqsave(&tc->pool->lock, flags);
4126 list_del_rcu(&tc->list);
4127 spin_unlock_irqrestore(&tc->pool->lock, flags);
4128 synchronize_rcu();
Joe Thornber991d9fa2011-10-31 20:21:18 +00004129
Mikulas Patocka17181fb2014-11-05 17:00:13 -05004130 thin_put(tc);
4131 wait_for_completion(&tc->can_destroy);
4132
Joe Thornber991d9fa2011-10-31 20:21:18 +00004133 mutex_lock(&dm_thin_pool_table.mutex);
4134
4135 __pool_dec(tc->pool);
4136 dm_pool_close_thin_device(tc->td);
4137 dm_put_device(ti, tc->pool_dev);
Joe Thornber2dd9c252012-03-28 18:41:28 +01004138 if (tc->origin_dev)
4139 dm_put_device(ti, tc->origin_dev);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004140 kfree(tc);
4141
4142 mutex_unlock(&dm_thin_pool_table.mutex);
4143}
4144
4145/*
4146 * Thin target parameters:
4147 *
Joe Thornber2dd9c252012-03-28 18:41:28 +01004148 * <pool_dev> <dev_id> [origin_dev]
Joe Thornber991d9fa2011-10-31 20:21:18 +00004149 *
4150 * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
4151 * dev_id: the internal device identifier
Joe Thornber2dd9c252012-03-28 18:41:28 +01004152 * origin_dev: a device external to the pool that should act as the origin
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004153 *
4154 * If the pool device has discards disabled, they get disabled for the thin
4155 * device as well.
Joe Thornber991d9fa2011-10-31 20:21:18 +00004156 */
4157static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
4158{
4159 int r;
4160 struct thin_c *tc;
Joe Thornber2dd9c252012-03-28 18:41:28 +01004161 struct dm_dev *pool_dev, *origin_dev;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004162 struct mapped_device *pool_md;
Joe Thornber5e3283e2014-04-08 11:08:41 +01004163 unsigned long flags;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004164
4165 mutex_lock(&dm_thin_pool_table.mutex);
4166
Joe Thornber2dd9c252012-03-28 18:41:28 +01004167 if (argc != 2 && argc != 3) {
Joe Thornber991d9fa2011-10-31 20:21:18 +00004168 ti->error = "Invalid argument count";
4169 r = -EINVAL;
4170 goto out_unlock;
4171 }
4172
4173 tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
4174 if (!tc) {
4175 ti->error = "Out of memory";
4176 r = -ENOMEM;
4177 goto out_unlock;
4178 }
Mike Snitzer583024d2014-10-28 20:58:45 -04004179 tc->thin_md = dm_table_get_md(ti->table);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004180 spin_lock_init(&tc->lock);
Joe Thornbera374bb22014-10-10 13:43:14 +01004181 INIT_LIST_HEAD(&tc->deferred_cells);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004182 bio_list_init(&tc->deferred_bio_list);
4183 bio_list_init(&tc->retry_on_resume_list);
Mike Snitzer67324ea2014-03-21 18:33:41 -04004184 tc->sort_bio_list = RB_ROOT;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004185
Joe Thornber2dd9c252012-03-28 18:41:28 +01004186 if (argc == 3) {
Jason Cai (Xiang Feng)83d68492019-01-20 22:39:13 +08004187 if (!strcmp(argv[0], argv[2])) {
4188 ti->error = "Error setting origin device";
4189 r = -EINVAL;
4190 goto bad_origin_dev;
4191 }
4192
Joe Thornber2dd9c252012-03-28 18:41:28 +01004193 r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
4194 if (r) {
4195 ti->error = "Error opening origin device";
4196 goto bad_origin_dev;
4197 }
4198 tc->origin_dev = origin_dev;
4199 }
4200
Joe Thornber991d9fa2011-10-31 20:21:18 +00004201 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
4202 if (r) {
4203 ti->error = "Error opening pool device";
4204 goto bad_pool_dev;
4205 }
4206 tc->pool_dev = pool_dev;
4207
4208 if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
4209 ti->error = "Invalid device id";
4210 r = -EINVAL;
4211 goto bad_common;
4212 }
4213
4214 pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
4215 if (!pool_md) {
4216 ti->error = "Couldn't get pool mapped device";
4217 r = -EINVAL;
4218 goto bad_common;
4219 }
4220
4221 tc->pool = __pool_table_lookup(pool_md);
4222 if (!tc->pool) {
4223 ti->error = "Couldn't find pool object";
4224 r = -EINVAL;
4225 goto bad_pool_lookup;
4226 }
4227 __pool_inc(tc->pool);
4228
Joe Thornbere49e5822012-07-27 15:08:16 +01004229 if (get_pool_mode(tc->pool) == PM_FAIL) {
4230 ti->error = "Couldn't open thin device, Pool is in fail mode";
Mike Snitzer1acacc02014-02-19 20:32:33 -05004231 r = -EINVAL;
Mike Snitzer80e96c52014-11-07 15:09:46 -05004232 goto bad_pool;
Joe Thornbere49e5822012-07-27 15:08:16 +01004233 }
4234
Joe Thornber991d9fa2011-10-31 20:21:18 +00004235 r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
4236 if (r) {
4237 ti->error = "Couldn't open thin internal device";
Mike Snitzer80e96c52014-11-07 15:09:46 -05004238 goto bad_pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004239 }
4240
Mike Snitzer542f9032012-07-27 15:08:00 +01004241 r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
4242 if (r)
Mike Snitzer80e96c52014-11-07 15:09:46 -05004243 goto bad;
Mike Snitzer542f9032012-07-27 15:08:00 +01004244
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00004245 ti->num_flush_bios = 1;
Joe Thornber16ad3d12012-07-27 15:08:07 +01004246 ti->flush_supported = true;
Mike Snitzer30187e12016-01-31 13:28:26 -05004247 ti->per_io_data_size = sizeof(struct dm_thin_endio_hook);
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004248
4249 /* In case the pool supports discards, pass them on. */
Mike Snitzerb60ab992013-09-19 18:49:11 -04004250 ti->discard_zeroes_data_unsupported = true;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004251 if (tc->pool->pf.discard_enabled) {
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01004252 ti->discards_supported = true;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00004253 ti->num_discard_bios = 1;
Joe Thornber34fbcf62015-04-16 12:58:35 +01004254 ti->split_discard_bios = false;
Joe Thornber67e2e2b2012-03-28 18:41:29 +01004255 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004256
Joe Thornber991d9fa2011-10-31 20:21:18 +00004257 mutex_unlock(&dm_thin_pool_table.mutex);
4258
Joe Thornber5e3283e2014-04-08 11:08:41 +01004259 spin_lock_irqsave(&tc->pool->lock, flags);
Mike Snitzer80e96c52014-11-07 15:09:46 -05004260 if (tc->pool->suspended) {
4261 spin_unlock_irqrestore(&tc->pool->lock, flags);
4262 mutex_lock(&dm_thin_pool_table.mutex); /* reacquire for __pool_dec */
4263 ti->error = "Unable to activate thin device while pool is suspended";
4264 r = -EINVAL;
4265 goto bad;
4266 }
Marc Dionne2b94e892014-12-17 07:59:59 -05004267 atomic_set(&tc->refcount, 1);
4268 init_completion(&tc->can_destroy);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004269 list_add_tail_rcu(&tc->list, &tc->pool->active_thins);
Joe Thornber5e3283e2014-04-08 11:08:41 +01004270 spin_unlock_irqrestore(&tc->pool->lock, flags);
Mike Snitzerc140e1c2014-03-20 21:17:14 -04004271 /*
4272 * This synchronize_rcu() call is needed here otherwise we risk a
4273 * wake_worker() call finding no bios to process (because the newly
4274 * added tc isn't yet visible). So this reduces latency since we
4275 * aren't then dependent on the periodic commit to wake_worker().
4276 */
4277 synchronize_rcu();
4278
Mike Snitzer80e96c52014-11-07 15:09:46 -05004279 dm_put(pool_md);
4280
Joe Thornber991d9fa2011-10-31 20:21:18 +00004281 return 0;
4282
Mike Snitzer80e96c52014-11-07 15:09:46 -05004283bad:
Mike Snitzer1acacc02014-02-19 20:32:33 -05004284 dm_pool_close_thin_device(tc->td);
Mike Snitzer80e96c52014-11-07 15:09:46 -05004285bad_pool:
Joe Thornber991d9fa2011-10-31 20:21:18 +00004286 __pool_dec(tc->pool);
4287bad_pool_lookup:
4288 dm_put(pool_md);
4289bad_common:
4290 dm_put_device(ti, tc->pool_dev);
4291bad_pool_dev:
Joe Thornber2dd9c252012-03-28 18:41:28 +01004292 if (tc->origin_dev)
4293 dm_put_device(ti, tc->origin_dev);
4294bad_origin_dev:
Joe Thornber991d9fa2011-10-31 20:21:18 +00004295 kfree(tc);
4296out_unlock:
4297 mutex_unlock(&dm_thin_pool_table.mutex);
4298
4299 return r;
4300}
4301
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004302static int thin_map(struct dm_target *ti, struct bio *bio)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004303{
Kent Overstreet4f024f32013-10-11 15:44:27 -07004304 bio->bi_iter.bi_sector = dm_target_offset(ti, bio->bi_iter.bi_sector);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004305
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004306 return thin_bio_map(ti, bio);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004307}
4308
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00004309static int thin_endio(struct dm_target *ti, struct bio *bio, int err)
Joe Thornbereb2aa482012-03-28 18:41:28 +01004310{
4311 unsigned long flags;
Mikulas Patocka59c3d2c2012-12-21 20:23:40 +00004312 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
Joe Thornbereb2aa482012-03-28 18:41:28 +01004313 struct list_head work;
Mike Snitzera24c2562012-06-03 00:30:00 +01004314 struct dm_thin_new_mapping *m, *tmp;
Joe Thornbereb2aa482012-03-28 18:41:28 +01004315 struct pool *pool = h->tc->pool;
4316
4317 if (h->shared_read_entry) {
4318 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01004319 dm_deferred_entry_dec(h->shared_read_entry, &work);
Joe Thornbereb2aa482012-03-28 18:41:28 +01004320
4321 spin_lock_irqsave(&pool->lock, flags);
4322 list_for_each_entry_safe(m, tmp, &work, list) {
4323 list_del(&m->list);
Joe Thornber50f3c3e2014-06-13 13:57:09 +01004324 __complete_mapping_preparation(m);
Joe Thornbereb2aa482012-03-28 18:41:28 +01004325 }
4326 spin_unlock_irqrestore(&pool->lock, flags);
4327 }
4328
Joe Thornber104655f2012-03-28 18:41:28 +01004329 if (h->all_io_entry) {
4330 INIT_LIST_HEAD(&work);
Mike Snitzer44feb382012-10-12 21:02:10 +01004331 dm_deferred_entry_dec(h->all_io_entry, &work);
Joe Thornber563af182012-12-21 20:23:31 +00004332 if (!list_empty(&work)) {
4333 spin_lock_irqsave(&pool->lock, flags);
4334 list_for_each_entry_safe(m, tmp, &work, list)
Mike Snitzerdaec3382013-12-11 14:01:20 -05004335 list_add_tail(&m->list, &pool->prepared_discards);
Joe Thornber563af182012-12-21 20:23:31 +00004336 spin_unlock_irqrestore(&pool->lock, flags);
4337 wake_worker(pool);
4338 }
Joe Thornber104655f2012-03-28 18:41:28 +01004339 }
4340
Joe Thornber34fbcf62015-04-16 12:58:35 +01004341 if (h->cell)
4342 cell_defer_no_holder(h->tc, h->cell);
4343
Joe Thornbereb2aa482012-03-28 18:41:28 +01004344 return 0;
4345}
4346
Joe Thornber738211f2014-03-03 15:52:28 +00004347static void thin_presuspend(struct dm_target *ti)
4348{
4349 struct thin_c *tc = ti->private;
4350
4351 if (dm_noflush_suspending(ti))
4352 noflush_work(tc, do_noflush_start);
4353}
4354
Joe Thornber991d9fa2011-10-31 20:21:18 +00004355static void thin_postsuspend(struct dm_target *ti)
4356{
Joe Thornber738211f2014-03-03 15:52:28 +00004357 struct thin_c *tc = ti->private;
4358
4359 /*
4360 * The dm_noflush_suspending flag has been cleared by now, so
4361 * unfortunately we must always run this.
4362 */
4363 noflush_work(tc, do_noflush_stop);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004364}
4365
Joe Thornbere5aea7b2014-06-13 14:47:24 +01004366static int thin_preresume(struct dm_target *ti)
4367{
4368 struct thin_c *tc = ti->private;
4369
4370 if (tc->origin_dev)
4371 tc->origin_size = get_dev_size(tc->origin_dev->bdev);
4372
4373 return 0;
4374}
4375
Joe Thornber991d9fa2011-10-31 20:21:18 +00004376/*
4377 * <nr mapped sectors> <highest mapped sector>
4378 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004379static void thin_status(struct dm_target *ti, status_type_t type,
4380 unsigned status_flags, char *result, unsigned maxlen)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004381{
4382 int r;
4383 ssize_t sz = 0;
4384 dm_block_t mapped, highest;
4385 char buf[BDEVNAME_SIZE];
4386 struct thin_c *tc = ti->private;
4387
Joe Thornbere49e5822012-07-27 15:08:16 +01004388 if (get_pool_mode(tc->pool) == PM_FAIL) {
4389 DMEMIT("Fail");
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004390 return;
Joe Thornbere49e5822012-07-27 15:08:16 +01004391 }
4392
Joe Thornber991d9fa2011-10-31 20:21:18 +00004393 if (!tc->td)
4394 DMEMIT("-");
4395 else {
4396 switch (type) {
4397 case STATUSTYPE_INFO:
4398 r = dm_thin_get_mapped_count(tc->td, &mapped);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004399 if (r) {
4400 DMERR("dm_thin_get_mapped_count returned %d", r);
4401 goto err;
4402 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004403
4404 r = dm_thin_get_highest_mapped_block(tc->td, &highest);
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004405 if (r < 0) {
4406 DMERR("dm_thin_get_highest_mapped_block returned %d", r);
4407 goto err;
4408 }
Joe Thornber991d9fa2011-10-31 20:21:18 +00004409
4410 DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
4411 if (r)
4412 DMEMIT("%llu", ((highest + 1) *
4413 tc->pool->sectors_per_block) - 1);
4414 else
4415 DMEMIT("-");
4416 break;
4417
4418 case STATUSTYPE_TABLE:
4419 DMEMIT("%s %lu",
4420 format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
4421 (unsigned long) tc->dev_id);
Joe Thornber2dd9c252012-03-28 18:41:28 +01004422 if (tc->origin_dev)
4423 DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
Joe Thornber991d9fa2011-10-31 20:21:18 +00004424 break;
4425 }
4426 }
4427
Mikulas Patockafd7c0922013-03-01 22:45:44 +00004428 return;
4429
4430err:
4431 DMEMIT("Error");
Joe Thornber991d9fa2011-10-31 20:21:18 +00004432}
4433
4434static int thin_iterate_devices(struct dm_target *ti,
4435 iterate_devices_callout_fn fn, void *data)
4436{
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004437 sector_t blocks;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004438 struct thin_c *tc = ti->private;
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004439 struct pool *pool = tc->pool;
Joe Thornber991d9fa2011-10-31 20:21:18 +00004440
4441 /*
4442 * We can't call dm_pool_get_data_dev_size() since that blocks. So
4443 * we follow a more convoluted path through to the pool's target.
4444 */
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004445 if (!pool->ti)
Joe Thornber991d9fa2011-10-31 20:21:18 +00004446 return 0; /* nothing is bound */
4447
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004448 blocks = pool->ti->len;
4449 (void) sector_div(blocks, pool->sectors_per_block);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004450 if (blocks)
Mike Snitzer55f2b8b2012-07-27 15:08:02 +01004451 return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004452
4453 return 0;
4454}
4455
Joe Thornber34fbcf62015-04-16 12:58:35 +01004456static void thin_io_hints(struct dm_target *ti, struct queue_limits *limits)
4457{
4458 struct thin_c *tc = ti->private;
4459 struct pool *pool = tc->pool;
Mike Snitzer21607672015-09-08 08:56:13 -04004460
Mike Snitzer0fcb04d2015-11-23 13:44:38 -05004461 if (!pool->pf.discard_enabled)
4462 return;
Joe Thornber34fbcf62015-04-16 12:58:35 +01004463
4464 limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
4465 limits->max_discard_sectors = 2048 * 1024 * 16; /* 16G */
4466}
4467
Joe Thornber991d9fa2011-10-31 20:21:18 +00004468static struct target_type thin_target = {
4469 .name = "thin",
Joe Thornber202bae52016-05-04 14:12:42 -04004470 .version = {1, 19, 0},
Joe Thornber991d9fa2011-10-31 20:21:18 +00004471 .module = THIS_MODULE,
4472 .ctr = thin_ctr,
4473 .dtr = thin_dtr,
4474 .map = thin_map,
Joe Thornbereb2aa482012-03-28 18:41:28 +01004475 .end_io = thin_endio,
Joe Thornbere5aea7b2014-06-13 14:47:24 +01004476 .preresume = thin_preresume,
Joe Thornber738211f2014-03-03 15:52:28 +00004477 .presuspend = thin_presuspend,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004478 .postsuspend = thin_postsuspend,
4479 .status = thin_status,
4480 .iterate_devices = thin_iterate_devices,
Joe Thornber34fbcf62015-04-16 12:58:35 +01004481 .io_hints = thin_io_hints,
Joe Thornber991d9fa2011-10-31 20:21:18 +00004482};
4483
4484/*----------------------------------------------------------------*/
4485
4486static int __init dm_thin_init(void)
4487{
4488 int r;
4489
4490 pool_table_init();
4491
4492 r = dm_register_target(&thin_target);
4493 if (r)
4494 return r;
4495
4496 r = dm_register_target(&pool_target);
4497 if (r)
Mike Snitzera24c2562012-06-03 00:30:00 +01004498 goto bad_pool_target;
4499
4500 r = -ENOMEM;
4501
Mike Snitzera24c2562012-06-03 00:30:00 +01004502 _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
4503 if (!_new_mapping_cache)
4504 goto bad_new_mapping_cache;
4505
Mike Snitzera24c2562012-06-03 00:30:00 +01004506 return 0;
4507
Mike Snitzera24c2562012-06-03 00:30:00 +01004508bad_new_mapping_cache:
Mike Snitzera24c2562012-06-03 00:30:00 +01004509 dm_unregister_target(&pool_target);
4510bad_pool_target:
4511 dm_unregister_target(&thin_target);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004512
4513 return r;
4514}
4515
4516static void dm_thin_exit(void)
4517{
4518 dm_unregister_target(&thin_target);
4519 dm_unregister_target(&pool_target);
Mike Snitzera24c2562012-06-03 00:30:00 +01004520
Mike Snitzera24c2562012-06-03 00:30:00 +01004521 kmem_cache_destroy(_new_mapping_cache);
Joe Thornber991d9fa2011-10-31 20:21:18 +00004522}
4523
4524module_init(dm_thin_init);
4525module_exit(dm_thin_exit);
4526
Mike Snitzer80c57892014-05-20 13:38:33 -04004527module_param_named(no_space_timeout, no_space_timeout_secs, uint, S_IRUGO | S_IWUSR);
4528MODULE_PARM_DESC(no_space_timeout, "Out of data space queue IO timeout in seconds");
4529
Alasdair G Kergon7cab8bf2012-05-12 01:43:19 +01004530MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
Joe Thornber991d9fa2011-10-31 20:21:18 +00004531MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
4532MODULE_LICENSE("GPL");