dm bio prison v1: improve concurrent IO performance
[linux-2.6-block.git] / drivers / md / dm-thin.c
CommitLineData
3bd94003 1// SPDX-License-Identifier: GPL-2.0-only
991d9fa0 2/*
e49e5829 3 * Copyright (C) 2011-2012 Red Hat UK.
991d9fa0
JT
4 *
5 * This file is released under the GPL.
6 */
7
8#include "dm-thin-metadata.h"
742c8fdc 9#include "dm-bio-prison-v1.h"
1f4e0ff0 10#include "dm.h"
991d9fa0
JT
11
12#include <linux/device-mapper.h>
13#include <linux/dm-io.h>
14#include <linux/dm-kcopyd.h>
0f30af98 15#include <linux/jiffies.h>
604ea906 16#include <linux/log2.h>
991d9fa0 17#include <linux/list.h>
c140e1c4 18#include <linux/rculist.h>
991d9fa0
JT
19#include <linux/init.h>
20#include <linux/module.h>
21#include <linux/slab.h>
a822c83e 22#include <linux/vmalloc.h>
ac4c3f34 23#include <linux/sort.h>
67324ea1 24#include <linux/rbtree.h>
991d9fa0
JT
25
26#define DM_MSG_PREFIX "thin"
27
28/*
29 * Tunable constants
30 */
7768ed33 31#define ENDIO_HOOK_POOL_SIZE 1024
991d9fa0 32#define MAPPING_POOL_SIZE 1024
905e51b3 33#define COMMIT_PERIOD HZ
80c57893
MS
34#define NO_SPACE_TIMEOUT_SECS 60
35
86a3238c 36static unsigned int no_space_timeout_secs = NO_SPACE_TIMEOUT_SECS;
991d9fa0 37
df5d2e90
MP
38DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle,
39 "A percentage of time allocated for copy on write");
40
991d9fa0
JT
41/*
42 * The block size of the device holding pool data must be
43 * between 64KB and 1GB.
44 */
45#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (64 * 1024 >> SECTOR_SHIFT)
46#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
47
991d9fa0
JT
48/*
49 * Device id is restricted to 24 bits.
50 */
51#define MAX_DEV_ID ((1 << 24) - 1)
52
53/*
54 * How do we handle breaking sharing of data blocks?
55 * =================================================
56 *
57 * We use a standard copy-on-write btree to store the mappings for the
58 * devices (note I'm talking about copy-on-write of the metadata here, not
59 * the data). When you take an internal snapshot you clone the root node
60 * of the origin btree. After this there is no concept of an origin or a
61 * snapshot. They are just two device trees that happen to point to the
62 * same data blocks.
63 *
64 * When we get a write in we decide if it's to a shared data block using
65 * some timestamp magic. If it is, we have to break sharing.
66 *
67 * Let's say we write to a shared block in what was the origin. The
68 * steps are:
69 *
70 * i) plug io further to this physical block. (see bio_prison code).
71 *
72 * ii) quiesce any read io to that shared data block. Obviously
44feb387 73 * including all devices that share this block. (see dm_deferred_set code)
991d9fa0
JT
74 *
75 * iii) copy the data block to a newly allocate block. This step can be
76 * missed out if the io covers the block. (schedule_copy).
77 *
78 * iv) insert the new mapping into the origin's btree
fe878f34 79 * (process_prepared_mapping). This act of inserting breaks some
991d9fa0
JT
80 * sharing of btree nodes between the two devices. Breaking sharing only
81 * effects the btree of that specific device. Btrees for the other
82 * devices that share the block never change. The btree for the origin
83 * device as it was after the last commit is untouched, ie. we're using
84 * persistent data structures in the functional programming sense.
85 *
86 * v) unplug io to this physical block, including the io that triggered
87 * the breaking of sharing.
88 *
89 * Steps (ii) and (iii) occur in parallel.
90 *
91 * The metadata _doesn't_ need to be committed before the io continues. We
92 * get away with this because the io is always written to a _new_ block.
93 * If there's a crash, then:
94 *
95 * - The origin mapping will point to the old origin block (the shared
96 * one). This will contain the data as it was before the io that triggered
97 * the breaking of sharing came in.
98 *
99 * - The snap mapping still points to the old block. As it would after
100 * the commit.
101 *
102 * The downside of this scheme is the timestamp magic isn't perfect, and
103 * will continue to think that data block in the snapshot device is shared
104 * even after the write to the origin has broken sharing. I suspect data
105 * blocks will typically be shared by many different devices, so we're
106 * breaking sharing n + 1 times, rather than n, where n is the number of
107 * devices that reference this data block. At the moment I think the
108 * benefits far, far outweigh the disadvantages.
109 */
110
111/*----------------------------------------------------------------*/
112
991d9fa0
JT
113/*
114 * Key building.
115 */
34fbcf62
JT
116enum lock_space {
117 VIRTUAL,
118 PHYSICAL
119};
120
121static void build_key(struct dm_thin_device *td, enum lock_space ls,
122 dm_block_t b, dm_block_t e, struct dm_cell_key *key)
991d9fa0 123{
34fbcf62 124 key->virtual = (ls == VIRTUAL);
991d9fa0 125 key->dev = dm_thin_dev_id(td);
5f274d88 126 key->block_begin = b;
34fbcf62
JT
127 key->block_end = e;
128}
129
130static void build_data_key(struct dm_thin_device *td, dm_block_t b,
131 struct dm_cell_key *key)
132{
133 build_key(td, PHYSICAL, b, b + 1llu, key);
991d9fa0
JT
134}
135
136static void build_virtual_key(struct dm_thin_device *td, dm_block_t b,
44feb387 137 struct dm_cell_key *key)
991d9fa0 138{
34fbcf62 139 build_key(td, VIRTUAL, b, b + 1llu, key);
991d9fa0
JT
140}
141
142/*----------------------------------------------------------------*/
143
7d327fe0
JT
144#define THROTTLE_THRESHOLD (1 * HZ)
145
146struct throttle {
147 struct rw_semaphore lock;
148 unsigned long threshold;
149 bool throttle_applied;
150};
151
152static void throttle_init(struct throttle *t)
153{
154 init_rwsem(&t->lock);
155 t->throttle_applied = false;
156}
157
158static void throttle_work_start(struct throttle *t)
159{
160 t->threshold = jiffies + THROTTLE_THRESHOLD;
161}
162
163static void throttle_work_update(struct throttle *t)
164{
8ca8b1e1 165 if (!t->throttle_applied && time_is_before_jiffies(t->threshold)) {
7d327fe0
JT
166 down_write(&t->lock);
167 t->throttle_applied = true;
168 }
169}
170
171static void throttle_work_complete(struct throttle *t)
172{
173 if (t->throttle_applied) {
174 t->throttle_applied = false;
175 up_write(&t->lock);
176 }
177}
178
179static void throttle_lock(struct throttle *t)
180{
181 down_read(&t->lock);
182}
183
184static void throttle_unlock(struct throttle *t)
185{
186 up_read(&t->lock);
187}
188
189/*----------------------------------------------------------------*/
190
991d9fa0
JT
191/*
192 * A pool device ties together a metadata device and a data device. It
193 * also provides the interface for creating and destroying internal
194 * devices.
195 */
a24c2569 196struct dm_thin_new_mapping;
67e2e2b2 197
e49e5829 198/*
f6c36758 199 * The pool runs in various modes. Ordered in degraded order for comparisons.
e49e5829
JT
200 */
201enum pool_mode {
202 PM_WRITE, /* metadata may be changed */
3e1a0699 203 PM_OUT_OF_DATA_SPACE, /* metadata may be changed, though data may not be allocated */
3ab91828
JT
204
205 /*
206 * Like READ_ONLY, except may switch back to WRITE on metadata resize. Reported as READ_ONLY.
207 */
208 PM_OUT_OF_METADATA_SPACE,
e49e5829 209 PM_READ_ONLY, /* metadata may not be changed */
3ab91828 210
e49e5829
JT
211 PM_FAIL, /* all I/O fails */
212};
213
67e2e2b2 214struct pool_features {
e49e5829
JT
215 enum pool_mode mode;
216
9bc142dd
MS
217 bool zero_new_blocks:1;
218 bool discard_enabled:1;
219 bool discard_passdown:1;
787a996c 220 bool error_if_no_space:1;
67e2e2b2
JT
221};
222
e49e5829
JT
223struct thin_c;
224typedef void (*process_bio_fn)(struct thin_c *tc, struct bio *bio);
a374bb21 225typedef void (*process_cell_fn)(struct thin_c *tc, struct dm_bio_prison_cell *cell);
e49e5829
JT
226typedef void (*process_mapping_fn)(struct dm_thin_new_mapping *m);
227
ac4c3f34
JT
228#define CELL_SORT_ARRAY_SIZE 8192
229
991d9fa0
JT
230struct pool {
231 struct list_head list;
232 struct dm_target *ti; /* Only set if a pool target is bound */
233
234 struct mapped_device *pool_md;
873937e7 235 struct block_device *data_dev;
991d9fa0
JT
236 struct block_device *md_dev;
237 struct dm_pool_metadata *pmd;
238
991d9fa0 239 dm_block_t low_water_blocks;
55f2b8bd 240 uint32_t sectors_per_block;
f9a8e0cd 241 int sectors_per_block_shift;
991d9fa0 242
67e2e2b2 243 struct pool_features pf;
88a6621b 244 bool low_water_triggered:1; /* A dm event has been sent */
80e96c54 245 bool suspended:1;
c3667cc6 246 bool out_of_data_space:1;
991d9fa0 247
44feb387 248 struct dm_bio_prison *prison;
991d9fa0
JT
249 struct dm_kcopyd_client *copier;
250
72d711c8 251 struct work_struct worker;
991d9fa0 252 struct workqueue_struct *wq;
7d327fe0 253 struct throttle throttle;
905e51b3 254 struct delayed_work waker;
85ad643b 255 struct delayed_work no_space_timeout;
991d9fa0 256
905e51b3 257 unsigned long last_commit_jiffies;
86a3238c 258 unsigned int ref_count;
991d9fa0
JT
259
260 spinlock_t lock;
991d9fa0 261 struct bio_list deferred_flush_bios;
4ae280b4 262 struct bio_list deferred_flush_completions;
991d9fa0 263 struct list_head prepared_mappings;
104655fd 264 struct list_head prepared_discards;
2a0fbffb 265 struct list_head prepared_discards_pt2;
c140e1c4 266 struct list_head active_thins;
991d9fa0 267
44feb387
MS
268 struct dm_deferred_set *shared_read_ds;
269 struct dm_deferred_set *all_io_ds;
991d9fa0 270
a24c2569 271 struct dm_thin_new_mapping *next_mapping;
e49e5829
JT
272
273 process_bio_fn process_bio;
274 process_bio_fn process_discard;
275
a374bb21
JT
276 process_cell_fn process_cell;
277 process_cell_fn process_discard_cell;
278
e49e5829
JT
279 process_mapping_fn process_prepared_mapping;
280 process_mapping_fn process_prepared_discard;
2a0fbffb 281 process_mapping_fn process_prepared_discard_pt2;
ac4c3f34 282
a822c83e 283 struct dm_bio_prison_cell **cell_sort_array;
72d711c8
MS
284
285 mempool_t mapping_pool;
991d9fa0
JT
286};
287
b5330655 288static void metadata_operation_failed(struct pool *pool, const char *op, int r);
e49e5829 289
f6c36758
MS
290static enum pool_mode get_pool_mode(struct pool *pool)
291{
292 return pool->pf.mode;
293}
294
295static void notify_of_pool_mode_change(struct pool *pool)
296{
774f13ac 297 static const char *descs[] = {
f6c36758
MS
298 "write",
299 "out-of-data-space",
300 "read-only",
301 "read-only",
302 "fail"
303 };
304 const char *extra_desc = NULL;
305 enum pool_mode mode = get_pool_mode(pool);
306
307 if (mode == PM_OUT_OF_DATA_SPACE) {
308 if (!pool->pf.error_if_no_space)
309 extra_desc = " (queue IO)";
310 else
311 extra_desc = " (error IO)";
312 }
313
314 dm_table_event(pool->ti->table);
315 DMINFO("%s: switching pool to %s%s mode",
316 dm_device_name(pool->pool_md),
317 descs[(int)mode], extra_desc ? : "");
318}
319
991d9fa0
JT
320/*
321 * Target context for a pool.
322 */
323struct pool_c {
324 struct dm_target *ti;
325 struct pool *pool;
326 struct dm_dev *data_dev;
327 struct dm_dev *metadata_dev;
991d9fa0
JT
328
329 dm_block_t low_water_blocks;
0424caa1
MS
330 struct pool_features requested_pf; /* Features requested during table load */
331 struct pool_features adjusted_pf; /* Features used after adjusting for constituent devices */
991d9fa0
JT
332};
333
334/*
335 * Target context for a thin.
336 */
337struct thin_c {
c140e1c4 338 struct list_head list;
991d9fa0 339 struct dm_dev *pool_dev;
2dd9c257 340 struct dm_dev *origin_dev;
e5aea7b4 341 sector_t origin_size;
991d9fa0
JT
342 dm_thin_id dev_id;
343
344 struct pool *pool;
345 struct dm_thin_device *td;
583024d2
MS
346 struct mapped_device *thin_md;
347
738211f7 348 bool requeue_mode:1;
c140e1c4 349 spinlock_t lock;
a374bb21 350 struct list_head deferred_cells;
c140e1c4
MS
351 struct bio_list deferred_bio_list;
352 struct bio_list retry_on_resume_list;
67324ea1 353 struct rb_root sort_bio_list; /* sorted list of deferred bios */
b10ebd34
JT
354
355 /*
356 * Ensures the thin is not destroyed until the worker has finished
357 * iterating the active_thins list.
358 */
22d4c291 359 refcount_t refcount;
b10ebd34 360 struct completion can_destroy;
991d9fa0
JT
361};
362
363/*----------------------------------------------------------------*/
364
34fbcf62
JT
365static bool block_size_is_power_of_two(struct pool *pool)
366{
367 return pool->sectors_per_block_shift >= 0;
368}
369
370static sector_t block_to_sectors(struct pool *pool, dm_block_t b)
371{
372 return block_size_is_power_of_two(pool) ?
373 (b << pool->sectors_per_block_shift) :
374 (b * pool->sectors_per_block);
375}
376
202bae52
JT
377/*----------------------------------------------------------------*/
378
379struct discard_op {
380 struct thin_c *tc;
381 struct blk_plug plug;
382 struct bio *parent_bio;
383 struct bio *bio;
384};
385
386static void begin_discard(struct discard_op *op, struct thin_c *tc, struct bio *parent)
387{
388 BUG_ON(!parent);
389
390 op->tc = tc;
391 blk_start_plug(&op->plug);
392 op->parent_bio = parent;
393 op->bio = NULL;
394}
395
396static int issue_discard(struct discard_op *op, dm_block_t data_b, dm_block_t data_e)
34fbcf62 397{
202bae52 398 struct thin_c *tc = op->tc;
34fbcf62
JT
399 sector_t s = block_to_sectors(tc->pool, data_b);
400 sector_t len = block_to_sectors(tc->pool, data_e - data_b);
3dba53a9 401
44abff2c
CH
402 return __blkdev_issue_discard(tc->pool_dev->bdev, s, len, GFP_NOWAIT,
403 &op->bio);
202bae52
JT
404}
405
406static void end_discard(struct discard_op *op, int r)
407{
408 if (op->bio) {
409 /*
410 * Even if one of the calls to issue_discard failed, we
411 * need to wait for the chain to complete.
412 */
413 bio_chain(op->bio, op->parent_bio);
c34b7ac6 414 op->bio->bi_opf = REQ_OP_DISCARD;
4e49ea4a 415 submit_bio(op->bio);
3dba53a9 416 }
34fbcf62 417
202bae52
JT
418 blk_finish_plug(&op->plug);
419
420 /*
421 * Even if r is set, there could be sub discards in flight that we
422 * need to wait for.
423 */
4e4cbee9
CH
424 if (r && !op->parent_bio->bi_status)
425 op->parent_bio->bi_status = errno_to_blk_status(r);
202bae52 426 bio_endio(op->parent_bio);
34fbcf62
JT
427}
428
429/*----------------------------------------------------------------*/
430
025b9685
JT
431/*
432 * wake_worker() is used when new work is queued and when pool_resume is
433 * ready to continue deferred IO processing.
434 */
435static void wake_worker(struct pool *pool)
436{
437 queue_work(pool->wq, &pool->worker);
438}
439
440/*----------------------------------------------------------------*/
441
6beca5eb
JT
442static int bio_detain(struct pool *pool, struct dm_cell_key *key, struct bio *bio,
443 struct dm_bio_prison_cell **cell_result)
444{
445 int r;
446 struct dm_bio_prison_cell *cell_prealloc;
447
448 /*
449 * Allocate a cell from the prison's mempool.
450 * This might block but it can't fail.
451 */
452 cell_prealloc = dm_bio_prison_alloc_cell(pool->prison, GFP_NOIO);
453
454 r = dm_bio_detain(pool->prison, key, bio, cell_prealloc, cell_result);
455 if (r)
456 /*
457 * We reused an old cell; we can get rid of
458 * the new one.
459 */
460 dm_bio_prison_free_cell(pool->prison, cell_prealloc);
461
462 return r;
463}
464
465static void cell_release(struct pool *pool,
466 struct dm_bio_prison_cell *cell,
467 struct bio_list *bios)
468{
469 dm_cell_release(pool->prison, cell, bios);
470 dm_bio_prison_free_cell(pool->prison, cell);
471}
472
2d759a46
JT
473static void cell_visit_release(struct pool *pool,
474 void (*fn)(void *, struct dm_bio_prison_cell *),
475 void *context,
476 struct dm_bio_prison_cell *cell)
477{
478 dm_cell_visit_release(pool->prison, fn, context, cell);
479 dm_bio_prison_free_cell(pool->prison, cell);
480}
481
6beca5eb
JT
482static void cell_release_no_holder(struct pool *pool,
483 struct dm_bio_prison_cell *cell,
484 struct bio_list *bios)
485{
486 dm_cell_release_no_holder(pool->prison, cell, bios);
487 dm_bio_prison_free_cell(pool->prison, cell);
488}
489
af91805a 490static void cell_error_with_code(struct pool *pool,
4e4cbee9 491 struct dm_bio_prison_cell *cell, blk_status_t error_code)
6beca5eb 492{
af91805a 493 dm_cell_error(pool->prison, cell, error_code);
6beca5eb
JT
494 dm_bio_prison_free_cell(pool->prison, cell);
495}
496
4e4cbee9 497static blk_status_t get_pool_io_error_code(struct pool *pool)
c3667cc6 498{
4e4cbee9 499 return pool->out_of_data_space ? BLK_STS_NOSPC : BLK_STS_IOERR;
c3667cc6
MS
500}
501
af91805a
MS
502static void cell_error(struct pool *pool, struct dm_bio_prison_cell *cell)
503{
4e4cbee9 504 cell_error_with_code(pool, cell, get_pool_io_error_code(pool));
af91805a
MS
505}
506
a374bb21
JT
507static void cell_success(struct pool *pool, struct dm_bio_prison_cell *cell)
508{
509 cell_error_with_code(pool, cell, 0);
510}
511
512static void cell_requeue(struct pool *pool, struct dm_bio_prison_cell *cell)
513{
4e4cbee9 514 cell_error_with_code(pool, cell, BLK_STS_DM_REQUEUE);
a374bb21
JT
515}
516
6beca5eb
JT
517/*----------------------------------------------------------------*/
518
991d9fa0
JT
519/*
520 * A global list of pools that uses a struct mapped_device as a key.
521 */
522static struct dm_thin_pool_table {
523 struct mutex mutex;
524 struct list_head pools;
525} dm_thin_pool_table;
526
527static void pool_table_init(void)
528{
529 mutex_init(&dm_thin_pool_table.mutex);
530 INIT_LIST_HEAD(&dm_thin_pool_table.pools);
531}
532
d5ffebdd
MS
533static void pool_table_exit(void)
534{
535 mutex_destroy(&dm_thin_pool_table.mutex);
536}
537
991d9fa0
JT
538static void __pool_table_insert(struct pool *pool)
539{
540 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
541 list_add(&pool->list, &dm_thin_pool_table.pools);
542}
543
544static void __pool_table_remove(struct pool *pool)
545{
546 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
547 list_del(&pool->list);
548}
549
550static struct pool *__pool_table_lookup(struct mapped_device *md)
551{
552 struct pool *pool = NULL, *tmp;
553
554 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
555
556 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
557 if (tmp->pool_md == md) {
558 pool = tmp;
559 break;
560 }
561 }
562
563 return pool;
564}
565
566static struct pool *__pool_table_lookup_metadata_dev(struct block_device *md_dev)
567{
568 struct pool *pool = NULL, *tmp;
569
570 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
571
572 list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
573 if (tmp->md_dev == md_dev) {
574 pool = tmp;
575 break;
576 }
577 }
578
579 return pool;
580}
581
582/*----------------------------------------------------------------*/
583
a24c2569 584struct dm_thin_endio_hook {
eb2aa48d 585 struct thin_c *tc;
44feb387
MS
586 struct dm_deferred_entry *shared_read_entry;
587 struct dm_deferred_entry *all_io_entry;
a24c2569 588 struct dm_thin_new_mapping *overwrite_mapping;
67324ea1 589 struct rb_node rb_node;
34fbcf62 590 struct dm_bio_prison_cell *cell;
eb2aa48d
JT
591};
592
42d6a8ce
MS
593static void __merge_bio_list(struct bio_list *bios, struct bio_list *master)
594{
595 bio_list_merge(bios, master);
596 bio_list_init(master);
597}
598
4e4cbee9 599static void error_bio_list(struct bio_list *bios, blk_status_t error)
991d9fa0
JT
600{
601 struct bio *bio;
42d6a8ce 602
4246a0b6 603 while ((bio = bio_list_pop(bios))) {
4e4cbee9 604 bio->bi_status = error;
4246a0b6
CH
605 bio_endio(bio);
606 }
42d6a8ce
MS
607}
608
4e4cbee9
CH
609static void error_thin_bio_list(struct thin_c *tc, struct bio_list *master,
610 blk_status_t error)
42d6a8ce 611{
991d9fa0
JT
612 struct bio_list bios;
613
614 bio_list_init(&bios);
18adc577 615
8e0c9dac 616 spin_lock_irq(&tc->lock);
42d6a8ce 617 __merge_bio_list(&bios, master);
8e0c9dac 618 spin_unlock_irq(&tc->lock);
991d9fa0 619
42d6a8ce 620 error_bio_list(&bios, error);
991d9fa0
JT
621}
622
a374bb21
JT
623static void requeue_deferred_cells(struct thin_c *tc)
624{
625 struct pool *pool = tc->pool;
a374bb21
JT
626 struct list_head cells;
627 struct dm_bio_prison_cell *cell, *tmp;
628
629 INIT_LIST_HEAD(&cells);
630
8e0c9dac 631 spin_lock_irq(&tc->lock);
a374bb21 632 list_splice_init(&tc->deferred_cells, &cells);
8e0c9dac 633 spin_unlock_irq(&tc->lock);
a374bb21
JT
634
635 list_for_each_entry_safe(cell, tmp, &cells, user_list)
636 cell_requeue(pool, cell);
637}
638
991d9fa0
JT
639static void requeue_io(struct thin_c *tc)
640{
3e1a0699
JT
641 struct bio_list bios;
642
643 bio_list_init(&bios);
644
8e0c9dac 645 spin_lock_irq(&tc->lock);
42d6a8ce
MS
646 __merge_bio_list(&bios, &tc->deferred_bio_list);
647 __merge_bio_list(&bios, &tc->retry_on_resume_list);
8e0c9dac 648 spin_unlock_irq(&tc->lock);
3e1a0699 649
4e4cbee9 650 error_bio_list(&bios, BLK_STS_DM_REQUEUE);
42d6a8ce 651 requeue_deferred_cells(tc);
3e1a0699
JT
652}
653
4e4cbee9 654static void error_retry_list_with_code(struct pool *pool, blk_status_t error)
c140e1c4
MS
655{
656 struct thin_c *tc;
657
658 rcu_read_lock();
659 list_for_each_entry_rcu(tc, &pool->active_thins, list)
0a927c2f 660 error_thin_bio_list(tc, &tc->retry_on_resume_list, error);
c140e1c4
MS
661 rcu_read_unlock();
662}
663
0a927c2f
MS
664static void error_retry_list(struct pool *pool)
665{
4e4cbee9 666 error_retry_list_with_code(pool, get_pool_io_error_code(pool));
0a927c2f
MS
667}
668
991d9fa0
JT
669/*
670 * This section of code contains the logic for processing a thin device's IO.
671 * Much of the code depends on pool object resources (lists, workqueues, etc)
672 * but most is exclusively called from the thin target rather than the thin-pool
673 * target.
674 */
675
676static dm_block_t get_bio_block(struct thin_c *tc, struct bio *bio)
677{
58f77a21 678 struct pool *pool = tc->pool;
4f024f37 679 sector_t block_nr = bio->bi_iter.bi_sector;
55f2b8bd 680
58f77a21
MS
681 if (block_size_is_power_of_two(pool))
682 block_nr >>= pool->sectors_per_block_shift;
f9a8e0cd 683 else
58f77a21 684 (void) sector_div(block_nr, pool->sectors_per_block);
55f2b8bd
MS
685
686 return block_nr;
991d9fa0
JT
687}
688
34fbcf62
JT
689/*
690 * Returns the _complete_ blocks that this bio covers.
691 */
692static void get_bio_block_range(struct thin_c *tc, struct bio *bio,
693 dm_block_t *begin, dm_block_t *end)
694{
695 struct pool *pool = tc->pool;
696 sector_t b = bio->bi_iter.bi_sector;
697 sector_t e = b + (bio->bi_iter.bi_size >> SECTOR_SHIFT);
698
699 b += pool->sectors_per_block - 1ull; /* so we round up */
700
701 if (block_size_is_power_of_two(pool)) {
702 b >>= pool->sectors_per_block_shift;
703 e >>= pool->sectors_per_block_shift;
704 } else {
705 (void) sector_div(b, pool->sectors_per_block);
706 (void) sector_div(e, pool->sectors_per_block);
707 }
708
709 if (e < b)
710 /* Can happen if the bio is within a single block. */
711 e = b;
712
713 *begin = b;
714 *end = e;
715}
716
991d9fa0
JT
717static void remap(struct thin_c *tc, struct bio *bio, dm_block_t block)
718{
719 struct pool *pool = tc->pool;
4f024f37 720 sector_t bi_sector = bio->bi_iter.bi_sector;
991d9fa0 721
74d46992 722 bio_set_dev(bio, tc->pool_dev->bdev);
58f77a21 723 if (block_size_is_power_of_two(pool))
4f024f37
KO
724 bio->bi_iter.bi_sector =
725 (block << pool->sectors_per_block_shift) |
726 (bi_sector & (pool->sectors_per_block - 1));
58f77a21 727 else
4f024f37 728 bio->bi_iter.bi_sector = (block * pool->sectors_per_block) +
58f77a21 729 sector_div(bi_sector, pool->sectors_per_block);
991d9fa0
JT
730}
731
2dd9c257
JT
732static void remap_to_origin(struct thin_c *tc, struct bio *bio)
733{
74d46992 734 bio_set_dev(bio, tc->origin_dev->bdev);
2dd9c257
JT
735}
736
4afdd680
JT
737static int bio_triggers_commit(struct thin_c *tc, struct bio *bio)
738{
f73f44eb 739 return op_is_flush(bio->bi_opf) &&
4afdd680
JT
740 dm_thin_changed_this_transaction(tc->td);
741}
742
e8088073
JT
743static void inc_all_io_entry(struct pool *pool, struct bio *bio)
744{
745 struct dm_thin_endio_hook *h;
746
e6047149 747 if (bio_op(bio) == REQ_OP_DISCARD)
e8088073
JT
748 return;
749
59c3d2c6 750 h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
e8088073
JT
751 h->all_io_entry = dm_deferred_entry_inc(pool->all_io_ds);
752}
753
2dd9c257 754static void issue(struct thin_c *tc, struct bio *bio)
991d9fa0
JT
755{
756 struct pool *pool = tc->pool;
991d9fa0 757
e49e5829 758 if (!bio_triggers_commit(tc, bio)) {
b7f8dff0 759 dm_submit_bio_remap(bio, NULL);
e49e5829
JT
760 return;
761 }
762
991d9fa0 763 /*
e49e5829
JT
764 * Complete bio with an error if earlier I/O caused changes to
765 * the metadata that can't be committed e.g, due to I/O errors
766 * on the metadata device.
991d9fa0 767 */
e49e5829
JT
768 if (dm_thin_aborted_changes(tc->td)) {
769 bio_io_error(bio);
770 return;
771 }
772
773 /*
774 * Batch together any bios that trigger commits and then issue a
775 * single commit for them in process_deferred_bios().
776 */
8e0c9dac 777 spin_lock_irq(&pool->lock);
e49e5829 778 bio_list_add(&pool->deferred_flush_bios, bio);
8e0c9dac 779 spin_unlock_irq(&pool->lock);
991d9fa0
JT
780}
781
2dd9c257
JT
782static void remap_to_origin_and_issue(struct thin_c *tc, struct bio *bio)
783{
784 remap_to_origin(tc, bio);
785 issue(tc, bio);
786}
787
788static void remap_and_issue(struct thin_c *tc, struct bio *bio,
789 dm_block_t block)
790{
791 remap(tc, bio, block);
792 issue(tc, bio);
793}
794
991d9fa0
JT
795/*----------------------------------------------------------------*/
796
797/*
798 * Bio endio functions.
799 */
a24c2569 800struct dm_thin_new_mapping {
991d9fa0
JT
801 struct list_head list;
802
7f214665 803 bool pass_discard:1;
34fbcf62 804 bool maybe_shared:1;
991d9fa0 805
50f3c3ef
JT
806 /*
807 * Track quiescing, copying and zeroing preparation actions. When this
808 * counter hits zero the block is prepared and can be inserted into the
809 * btree.
810 */
811 atomic_t prepare_actions;
812
4e4cbee9 813 blk_status_t status;
991d9fa0 814 struct thin_c *tc;
34fbcf62 815 dm_block_t virt_begin, virt_end;
991d9fa0 816 dm_block_t data_block;
34fbcf62 817 struct dm_bio_prison_cell *cell;
991d9fa0
JT
818
819 /*
820 * If the bio covers the whole area of a block then we can avoid
821 * zeroing or copying. Instead this bio is hooked. The bio will
822 * still be in the cell, so care has to be taken to avoid issuing
823 * the bio twice.
824 */
825 struct bio *bio;
826 bio_end_io_t *saved_bi_end_io;
827};
828
50f3c3ef 829static void __complete_mapping_preparation(struct dm_thin_new_mapping *m)
991d9fa0
JT
830{
831 struct pool *pool = m->tc->pool;
832
50f3c3ef 833 if (atomic_dec_and_test(&m->prepare_actions)) {
daec338b 834 list_add_tail(&m->list, &pool->prepared_mappings);
991d9fa0
JT
835 wake_worker(pool);
836 }
837}
838
e5aea7b4 839static void complete_mapping_preparation(struct dm_thin_new_mapping *m)
991d9fa0
JT
840{
841 unsigned long flags;
991d9fa0
JT
842 struct pool *pool = m->tc->pool;
843
991d9fa0 844 spin_lock_irqsave(&pool->lock, flags);
50f3c3ef 845 __complete_mapping_preparation(m);
991d9fa0
JT
846 spin_unlock_irqrestore(&pool->lock, flags);
847}
848
e5aea7b4
JT
849static void copy_complete(int read_err, unsigned long write_err, void *context)
850{
851 struct dm_thin_new_mapping *m = context;
852
4e4cbee9 853 m->status = read_err || write_err ? BLK_STS_IOERR : 0;
e5aea7b4
JT
854 complete_mapping_preparation(m);
855}
856
4246a0b6 857static void overwrite_endio(struct bio *bio)
991d9fa0 858{
59c3d2c6 859 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
a24c2569 860 struct dm_thin_new_mapping *m = h->overwrite_mapping;
991d9fa0 861
8b908f8e
MS
862 bio->bi_end_io = m->saved_bi_end_io;
863
4e4cbee9 864 m->status = bio->bi_status;
e5aea7b4 865 complete_mapping_preparation(m);
991d9fa0
JT
866}
867
991d9fa0
JT
868/*----------------------------------------------------------------*/
869
870/*
871 * Workqueue.
872 */
873
874/*
875 * Prepared mapping jobs.
876 */
877
878/*
2d759a46
JT
879 * This sends the bios in the cell, except the original holder, back
880 * to the deferred_bios list.
991d9fa0 881 */
f286ba0e 882static void cell_defer_no_holder(struct thin_c *tc, struct dm_bio_prison_cell *cell)
991d9fa0 883{
991d9fa0
JT
884 struct pool *pool = tc->pool;
885 unsigned long flags;
bb46c561 886 struct bio_list bios;
991d9fa0 887
bb46c561
JT
888 bio_list_init(&bios);
889 cell_release_no_holder(pool, cell, &bios);
991d9fa0 890
bb46c561
JT
891 if (!bio_list_empty(&bios)) {
892 spin_lock_irqsave(&tc->lock, flags);
893 bio_list_merge(&tc->deferred_bio_list, &bios);
894 spin_unlock_irqrestore(&tc->lock, flags);
d256d796 895 wake_worker(pool);
bb46c561 896 }
991d9fa0
JT
897}
898
a374bb21
JT
899static void thin_defer_bio(struct thin_c *tc, struct bio *bio);
900
2d759a46
JT
901struct remap_info {
902 struct thin_c *tc;
903 struct bio_list defer_bios;
904 struct bio_list issue_bios;
905};
906
907static void __inc_remap_and_issue_cell(void *context,
908 struct dm_bio_prison_cell *cell)
a374bb21 909{
2d759a46 910 struct remap_info *info = context;
a374bb21 911 struct bio *bio;
a374bb21 912
2d759a46 913 while ((bio = bio_list_pop(&cell->bios))) {
f73f44eb 914 if (op_is_flush(bio->bi_opf) || bio_op(bio) == REQ_OP_DISCARD)
2d759a46 915 bio_list_add(&info->defer_bios, bio);
a374bb21 916 else {
2d759a46
JT
917 inc_all_io_entry(info->tc->pool, bio);
918
919 /*
920 * We can't issue the bios with the bio prison lock
921 * held, so we add them to a list to issue on
922 * return from this function.
923 */
924 bio_list_add(&info->issue_bios, bio);
a374bb21
JT
925 }
926 }
927}
928
2d759a46
JT
929static void inc_remap_and_issue_cell(struct thin_c *tc,
930 struct dm_bio_prison_cell *cell,
931 dm_block_t block)
932{
933 struct bio *bio;
934 struct remap_info info;
935
936 info.tc = tc;
937 bio_list_init(&info.defer_bios);
938 bio_list_init(&info.issue_bios);
939
940 /*
941 * We have to be careful to inc any bios we're about to issue
942 * before the cell is released, and avoid a race with new bios
943 * being added to the cell.
944 */
945 cell_visit_release(tc->pool, __inc_remap_and_issue_cell,
946 &info, cell);
947
948 while ((bio = bio_list_pop(&info.defer_bios)))
949 thin_defer_bio(tc, bio);
950
951 while ((bio = bio_list_pop(&info.issue_bios)))
952 remap_and_issue(info.tc, bio, block);
953}
954
e49e5829
JT
955static void process_prepared_mapping_fail(struct dm_thin_new_mapping *m)
956{
6beca5eb 957 cell_error(m->tc->pool, m->cell);
e49e5829 958 list_del(&m->list);
6f1c819c 959 mempool_free(m, &m->tc->pool->mapping_pool);
e49e5829 960}
025b9685 961
4ae280b4
NT
962static void complete_overwrite_bio(struct thin_c *tc, struct bio *bio)
963{
964 struct pool *pool = tc->pool;
4ae280b4
NT
965
966 /*
967 * If the bio has the REQ_FUA flag set we must commit the metadata
968 * before signaling its completion.
969 */
970 if (!bio_triggers_commit(tc, bio)) {
971 bio_endio(bio);
972 return;
973 }
974
975 /*
976 * Complete bio with an error if earlier I/O caused changes to the
977 * metadata that can't be committed, e.g, due to I/O errors on the
978 * metadata device.
979 */
980 if (dm_thin_aborted_changes(tc->td)) {
981 bio_io_error(bio);
982 return;
983 }
984
985 /*
986 * Batch together any bios that trigger commits and then issue a
987 * single commit for them in process_deferred_bios().
988 */
8e0c9dac 989 spin_lock_irq(&pool->lock);
4ae280b4 990 bio_list_add(&pool->deferred_flush_completions, bio);
8e0c9dac 991 spin_unlock_irq(&pool->lock);
4ae280b4
NT
992}
993
a24c2569 994static void process_prepared_mapping(struct dm_thin_new_mapping *m)
991d9fa0
JT
995{
996 struct thin_c *tc = m->tc;
6beca5eb 997 struct pool *pool = tc->pool;
8b908f8e 998 struct bio *bio = m->bio;
991d9fa0
JT
999 int r;
1000
4e4cbee9 1001 if (m->status) {
6beca5eb 1002 cell_error(pool, m->cell);
905386f8 1003 goto out;
991d9fa0
JT
1004 }
1005
1006 /*
1007 * Commit the prepared block into the mapping btree.
1008 * Any I/O for this block arriving after this point will get
1009 * remapped to it directly.
1010 */
34fbcf62 1011 r = dm_thin_insert_block(tc->td, m->virt_begin, m->data_block);
991d9fa0 1012 if (r) {
b5330655 1013 metadata_operation_failed(pool, "dm_thin_insert_block", r);
6beca5eb 1014 cell_error(pool, m->cell);
905386f8 1015 goto out;
991d9fa0
JT
1016 }
1017
1018 /*
1019 * Release any bios held while the block was being provisioned.
1020 * If we are processing a write bio that completely covers the block,
1021 * we already processed it so can ignore it now when processing
1022 * the bios in the cell.
1023 */
1024 if (bio) {
2d759a46 1025 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
4ae280b4 1026 complete_overwrite_bio(tc, bio);
2d759a46
JT
1027 } else {
1028 inc_all_io_entry(tc->pool, m->cell->holder);
1029 remap_and_issue(tc, m->cell->holder, m->data_block);
1030 inc_remap_and_issue_cell(tc, m->cell, m->data_block);
1031 }
991d9fa0 1032
905386f8 1033out:
991d9fa0 1034 list_del(&m->list);
6f1c819c 1035 mempool_free(m, &pool->mapping_pool);
991d9fa0
JT
1036}
1037
34fbcf62
JT
1038/*----------------------------------------------------------------*/
1039
1040static void free_discard_mapping(struct dm_thin_new_mapping *m)
104655fd 1041{
104655fd 1042 struct thin_c *tc = m->tc;
0ef0b471 1043
34fbcf62
JT
1044 if (m->cell)
1045 cell_defer_no_holder(tc, m->cell);
6f1c819c 1046 mempool_free(m, &tc->pool->mapping_pool);
34fbcf62 1047}
104655fd 1048
34fbcf62
JT
1049static void process_prepared_discard_fail(struct dm_thin_new_mapping *m)
1050{
e49e5829 1051 bio_io_error(m->bio);
34fbcf62
JT
1052 free_discard_mapping(m);
1053}
1054
1055static void process_prepared_discard_success(struct dm_thin_new_mapping *m)
1056{
4246a0b6 1057 bio_endio(m->bio);
34fbcf62
JT
1058 free_discard_mapping(m);
1059}
1060
1061static void process_prepared_discard_no_passdown(struct dm_thin_new_mapping *m)
1062{
1063 int r;
1064 struct thin_c *tc = m->tc;
1065
1066 r = dm_thin_remove_range(tc->td, m->cell->key.block_begin, m->cell->key.block_end);
1067 if (r) {
1068 metadata_operation_failed(tc->pool, "dm_thin_remove_range", r);
1069 bio_io_error(m->bio);
1070 } else
4246a0b6 1071 bio_endio(m->bio);
34fbcf62 1072
f286ba0e 1073 cell_defer_no_holder(tc, m->cell);
6f1c819c 1074 mempool_free(m, &tc->pool->mapping_pool);
e49e5829
JT
1075}
1076
202bae52
JT
1077/*----------------------------------------------------------------*/
1078
2a0fbffb
JT
1079static void passdown_double_checking_shared_status(struct dm_thin_new_mapping *m,
1080 struct bio *discard_parent)
e49e5829 1081{
34fbcf62
JT
1082 /*
1083 * We've already unmapped this range of blocks, but before we
1084 * passdown we have to check that these blocks are now unused.
1085 */
202bae52 1086 int r = 0;
d445bd9c 1087 bool shared = true;
e49e5829 1088 struct thin_c *tc = m->tc;
34fbcf62
JT
1089 struct pool *pool = tc->pool;
1090 dm_block_t b = m->data_block, e, end = m->data_block + m->virt_end - m->virt_begin;
202bae52 1091 struct discard_op op;
104655fd 1092
2a0fbffb 1093 begin_discard(&op, tc, discard_parent);
34fbcf62
JT
1094 while (b != end) {
1095 /* find start of unmapped run */
1096 for (; b < end; b++) {
d445bd9c 1097 r = dm_pool_block_is_shared(pool->pmd, b, &shared);
34fbcf62 1098 if (r)
202bae52 1099 goto out;
e8088073 1100
d445bd9c 1101 if (!shared)
34fbcf62 1102 break;
19fa1a67 1103 }
104655fd 1104
34fbcf62
JT
1105 if (b == end)
1106 break;
1107
1108 /* find end of run */
1109 for (e = b + 1; e != end; e++) {
d445bd9c 1110 r = dm_pool_block_is_shared(pool->pmd, e, &shared);
34fbcf62 1111 if (r)
202bae52 1112 goto out;
34fbcf62 1113
d445bd9c 1114 if (shared)
34fbcf62
JT
1115 break;
1116 }
1117
202bae52 1118 r = issue_discard(&op, b, e);
34fbcf62 1119 if (r)
202bae52 1120 goto out;
34fbcf62
JT
1121
1122 b = e;
1123 }
202bae52
JT
1124out:
1125 end_discard(&op, r);
104655fd
JT
1126}
1127
2a0fbffb
JT
1128static void queue_passdown_pt2(struct dm_thin_new_mapping *m)
1129{
1130 unsigned long flags;
1131 struct pool *pool = m->tc->pool;
1132
1133 spin_lock_irqsave(&pool->lock, flags);
1134 list_add_tail(&m->list, &pool->prepared_discards_pt2);
1135 spin_unlock_irqrestore(&pool->lock, flags);
1136 wake_worker(pool);
1137}
1138
1139static void passdown_endio(struct bio *bio)
1140{
1141 /*
1142 * It doesn't matter if the passdown discard failed, we still want
1143 * to unmap (we ignore err).
1144 */
1145 queue_passdown_pt2(bio->bi_private);
948f581a 1146 bio_put(bio);
2a0fbffb
JT
1147}
1148
1149static void process_prepared_discard_passdown_pt1(struct dm_thin_new_mapping *m)
e49e5829
JT
1150{
1151 int r;
1152 struct thin_c *tc = m->tc;
34fbcf62 1153 struct pool *pool = tc->pool;
2a0fbffb
JT
1154 struct bio *discard_parent;
1155 dm_block_t data_end = m->data_block + (m->virt_end - m->virt_begin);
e49e5829 1156
2a0fbffb
JT
1157 /*
1158 * Only this thread allocates blocks, so we can be sure that the
1159 * newly unmapped blocks will not be allocated before the end of
1160 * the function.
1161 */
34fbcf62 1162 r = dm_thin_remove_range(tc->td, m->virt_begin, m->virt_end);
202bae52 1163 if (r) {
34fbcf62 1164 metadata_operation_failed(pool, "dm_thin_remove_range", r);
202bae52 1165 bio_io_error(m->bio);
2a0fbffb 1166 cell_defer_no_holder(tc, m->cell);
6f1c819c 1167 mempool_free(m, &pool->mapping_pool);
2a0fbffb
JT
1168 return;
1169 }
34fbcf62 1170
00a0ea33
VV
1171 /*
1172 * Increment the unmapped blocks. This prevents a race between the
1173 * passdown io and reallocation of freed blocks.
1174 */
1175 r = dm_pool_inc_data_range(pool->pmd, m->data_block, data_end);
1176 if (r) {
1177 metadata_operation_failed(pool, "dm_pool_inc_data_range", r);
1178 bio_io_error(m->bio);
1179 cell_defer_no_holder(tc, m->cell);
6f1c819c 1180 mempool_free(m, &pool->mapping_pool);
00a0ea33
VV
1181 return;
1182 }
1183
07888c66 1184 discard_parent = bio_alloc(NULL, 1, 0, GFP_NOIO);
53db984e
CH
1185 discard_parent->bi_end_io = passdown_endio;
1186 discard_parent->bi_private = m;
255e2646
HM
1187 if (m->maybe_shared)
1188 passdown_double_checking_shared_status(m, discard_parent);
1189 else {
53db984e 1190 struct discard_op op;
2a0fbffb 1191
53db984e
CH
1192 begin_discard(&op, tc, discard_parent);
1193 r = issue_discard(&op, m->data_block, data_end);
1194 end_discard(&op, r);
202bae52 1195 }
2a0fbffb
JT
1196}
1197
1198static void process_prepared_discard_passdown_pt2(struct dm_thin_new_mapping *m)
1199{
1200 int r;
1201 struct thin_c *tc = m->tc;
1202 struct pool *pool = tc->pool;
1203
1204 /*
1205 * The passdown has completed, so now we can decrement all those
1206 * unmapped blocks.
1207 */
1208 r = dm_pool_dec_data_range(pool->pmd, m->data_block,
1209 m->data_block + (m->virt_end - m->virt_begin));
1210 if (r) {
1211 metadata_operation_failed(pool, "dm_pool_dec_data_range", r);
1212 bio_io_error(m->bio);
1213 } else
1214 bio_endio(m->bio);
1215
34fbcf62 1216 cell_defer_no_holder(tc, m->cell);
6f1c819c 1217 mempool_free(m, &pool->mapping_pool);
e49e5829
JT
1218}
1219
104655fd 1220static void process_prepared(struct pool *pool, struct list_head *head,
e49e5829 1221 process_mapping_fn *fn)
991d9fa0 1222{
991d9fa0 1223 struct list_head maps;
a24c2569 1224 struct dm_thin_new_mapping *m, *tmp;
991d9fa0
JT
1225
1226 INIT_LIST_HEAD(&maps);
8e0c9dac 1227 spin_lock_irq(&pool->lock);
104655fd 1228 list_splice_init(head, &maps);
8e0c9dac 1229 spin_unlock_irq(&pool->lock);
991d9fa0
JT
1230
1231 list_for_each_entry_safe(m, tmp, &maps, list)
e49e5829 1232 (*fn)(m);
991d9fa0
JT
1233}
1234
1235/*
1236 * Deferred bio jobs.
1237 */
104655fd 1238static int io_overlaps_block(struct pool *pool, struct bio *bio)
991d9fa0 1239{
4f024f37
KO
1240 return bio->bi_iter.bi_size ==
1241 (pool->sectors_per_block << SECTOR_SHIFT);
104655fd
JT
1242}
1243
1244static int io_overwrites_block(struct pool *pool, struct bio *bio)
1245{
1246 return (bio_data_dir(bio) == WRITE) &&
1247 io_overlaps_block(pool, bio);
991d9fa0
JT
1248}
1249
1250static void save_and_set_endio(struct bio *bio, bio_end_io_t **save,
1251 bio_end_io_t *fn)
1252{
1253 *save = bio->bi_end_io;
1254 bio->bi_end_io = fn;
1255}
1256
1257static int ensure_next_mapping(struct pool *pool)
1258{
1259 if (pool->next_mapping)
1260 return 0;
1261
6f1c819c 1262 pool->next_mapping = mempool_alloc(&pool->mapping_pool, GFP_ATOMIC);
991d9fa0
JT
1263
1264 return pool->next_mapping ? 0 : -ENOMEM;
1265}
1266
a24c2569 1267static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool)
991d9fa0 1268{
16961b04 1269 struct dm_thin_new_mapping *m = pool->next_mapping;
991d9fa0
JT
1270
1271 BUG_ON(!pool->next_mapping);
1272
16961b04
MS
1273 memset(m, 0, sizeof(struct dm_thin_new_mapping));
1274 INIT_LIST_HEAD(&m->list);
1275 m->bio = NULL;
1276
991d9fa0
JT
1277 pool->next_mapping = NULL;
1278
16961b04 1279 return m;
991d9fa0
JT
1280}
1281
e5aea7b4
JT
1282static void ll_zero(struct thin_c *tc, struct dm_thin_new_mapping *m,
1283 sector_t begin, sector_t end)
1284{
e5aea7b4
JT
1285 struct dm_io_region to;
1286
1287 to.bdev = tc->pool_dev->bdev;
1288 to.sector = begin;
1289 to.count = end - begin;
1290
7209049d 1291 dm_kcopyd_zero(tc->pool->copier, 1, &to, 0, copy_complete, m);
e5aea7b4
JT
1292}
1293
452d7a62 1294static void remap_and_issue_overwrite(struct thin_c *tc, struct bio *bio,
34fbcf62 1295 dm_block_t data_begin,
452d7a62
MS
1296 struct dm_thin_new_mapping *m)
1297{
1298 struct pool *pool = tc->pool;
1299 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1300
1301 h->overwrite_mapping = m;
1302 m->bio = bio;
1303 save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
1304 inc_all_io_entry(pool, bio);
34fbcf62 1305 remap_and_issue(tc, bio, data_begin);
452d7a62
MS
1306}
1307
e5aea7b4
JT
1308/*
1309 * A partial copy also needs to zero the uncopied region.
1310 */
991d9fa0 1311static void schedule_copy(struct thin_c *tc, dm_block_t virt_block,
2dd9c257
JT
1312 struct dm_dev *origin, dm_block_t data_origin,
1313 dm_block_t data_dest,
e5aea7b4
JT
1314 struct dm_bio_prison_cell *cell, struct bio *bio,
1315 sector_t len)
991d9fa0 1316{
991d9fa0 1317 struct pool *pool = tc->pool;
a24c2569 1318 struct dm_thin_new_mapping *m = get_next_mapping(pool);
991d9fa0 1319
991d9fa0 1320 m->tc = tc;
34fbcf62
JT
1321 m->virt_begin = virt_block;
1322 m->virt_end = virt_block + 1u;
991d9fa0
JT
1323 m->data_block = data_dest;
1324 m->cell = cell;
991d9fa0 1325
e5aea7b4
JT
1326 /*
1327 * quiesce action + copy action + an extra reference held for the
1328 * duration of this function (we may need to inc later for a
1329 * partial zero).
1330 */
1331 atomic_set(&m->prepare_actions, 3);
1332
44feb387 1333 if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list))
e5aea7b4 1334 complete_mapping_preparation(m); /* already quiesced */
991d9fa0
JT
1335
1336 /*
1337 * IO to pool_dev remaps to the pool target's data_dev.
1338 *
1339 * If the whole block of data is being overwritten, we can issue the
1340 * bio immediately. Otherwise we use kcopyd to clone the data first.
1341 */
452d7a62
MS
1342 if (io_overwrites_block(pool, bio))
1343 remap_and_issue_overwrite(tc, bio, data_dest, m);
1344 else {
991d9fa0
JT
1345 struct dm_io_region from, to;
1346
2dd9c257 1347 from.bdev = origin->bdev;
991d9fa0 1348 from.sector = data_origin * pool->sectors_per_block;
e5aea7b4 1349 from.count = len;
991d9fa0
JT
1350
1351 to.bdev = tc->pool_dev->bdev;
1352 to.sector = data_dest * pool->sectors_per_block;
e5aea7b4 1353 to.count = len;
991d9fa0 1354
7209049d
MS
1355 dm_kcopyd_copy(pool->copier, &from, 1, &to,
1356 0, copy_complete, m);
e5aea7b4
JT
1357
1358 /*
1359 * Do we need to zero a tail region?
1360 */
1361 if (len < pool->sectors_per_block && pool->pf.zero_new_blocks) {
1362 atomic_inc(&m->prepare_actions);
1363 ll_zero(tc, m,
1364 data_dest * pool->sectors_per_block + len,
1365 (data_dest + 1) * pool->sectors_per_block);
991d9fa0
JT
1366 }
1367 }
e5aea7b4
JT
1368
1369 complete_mapping_preparation(m); /* drop our ref */
991d9fa0
JT
1370}
1371
2dd9c257
JT
1372static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block,
1373 dm_block_t data_origin, dm_block_t data_dest,
a24c2569 1374 struct dm_bio_prison_cell *cell, struct bio *bio)
2dd9c257
JT
1375{
1376 schedule_copy(tc, virt_block, tc->pool_dev,
e5aea7b4
JT
1377 data_origin, data_dest, cell, bio,
1378 tc->pool->sectors_per_block);
2dd9c257
JT
1379}
1380
991d9fa0 1381static void schedule_zero(struct thin_c *tc, dm_block_t virt_block,
a24c2569 1382 dm_block_t data_block, struct dm_bio_prison_cell *cell,
991d9fa0
JT
1383 struct bio *bio)
1384{
1385 struct pool *pool = tc->pool;
a24c2569 1386 struct dm_thin_new_mapping *m = get_next_mapping(pool);
991d9fa0 1387
50f3c3ef 1388 atomic_set(&m->prepare_actions, 1); /* no need to quiesce */
991d9fa0 1389 m->tc = tc;
34fbcf62
JT
1390 m->virt_begin = virt_block;
1391 m->virt_end = virt_block + 1u;
991d9fa0
JT
1392 m->data_block = data_block;
1393 m->cell = cell;
991d9fa0
JT
1394
1395 /*
1396 * If the whole block of data is being overwritten or we are not
1397 * zeroing pre-existing data, we can issue the bio immediately.
1398 * Otherwise we use kcopyd to zero the data first.
1399 */
f8ae7525
MS
1400 if (pool->pf.zero_new_blocks) {
1401 if (io_overwrites_block(pool, bio))
1402 remap_and_issue_overwrite(tc, bio, data_block, m);
1403 else
1404 ll_zero(tc, m, data_block * pool->sectors_per_block,
1405 (data_block + 1) * pool->sectors_per_block);
1406 } else
991d9fa0 1407 process_prepared_mapping(m);
e5aea7b4 1408}
991d9fa0 1409
e5aea7b4
JT
1410static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
1411 dm_block_t data_dest,
1412 struct dm_bio_prison_cell *cell, struct bio *bio)
1413{
1414 struct pool *pool = tc->pool;
1415 sector_t virt_block_begin = virt_block * pool->sectors_per_block;
1416 sector_t virt_block_end = (virt_block + 1) * pool->sectors_per_block;
1417
1418 if (virt_block_end <= tc->origin_size)
1419 schedule_copy(tc, virt_block, tc->origin_dev,
1420 virt_block, data_dest, cell, bio,
1421 pool->sectors_per_block);
1422
1423 else if (virt_block_begin < tc->origin_size)
1424 schedule_copy(tc, virt_block, tc->origin_dev,
1425 virt_block, data_dest, cell, bio,
1426 tc->origin_size - virt_block_begin);
1427
1428 else
1429 schedule_zero(tc, virt_block, data_dest, cell, bio);
991d9fa0
JT
1430}
1431
2c43fd26
JT
1432static void set_pool_mode(struct pool *pool, enum pool_mode new_mode);
1433
a685557f
MS
1434static void requeue_bios(struct pool *pool);
1435
3ab91828
JT
1436static bool is_read_only_pool_mode(enum pool_mode mode)
1437{
1438 return (mode == PM_OUT_OF_METADATA_SPACE || mode == PM_READ_ONLY);
1439}
1440
1441static bool is_read_only(struct pool *pool)
1442{
1443 return is_read_only_pool_mode(get_pool_mode(pool));
1444}
1445
1446static void check_for_metadata_space(struct pool *pool)
1447{
1448 int r;
1449 const char *ooms_reason = NULL;
1450 dm_block_t nr_free;
1451
1452 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free);
1453 if (r)
1454 ooms_reason = "Could not get free metadata blocks";
1455 else if (!nr_free)
1456 ooms_reason = "No free metadata blocks";
1457
1458 if (ooms_reason && !is_read_only(pool)) {
1459 DMERR("%s", ooms_reason);
1460 set_pool_mode(pool, PM_OUT_OF_METADATA_SPACE);
1461 }
1462}
1463
1464static void check_for_data_space(struct pool *pool)
2c43fd26
JT
1465{
1466 int r;
1467 dm_block_t nr_free;
1468
1469 if (get_pool_mode(pool) != PM_OUT_OF_DATA_SPACE)
1470 return;
1471
1472 r = dm_pool_get_free_block_count(pool->pmd, &nr_free);
1473 if (r)
1474 return;
1475
a685557f 1476 if (nr_free) {
2c43fd26 1477 set_pool_mode(pool, PM_WRITE);
a685557f
MS
1478 requeue_bios(pool);
1479 }
2c43fd26
JT
1480}
1481
e49e5829
JT
1482/*
1483 * A non-zero return indicates read_only or fail_io mode.
1484 * Many callers don't care about the return value.
1485 */
020cc3b5 1486static int commit(struct pool *pool)
e49e5829
JT
1487{
1488 int r;
1489
3ab91828 1490 if (get_pool_mode(pool) >= PM_OUT_OF_METADATA_SPACE)
e49e5829
JT
1491 return -EINVAL;
1492
020cc3b5 1493 r = dm_pool_commit_metadata(pool->pmd);
b5330655
JT
1494 if (r)
1495 metadata_operation_failed(pool, "dm_pool_commit_metadata", r);
3ab91828
JT
1496 else {
1497 check_for_metadata_space(pool);
1498 check_for_data_space(pool);
1499 }
e49e5829
JT
1500
1501 return r;
1502}
1503
88a6621b
JT
1504static void check_low_water_mark(struct pool *pool, dm_block_t free_blocks)
1505{
88a6621b
JT
1506 if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
1507 DMWARN("%s: reached low water mark for data device: sending event.",
1508 dm_device_name(pool->pool_md));
8e0c9dac 1509 spin_lock_irq(&pool->lock);
88a6621b 1510 pool->low_water_triggered = true;
8e0c9dac 1511 spin_unlock_irq(&pool->lock);
88a6621b
JT
1512 dm_table_event(pool->ti->table);
1513 }
1514}
1515
991d9fa0
JT
1516static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
1517{
1518 int r;
1519 dm_block_t free_blocks;
991d9fa0
JT
1520 struct pool *pool = tc->pool;
1521
3e1a0699 1522 if (WARN_ON(get_pool_mode(pool) != PM_WRITE))
8d30abff
JT
1523 return -EINVAL;
1524
991d9fa0 1525 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
b5330655
JT
1526 if (r) {
1527 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
991d9fa0 1528 return r;
b5330655 1529 }
991d9fa0 1530
88a6621b 1531 check_low_water_mark(pool, free_blocks);
991d9fa0
JT
1532
1533 if (!free_blocks) {
94563bad
MS
1534 /*
1535 * Try to commit to see if that will free up some
1536 * more space.
1537 */
020cc3b5
JT
1538 r = commit(pool);
1539 if (r)
1540 return r;
991d9fa0 1541
94563bad 1542 r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
b5330655
JT
1543 if (r) {
1544 metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
94563bad 1545 return r;
b5330655 1546 }
991d9fa0 1547
94563bad 1548 if (!free_blocks) {
3e1a0699 1549 set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
94563bad 1550 return -ENOSPC;
991d9fa0
JT
1551 }
1552 }
1553
1554 r = dm_pool_alloc_data_block(pool->pmd, result);
4a02b34e 1555 if (r) {
a685557f
MS
1556 if (r == -ENOSPC)
1557 set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
1558 else
1559 metadata_operation_failed(pool, "dm_pool_alloc_data_block", r);
991d9fa0 1560 return r;
4a02b34e 1561 }
991d9fa0 1562
3ab91828
JT
1563 r = dm_pool_get_free_metadata_block_count(pool->pmd, &free_blocks);
1564 if (r) {
1565 metadata_operation_failed(pool, "dm_pool_get_free_metadata_block_count", r);
1566 return r;
1567 }
1568
1569 if (!free_blocks) {
1570 /* Let's commit before we use up the metadata reserve. */
1571 r = commit(pool);
1572 if (r)
1573 return r;
1574 }
1575
991d9fa0
JT
1576 return 0;
1577}
1578
1579/*
1580 * If we have run out of space, queue bios until the device is
1581 * resumed, presumably after having been reloaded with more space.
1582 */
1583static void retry_on_resume(struct bio *bio)
1584{
59c3d2c6 1585 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
eb2aa48d 1586 struct thin_c *tc = h->tc;
991d9fa0 1587
8e0c9dac 1588 spin_lock_irq(&tc->lock);
c140e1c4 1589 bio_list_add(&tc->retry_on_resume_list, bio);
8e0c9dac 1590 spin_unlock_irq(&tc->lock);
991d9fa0
JT
1591}
1592
4e4cbee9 1593static blk_status_t should_error_unserviceable_bio(struct pool *pool)
8c0f0e8c 1594{
3e1a0699
JT
1595 enum pool_mode m = get_pool_mode(pool);
1596
1597 switch (m) {
1598 case PM_WRITE:
1599 /* Shouldn't get here */
1600 DMERR_LIMIT("bio unserviceable, yet pool is in PM_WRITE mode");
4e4cbee9 1601 return BLK_STS_IOERR;
3e1a0699
JT
1602
1603 case PM_OUT_OF_DATA_SPACE:
4e4cbee9 1604 return pool->pf.error_if_no_space ? BLK_STS_NOSPC : 0;
3e1a0699 1605
3ab91828 1606 case PM_OUT_OF_METADATA_SPACE:
3e1a0699
JT
1607 case PM_READ_ONLY:
1608 case PM_FAIL:
4e4cbee9 1609 return BLK_STS_IOERR;
3e1a0699
JT
1610 default:
1611 /* Shouldn't get here */
1612 DMERR_LIMIT("bio unserviceable, yet pool has an unknown mode");
4e4cbee9 1613 return BLK_STS_IOERR;
3e1a0699
JT
1614 }
1615}
8c0f0e8c 1616
3e1a0699
JT
1617static void handle_unserviceable_bio(struct pool *pool, struct bio *bio)
1618{
4e4cbee9 1619 blk_status_t error = should_error_unserviceable_bio(pool);
af91805a 1620
4246a0b6 1621 if (error) {
4e4cbee9 1622 bio->bi_status = error;
4246a0b6
CH
1623 bio_endio(bio);
1624 } else
6d16202b 1625 retry_on_resume(bio);
8c0f0e8c
MS
1626}
1627
399caddf 1628static void retry_bios_on_resume(struct pool *pool, struct dm_bio_prison_cell *cell)
991d9fa0
JT
1629{
1630 struct bio *bio;
1631 struct bio_list bios;
4e4cbee9 1632 blk_status_t error;
991d9fa0 1633
af91805a
MS
1634 error = should_error_unserviceable_bio(pool);
1635 if (error) {
1636 cell_error_with_code(pool, cell, error);
3e1a0699
JT
1637 return;
1638 }
1639
991d9fa0 1640 bio_list_init(&bios);
6beca5eb 1641 cell_release(pool, cell, &bios);
991d9fa0 1642
9d094eeb
MS
1643 while ((bio = bio_list_pop(&bios)))
1644 retry_on_resume(bio);
991d9fa0
JT
1645}
1646
34fbcf62
JT
1647static void process_discard_cell_no_passdown(struct thin_c *tc,
1648 struct dm_bio_prison_cell *virt_cell)
104655fd 1649{
104655fd 1650 struct pool *pool = tc->pool;
34fbcf62 1651 struct dm_thin_new_mapping *m = get_next_mapping(pool);
104655fd 1652
34fbcf62
JT
1653 /*
1654 * We don't need to lock the data blocks, since there's no
1655 * passdown. We only lock data blocks for allocation and breaking sharing.
1656 */
1657 m->tc = tc;
1658 m->virt_begin = virt_cell->key.block_begin;
1659 m->virt_end = virt_cell->key.block_end;
1660 m->cell = virt_cell;
1661 m->bio = virt_cell->holder;
104655fd 1662
34fbcf62
JT
1663 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1664 pool->process_prepared_discard(m);
1665}
104655fd 1666
34fbcf62
JT
1667static void break_up_discard_bio(struct thin_c *tc, dm_block_t begin, dm_block_t end,
1668 struct bio *bio)
1669{
1670 struct pool *pool = tc->pool;
1671
1672 int r;
1673 bool maybe_shared;
1674 struct dm_cell_key data_key;
1675 struct dm_bio_prison_cell *data_cell;
1676 struct dm_thin_new_mapping *m;
e2dd8aca
JT
1677 dm_block_t virt_begin, virt_end, data_begin, data_end;
1678 dm_block_t len, next_boundary;
34fbcf62
JT
1679
1680 while (begin != end) {
34fbcf62
JT
1681 r = dm_thin_find_mapped_range(tc->td, begin, end, &virt_begin, &virt_end,
1682 &data_begin, &maybe_shared);
e2dd8aca 1683 if (r) {
104655fd 1684 /*
34fbcf62
JT
1685 * Silently fail, letting any mappings we've
1686 * created complete.
104655fd 1687 */
34fbcf62 1688 break;
104655fd 1689 }
104655fd 1690
e2dd8aca 1691 data_end = data_begin + (virt_end - virt_begin);
104655fd 1692
34fbcf62 1693 /*
e2dd8aca 1694 * Make sure the data region obeys the bio prison restrictions.
34fbcf62 1695 */
e2dd8aca
JT
1696 while (data_begin < data_end) {
1697 r = ensure_next_mapping(pool);
1698 if (r)
1699 return; /* we did our best */
1700
1701 next_boundary = ((data_begin >> BIO_PRISON_MAX_RANGE_SHIFT) + 1)
1702 << BIO_PRISON_MAX_RANGE_SHIFT;
1703 len = min_t(sector_t, data_end - data_begin, next_boundary - data_begin);
1704
1705 build_key(tc->td, PHYSICAL, data_begin, data_begin + len, &data_key);
1706 if (bio_detain(tc->pool, &data_key, NULL, &data_cell)) {
1707 /* contention, we'll give up with this range */
1708 data_begin += len;
1709 continue;
1710 }
1711
1712 /*
1713 * IO may still be going to the destination block. We must
1714 * quiesce before we can do the removal.
1715 */
1716 m = get_next_mapping(pool);
1717 m->tc = tc;
1718 m->maybe_shared = maybe_shared;
1719 m->virt_begin = virt_begin;
1720 m->virt_end = virt_begin + len;
1721 m->data_block = data_begin;
1722 m->cell = data_cell;
1723 m->bio = bio;
1724
1725 /*
1726 * The parent bio must not complete before sub discard bios are
1727 * chained to it (see end_discard's bio_chain)!
1728 *
1729 * This per-mapping bi_remaining increment is paired with
1730 * the implicit decrement that occurs via bio_endio() in
1731 * end_discard().
1732 */
1733 bio_inc_remaining(bio);
1734 if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
1735 pool->process_prepared_discard(m);
1736
1737 virt_begin += len;
1738 data_begin += len;
1739 }
34fbcf62
JT
1740
1741 begin = virt_end;
104655fd
JT
1742 }
1743}
1744
34fbcf62
JT
1745static void process_discard_cell_passdown(struct thin_c *tc, struct dm_bio_prison_cell *virt_cell)
1746{
1747 struct bio *bio = virt_cell->holder;
1748 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
1749
1750 /*
1751 * The virt_cell will only get freed once the origin bio completes.
1752 * This means it will remain locked while all the individual
1753 * passdown bios are in flight.
1754 */
1755 h->cell = virt_cell;
1756 break_up_discard_bio(tc, virt_cell->key.block_begin, virt_cell->key.block_end, bio);
1757
1758 /*
1759 * We complete the bio now, knowing that the bi_remaining field
1760 * will prevent completion until the sub range discards have
1761 * completed.
1762 */
4246a0b6 1763 bio_endio(bio);
34fbcf62
JT
1764}
1765
a374bb21
JT
1766static void process_discard_bio(struct thin_c *tc, struct bio *bio)
1767{
34fbcf62
JT
1768 dm_block_t begin, end;
1769 struct dm_cell_key virt_key;
1770 struct dm_bio_prison_cell *virt_cell;
a374bb21 1771
34fbcf62
JT
1772 get_bio_block_range(tc, bio, &begin, &end);
1773 if (begin == end) {
1774 /*
1775 * The discard covers less than a block.
1776 */
4246a0b6 1777 bio_endio(bio);
a374bb21 1778 return;
34fbcf62 1779 }
a374bb21 1780
34fbcf62
JT
1781 build_key(tc->td, VIRTUAL, begin, end, &virt_key);
1782 if (bio_detain(tc->pool, &virt_key, bio, &virt_cell))
1783 /*
1784 * Potential starvation issue: We're relying on the
1785 * fs/application being well behaved, and not trying to
1786 * send IO to a region at the same time as discarding it.
1787 * If they do this persistently then it's possible this
1788 * cell will never be granted.
1789 */
1790 return;
1791
1792 tc->pool->process_discard_cell(tc, virt_cell);
a374bb21
JT
1793}
1794
991d9fa0 1795static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
44feb387 1796 struct dm_cell_key *key,
991d9fa0 1797 struct dm_thin_lookup_result *lookup_result,
a24c2569 1798 struct dm_bio_prison_cell *cell)
991d9fa0
JT
1799{
1800 int r;
1801 dm_block_t data_block;
d6fc2042 1802 struct pool *pool = tc->pool;
991d9fa0
JT
1803
1804 r = alloc_data_block(tc, &data_block);
1805 switch (r) {
1806 case 0:
2dd9c257
JT
1807 schedule_internal_copy(tc, block, lookup_result->block,
1808 data_block, cell, bio);
991d9fa0
JT
1809 break;
1810
1811 case -ENOSPC:
399caddf 1812 retry_bios_on_resume(pool, cell);
991d9fa0
JT
1813 break;
1814
1815 default:
c397741c
MS
1816 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1817 __func__, r);
d6fc2042 1818 cell_error(pool, cell);
991d9fa0
JT
1819 break;
1820 }
1821}
1822
23ca2bb6
JT
1823static void __remap_and_issue_shared_cell(void *context,
1824 struct dm_bio_prison_cell *cell)
1825{
1826 struct remap_info *info = context;
1827 struct bio *bio;
1828
1829 while ((bio = bio_list_pop(&cell->bios))) {
f73f44eb
CH
1830 if (bio_data_dir(bio) == WRITE || op_is_flush(bio->bi_opf) ||
1831 bio_op(bio) == REQ_OP_DISCARD)
23ca2bb6
JT
1832 bio_list_add(&info->defer_bios, bio);
1833 else {
bd6d1e0a 1834 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
23ca2bb6
JT
1835
1836 h->shared_read_entry = dm_deferred_entry_inc(info->tc->pool->shared_read_ds);
1837 inc_all_io_entry(info->tc->pool, bio);
1838 bio_list_add(&info->issue_bios, bio);
1839 }
1840 }
1841}
1842
1843static void remap_and_issue_shared_cell(struct thin_c *tc,
1844 struct dm_bio_prison_cell *cell,
1845 dm_block_t block)
1846{
1847 struct bio *bio;
1848 struct remap_info info;
1849
1850 info.tc = tc;
1851 bio_list_init(&info.defer_bios);
1852 bio_list_init(&info.issue_bios);
1853
1854 cell_visit_release(tc->pool, __remap_and_issue_shared_cell,
1855 &info, cell);
1856
1857 while ((bio = bio_list_pop(&info.defer_bios)))
1858 thin_defer_bio(tc, bio);
1859
1860 while ((bio = bio_list_pop(&info.issue_bios)))
1861 remap_and_issue(tc, bio, block);
1862}
1863
991d9fa0
JT
1864static void process_shared_bio(struct thin_c *tc, struct bio *bio,
1865 dm_block_t block,
23ca2bb6
JT
1866 struct dm_thin_lookup_result *lookup_result,
1867 struct dm_bio_prison_cell *virt_cell)
991d9fa0 1868{
23ca2bb6 1869 struct dm_bio_prison_cell *data_cell;
991d9fa0 1870 struct pool *pool = tc->pool;
44feb387 1871 struct dm_cell_key key;
991d9fa0
JT
1872
1873 /*
1874 * If cell is already occupied, then sharing is already in the process
1875 * of being broken so we have nothing further to do here.
1876 */
1877 build_data_key(tc->td, lookup_result->block, &key);
23ca2bb6
JT
1878 if (bio_detain(pool, &key, bio, &data_cell)) {
1879 cell_defer_no_holder(tc, virt_cell);
991d9fa0 1880 return;
23ca2bb6 1881 }
991d9fa0 1882
23ca2bb6
JT
1883 if (bio_data_dir(bio) == WRITE && bio->bi_iter.bi_size) {
1884 break_sharing(tc, bio, block, &key, lookup_result, data_cell);
1885 cell_defer_no_holder(tc, virt_cell);
1886 } else {
59c3d2c6 1887 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
991d9fa0 1888
44feb387 1889 h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
e8088073 1890 inc_all_io_entry(pool, bio);
991d9fa0 1891 remap_and_issue(tc, bio, lookup_result->block);
23ca2bb6
JT
1892
1893 remap_and_issue_shared_cell(tc, data_cell, lookup_result->block);
1894 remap_and_issue_shared_cell(tc, virt_cell, lookup_result->block);
991d9fa0
JT
1895 }
1896}
1897
1898static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
a24c2569 1899 struct dm_bio_prison_cell *cell)
991d9fa0
JT
1900{
1901 int r;
1902 dm_block_t data_block;
6beca5eb 1903 struct pool *pool = tc->pool;
991d9fa0
JT
1904
1905 /*
1906 * Remap empty bios (flushes) immediately, without provisioning.
1907 */
4f024f37 1908 if (!bio->bi_iter.bi_size) {
6beca5eb 1909 inc_all_io_entry(pool, bio);
f286ba0e 1910 cell_defer_no_holder(tc, cell);
e8088073 1911
991d9fa0
JT
1912 remap_and_issue(tc, bio, 0);
1913 return;
1914 }
1915
1916 /*
1917 * Fill read bios with zeroes and complete them immediately.
1918 */
1919 if (bio_data_dir(bio) == READ) {
1920 zero_fill_bio(bio);
f286ba0e 1921 cell_defer_no_holder(tc, cell);
4246a0b6 1922 bio_endio(bio);
991d9fa0
JT
1923 return;
1924 }
1925
1926 r = alloc_data_block(tc, &data_block);
1927 switch (r) {
1928 case 0:
2dd9c257
JT
1929 if (tc->origin_dev)
1930 schedule_external_copy(tc, block, data_block, cell, bio);
1931 else
1932 schedule_zero(tc, block, data_block, cell, bio);
991d9fa0
JT
1933 break;
1934
1935 case -ENOSPC:
399caddf 1936 retry_bios_on_resume(pool, cell);
991d9fa0
JT
1937 break;
1938
1939 default:
c397741c
MS
1940 DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
1941 __func__, r);
6beca5eb 1942 cell_error(pool, cell);
991d9fa0
JT
1943 break;
1944 }
1945}
1946
a374bb21 1947static void process_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
991d9fa0
JT
1948{
1949 int r;
6beca5eb 1950 struct pool *pool = tc->pool;
a374bb21 1951 struct bio *bio = cell->holder;
991d9fa0 1952 dm_block_t block = get_bio_block(tc, bio);
991d9fa0
JT
1953 struct dm_thin_lookup_result lookup_result;
1954
a374bb21
JT
1955 if (tc->requeue_mode) {
1956 cell_requeue(pool, cell);
991d9fa0 1957 return;
a374bb21 1958 }
991d9fa0
JT
1959
1960 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
1961 switch (r) {
1962 case 0:
23ca2bb6
JT
1963 if (lookup_result.shared)
1964 process_shared_bio(tc, bio, block, &lookup_result, cell);
1965 else {
6beca5eb 1966 inc_all_io_entry(pool, bio);
991d9fa0 1967 remap_and_issue(tc, bio, lookup_result.block);
a374bb21 1968 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
e8088073 1969 }
991d9fa0
JT
1970 break;
1971
1972 case -ENODATA:
2dd9c257 1973 if (bio_data_dir(bio) == READ && tc->origin_dev) {
6beca5eb 1974 inc_all_io_entry(pool, bio);
f286ba0e 1975 cell_defer_no_holder(tc, cell);
e8088073 1976
e5aea7b4
JT
1977 if (bio_end_sector(bio) <= tc->origin_size)
1978 remap_to_origin_and_issue(tc, bio);
1979
1980 else if (bio->bi_iter.bi_sector < tc->origin_size) {
1981 zero_fill_bio(bio);
1982 bio->bi_iter.bi_size = (tc->origin_size - bio->bi_iter.bi_sector) << SECTOR_SHIFT;
1983 remap_to_origin_and_issue(tc, bio);
1984
1985 } else {
1986 zero_fill_bio(bio);
4246a0b6 1987 bio_endio(bio);
e5aea7b4 1988 }
2dd9c257
JT
1989 } else
1990 provision_block(tc, bio, block, cell);
991d9fa0
JT
1991 break;
1992
1993 default:
c397741c
MS
1994 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
1995 __func__, r);
f286ba0e 1996 cell_defer_no_holder(tc, cell);
991d9fa0
JT
1997 bio_io_error(bio);
1998 break;
1999 }
2000}
2001
a374bb21
JT
2002static void process_bio(struct thin_c *tc, struct bio *bio)
2003{
2004 struct pool *pool = tc->pool;
2005 dm_block_t block = get_bio_block(tc, bio);
2006 struct dm_bio_prison_cell *cell;
2007 struct dm_cell_key key;
2008
2009 /*
2010 * If cell is already occupied, then the block is already
2011 * being provisioned so we have nothing further to do here.
2012 */
2013 build_virtual_key(tc->td, block, &key);
2014 if (bio_detain(pool, &key, bio, &cell))
2015 return;
2016
2017 process_cell(tc, cell);
2018}
2019
2020static void __process_bio_read_only(struct thin_c *tc, struct bio *bio,
2021 struct dm_bio_prison_cell *cell)
e49e5829
JT
2022{
2023 int r;
2024 int rw = bio_data_dir(bio);
2025 dm_block_t block = get_bio_block(tc, bio);
2026 struct dm_thin_lookup_result lookup_result;
2027
2028 r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
2029 switch (r) {
2030 case 0:
a374bb21 2031 if (lookup_result.shared && (rw == WRITE) && bio->bi_iter.bi_size) {
8c0f0e8c 2032 handle_unserviceable_bio(tc->pool, bio);
a374bb21
JT
2033 if (cell)
2034 cell_defer_no_holder(tc, cell);
2035 } else {
e8088073 2036 inc_all_io_entry(tc->pool, bio);
e49e5829 2037 remap_and_issue(tc, bio, lookup_result.block);
a374bb21
JT
2038 if (cell)
2039 inc_remap_and_issue_cell(tc, cell, lookup_result.block);
e8088073 2040 }
e49e5829
JT
2041 break;
2042
2043 case -ENODATA:
a374bb21
JT
2044 if (cell)
2045 cell_defer_no_holder(tc, cell);
e49e5829 2046 if (rw != READ) {
8c0f0e8c 2047 handle_unserviceable_bio(tc->pool, bio);
e49e5829
JT
2048 break;
2049 }
2050
2051 if (tc->origin_dev) {
e8088073 2052 inc_all_io_entry(tc->pool, bio);
e49e5829
JT
2053 remap_to_origin_and_issue(tc, bio);
2054 break;
2055 }
2056
2057 zero_fill_bio(bio);
4246a0b6 2058 bio_endio(bio);
e49e5829
JT
2059 break;
2060
2061 default:
c397741c
MS
2062 DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
2063 __func__, r);
a374bb21
JT
2064 if (cell)
2065 cell_defer_no_holder(tc, cell);
e49e5829
JT
2066 bio_io_error(bio);
2067 break;
2068 }
2069}
2070
a374bb21
JT
2071static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
2072{
2073 __process_bio_read_only(tc, bio, NULL);
2074}
2075
2076static void process_cell_read_only(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2077{
2078 __process_bio_read_only(tc, cell->holder, cell);
2079}
2080
3e1a0699
JT
2081static void process_bio_success(struct thin_c *tc, struct bio *bio)
2082{
4246a0b6 2083 bio_endio(bio);
3e1a0699
JT
2084}
2085
e49e5829
JT
2086static void process_bio_fail(struct thin_c *tc, struct bio *bio)
2087{
2088 bio_io_error(bio);
2089}
2090
a374bb21
JT
2091static void process_cell_success(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2092{
2093 cell_success(tc->pool, cell);
2094}
2095
2096static void process_cell_fail(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2097{
2098 cell_error(tc->pool, cell);
2099}
2100
ac8c3f3d
JT
2101/*
2102 * FIXME: should we also commit due to size of transaction, measured in
2103 * metadata blocks?
2104 */
905e51b3
JT
2105static int need_commit_due_to_time(struct pool *pool)
2106{
0f30af98
MS
2107 return !time_in_range(jiffies, pool->last_commit_jiffies,
2108 pool->last_commit_jiffies + COMMIT_PERIOD);
905e51b3
JT
2109}
2110
67324ea1
MS
2111#define thin_pbd(node) rb_entry((node), struct dm_thin_endio_hook, rb_node)
2112#define thin_bio(pbd) dm_bio_from_per_bio_data((pbd), sizeof(struct dm_thin_endio_hook))
2113
2114static void __thin_bio_rb_add(struct thin_c *tc, struct bio *bio)
2115{
2116 struct rb_node **rbp, *parent;
2117 struct dm_thin_endio_hook *pbd;
2118 sector_t bi_sector = bio->bi_iter.bi_sector;
2119
2120 rbp = &tc->sort_bio_list.rb_node;
2121 parent = NULL;
2122 while (*rbp) {
2123 parent = *rbp;
2124 pbd = thin_pbd(parent);
2125
2126 if (bi_sector < thin_bio(pbd)->bi_iter.bi_sector)
2127 rbp = &(*rbp)->rb_left;
2128 else
2129 rbp = &(*rbp)->rb_right;
2130 }
2131
2132 pbd = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
2133 rb_link_node(&pbd->rb_node, parent, rbp);
2134 rb_insert_color(&pbd->rb_node, &tc->sort_bio_list);
2135}
2136
2137static void __extract_sorted_bios(struct thin_c *tc)
2138{
2139 struct rb_node *node;
2140 struct dm_thin_endio_hook *pbd;
2141 struct bio *bio;
2142
2143 for (node = rb_first(&tc->sort_bio_list); node; node = rb_next(node)) {
2144 pbd = thin_pbd(node);
2145 bio = thin_bio(pbd);
2146
2147 bio_list_add(&tc->deferred_bio_list, bio);
2148 rb_erase(&pbd->rb_node, &tc->sort_bio_list);
2149 }
2150
2151 WARN_ON(!RB_EMPTY_ROOT(&tc->sort_bio_list));
2152}
2153
2154static void __sort_thin_deferred_bios(struct thin_c *tc)
2155{
2156 struct bio *bio;
2157 struct bio_list bios;
2158
2159 bio_list_init(&bios);
2160 bio_list_merge(&bios, &tc->deferred_bio_list);
2161 bio_list_init(&tc->deferred_bio_list);
2162
2163 /* Sort deferred_bio_list using rb-tree */
2164 while ((bio = bio_list_pop(&bios)))
2165 __thin_bio_rb_add(tc, bio);
2166
2167 /*
2168 * Transfer the sorted bios in sort_bio_list back to
2169 * deferred_bio_list to allow lockless submission of
2170 * all bios.
2171 */
2172 __extract_sorted_bios(tc);
2173}
2174
c140e1c4 2175static void process_thin_deferred_bios(struct thin_c *tc)
991d9fa0 2176{
c140e1c4 2177 struct pool *pool = tc->pool;
991d9fa0
JT
2178 struct bio *bio;
2179 struct bio_list bios;
67324ea1 2180 struct blk_plug plug;
86a3238c 2181 unsigned int count = 0;
991d9fa0 2182
c140e1c4 2183 if (tc->requeue_mode) {
4e4cbee9
CH
2184 error_thin_bio_list(tc, &tc->deferred_bio_list,
2185 BLK_STS_DM_REQUEUE);
c140e1c4
MS
2186 return;
2187 }
2188
991d9fa0
JT
2189 bio_list_init(&bios);
2190
8e0c9dac 2191 spin_lock_irq(&tc->lock);
67324ea1
MS
2192
2193 if (bio_list_empty(&tc->deferred_bio_list)) {
8e0c9dac 2194 spin_unlock_irq(&tc->lock);
67324ea1
MS
2195 return;
2196 }
2197
2198 __sort_thin_deferred_bios(tc);
2199
c140e1c4
MS
2200 bio_list_merge(&bios, &tc->deferred_bio_list);
2201 bio_list_init(&tc->deferred_bio_list);
67324ea1 2202
8e0c9dac 2203 spin_unlock_irq(&tc->lock);
991d9fa0 2204
67324ea1 2205 blk_start_plug(&plug);
991d9fa0 2206 while ((bio = bio_list_pop(&bios))) {
991d9fa0
JT
2207 /*
2208 * If we've got no free new_mapping structs, and processing
2209 * this bio might require one, we pause until there are some
2210 * prepared mappings to process.
2211 */
2212 if (ensure_next_mapping(pool)) {
8e0c9dac 2213 spin_lock_irq(&tc->lock);
c140e1c4
MS
2214 bio_list_add(&tc->deferred_bio_list, bio);
2215 bio_list_merge(&tc->deferred_bio_list, &bios);
8e0c9dac 2216 spin_unlock_irq(&tc->lock);
991d9fa0
JT
2217 break;
2218 }
104655fd 2219
e6047149 2220 if (bio_op(bio) == REQ_OP_DISCARD)
e49e5829 2221 pool->process_discard(tc, bio);
104655fd 2222 else
e49e5829 2223 pool->process_bio(tc, bio);
8a01a6af
JT
2224
2225 if ((count++ & 127) == 0) {
7d327fe0 2226 throttle_work_update(&pool->throttle);
8a01a6af
JT
2227 dm_pool_issue_prefetches(pool->pmd);
2228 }
e4f80303 2229 cond_resched();
991d9fa0 2230 }
67324ea1 2231 blk_finish_plug(&plug);
c140e1c4
MS
2232}
2233
ac4c3f34
JT
2234static int cmp_cells(const void *lhs, const void *rhs)
2235{
2236 struct dm_bio_prison_cell *lhs_cell = *((struct dm_bio_prison_cell **) lhs);
2237 struct dm_bio_prison_cell *rhs_cell = *((struct dm_bio_prison_cell **) rhs);
2238
2239 BUG_ON(!lhs_cell->holder);
2240 BUG_ON(!rhs_cell->holder);
2241
2242 if (lhs_cell->holder->bi_iter.bi_sector < rhs_cell->holder->bi_iter.bi_sector)
2243 return -1;
2244
2245 if (lhs_cell->holder->bi_iter.bi_sector > rhs_cell->holder->bi_iter.bi_sector)
2246 return 1;
2247
2248 return 0;
2249}
2250
86a3238c 2251static unsigned int sort_cells(struct pool *pool, struct list_head *cells)
ac4c3f34 2252{
86a3238c 2253 unsigned int count = 0;
ac4c3f34
JT
2254 struct dm_bio_prison_cell *cell, *tmp;
2255
2256 list_for_each_entry_safe(cell, tmp, cells, user_list) {
2257 if (count >= CELL_SORT_ARRAY_SIZE)
2258 break;
2259
2260 pool->cell_sort_array[count++] = cell;
2261 list_del(&cell->user_list);
2262 }
2263
2264 sort(pool->cell_sort_array, count, sizeof(cell), cmp_cells, NULL);
2265
2266 return count;
2267}
2268
a374bb21
JT
2269static void process_thin_deferred_cells(struct thin_c *tc)
2270{
2271 struct pool *pool = tc->pool;
a374bb21 2272 struct list_head cells;
ac4c3f34 2273 struct dm_bio_prison_cell *cell;
86a3238c 2274 unsigned int i, j, count;
a374bb21
JT
2275
2276 INIT_LIST_HEAD(&cells);
2277
8e0c9dac 2278 spin_lock_irq(&tc->lock);
a374bb21 2279 list_splice_init(&tc->deferred_cells, &cells);
8e0c9dac 2280 spin_unlock_irq(&tc->lock);
a374bb21
JT
2281
2282 if (list_empty(&cells))
2283 return;
2284
ac4c3f34
JT
2285 do {
2286 count = sort_cells(tc->pool, &cells);
a374bb21 2287
ac4c3f34
JT
2288 for (i = 0; i < count; i++) {
2289 cell = pool->cell_sort_array[i];
2290 BUG_ON(!cell->holder);
a374bb21 2291
ac4c3f34
JT
2292 /*
2293 * If we've got no free new_mapping structs, and processing
2294 * this bio might require one, we pause until there are some
2295 * prepared mappings to process.
2296 */
2297 if (ensure_next_mapping(pool)) {
2298 for (j = i; j < count; j++)
2299 list_add(&pool->cell_sort_array[j]->user_list, &cells);
2300
8e0c9dac 2301 spin_lock_irq(&tc->lock);
ac4c3f34 2302 list_splice(&cells, &tc->deferred_cells);
8e0c9dac 2303 spin_unlock_irq(&tc->lock);
ac4c3f34
JT
2304 return;
2305 }
2306
e6047149 2307 if (bio_op(cell->holder) == REQ_OP_DISCARD)
ac4c3f34
JT
2308 pool->process_discard_cell(tc, cell);
2309 else
2310 pool->process_cell(tc, cell);
2311 }
e4f80303 2312 cond_resched();
ac4c3f34 2313 } while (!list_empty(&cells));
a374bb21
JT
2314}
2315
b10ebd34
JT
2316static void thin_get(struct thin_c *tc);
2317static void thin_put(struct thin_c *tc);
2318
2319/*
2320 * We can't hold rcu_read_lock() around code that can block. So we
2321 * find a thin with the rcu lock held; bump a refcount; then drop
2322 * the lock.
2323 */
2324static struct thin_c *get_first_thin(struct pool *pool)
2325{
2326 struct thin_c *tc = NULL;
2327
2328 rcu_read_lock();
2329 if (!list_empty(&pool->active_thins)) {
2330 tc = list_entry_rcu(pool->active_thins.next, struct thin_c, list);
2331 thin_get(tc);
2332 }
2333 rcu_read_unlock();
2334
2335 return tc;
2336}
2337
2338static struct thin_c *get_next_thin(struct pool *pool, struct thin_c *tc)
2339{
2340 struct thin_c *old_tc = tc;
2341
2342 rcu_read_lock();
2343 list_for_each_entry_continue_rcu(tc, &pool->active_thins, list) {
2344 thin_get(tc);
2345 thin_put(old_tc);
2346 rcu_read_unlock();
2347 return tc;
2348 }
2349 thin_put(old_tc);
2350 rcu_read_unlock();
2351
2352 return NULL;
2353}
2354
c140e1c4
MS
2355static void process_deferred_bios(struct pool *pool)
2356{
c140e1c4 2357 struct bio *bio;
4ae280b4 2358 struct bio_list bios, bio_completions;
c140e1c4
MS
2359 struct thin_c *tc;
2360
b10ebd34
JT
2361 tc = get_first_thin(pool);
2362 while (tc) {
a374bb21 2363 process_thin_deferred_cells(tc);
c140e1c4 2364 process_thin_deferred_bios(tc);
b10ebd34
JT
2365 tc = get_next_thin(pool, tc);
2366 }
991d9fa0
JT
2367
2368 /*
4ae280b4
NT
2369 * If there are any deferred flush bios, we must commit the metadata
2370 * before issuing them or signaling their completion.
991d9fa0
JT
2371 */
2372 bio_list_init(&bios);
4ae280b4
NT
2373 bio_list_init(&bio_completions);
2374
8e0c9dac 2375 spin_lock_irq(&pool->lock);
991d9fa0
JT
2376 bio_list_merge(&bios, &pool->deferred_flush_bios);
2377 bio_list_init(&pool->deferred_flush_bios);
4ae280b4
NT
2378
2379 bio_list_merge(&bio_completions, &pool->deferred_flush_completions);
2380 bio_list_init(&pool->deferred_flush_completions);
8e0c9dac 2381 spin_unlock_irq(&pool->lock);
991d9fa0 2382
4ae280b4 2383 if (bio_list_empty(&bios) && bio_list_empty(&bio_completions) &&
4d1662a3 2384 !(dm_pool_changed_this_transaction(pool->pmd) && need_commit_due_to_time(pool)))
991d9fa0
JT
2385 return;
2386
020cc3b5 2387 if (commit(pool)) {
4ae280b4
NT
2388 bio_list_merge(&bios, &bio_completions);
2389
991d9fa0
JT
2390 while ((bio = bio_list_pop(&bios)))
2391 bio_io_error(bio);
2392 return;
2393 }
905e51b3 2394 pool->last_commit_jiffies = jiffies;
991d9fa0 2395
4ae280b4
NT
2396 while ((bio = bio_list_pop(&bio_completions)))
2397 bio_endio(bio);
2398
694cfe7f
NT
2399 while ((bio = bio_list_pop(&bios))) {
2400 /*
2401 * The data device was flushed as part of metadata commit,
2402 * so complete redundant flushes immediately.
2403 */
2404 if (bio->bi_opf & REQ_PREFLUSH)
2405 bio_endio(bio);
2406 else
b7f8dff0 2407 dm_submit_bio_remap(bio, NULL);
694cfe7f 2408 }
991d9fa0
JT
2409}
2410
2411static void do_worker(struct work_struct *ws)
2412{
2413 struct pool *pool = container_of(ws, struct pool, worker);
2414
7d327fe0 2415 throttle_work_start(&pool->throttle);
8a01a6af 2416 dm_pool_issue_prefetches(pool->pmd);
7d327fe0 2417 throttle_work_update(&pool->throttle);
e49e5829 2418 process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
7d327fe0 2419 throttle_work_update(&pool->throttle);
e49e5829 2420 process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
7d327fe0 2421 throttle_work_update(&pool->throttle);
2a0fbffb
JT
2422 process_prepared(pool, &pool->prepared_discards_pt2, &pool->process_prepared_discard_pt2);
2423 throttle_work_update(&pool->throttle);
991d9fa0 2424 process_deferred_bios(pool);
7d327fe0 2425 throttle_work_complete(&pool->throttle);
991d9fa0
JT
2426}
2427
905e51b3
JT
2428/*
2429 * We want to commit periodically so that not too much
2430 * unwritten data builds up.
2431 */
2432static void do_waker(struct work_struct *ws)
2433{
2434 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
0ef0b471 2435
905e51b3
JT
2436 wake_worker(pool);
2437 queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
2438}
2439
85ad643b
JT
2440/*
2441 * We're holding onto IO to allow userland time to react. After the
2442 * timeout either the pool will have been resized (and thus back in
bcc696fa 2443 * PM_WRITE mode), or we degrade to PM_OUT_OF_DATA_SPACE w/ error_if_no_space.
85ad643b
JT
2444 */
2445static void do_no_space_timeout(struct work_struct *ws)
2446{
2447 struct pool *pool = container_of(to_delayed_work(ws), struct pool,
2448 no_space_timeout);
2449
bcc696fa
MS
2450 if (get_pool_mode(pool) == PM_OUT_OF_DATA_SPACE && !pool->pf.error_if_no_space) {
2451 pool->pf.error_if_no_space = true;
f6c36758 2452 notify_of_pool_mode_change(pool);
4e4cbee9 2453 error_retry_list_with_code(pool, BLK_STS_NOSPC);
bcc696fa 2454 }
85ad643b
JT
2455}
2456
991d9fa0
JT
2457/*----------------------------------------------------------------*/
2458
e7a3e871 2459struct pool_work {
738211f7 2460 struct work_struct worker;
e7a3e871
JT
2461 struct completion complete;
2462};
2463
2464static struct pool_work *to_pool_work(struct work_struct *ws)
2465{
2466 return container_of(ws, struct pool_work, worker);
2467}
2468
2469static void pool_work_complete(struct pool_work *pw)
2470{
2471 complete(&pw->complete);
2472}
738211f7 2473
e7a3e871
JT
2474static void pool_work_wait(struct pool_work *pw, struct pool *pool,
2475 void (*fn)(struct work_struct *))
2476{
2477 INIT_WORK_ONSTACK(&pw->worker, fn);
2478 init_completion(&pw->complete);
2479 queue_work(pool->wq, &pw->worker);
2480 wait_for_completion(&pw->complete);
2481}
2482
2483/*----------------------------------------------------------------*/
2484
2485struct noflush_work {
2486 struct pool_work pw;
2487 struct thin_c *tc;
738211f7
JT
2488};
2489
e7a3e871 2490static struct noflush_work *to_noflush(struct work_struct *ws)
738211f7 2491{
e7a3e871 2492 return container_of(to_pool_work(ws), struct noflush_work, pw);
738211f7
JT
2493}
2494
2495static void do_noflush_start(struct work_struct *ws)
2496{
e7a3e871 2497 struct noflush_work *w = to_noflush(ws);
0ef0b471 2498
738211f7
JT
2499 w->tc->requeue_mode = true;
2500 requeue_io(w->tc);
e7a3e871 2501 pool_work_complete(&w->pw);
738211f7
JT
2502}
2503
2504static void do_noflush_stop(struct work_struct *ws)
2505{
e7a3e871 2506 struct noflush_work *w = to_noflush(ws);
0ef0b471 2507
738211f7 2508 w->tc->requeue_mode = false;
e7a3e871 2509 pool_work_complete(&w->pw);
738211f7
JT
2510}
2511
2512static void noflush_work(struct thin_c *tc, void (*fn)(struct work_struct *))
2513{
2514 struct noflush_work w;
2515
738211f7 2516 w.tc = tc;
e7a3e871 2517 pool_work_wait(&w.pw, tc->pool, fn);
738211f7
JT
2518}
2519
2520/*----------------------------------------------------------------*/
2521
34fbcf62
JT
2522static bool passdown_enabled(struct pool_c *pt)
2523{
2524 return pt->adjusted_pf.discard_passdown;
2525}
2526
2527static void set_discard_callbacks(struct pool *pool)
2528{
2529 struct pool_c *pt = pool->ti->private;
2530
2531 if (passdown_enabled(pt)) {
2532 pool->process_discard_cell = process_discard_cell_passdown;
2a0fbffb
JT
2533 pool->process_prepared_discard = process_prepared_discard_passdown_pt1;
2534 pool->process_prepared_discard_pt2 = process_prepared_discard_passdown_pt2;
34fbcf62
JT
2535 } else {
2536 pool->process_discard_cell = process_discard_cell_no_passdown;
2537 pool->process_prepared_discard = process_prepared_discard_no_passdown;
2538 }
2539}
2540
8b64e881 2541static void set_pool_mode(struct pool *pool, enum pool_mode new_mode)
e49e5829 2542{
cdc2b415 2543 struct pool_c *pt = pool->ti->private;
07f2b6e0
MS
2544 bool needs_check = dm_pool_metadata_needs_check(pool->pmd);
2545 enum pool_mode old_mode = get_pool_mode(pool);
6aa7de05 2546 unsigned long no_space_timeout = READ_ONCE(no_space_timeout_secs) * HZ;
07f2b6e0
MS
2547
2548 /*
2549 * Never allow the pool to transition to PM_WRITE mode if user
2550 * intervention is required to verify metadata and data consistency.
2551 */
2552 if (new_mode == PM_WRITE && needs_check) {
2553 DMERR("%s: unable to switch pool to write mode until repaired.",
2554 dm_device_name(pool->pool_md));
2555 if (old_mode != new_mode)
2556 new_mode = old_mode;
2557 else
2558 new_mode = PM_READ_ONLY;
2559 }
2560 /*
2561 * If we were in PM_FAIL mode, rollback of metadata failed. We're
2562 * not going to recover without a thin_repair. So we never let the
2563 * pool move out of the old mode.
2564 */
2565 if (old_mode == PM_FAIL)
2566 new_mode = old_mode;
e49e5829 2567
8b64e881 2568 switch (new_mode) {
e49e5829 2569 case PM_FAIL:
5383ef3a 2570 dm_pool_metadata_read_only(pool->pmd);
e49e5829
JT
2571 pool->process_bio = process_bio_fail;
2572 pool->process_discard = process_bio_fail;
a374bb21
JT
2573 pool->process_cell = process_cell_fail;
2574 pool->process_discard_cell = process_cell_fail;
e49e5829
JT
2575 pool->process_prepared_mapping = process_prepared_mapping_fail;
2576 pool->process_prepared_discard = process_prepared_discard_fail;
3e1a0699
JT
2577
2578 error_retry_list(pool);
e49e5829
JT
2579 break;
2580
3ab91828 2581 case PM_OUT_OF_METADATA_SPACE:
e49e5829 2582 case PM_READ_ONLY:
3e1a0699
JT
2583 dm_pool_metadata_read_only(pool->pmd);
2584 pool->process_bio = process_bio_read_only;
2585 pool->process_discard = process_bio_success;
a374bb21
JT
2586 pool->process_cell = process_cell_read_only;
2587 pool->process_discard_cell = process_cell_success;
3e1a0699 2588 pool->process_prepared_mapping = process_prepared_mapping_fail;
34fbcf62 2589 pool->process_prepared_discard = process_prepared_discard_success;
3e1a0699
JT
2590
2591 error_retry_list(pool);
2592 break;
2593
2594 case PM_OUT_OF_DATA_SPACE:
2595 /*
2596 * Ideally we'd never hit this state; the low water mark
2597 * would trigger userland to extend the pool before we
2598 * completely run out of data space. However, many small
2599 * IOs to unprovisioned space can consume data space at an
2600 * alarming rate. Adjust your low water mark if you're
2601 * frequently seeing this mode.
2602 */
c3667cc6 2603 pool->out_of_data_space = true;
3e1a0699 2604 pool->process_bio = process_bio_read_only;
a374bb21
JT
2605 pool->process_discard = process_discard_bio;
2606 pool->process_cell = process_cell_read_only;
3e1a0699 2607 pool->process_prepared_mapping = process_prepared_mapping;
34fbcf62 2608 set_discard_callbacks(pool);
85ad643b 2609
80c57893
MS
2610 if (!pool->pf.error_if_no_space && no_space_timeout)
2611 queue_delayed_work(pool->wq, &pool->no_space_timeout, no_space_timeout);
e49e5829
JT
2612 break;
2613
2614 case PM_WRITE:
75294442
HT
2615 if (old_mode == PM_OUT_OF_DATA_SPACE)
2616 cancel_delayed_work_sync(&pool->no_space_timeout);
c3667cc6 2617 pool->out_of_data_space = false;
172c2386 2618 pool->pf.error_if_no_space = pt->requested_pf.error_if_no_space;
9b7aaa64 2619 dm_pool_metadata_read_write(pool->pmd);
e49e5829 2620 pool->process_bio = process_bio;
a374bb21
JT
2621 pool->process_discard = process_discard_bio;
2622 pool->process_cell = process_cell;
e49e5829 2623 pool->process_prepared_mapping = process_prepared_mapping;
34fbcf62 2624 set_discard_callbacks(pool);
e49e5829
JT
2625 break;
2626 }
8b64e881
MS
2627
2628 pool->pf.mode = new_mode;
cdc2b415
MS
2629 /*
2630 * The pool mode may have changed, sync it so bind_control_target()
2631 * doesn't cause an unexpected mode transition on resume.
2632 */
2633 pt->adjusted_pf.mode = new_mode;
f6c36758
MS
2634
2635 if (old_mode != new_mode)
2636 notify_of_pool_mode_change(pool);
e49e5829
JT
2637}
2638
07f2b6e0 2639static void abort_transaction(struct pool *pool)
b5330655 2640{
07f2b6e0
MS
2641 const char *dev_name = dm_device_name(pool->pool_md);
2642
2643 DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
2644 if (dm_pool_abort_metadata(pool->pmd)) {
2645 DMERR("%s: failed to abort metadata transaction", dev_name);
2646 set_pool_mode(pool, PM_FAIL);
2647 }
2648
2649 if (dm_pool_metadata_set_needs_check(pool->pmd)) {
2650 DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
2651 set_pool_mode(pool, PM_FAIL);
2652 }
2653}
399caddf 2654
07f2b6e0
MS
2655static void metadata_operation_failed(struct pool *pool, const char *op, int r)
2656{
b5330655
JT
2657 DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
2658 dm_device_name(pool->pool_md), op, r);
2659
07f2b6e0 2660 abort_transaction(pool);
b5330655
JT
2661 set_pool_mode(pool, PM_READ_ONLY);
2662}
2663
e49e5829
JT
2664/*----------------------------------------------------------------*/
2665
991d9fa0
JT
2666/*
2667 * Mapping functions.
2668 */
2669
2670/*
2671 * Called only while mapping a thin bio to hand it over to the workqueue.
2672 */
2673static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
2674{
991d9fa0
JT
2675 struct pool *pool = tc->pool;
2676
8e0c9dac 2677 spin_lock_irq(&tc->lock);
c140e1c4 2678 bio_list_add(&tc->deferred_bio_list, bio);
8e0c9dac 2679 spin_unlock_irq(&tc->lock);
991d9fa0
JT
2680
2681 wake_worker(pool);
2682}
2683
7d327fe0
JT
2684static void thin_defer_bio_with_throttle(struct thin_c *tc, struct bio *bio)
2685{
2686 struct pool *pool = tc->pool;
2687
2688 throttle_lock(&pool->throttle);
2689 thin_defer_bio(tc, bio);
2690 throttle_unlock(&pool->throttle);
2691}
2692
a374bb21
JT
2693static void thin_defer_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
2694{
a374bb21
JT
2695 struct pool *pool = tc->pool;
2696
2697 throttle_lock(&pool->throttle);
8e0c9dac 2698 spin_lock_irq(&tc->lock);
a374bb21 2699 list_add_tail(&cell->user_list, &tc->deferred_cells);
8e0c9dac 2700 spin_unlock_irq(&tc->lock);
a374bb21
JT
2701 throttle_unlock(&pool->throttle);
2702
2703 wake_worker(pool);
2704}
2705
59c3d2c6 2706static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
eb2aa48d 2707{
59c3d2c6 2708 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
eb2aa48d
JT
2709
2710 h->tc = tc;
2711 h->shared_read_entry = NULL;
e8088073 2712 h->all_io_entry = NULL;
eb2aa48d 2713 h->overwrite_mapping = NULL;
34fbcf62 2714 h->cell = NULL;
eb2aa48d
JT
2715}
2716
991d9fa0
JT
2717/*
2718 * Non-blocking function called from the thin target's map function.
2719 */
7de3ee57 2720static int thin_bio_map(struct dm_target *ti, struct bio *bio)
991d9fa0
JT
2721{
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;
a374bb21 2727 struct dm_bio_prison_cell *virt_cell, *data_cell;
e8088073 2728 struct dm_cell_key key;
991d9fa0 2729
59c3d2c6 2730 thin_hook_bio(tc, bio);
e49e5829 2731
738211f7 2732 if (tc->requeue_mode) {
4e4cbee9 2733 bio->bi_status = BLK_STS_DM_REQUEUE;
4246a0b6 2734 bio_endio(bio);
738211f7
JT
2735 return DM_MAPIO_SUBMITTED;
2736 }
2737
e49e5829
JT
2738 if (get_pool_mode(tc->pool) == PM_FAIL) {
2739 bio_io_error(bio);
2740 return DM_MAPIO_SUBMITTED;
2741 }
2742
f73f44eb 2743 if (op_is_flush(bio->bi_opf) || bio_op(bio) == REQ_OP_DISCARD) {
7d327fe0 2744 thin_defer_bio_with_throttle(tc, bio);
991d9fa0
JT
2745 return DM_MAPIO_SUBMITTED;
2746 }
2747
c822ed96
JT
2748 /*
2749 * We must hold the virtual cell before doing the lookup, otherwise
2750 * there's a race with discard.
2751 */
2752 build_virtual_key(tc->td, block, &key);
a374bb21 2753 if (bio_detain(tc->pool, &key, bio, &virt_cell))
c822ed96
JT
2754 return DM_MAPIO_SUBMITTED;
2755
991d9fa0
JT
2756 r = dm_thin_find_block(td, block, 0, &result);
2757
2758 /*
2759 * Note that we defer readahead too.
2760 */
2761 switch (r) {
2762 case 0:
2763 if (unlikely(result.shared)) {
2764 /*
2765 * We have a race condition here between the
2766 * result.shared value returned by the lookup and
2767 * snapshot creation, which may cause new
2768 * sharing.
2769 *
2770 * To avoid this always quiesce the origin before
2771 * taking the snap. You want to do this anyway to
2772 * ensure a consistent application view
2773 * (i.e. lockfs).
2774 *
2775 * More distant ancestors are irrelevant. The
2776 * shared flag will be set in their case.
2777 */
a374bb21 2778 thin_defer_cell(tc, virt_cell);
e8088073 2779 return DM_MAPIO_SUBMITTED;
991d9fa0 2780 }
e8088073 2781
e8088073 2782 build_data_key(tc->td, result.block, &key);
a374bb21
JT
2783 if (bio_detain(tc->pool, &key, bio, &data_cell)) {
2784 cell_defer_no_holder(tc, virt_cell);
e8088073
JT
2785 return DM_MAPIO_SUBMITTED;
2786 }
2787
2788 inc_all_io_entry(tc->pool, bio);
a374bb21
JT
2789 cell_defer_no_holder(tc, data_cell);
2790 cell_defer_no_holder(tc, virt_cell);
e8088073
JT
2791
2792 remap(tc, bio, result.block);
2793 return DM_MAPIO_REMAPPED;
991d9fa0
JT
2794
2795 case -ENODATA:
e49e5829 2796 case -EWOULDBLOCK:
a374bb21 2797 thin_defer_cell(tc, virt_cell);
2aab3850 2798 return DM_MAPIO_SUBMITTED;
e49e5829
JT
2799
2800 default:
2801 /*
2802 * Must always call bio_io_error on failure.
2803 * dm_thin_find_block can fail with -EINVAL if the
2804 * pool is switched to fail-io mode.
2805 */
2806 bio_io_error(bio);
a374bb21 2807 cell_defer_no_holder(tc, virt_cell);
2aab3850 2808 return DM_MAPIO_SUBMITTED;
991d9fa0 2809 }
991d9fa0
JT
2810}
2811
c140e1c4 2812static void requeue_bios(struct pool *pool)
991d9fa0 2813{
c140e1c4
MS
2814 struct thin_c *tc;
2815
2816 rcu_read_lock();
2817 list_for_each_entry_rcu(tc, &pool->active_thins, list) {
8e0c9dac 2818 spin_lock_irq(&tc->lock);
c140e1c4
MS
2819 bio_list_merge(&tc->deferred_bio_list, &tc->retry_on_resume_list);
2820 bio_list_init(&tc->retry_on_resume_list);
8e0c9dac 2821 spin_unlock_irq(&tc->lock);
c140e1c4
MS
2822 }
2823 rcu_read_unlock();
991d9fa0
JT
2824}
2825
a4a82ce3
HM
2826/*
2827 *--------------------------------------------------------------
991d9fa0 2828 * Binding of control targets to a pool object
a4a82ce3
HM
2829 *--------------------------------------------------------------
2830 */
58051b94
JT
2831static bool is_factor(sector_t block_size, uint32_t n)
2832{
2833 return !sector_div(block_size, n);
2834}
2835
9bc142dd
MS
2836/*
2837 * If discard_passdown was enabled verify that the data device
0424caa1 2838 * supports discards. Disable discard_passdown if not.
9bc142dd 2839 */
0424caa1 2840static void disable_passdown_if_not_supported(struct pool_c *pt)
9bc142dd 2841{
0424caa1
MS
2842 struct pool *pool = pt->pool;
2843 struct block_device *data_bdev = pt->data_dev->bdev;
2844 struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
0424caa1 2845 const char *reason = NULL;
9bc142dd 2846
0424caa1 2847 if (!pt->adjusted_pf.discard_passdown)
9bc142dd
MS
2848 return;
2849
70200574 2850 if (!bdev_max_discard_sectors(pt->data_dev->bdev))
0424caa1
MS
2851 reason = "discard unsupported";
2852
2853 else if (data_limits->max_discard_sectors < pool->sectors_per_block)
2854 reason = "max discard sectors smaller than a block";
9bc142dd 2855
0424caa1 2856 if (reason) {
385411ff 2857 DMWARN("Data device (%pg) %s: Disabling discard passdown.", data_bdev, reason);
0424caa1
MS
2858 pt->adjusted_pf.discard_passdown = false;
2859 }
9bc142dd
MS
2860}
2861
991d9fa0
JT
2862static int bind_control_target(struct pool *pool, struct dm_target *ti)
2863{
2864 struct pool_c *pt = ti->private;
2865
e49e5829 2866 /*
9b7aaa64 2867 * We want to make sure that a pool in PM_FAIL mode is never upgraded.
e49e5829 2868 */
07f2b6e0 2869 enum pool_mode old_mode = get_pool_mode(pool);
0424caa1 2870 enum pool_mode new_mode = pt->adjusted_pf.mode;
e49e5829 2871
8b64e881
MS
2872 /*
2873 * Don't change the pool's mode until set_pool_mode() below.
2874 * Otherwise the pool's process_* function pointers may
2875 * not match the desired pool mode.
2876 */
2877 pt->adjusted_pf.mode = old_mode;
2878
2879 pool->ti = ti;
2880 pool->pf = pt->adjusted_pf;
2881 pool->low_water_blocks = pt->low_water_blocks;
2882
9bc142dd 2883 set_pool_mode(pool, new_mode);
f402693d 2884
991d9fa0
JT
2885 return 0;
2886}
2887
2888static void unbind_control_target(struct pool *pool, struct dm_target *ti)
2889{
2890 if (pool->ti == ti)
2891 pool->ti = NULL;
2892}
2893
a4a82ce3
HM
2894/*
2895 *--------------------------------------------------------------
991d9fa0 2896 * Pool creation
a4a82ce3
HM
2897 *--------------------------------------------------------------
2898 */
67e2e2b2
JT
2899/* Initialize pool features. */
2900static void pool_features_init(struct pool_features *pf)
2901{
e49e5829 2902 pf->mode = PM_WRITE;
9bc142dd
MS
2903 pf->zero_new_blocks = true;
2904 pf->discard_enabled = true;
2905 pf->discard_passdown = true;
787a996c 2906 pf->error_if_no_space = false;
67e2e2b2
JT
2907}
2908
991d9fa0
JT
2909static void __pool_destroy(struct pool *pool)
2910{
2911 __pool_table_remove(pool);
2912
a822c83e 2913 vfree(pool->cell_sort_array);
991d9fa0
JT
2914 if (dm_pool_metadata_close(pool->pmd) < 0)
2915 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
2916
44feb387 2917 dm_bio_prison_destroy(pool->prison);
991d9fa0
JT
2918 dm_kcopyd_client_destroy(pool->copier);
2919
88430ebc
LM
2920 cancel_delayed_work_sync(&pool->waker);
2921 cancel_delayed_work_sync(&pool->no_space_timeout);
991d9fa0
JT
2922 if (pool->wq)
2923 destroy_workqueue(pool->wq);
2924
2925 if (pool->next_mapping)
6f1c819c
KO
2926 mempool_free(pool->next_mapping, &pool->mapping_pool);
2927 mempool_exit(&pool->mapping_pool);
44feb387
MS
2928 dm_deferred_set_destroy(pool->shared_read_ds);
2929 dm_deferred_set_destroy(pool->all_io_ds);
991d9fa0
JT
2930 kfree(pool);
2931}
2932
a24c2569 2933static struct kmem_cache *_new_mapping_cache;
a24c2569 2934
991d9fa0
JT
2935static struct pool *pool_create(struct mapped_device *pool_md,
2936 struct block_device *metadata_dev,
873937e7 2937 struct block_device *data_dev,
e49e5829
JT
2938 unsigned long block_size,
2939 int read_only, char **error)
991d9fa0
JT
2940{
2941 int r;
2942 void *err_p;
2943 struct pool *pool;
2944 struct dm_pool_metadata *pmd;
e49e5829 2945 bool format_device = read_only ? false : true;
991d9fa0 2946
e49e5829 2947 pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
991d9fa0
JT
2948 if (IS_ERR(pmd)) {
2949 *error = "Error creating metadata object";
2950 return (struct pool *)pmd;
2951 }
2952
d3775354 2953 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
991d9fa0
JT
2954 if (!pool) {
2955 *error = "Error allocating memory for pool";
2956 err_p = ERR_PTR(-ENOMEM);
2957 goto bad_pool;
2958 }
2959
2960 pool->pmd = pmd;
2961 pool->sectors_per_block = block_size;
f9a8e0cd
MP
2962 if (block_size & (block_size - 1))
2963 pool->sectors_per_block_shift = -1;
2964 else
2965 pool->sectors_per_block_shift = __ffs(block_size);
991d9fa0 2966 pool->low_water_blocks = 0;
67e2e2b2 2967 pool_features_init(&pool->pf);
a195db2d 2968 pool->prison = dm_bio_prison_create();
991d9fa0
JT
2969 if (!pool->prison) {
2970 *error = "Error creating pool's bio prison";
2971 err_p = ERR_PTR(-ENOMEM);
2972 goto bad_prison;
2973 }
2974
df5d2e90 2975 pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
991d9fa0
JT
2976 if (IS_ERR(pool->copier)) {
2977 r = PTR_ERR(pool->copier);
2978 *error = "Error creating pool's kcopyd client";
2979 err_p = ERR_PTR(r);
2980 goto bad_kcopyd_client;
2981 }
2982
2983 /*
2984 * Create singlethreaded workqueue that will service all devices
2985 * that use this metadata.
2986 */
2987 pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
2988 if (!pool->wq) {
2989 *error = "Error creating pool's workqueue";
2990 err_p = ERR_PTR(-ENOMEM);
2991 goto bad_wq;
2992 }
2993
7d327fe0 2994 throttle_init(&pool->throttle);
991d9fa0 2995 INIT_WORK(&pool->worker, do_worker);
905e51b3 2996 INIT_DELAYED_WORK(&pool->waker, do_waker);
85ad643b 2997 INIT_DELAYED_WORK(&pool->no_space_timeout, do_no_space_timeout);
991d9fa0 2998 spin_lock_init(&pool->lock);
991d9fa0 2999 bio_list_init(&pool->deferred_flush_bios);
4ae280b4 3000 bio_list_init(&pool->deferred_flush_completions);
991d9fa0 3001 INIT_LIST_HEAD(&pool->prepared_mappings);
104655fd 3002 INIT_LIST_HEAD(&pool->prepared_discards);
2a0fbffb 3003 INIT_LIST_HEAD(&pool->prepared_discards_pt2);
c140e1c4 3004 INIT_LIST_HEAD(&pool->active_thins);
88a6621b 3005 pool->low_water_triggered = false;
80e96c54 3006 pool->suspended = true;
c3667cc6 3007 pool->out_of_data_space = false;
44feb387
MS
3008
3009 pool->shared_read_ds = dm_deferred_set_create();
3010 if (!pool->shared_read_ds) {
3011 *error = "Error creating pool's shared read deferred set";
3012 err_p = ERR_PTR(-ENOMEM);
3013 goto bad_shared_read_ds;
3014 }
3015
3016 pool->all_io_ds = dm_deferred_set_create();
3017 if (!pool->all_io_ds) {
3018 *error = "Error creating pool's all io deferred set";
3019 err_p = ERR_PTR(-ENOMEM);
3020 goto bad_all_io_ds;
3021 }
991d9fa0
JT
3022
3023 pool->next_mapping = NULL;
6f1c819c
KO
3024 r = mempool_init_slab_pool(&pool->mapping_pool, MAPPING_POOL_SIZE,
3025 _new_mapping_cache);
3026 if (r) {
991d9fa0 3027 *error = "Error creating pool's mapping mempool";
6f1c819c 3028 err_p = ERR_PTR(r);
991d9fa0
JT
3029 goto bad_mapping_pool;
3030 }
3031
42bc47b3
KC
3032 pool->cell_sort_array =
3033 vmalloc(array_size(CELL_SORT_ARRAY_SIZE,
3034 sizeof(*pool->cell_sort_array)));
a822c83e
JT
3035 if (!pool->cell_sort_array) {
3036 *error = "Error allocating cell sort array";
3037 err_p = ERR_PTR(-ENOMEM);
3038 goto bad_sort_array;
3039 }
3040
991d9fa0 3041 pool->ref_count = 1;
905e51b3 3042 pool->last_commit_jiffies = jiffies;
991d9fa0
JT
3043 pool->pool_md = pool_md;
3044 pool->md_dev = metadata_dev;
873937e7 3045 pool->data_dev = data_dev;
991d9fa0
JT
3046 __pool_table_insert(pool);
3047
3048 return pool;
3049
a822c83e 3050bad_sort_array:
6f1c819c 3051 mempool_exit(&pool->mapping_pool);
991d9fa0 3052bad_mapping_pool:
44feb387
MS
3053 dm_deferred_set_destroy(pool->all_io_ds);
3054bad_all_io_ds:
3055 dm_deferred_set_destroy(pool->shared_read_ds);
3056bad_shared_read_ds:
991d9fa0
JT
3057 destroy_workqueue(pool->wq);
3058bad_wq:
3059 dm_kcopyd_client_destroy(pool->copier);
3060bad_kcopyd_client:
44feb387 3061 dm_bio_prison_destroy(pool->prison);
991d9fa0
JT
3062bad_prison:
3063 kfree(pool);
3064bad_pool:
3065 if (dm_pool_metadata_close(pmd))
3066 DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
3067
3068 return err_p;
3069}
3070
3071static void __pool_inc(struct pool *pool)
3072{
3073 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
3074 pool->ref_count++;
3075}
3076
3077static void __pool_dec(struct pool *pool)
3078{
3079 BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
3080 BUG_ON(!pool->ref_count);
3081 if (!--pool->ref_count)
3082 __pool_destroy(pool);
3083}
3084
3085static struct pool *__pool_find(struct mapped_device *pool_md,
3086 struct block_device *metadata_dev,
873937e7 3087 struct block_device *data_dev,
e49e5829
JT
3088 unsigned long block_size, int read_only,
3089 char **error, int *created)
991d9fa0
JT
3090{
3091 struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
3092
3093 if (pool) {
f09996c9
MS
3094 if (pool->pool_md != pool_md) {
3095 *error = "metadata device already in use by a pool";
991d9fa0 3096 return ERR_PTR(-EBUSY);
f09996c9 3097 }
873937e7
MP
3098 if (pool->data_dev != data_dev) {
3099 *error = "data device already in use by a pool";
3100 return ERR_PTR(-EBUSY);
3101 }
991d9fa0
JT
3102 __pool_inc(pool);
3103
3104 } else {
3105 pool = __pool_table_lookup(pool_md);
3106 if (pool) {
873937e7 3107 if (pool->md_dev != metadata_dev || pool->data_dev != data_dev) {
f09996c9 3108 *error = "different pool cannot replace a pool";
991d9fa0 3109 return ERR_PTR(-EINVAL);
f09996c9 3110 }
991d9fa0
JT
3111 __pool_inc(pool);
3112
67e2e2b2 3113 } else {
873937e7 3114 pool = pool_create(pool_md, metadata_dev, data_dev, block_size, read_only, error);
67e2e2b2
JT
3115 *created = 1;
3116 }
991d9fa0
JT
3117 }
3118
3119 return pool;
3120}
3121
a4a82ce3
HM
3122/*
3123 *--------------------------------------------------------------
991d9fa0 3124 * Pool target methods
a4a82ce3
HM
3125 *--------------------------------------------------------------
3126 */
991d9fa0
JT
3127static void pool_dtr(struct dm_target *ti)
3128{
3129 struct pool_c *pt = ti->private;
3130
3131 mutex_lock(&dm_thin_pool_table.mutex);
3132
3133 unbind_control_target(pt->pool, ti);
3134 __pool_dec(pt->pool);
3135 dm_put_device(ti, pt->metadata_dev);
3136 dm_put_device(ti, pt->data_dev);
3137 kfree(pt);
3138
3139 mutex_unlock(&dm_thin_pool_table.mutex);
3140}
3141
991d9fa0
JT
3142static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
3143 struct dm_target *ti)
3144{
3145 int r;
86a3238c 3146 unsigned int argc;
991d9fa0
JT
3147 const char *arg_name;
3148
5916a22b 3149 static const struct dm_arg _args[] = {
74aa45c3 3150 {0, 4, "Invalid number of pool feature arguments"},
991d9fa0
JT
3151 };
3152
3153 /*
3154 * No feature arguments supplied.
3155 */
3156 if (!as->argc)
3157 return 0;
3158
3159 r = dm_read_arg_group(_args, as, &argc, &ti->error);
3160 if (r)
3161 return -EINVAL;
3162
3163 while (argc && !r) {
3164 arg_name = dm_shift_arg(as);
3165 argc--;
3166
e49e5829 3167 if (!strcasecmp(arg_name, "skip_block_zeroing"))
9bc142dd 3168 pf->zero_new_blocks = false;
e49e5829
JT
3169
3170 else if (!strcasecmp(arg_name, "ignore_discard"))
9bc142dd 3171 pf->discard_enabled = false;
e49e5829
JT
3172
3173 else if (!strcasecmp(arg_name, "no_discard_passdown"))
9bc142dd 3174 pf->discard_passdown = false;
991d9fa0 3175
e49e5829
JT
3176 else if (!strcasecmp(arg_name, "read_only"))
3177 pf->mode = PM_READ_ONLY;
3178
787a996c
MS
3179 else if (!strcasecmp(arg_name, "error_if_no_space"))
3180 pf->error_if_no_space = true;
3181
e49e5829
JT
3182 else {
3183 ti->error = "Unrecognised pool feature requested";
3184 r = -EINVAL;
3185 break;
3186 }
991d9fa0
JT
3187 }
3188
3189 return r;
3190}
3191
ac8c3f3d
JT
3192static void metadata_low_callback(void *context)
3193{
3194 struct pool *pool = context;
3195
3196 DMWARN("%s: reached low water mark for metadata device: sending event.",
3197 dm_device_name(pool->pool_md));
3198
3199 dm_table_event(pool->ti->table);
3200}
3201
694cfe7f
NT
3202/*
3203 * We need to flush the data device **before** committing the metadata.
3204 *
3205 * This ensures that the data blocks of any newly inserted mappings are
3206 * properly written to non-volatile storage and won't be lost in case of a
3207 * crash.
3208 *
3209 * Failure to do so can result in data corruption in the case of internal or
3210 * external snapshots and in the case of newly provisioned blocks, when block
3211 * zeroing is enabled.
3212 */
3213static int metadata_pre_commit_callback(void *context)
3214{
f06c03d1 3215 struct pool *pool = context;
694cfe7f 3216
28d7d128 3217 return blkdev_issue_flush(pool->data_dev);
694cfe7f
NT
3218}
3219
7d48935e
MS
3220static sector_t get_dev_size(struct block_device *bdev)
3221{
6dcbb52c 3222 return bdev_nr_sectors(bdev);
7d48935e
MS
3223}
3224
3225static void warn_if_metadata_device_too_big(struct block_device *bdev)
b17446df 3226{
7d48935e 3227 sector_t metadata_dev_size = get_dev_size(bdev);
b17446df 3228
7d48935e 3229 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING)
385411ff
CH
3230 DMWARN("Metadata device %pg is larger than %u sectors: excess space will not be used.",
3231 bdev, THIN_METADATA_MAX_SECTORS);
7d48935e
MS
3232}
3233
3234static sector_t get_metadata_dev_size(struct block_device *bdev)
3235{
3236 sector_t metadata_dev_size = get_dev_size(bdev);
3237
3238 if (metadata_dev_size > THIN_METADATA_MAX_SECTORS)
3239 metadata_dev_size = THIN_METADATA_MAX_SECTORS;
b17446df
JT
3240
3241 return metadata_dev_size;
3242}
3243
24347e95
JT
3244static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
3245{
3246 sector_t metadata_dev_size = get_metadata_dev_size(bdev);
3247
7d48935e 3248 sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE);
24347e95
JT
3249
3250 return metadata_dev_size;
3251}
3252
ac8c3f3d
JT
3253/*
3254 * When a metadata threshold is crossed a dm event is triggered, and
3255 * userland should respond by growing the metadata device. We could let
3256 * userland set the threshold, like we do with the data threshold, but I'm
3257 * not sure they know enough to do this well.
3258 */
3259static dm_block_t calc_metadata_threshold(struct pool_c *pt)
3260{
3261 /*
3262 * 4M is ample for all ops with the possible exception of thin
3263 * device deletion which is harmless if it fails (just retry the
3264 * delete after you've grown the device).
3265 */
3266 dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
0ef0b471 3267
ac8c3f3d
JT
3268 return min((dm_block_t)1024ULL /* 4M */, quarter);
3269}
3270
991d9fa0
JT
3271/*
3272 * thin-pool <metadata dev> <data dev>
3273 * <data block size (sectors)>
3274 * <low water mark (blocks)>
3275 * [<#feature args> [<arg>]*]
3276 *
3277 * Optional feature arguments are:
3278 * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
67e2e2b2
JT
3279 * ignore_discard: disable discard
3280 * no_discard_passdown: don't pass discards down to the data device
787a996c
MS
3281 * read_only: Don't allow any changes to be made to the pool metadata.
3282 * error_if_no_space: error IOs, instead of queueing, if no space.
991d9fa0 3283 */
86a3238c 3284static int pool_ctr(struct dm_target *ti, unsigned int argc, char **argv)
991d9fa0 3285{
67e2e2b2 3286 int r, pool_created = 0;
991d9fa0
JT
3287 struct pool_c *pt;
3288 struct pool *pool;
3289 struct pool_features pf;
3290 struct dm_arg_set as;
3291 struct dm_dev *data_dev;
3292 unsigned long block_size;
3293 dm_block_t low_water_blocks;
3294 struct dm_dev *metadata_dev;
5d0db96d 3295 fmode_t metadata_mode;
991d9fa0
JT
3296
3297 /*
3298 * FIXME Remove validation from scope of lock.
3299 */
3300 mutex_lock(&dm_thin_pool_table.mutex);
3301
3302 if (argc < 4) {
3303 ti->error = "Invalid argument count";
3304 r = -EINVAL;
3305 goto out_unlock;
3306 }
5d0db96d 3307
991d9fa0
JT
3308 as.argc = argc;
3309 as.argv = argv;
3310
70de2cbd
JCXF
3311 /* make sure metadata and data are different devices */
3312 if (!strcmp(argv[0], argv[1])) {
3313 ti->error = "Error setting metadata or data device";
3314 r = -EINVAL;
3315 goto out_unlock;
3316 }
3317
5d0db96d
JT
3318 /*
3319 * Set default pool features.
3320 */
3321 pool_features_init(&pf);
3322
3323 dm_consume_args(&as, 4);
3324 r = parse_pool_features(&as, &pf, ti);
3325 if (r)
3326 goto out_unlock;
3327
3328 metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
3329 r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
991d9fa0
JT
3330 if (r) {
3331 ti->error = "Error opening metadata block device";
3332 goto out_unlock;
3333 }
7d48935e 3334 warn_if_metadata_device_too_big(metadata_dev->bdev);
991d9fa0
JT
3335
3336 r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
3337 if (r) {
3338 ti->error = "Error getting data device";
3339 goto out_metadata;
3340 }
3341
3342 if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
3343 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
3344 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
55f2b8bd 3345 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
991d9fa0
JT
3346 ti->error = "Invalid block size";
3347 r = -EINVAL;
3348 goto out;
3349 }
3350
3351 if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
3352 ti->error = "Invalid low water mark";
3353 r = -EINVAL;
3354 goto out;
3355 }
3356
991d9fa0
JT
3357 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
3358 if (!pt) {
3359 r = -ENOMEM;
3360 goto out;
3361 }
3362
873937e7 3363 pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev, data_dev->bdev,
e49e5829 3364 block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
991d9fa0
JT
3365 if (IS_ERR(pool)) {
3366 r = PTR_ERR(pool);
3367 goto out_free_pt;
3368 }
3369
67e2e2b2
JT
3370 /*
3371 * 'pool_created' reflects whether this is the first table load.
3372 * Top level discard support is not allowed to be changed after
3373 * initial load. This would require a pool reload to trigger thin
3374 * device changes.
3375 */
3376 if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
3377 ti->error = "Discard support cannot be disabled once enabled";
3378 r = -EINVAL;
3379 goto out_flags_changed;
3380 }
3381
991d9fa0
JT
3382 pt->pool = pool;
3383 pt->ti = ti;
3384 pt->metadata_dev = metadata_dev;
3385 pt->data_dev = data_dev;
3386 pt->low_water_blocks = low_water_blocks;
0424caa1 3387 pt->adjusted_pf = pt->requested_pf = pf;
55a62eef 3388 ti->num_flush_bios = 1;
9bbf5fee 3389 ti->limit_swap_bios = true;
9bc142dd 3390
67e2e2b2
JT
3391 /*
3392 * Only need to enable discards if the pool should pass
3393 * them down to the data device. The thin device's discard
3394 * processing will cause mappings to be removed from the btree.
3395 */
3396 if (pf.discard_enabled && pf.discard_passdown) {
55a62eef 3397 ti->num_discard_bios = 1;
67e2e2b2
JT
3398 /*
3399 * Setting 'discards_supported' circumvents the normal
3400 * stacking of discard limits (this keeps the pool and
3401 * thin devices' discard limits consistent).
3402 */
0ac55489 3403 ti->discards_supported = true;
e2dd8aca 3404 ti->max_discard_granularity = true;
67e2e2b2 3405 }
991d9fa0
JT
3406 ti->private = pt;
3407
ac8c3f3d
JT
3408 r = dm_pool_register_metadata_threshold(pt->pool->pmd,
3409 calc_metadata_threshold(pt),
3410 metadata_low_callback,
3411 pool);
3534e5a5
LM
3412 if (r) {
3413 ti->error = "Error registering metadata threshold";
ba30670f 3414 goto out_flags_changed;
3534e5a5 3415 }
ac8c3f3d 3416
f06c03d1
MP
3417 dm_pool_register_pre_commit_callback(pool->pmd,
3418 metadata_pre_commit_callback, pool);
3419
991d9fa0
JT
3420 mutex_unlock(&dm_thin_pool_table.mutex);
3421
3422 return 0;
3423
67e2e2b2
JT
3424out_flags_changed:
3425 __pool_dec(pool);
991d9fa0
JT
3426out_free_pt:
3427 kfree(pt);
3428out:
3429 dm_put_device(ti, data_dev);
3430out_metadata:
3431 dm_put_device(ti, metadata_dev);
3432out_unlock:
3433 mutex_unlock(&dm_thin_pool_table.mutex);
3434
3435 return r;
3436}
3437
7de3ee57 3438static int pool_map(struct dm_target *ti, struct bio *bio)
991d9fa0
JT
3439{
3440 int r;
3441 struct pool_c *pt = ti->private;
3442 struct pool *pool = pt->pool;
991d9fa0
JT
3443
3444 /*
3445 * As this is a singleton target, ti->begin is always zero.
3446 */
8e0c9dac 3447 spin_lock_irq(&pool->lock);
74d46992 3448 bio_set_dev(bio, pt->data_dev->bdev);
991d9fa0 3449 r = DM_MAPIO_REMAPPED;
8e0c9dac 3450 spin_unlock_irq(&pool->lock);
991d9fa0
JT
3451
3452 return r;
3453}
3454
b17446df 3455static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
991d9fa0
JT
3456{
3457 int r;
3458 struct pool_c *pt = ti->private;
3459 struct pool *pool = pt->pool;
55f2b8bd
MS
3460 sector_t data_size = ti->len;
3461 dm_block_t sb_data_size;
991d9fa0 3462
b17446df 3463 *need_commit = false;
991d9fa0 3464
55f2b8bd
MS
3465 (void) sector_div(data_size, pool->sectors_per_block);
3466
991d9fa0
JT
3467 r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
3468 if (r) {
4fa5971a
MS
3469 DMERR("%s: failed to retrieve data device size",
3470 dm_device_name(pool->pool_md));
991d9fa0
JT
3471 return r;
3472 }
3473
3474 if (data_size < sb_data_size) {
4fa5971a
MS
3475 DMERR("%s: pool target (%llu blocks) too small: expected %llu",
3476 dm_device_name(pool->pool_md),
55f2b8bd 3477 (unsigned long long)data_size, sb_data_size);
991d9fa0
JT
3478 return -EINVAL;
3479
3480 } else if (data_size > sb_data_size) {
07f2b6e0
MS
3481 if (dm_pool_metadata_needs_check(pool->pmd)) {
3482 DMERR("%s: unable to grow the data device until repaired.",
3483 dm_device_name(pool->pool_md));
3484 return 0;
3485 }
3486
6f7f51d4
MS
3487 if (sb_data_size)
3488 DMINFO("%s: growing the data device from %llu to %llu blocks",
3489 dm_device_name(pool->pool_md),
3490 sb_data_size, (unsigned long long)data_size);
991d9fa0
JT
3491 r = dm_pool_resize_data_dev(pool->pmd, data_size);
3492 if (r) {
b5330655 3493 metadata_operation_failed(pool, "dm_pool_resize_data_dev", r);
991d9fa0
JT
3494 return r;
3495 }
3496
b17446df 3497 *need_commit = true;
991d9fa0
JT
3498 }
3499
3500 return 0;
3501}
3502
24347e95
JT
3503static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
3504{
3505 int r;
3506 struct pool_c *pt = ti->private;
3507 struct pool *pool = pt->pool;
3508 dm_block_t metadata_dev_size, sb_metadata_dev_size;
3509
3510 *need_commit = false;
3511
610bba8b 3512 metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
24347e95
JT
3513
3514 r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
3515 if (r) {
4fa5971a
MS
3516 DMERR("%s: failed to retrieve metadata device size",
3517 dm_device_name(pool->pool_md));
24347e95
JT
3518 return r;
3519 }
3520
3521 if (metadata_dev_size < sb_metadata_dev_size) {
4fa5971a
MS
3522 DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
3523 dm_device_name(pool->pool_md),
24347e95
JT
3524 metadata_dev_size, sb_metadata_dev_size);
3525 return -EINVAL;
3526
3527 } else if (metadata_dev_size > sb_metadata_dev_size) {
07f2b6e0
MS
3528 if (dm_pool_metadata_needs_check(pool->pmd)) {
3529 DMERR("%s: unable to grow the metadata device until repaired.",
3530 dm_device_name(pool->pool_md));
3531 return 0;
3532 }
3533
7d48935e 3534 warn_if_metadata_device_too_big(pool->md_dev);
6f7f51d4
MS
3535 DMINFO("%s: growing the metadata device from %llu to %llu blocks",
3536 dm_device_name(pool->pool_md),
3537 sb_metadata_dev_size, metadata_dev_size);
3ab91828
JT
3538
3539 if (get_pool_mode(pool) == PM_OUT_OF_METADATA_SPACE)
3540 set_pool_mode(pool, PM_WRITE);
3541
24347e95
JT
3542 r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
3543 if (r) {
b5330655 3544 metadata_operation_failed(pool, "dm_pool_resize_metadata_dev", r);
24347e95
JT
3545 return r;
3546 }
3547
3548 *need_commit = true;
3549 }
3550
3551 return 0;
3552}
3553
b17446df
JT
3554/*
3555 * Retrieves the number of blocks of the data device from
3556 * the superblock and compares it to the actual device size,
3557 * thus resizing the data device in case it has grown.
3558 *
3559 * This both copes with opening preallocated data devices in the ctr
3560 * being followed by a resume
3561 * -and-
3562 * calling the resume method individually after userspace has
3563 * grown the data device in reaction to a table event.
3564 */
3565static int pool_preresume(struct dm_target *ti)
3566{
3567 int r;
24347e95 3568 bool need_commit1, need_commit2;
b17446df
JT
3569 struct pool_c *pt = ti->private;
3570 struct pool *pool = pt->pool;
3571
3572 /*
3573 * Take control of the pool object.
3574 */
3575 r = bind_control_target(pool, ti);
3576 if (r)
19eb1650 3577 goto out;
b17446df
JT
3578
3579 r = maybe_resize_data_dev(ti, &need_commit1);
3580 if (r)
19eb1650 3581 goto out;
b17446df 3582
24347e95
JT
3583 r = maybe_resize_metadata_dev(ti, &need_commit2);
3584 if (r)
19eb1650 3585 goto out;
24347e95
JT
3586
3587 if (need_commit1 || need_commit2)
020cc3b5 3588 (void) commit(pool);
19eb1650
LM
3589out:
3590 /*
3591 * When a thin-pool is PM_FAIL, it cannot be rebuilt if
3592 * bio is in deferred list. Therefore need to return 0
3593 * to allow pool_resume() to flush IO.
3594 */
3595 if (r && get_pool_mode(pool) == PM_FAIL)
3596 r = 0;
b17446df 3597
19eb1650 3598 return r;
b17446df
JT
3599}
3600
583024d2
MS
3601static void pool_suspend_active_thins(struct pool *pool)
3602{
3603 struct thin_c *tc;
3604
3605 /* Suspend all active thin devices */
3606 tc = get_first_thin(pool);
3607 while (tc) {
3608 dm_internal_suspend_noflush(tc->thin_md);
3609 tc = get_next_thin(pool, tc);
3610 }
3611}
3612
3613static void pool_resume_active_thins(struct pool *pool)
3614{
3615 struct thin_c *tc;
3616
3617 /* Resume all active thin devices */
3618 tc = get_first_thin(pool);
3619 while (tc) {
3620 dm_internal_resume(tc->thin_md);
3621 tc = get_next_thin(pool, tc);
3622 }
3623}
3624
991d9fa0
JT
3625static void pool_resume(struct dm_target *ti)
3626{
3627 struct pool_c *pt = ti->private;
3628 struct pool *pool = pt->pool;
991d9fa0 3629
583024d2
MS
3630 /*
3631 * Must requeue active_thins' bios and then resume
3632 * active_thins _before_ clearing 'suspend' flag.
3633 */
3634 requeue_bios(pool);
3635 pool_resume_active_thins(pool);
3636
8e0c9dac 3637 spin_lock_irq(&pool->lock);
88a6621b 3638 pool->low_water_triggered = false;
80e96c54 3639 pool->suspended = false;
8e0c9dac 3640 spin_unlock_irq(&pool->lock);
80e96c54 3641
905e51b3 3642 do_waker(&pool->waker.work);
991d9fa0
JT
3643}
3644
80e96c54
MS
3645static void pool_presuspend(struct dm_target *ti)
3646{
3647 struct pool_c *pt = ti->private;
3648 struct pool *pool = pt->pool;
80e96c54 3649
8e0c9dac 3650 spin_lock_irq(&pool->lock);
80e96c54 3651 pool->suspended = true;
8e0c9dac 3652 spin_unlock_irq(&pool->lock);
583024d2
MS
3653
3654 pool_suspend_active_thins(pool);
80e96c54
MS
3655}
3656
3657static void pool_presuspend_undo(struct dm_target *ti)
3658{
3659 struct pool_c *pt = ti->private;
3660 struct pool *pool = pt->pool;
80e96c54 3661
583024d2
MS
3662 pool_resume_active_thins(pool);
3663
8e0c9dac 3664 spin_lock_irq(&pool->lock);
80e96c54 3665 pool->suspended = false;
8e0c9dac 3666 spin_unlock_irq(&pool->lock);
80e96c54
MS
3667}
3668
991d9fa0
JT
3669static void pool_postsuspend(struct dm_target *ti)
3670{
991d9fa0
JT
3671 struct pool_c *pt = ti->private;
3672 struct pool *pool = pt->pool;
3673
18d03e8c
NB
3674 cancel_delayed_work_sync(&pool->waker);
3675 cancel_delayed_work_sync(&pool->no_space_timeout);
991d9fa0 3676 flush_workqueue(pool->wq);
020cc3b5 3677 (void) commit(pool);
991d9fa0
JT
3678}
3679
86a3238c 3680static int check_arg_count(unsigned int argc, unsigned int args_required)
991d9fa0
JT
3681{
3682 if (argc != args_required) {
3683 DMWARN("Message received with %u arguments instead of %u.",
3684 argc, args_required);
3685 return -EINVAL;
3686 }
3687
3688 return 0;
3689}
3690
3691static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
3692{
3693 if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
3694 *dev_id <= MAX_DEV_ID)
3695 return 0;
3696
3697 if (warning)
3698 DMWARN("Message received with invalid device id: %s", arg);
3699
3700 return -EINVAL;
3701}
3702
86a3238c 3703static int process_create_thin_mesg(unsigned int argc, char **argv, struct pool *pool)
991d9fa0
JT
3704{
3705 dm_thin_id dev_id;
3706 int r;
3707
3708 r = check_arg_count(argc, 2);
3709 if (r)
3710 return r;
3711
3712 r = read_dev_id(argv[1], &dev_id, 1);
3713 if (r)
3714 return r;
3715
3716 r = dm_pool_create_thin(pool->pmd, dev_id);
3717 if (r) {
3718 DMWARN("Creation of new thinly-provisioned device with id %s failed.",
3719 argv[1]);
3720 return r;
3721 }
3722
3723 return 0;
3724}
3725
86a3238c 3726static int process_create_snap_mesg(unsigned int argc, char **argv, struct pool *pool)
991d9fa0
JT
3727{
3728 dm_thin_id dev_id;
3729 dm_thin_id origin_dev_id;
3730 int r;
3731
3732 r = check_arg_count(argc, 3);
3733 if (r)
3734 return r;
3735
3736 r = read_dev_id(argv[1], &dev_id, 1);
3737 if (r)
3738 return r;
3739
3740 r = read_dev_id(argv[2], &origin_dev_id, 1);
3741 if (r)
3742 return r;
3743
3744 r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
3745 if (r) {
3746 DMWARN("Creation of new snapshot %s of device %s failed.",
3747 argv[1], argv[2]);
3748 return r;
3749 }
3750
3751 return 0;
3752}
3753
86a3238c 3754static int process_delete_mesg(unsigned int argc, char **argv, struct pool *pool)
991d9fa0
JT
3755{
3756 dm_thin_id dev_id;
3757 int r;
3758
3759 r = check_arg_count(argc, 2);
3760 if (r)
3761 return r;
3762
3763 r = read_dev_id(argv[1], &dev_id, 1);
3764 if (r)
3765 return r;
3766
3767 r = dm_pool_delete_thin_device(pool->pmd, dev_id);
3768 if (r)
3769 DMWARN("Deletion of thin device %s failed.", argv[1]);
3770
3771 return r;
3772}
3773
86a3238c 3774static int process_set_transaction_id_mesg(unsigned int argc, char **argv, struct pool *pool)
991d9fa0
JT
3775{
3776 dm_thin_id old_id, new_id;
3777 int r;
3778
3779 r = check_arg_count(argc, 3);
3780 if (r)
3781 return r;
3782
3783 if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
3784 DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
3785 return -EINVAL;
3786 }
3787
3788 if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
3789 DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
3790 return -EINVAL;
3791 }
3792
3793 r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
3794 if (r) {
3795 DMWARN("Failed to change transaction id from %s to %s.",
3796 argv[1], argv[2]);
3797 return r;
3798 }
3799
3800 return 0;
3801}
3802
86a3238c 3803static int process_reserve_metadata_snap_mesg(unsigned int argc, char **argv, struct pool *pool)
cc8394d8
JT
3804{
3805 int r;
3806
3807 r = check_arg_count(argc, 1);
3808 if (r)
3809 return r;
3810
020cc3b5 3811 (void) commit(pool);
0d200aef 3812
cc8394d8
JT
3813 r = dm_pool_reserve_metadata_snap(pool->pmd);
3814 if (r)
3815 DMWARN("reserve_metadata_snap message failed.");
3816
3817 return r;
3818}
3819
86a3238c 3820static int process_release_metadata_snap_mesg(unsigned int argc, char **argv, struct pool *pool)
cc8394d8
JT
3821{
3822 int r;
3823
3824 r = check_arg_count(argc, 1);
3825 if (r)
3826 return r;
3827
3828 r = dm_pool_release_metadata_snap(pool->pmd);
3829 if (r)
3830 DMWARN("release_metadata_snap message failed.");
3831
3832 return r;
3833}
3834
991d9fa0
JT
3835/*
3836 * Messages supported:
3837 * create_thin <dev_id>
3838 * create_snap <dev_id> <origin_id>
3839 * delete <dev_id>
991d9fa0 3840 * set_transaction_id <current_trans_id> <new_trans_id>
cc8394d8
JT
3841 * reserve_metadata_snap
3842 * release_metadata_snap
991d9fa0 3843 */
86a3238c
HM
3844static int pool_message(struct dm_target *ti, unsigned int argc, char **argv,
3845 char *result, unsigned int maxlen)
991d9fa0
JT
3846{
3847 int r = -EINVAL;
3848 struct pool_c *pt = ti->private;
3849 struct pool *pool = pt->pool;
3850
3ab91828 3851 if (get_pool_mode(pool) >= PM_OUT_OF_METADATA_SPACE) {
2a7eaea0
JT
3852 DMERR("%s: unable to service pool target messages in READ_ONLY or FAIL mode",
3853 dm_device_name(pool->pool_md));
fd467696 3854 return -EOPNOTSUPP;
2a7eaea0
JT
3855 }
3856
991d9fa0
JT
3857 if (!strcasecmp(argv[0], "create_thin"))
3858 r = process_create_thin_mesg(argc, argv, pool);
3859
3860 else if (!strcasecmp(argv[0], "create_snap"))
3861 r = process_create_snap_mesg(argc, argv, pool);
3862
3863 else if (!strcasecmp(argv[0], "delete"))
3864 r = process_delete_mesg(argc, argv, pool);
3865
3866 else if (!strcasecmp(argv[0], "set_transaction_id"))
3867 r = process_set_transaction_id_mesg(argc, argv, pool);
3868
cc8394d8
JT
3869 else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
3870 r = process_reserve_metadata_snap_mesg(argc, argv, pool);
3871
3872 else if (!strcasecmp(argv[0], "release_metadata_snap"))
3873 r = process_release_metadata_snap_mesg(argc, argv, pool);
3874
991d9fa0
JT
3875 else
3876 DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
3877
e49e5829 3878 if (!r)
020cc3b5 3879 (void) commit(pool);
991d9fa0
JT
3880
3881 return r;
3882}
3883
e49e5829 3884static void emit_flags(struct pool_features *pf, char *result,
86a3238c 3885 unsigned int sz, unsigned int maxlen)
e49e5829 3886{
86a3238c 3887 unsigned int count = !pf->zero_new_blocks + !pf->discard_enabled +
787a996c
MS
3888 !pf->discard_passdown + (pf->mode == PM_READ_ONLY) +
3889 pf->error_if_no_space;
e49e5829
JT
3890 DMEMIT("%u ", count);
3891
3892 if (!pf->zero_new_blocks)
3893 DMEMIT("skip_block_zeroing ");
3894
3895 if (!pf->discard_enabled)
3896 DMEMIT("ignore_discard ");
3897
3898 if (!pf->discard_passdown)
3899 DMEMIT("no_discard_passdown ");
3900
3901 if (pf->mode == PM_READ_ONLY)
3902 DMEMIT("read_only ");
787a996c
MS
3903
3904 if (pf->error_if_no_space)
3905 DMEMIT("error_if_no_space ");
e49e5829
JT
3906}
3907
991d9fa0
JT
3908/*
3909 * Status line is:
3910 * <transaction id> <used metadata sectors>/<total metadata sectors>
3911 * <used data sectors>/<total data sectors> <held metadata root>
e4c78e21 3912 * <pool mode> <discard config> <no space config> <needs_check>
991d9fa0 3913 */
fd7c092e 3914static void pool_status(struct dm_target *ti, status_type_t type,
86a3238c 3915 unsigned int status_flags, char *result, unsigned int maxlen)
991d9fa0 3916{
e49e5829 3917 int r;
86a3238c 3918 unsigned int sz = 0;
991d9fa0
JT
3919 uint64_t transaction_id;
3920 dm_block_t nr_free_blocks_data;
3921 dm_block_t nr_free_blocks_metadata;
3922 dm_block_t nr_blocks_data;
3923 dm_block_t nr_blocks_metadata;
3924 dm_block_t held_root;
3ab91828 3925 enum pool_mode mode;
991d9fa0
JT
3926 char buf[BDEVNAME_SIZE];
3927 char buf2[BDEVNAME_SIZE];
3928 struct pool_c *pt = ti->private;
3929 struct pool *pool = pt->pool;
3930
3931 switch (type) {
3932 case STATUSTYPE_INFO:
e49e5829
JT
3933 if (get_pool_mode(pool) == PM_FAIL) {
3934 DMEMIT("Fail");
3935 break;
3936 }
3937
1f4e0ff0
AK
3938 /* Commit to ensure statistics aren't out-of-date */
3939 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
020cc3b5 3940 (void) commit(pool);
1f4e0ff0 3941
fd7c092e
MP
3942 r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
3943 if (r) {
4fa5971a
MS
3944 DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
3945 dm_device_name(pool->pool_md), r);
fd7c092e
MP
3946 goto err;
3947 }
991d9fa0 3948
fd7c092e
MP
3949 r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
3950 if (r) {
4fa5971a
MS
3951 DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
3952 dm_device_name(pool->pool_md), r);
fd7c092e
MP
3953 goto err;
3954 }
991d9fa0
JT
3955
3956 r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
fd7c092e 3957 if (r) {
4fa5971a
MS
3958 DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
3959 dm_device_name(pool->pool_md), r);
fd7c092e
MP
3960 goto err;
3961 }
991d9fa0 3962
fd7c092e
MP
3963 r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
3964 if (r) {
4fa5971a
MS
3965 DMERR("%s: dm_pool_get_free_block_count returned %d",
3966 dm_device_name(pool->pool_md), r);
fd7c092e
MP
3967 goto err;
3968 }
991d9fa0
JT
3969
3970 r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
fd7c092e 3971 if (r) {
4fa5971a
MS
3972 DMERR("%s: dm_pool_get_data_dev_size returned %d",
3973 dm_device_name(pool->pool_md), r);
fd7c092e
MP
3974 goto err;
3975 }
991d9fa0 3976
cc8394d8 3977 r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
fd7c092e 3978 if (r) {
4fa5971a
MS
3979 DMERR("%s: dm_pool_get_metadata_snap returned %d",
3980 dm_device_name(pool->pool_md), r);
fd7c092e
MP
3981 goto err;
3982 }
991d9fa0
JT
3983
3984 DMEMIT("%llu %llu/%llu %llu/%llu ",
3985 (unsigned long long)transaction_id,
3986 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
3987 (unsigned long long)nr_blocks_metadata,
3988 (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
3989 (unsigned long long)nr_blocks_data);
3990
3991 if (held_root)
e49e5829
JT
3992 DMEMIT("%llu ", held_root);
3993 else
3994 DMEMIT("- ");
3995
3ab91828
JT
3996 mode = get_pool_mode(pool);
3997 if (mode == PM_OUT_OF_DATA_SPACE)
3e1a0699 3998 DMEMIT("out_of_data_space ");
3ab91828 3999 else if (is_read_only_pool_mode(mode))
e49e5829 4000 DMEMIT("ro ");
991d9fa0 4001 else
e49e5829
JT
4002 DMEMIT("rw ");
4003
018debea 4004 if (!pool->pf.discard_enabled)
787a996c 4005 DMEMIT("ignore_discard ");
018debea 4006 else if (pool->pf.discard_passdown)
787a996c
MS
4007 DMEMIT("discard_passdown ");
4008 else
4009 DMEMIT("no_discard_passdown ");
4010
4011 if (pool->pf.error_if_no_space)
4012 DMEMIT("error_if_no_space ");
e49e5829 4013 else
787a996c 4014 DMEMIT("queue_if_no_space ");
991d9fa0 4015
e4c78e21
MS
4016 if (dm_pool_metadata_needs_check(pool->pmd))
4017 DMEMIT("needs_check ");
4018 else
4019 DMEMIT("- ");
4020
63c8ecb6
AG
4021 DMEMIT("%llu ", (unsigned long long)calc_metadata_threshold(pt));
4022
991d9fa0
JT
4023 break;
4024
4025 case STATUSTYPE_TABLE:
4026 DMEMIT("%s %s %lu %llu ",
4027 format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
4028 format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
4029 (unsigned long)pool->sectors_per_block,
4030 (unsigned long long)pt->low_water_blocks);
0424caa1 4031 emit_flags(&pt->requested_pf, result, sz, maxlen);
991d9fa0 4032 break;
8ec45662
TS
4033
4034 case STATUSTYPE_IMA:
4035 *result = '\0';
4036 break;
991d9fa0 4037 }
fd7c092e 4038 return;
991d9fa0 4039
fd7c092e
MP
4040err:
4041 DMEMIT("Error");
991d9fa0
JT
4042}
4043
4044static int pool_iterate_devices(struct dm_target *ti,
4045 iterate_devices_callout_fn fn, void *data)
4046{
4047 struct pool_c *pt = ti->private;
4048
4049 return fn(ti, pt->data_dev, 0, ti->len, data);
4050}
4051
991d9fa0
JT
4052static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
4053{
4054 struct pool_c *pt = ti->private;
4055 struct pool *pool = pt->pool;
604ea906
MS
4056 sector_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
4057
4058 /*
d200c30e
MS
4059 * If max_sectors is smaller than pool->sectors_per_block adjust it
4060 * to the highest possible power-of-2 factor of pool->sectors_per_block.
4061 * This is especially beneficial when the pool's data device is a RAID
4062 * device that has a full stripe width that matches pool->sectors_per_block
4063 * -- because even though partial RAID stripe-sized IOs will be issued to a
4064 * single RAID stripe; when aggregated they will end on a full RAID stripe
4065 * boundary.. which avoids additional partial RAID stripe writes cascading
604ea906 4066 */
604ea906
MS
4067 if (limits->max_sectors < pool->sectors_per_block) {
4068 while (!is_factor(pool->sectors_per_block, limits->max_sectors)) {
4069 if ((limits->max_sectors & (limits->max_sectors - 1)) == 0)
4070 limits->max_sectors--;
4071 limits->max_sectors = rounddown_pow_of_two(limits->max_sectors);
4072 }
604ea906 4073 }
991d9fa0 4074
0cc67cd9
MS
4075 /*
4076 * If the system-determined stacked limits are compatible with the
4077 * pool's blocksize (io_opt is a factor) do not override them.
4078 */
4079 if (io_opt_sectors < pool->sectors_per_block ||
604ea906
MS
4080 !is_factor(io_opt_sectors, pool->sectors_per_block)) {
4081 if (is_factor(pool->sectors_per_block, limits->max_sectors))
4082 blk_limits_io_min(limits, limits->max_sectors << SECTOR_SHIFT);
4083 else
4084 blk_limits_io_min(limits, pool->sectors_per_block << SECTOR_SHIFT);
0cc67cd9
MS
4085 blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
4086 }
0424caa1
MS
4087
4088 /*
4089 * pt->adjusted_pf is a staging area for the actual features to use.
4090 * They get transferred to the live pool in bind_control_target()
4091 * called from pool_preresume().
4092 */
b60ab990
MS
4093 if (!pt->adjusted_pf.discard_enabled) {
4094 /*
4095 * Must explicitly disallow stacking discard limits otherwise the
4096 * block layer will stack them if pool's data device has support.
b60ab990
MS
4097 */
4098 limits->discard_granularity = 0;
0424caa1 4099 return;
b60ab990 4100 }
0424caa1
MS
4101
4102 disable_passdown_if_not_supported(pt);
4103
34fbcf62
JT
4104 /*
4105 * The pool uses the same discard limits as the underlying data
4106 * device. DM core has already set this up.
4107 */
991d9fa0
JT
4108}
4109
4110static struct target_type pool_target = {
4111 .name = "thin-pool",
4112 .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
4113 DM_TARGET_IMMUTABLE,
e2dd8aca 4114 .version = {1, 23, 0},
991d9fa0
JT
4115 .module = THIS_MODULE,
4116 .ctr = pool_ctr,
4117 .dtr = pool_dtr,
4118 .map = pool_map,
80e96c54
MS
4119 .presuspend = pool_presuspend,
4120 .presuspend_undo = pool_presuspend_undo,
991d9fa0
JT
4121 .postsuspend = pool_postsuspend,
4122 .preresume = pool_preresume,
4123 .resume = pool_resume,
4124 .message = pool_message,
4125 .status = pool_status,
991d9fa0
JT
4126 .iterate_devices = pool_iterate_devices,
4127 .io_hints = pool_io_hints,
4128};
4129
a4a82ce3
HM
4130/*
4131 *--------------------------------------------------------------
991d9fa0 4132 * Thin target methods
a4a82ce3
HM
4133 *--------------------------------------------------------------
4134 */
b10ebd34
JT
4135static void thin_get(struct thin_c *tc)
4136{
22d4c291 4137 refcount_inc(&tc->refcount);
b10ebd34
JT
4138}
4139
4140static void thin_put(struct thin_c *tc)
4141{
22d4c291 4142 if (refcount_dec_and_test(&tc->refcount))
b10ebd34
JT
4143 complete(&tc->can_destroy);
4144}
4145
991d9fa0
JT
4146static void thin_dtr(struct dm_target *ti)
4147{
4148 struct thin_c *tc = ti->private;
c140e1c4 4149
8e0c9dac 4150 spin_lock_irq(&tc->pool->lock);
c140e1c4 4151 list_del_rcu(&tc->list);
8e0c9dac 4152 spin_unlock_irq(&tc->pool->lock);
c140e1c4 4153 synchronize_rcu();
991d9fa0 4154
17181fb7
MP
4155 thin_put(tc);
4156 wait_for_completion(&tc->can_destroy);
4157
991d9fa0
JT
4158 mutex_lock(&dm_thin_pool_table.mutex);
4159
4160 __pool_dec(tc->pool);
4161 dm_pool_close_thin_device(tc->td);
4162 dm_put_device(ti, tc->pool_dev);
2dd9c257
JT
4163 if (tc->origin_dev)
4164 dm_put_device(ti, tc->origin_dev);
991d9fa0
JT
4165 kfree(tc);
4166
4167 mutex_unlock(&dm_thin_pool_table.mutex);
4168}
4169
4170/*
4171 * Thin target parameters:
4172 *
2dd9c257 4173 * <pool_dev> <dev_id> [origin_dev]
991d9fa0
JT
4174 *
4175 * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
4176 * dev_id: the internal device identifier
2dd9c257 4177 * origin_dev: a device external to the pool that should act as the origin
67e2e2b2
JT
4178 *
4179 * If the pool device has discards disabled, they get disabled for the thin
4180 * device as well.
991d9fa0 4181 */
86a3238c 4182static int thin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
991d9fa0
JT
4183{
4184 int r;
4185 struct thin_c *tc;
2dd9c257 4186 struct dm_dev *pool_dev, *origin_dev;
991d9fa0
JT
4187 struct mapped_device *pool_md;
4188
4189 mutex_lock(&dm_thin_pool_table.mutex);
4190
2dd9c257 4191 if (argc != 2 && argc != 3) {
991d9fa0
JT
4192 ti->error = "Invalid argument count";
4193 r = -EINVAL;
4194 goto out_unlock;
4195 }
4196
4197 tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
4198 if (!tc) {
4199 ti->error = "Out of memory";
4200 r = -ENOMEM;
4201 goto out_unlock;
4202 }
583024d2 4203 tc->thin_md = dm_table_get_md(ti->table);
c140e1c4 4204 spin_lock_init(&tc->lock);
a374bb21 4205 INIT_LIST_HEAD(&tc->deferred_cells);
c140e1c4
MS
4206 bio_list_init(&tc->deferred_bio_list);
4207 bio_list_init(&tc->retry_on_resume_list);
67324ea1 4208 tc->sort_bio_list = RB_ROOT;
991d9fa0 4209
2dd9c257 4210 if (argc == 3) {
70de2cbd
JCXF
4211 if (!strcmp(argv[0], argv[2])) {
4212 ti->error = "Error setting origin device";
4213 r = -EINVAL;
4214 goto bad_origin_dev;
4215 }
4216
2dd9c257
JT
4217 r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
4218 if (r) {
4219 ti->error = "Error opening origin device";
4220 goto bad_origin_dev;
4221 }
4222 tc->origin_dev = origin_dev;
4223 }
4224
991d9fa0
JT
4225 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
4226 if (r) {
4227 ti->error = "Error opening pool device";
4228 goto bad_pool_dev;
4229 }
4230 tc->pool_dev = pool_dev;
4231
4232 if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
4233 ti->error = "Invalid device id";
4234 r = -EINVAL;
4235 goto bad_common;
4236 }
4237
4238 pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
4239 if (!pool_md) {
4240 ti->error = "Couldn't get pool mapped device";
4241 r = -EINVAL;
4242 goto bad_common;
4243 }
4244
4245 tc->pool = __pool_table_lookup(pool_md);
4246 if (!tc->pool) {
4247 ti->error = "Couldn't find pool object";
4248 r = -EINVAL;
4249 goto bad_pool_lookup;
4250 }
4251 __pool_inc(tc->pool);
4252
e49e5829
JT
4253 if (get_pool_mode(tc->pool) == PM_FAIL) {
4254 ti->error = "Couldn't open thin device, Pool is in fail mode";
1acacc07 4255 r = -EINVAL;
80e96c54 4256 goto bad_pool;
e49e5829
JT
4257 }
4258
991d9fa0
JT
4259 r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
4260 if (r) {
4261 ti->error = "Couldn't open thin internal device";
80e96c54 4262 goto bad_pool;
991d9fa0
JT
4263 }
4264
542f9038
MS
4265 r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
4266 if (r)
80e96c54 4267 goto bad;
542f9038 4268
55a62eef 4269 ti->num_flush_bios = 1;
9bbf5fee 4270 ti->limit_swap_bios = true;
16ad3d10 4271 ti->flush_supported = true;
a9251281 4272 ti->accounts_remapped_io = true;
30187e1d 4273 ti->per_io_data_size = sizeof(struct dm_thin_endio_hook);
67e2e2b2
JT
4274
4275 /* In case the pool supports discards, pass them on. */
4276 if (tc->pool->pf.discard_enabled) {
0ac55489 4277 ti->discards_supported = true;
55a62eef 4278 ti->num_discard_bios = 1;
e2dd8aca 4279 ti->max_discard_granularity = true;
67e2e2b2 4280 }
991d9fa0 4281
991d9fa0
JT
4282 mutex_unlock(&dm_thin_pool_table.mutex);
4283
8e0c9dac 4284 spin_lock_irq(&tc->pool->lock);
80e96c54 4285 if (tc->pool->suspended) {
8e0c9dac 4286 spin_unlock_irq(&tc->pool->lock);
80e96c54
MS
4287 mutex_lock(&dm_thin_pool_table.mutex); /* reacquire for __pool_dec */
4288 ti->error = "Unable to activate thin device while pool is suspended";
4289 r = -EINVAL;
4290 goto bad;
4291 }
22d4c291 4292 refcount_set(&tc->refcount, 1);
2b94e896 4293 init_completion(&tc->can_destroy);
c140e1c4 4294 list_add_tail_rcu(&tc->list, &tc->pool->active_thins);
8e0c9dac 4295 spin_unlock_irq(&tc->pool->lock);
c140e1c4
MS
4296 /*
4297 * This synchronize_rcu() call is needed here otherwise we risk a
4298 * wake_worker() call finding no bios to process (because the newly
4299 * added tc isn't yet visible). So this reduces latency since we
4300 * aren't then dependent on the periodic commit to wake_worker().
4301 */
4302 synchronize_rcu();
4303
80e96c54
MS
4304 dm_put(pool_md);
4305
991d9fa0
JT
4306 return 0;
4307
80e96c54 4308bad:
1acacc07 4309 dm_pool_close_thin_device(tc->td);
80e96c54 4310bad_pool:
991d9fa0
JT
4311 __pool_dec(tc->pool);
4312bad_pool_lookup:
4313 dm_put(pool_md);
4314bad_common:
4315 dm_put_device(ti, tc->pool_dev);
4316bad_pool_dev:
2dd9c257
JT
4317 if (tc->origin_dev)
4318 dm_put_device(ti, tc->origin_dev);
4319bad_origin_dev:
991d9fa0
JT
4320 kfree(tc);
4321out_unlock:
4322 mutex_unlock(&dm_thin_pool_table.mutex);
4323
4324 return r;
4325}
4326
7de3ee57 4327static int thin_map(struct dm_target *ti, struct bio *bio)
991d9fa0 4328{
4f024f37 4329 bio->bi_iter.bi_sector = dm_target_offset(ti, bio->bi_iter.bi_sector);
991d9fa0 4330
7de3ee57 4331 return thin_bio_map(ti, bio);
991d9fa0
JT
4332}
4333
4e4cbee9
CH
4334static int thin_endio(struct dm_target *ti, struct bio *bio,
4335 blk_status_t *err)
eb2aa48d
JT
4336{
4337 unsigned long flags;
59c3d2c6 4338 struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
eb2aa48d 4339 struct list_head work;
a24c2569 4340 struct dm_thin_new_mapping *m, *tmp;
eb2aa48d
JT
4341 struct pool *pool = h->tc->pool;
4342
4343 if (h->shared_read_entry) {
4344 INIT_LIST_HEAD(&work);
44feb387 4345 dm_deferred_entry_dec(h->shared_read_entry, &work);
eb2aa48d
JT
4346
4347 spin_lock_irqsave(&pool->lock, flags);
4348 list_for_each_entry_safe(m, tmp, &work, list) {
4349 list_del(&m->list);
50f3c3ef 4350 __complete_mapping_preparation(m);
eb2aa48d
JT
4351 }
4352 spin_unlock_irqrestore(&pool->lock, flags);
4353 }
4354
104655fd
JT
4355 if (h->all_io_entry) {
4356 INIT_LIST_HEAD(&work);
44feb387 4357 dm_deferred_entry_dec(h->all_io_entry, &work);
563af186
JT
4358 if (!list_empty(&work)) {
4359 spin_lock_irqsave(&pool->lock, flags);
4360 list_for_each_entry_safe(m, tmp, &work, list)
daec338b 4361 list_add_tail(&m->list, &pool->prepared_discards);
563af186
JT
4362 spin_unlock_irqrestore(&pool->lock, flags);
4363 wake_worker(pool);
4364 }
104655fd
JT
4365 }
4366
34fbcf62
JT
4367 if (h->cell)
4368 cell_defer_no_holder(h->tc, h->cell);
4369
1be56909 4370 return DM_ENDIO_DONE;
eb2aa48d
JT
4371}
4372
738211f7 4373static void thin_presuspend(struct dm_target *ti)
991d9fa0 4374{
738211f7
JT
4375 struct thin_c *tc = ti->private;
4376
991d9fa0 4377 if (dm_noflush_suspending(ti))
738211f7
JT
4378 noflush_work(tc, do_noflush_start);
4379}
4380
4381static void thin_postsuspend(struct dm_target *ti)
4382{
4383 struct thin_c *tc = ti->private;
4384
4385 /*
4386 * The dm_noflush_suspending flag has been cleared by now, so
4387 * unfortunately we must always run this.
4388 */
4389 noflush_work(tc, do_noflush_stop);
991d9fa0
JT
4390}
4391
e5aea7b4
JT
4392static int thin_preresume(struct dm_target *ti)
4393{
4394 struct thin_c *tc = ti->private;
4395
4396 if (tc->origin_dev)
4397 tc->origin_size = get_dev_size(tc->origin_dev->bdev);
4398
4399 return 0;
4400}
4401
991d9fa0
JT
4402/*
4403 * <nr mapped sectors> <highest mapped sector>
4404 */
fd7c092e 4405static void thin_status(struct dm_target *ti, status_type_t type,
86a3238c 4406 unsigned int status_flags, char *result, unsigned int maxlen)
991d9fa0
JT
4407{
4408 int r;
4409 ssize_t sz = 0;
4410 dm_block_t mapped, highest;
4411 char buf[BDEVNAME_SIZE];
4412 struct thin_c *tc = ti->private;
4413
e49e5829
JT
4414 if (get_pool_mode(tc->pool) == PM_FAIL) {
4415 DMEMIT("Fail");
fd7c092e 4416 return;
e49e5829
JT
4417 }
4418
991d9fa0
JT
4419 if (!tc->td)
4420 DMEMIT("-");
4421 else {
4422 switch (type) {
4423 case STATUSTYPE_INFO:
4424 r = dm_thin_get_mapped_count(tc->td, &mapped);
fd7c092e
MP
4425 if (r) {
4426 DMERR("dm_thin_get_mapped_count returned %d", r);
4427 goto err;
4428 }
991d9fa0
JT
4429
4430 r = dm_thin_get_highest_mapped_block(tc->td, &highest);
fd7c092e
MP
4431 if (r < 0) {
4432 DMERR("dm_thin_get_highest_mapped_block returned %d", r);
4433 goto err;
4434 }
991d9fa0
JT
4435
4436 DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
4437 if (r)
4438 DMEMIT("%llu", ((highest + 1) *
4439 tc->pool->sectors_per_block) - 1);
4440 else
4441 DMEMIT("-");
4442 break;
4443
4444 case STATUSTYPE_TABLE:
4445 DMEMIT("%s %lu",
4446 format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
4447 (unsigned long) tc->dev_id);
2dd9c257
JT
4448 if (tc->origin_dev)
4449 DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
991d9fa0 4450 break;
8ec45662
TS
4451
4452 case STATUSTYPE_IMA:
4453 *result = '\0';
4454 break;
991d9fa0
JT
4455 }
4456 }
4457
fd7c092e
MP
4458 return;
4459
4460err:
4461 DMEMIT("Error");
991d9fa0
JT
4462}
4463
4464static int thin_iterate_devices(struct dm_target *ti,
4465 iterate_devices_callout_fn fn, void *data)
4466{
55f2b8bd 4467 sector_t blocks;
991d9fa0 4468 struct thin_c *tc = ti->private;
55f2b8bd 4469 struct pool *pool = tc->pool;
991d9fa0
JT
4470
4471 /*
4472 * We can't call dm_pool_get_data_dev_size() since that blocks. So
4473 * we follow a more convoluted path through to the pool's target.
4474 */
55f2b8bd 4475 if (!pool->ti)
991d9fa0
JT
4476 return 0; /* nothing is bound */
4477
55f2b8bd
MS
4478 blocks = pool->ti->len;
4479 (void) sector_div(blocks, pool->sectors_per_block);
991d9fa0 4480 if (blocks)
55f2b8bd 4481 return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
991d9fa0
JT
4482
4483 return 0;
4484}
4485
34fbcf62
JT
4486static void thin_io_hints(struct dm_target *ti, struct queue_limits *limits)
4487{
4488 struct thin_c *tc = ti->private;
4489 struct pool *pool = tc->pool;
21607670 4490
0fcb04d5
MS
4491 if (!pool->pf.discard_enabled)
4492 return;
34fbcf62
JT
4493
4494 limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
e2dd8aca 4495 limits->max_discard_sectors = pool->sectors_per_block * BIO_PRISON_MAX_RANGE;
34fbcf62
JT
4496}
4497
991d9fa0
JT
4498static struct target_type thin_target = {
4499 .name = "thin",
e2dd8aca 4500 .version = {1, 23, 0},
991d9fa0
JT
4501 .module = THIS_MODULE,
4502 .ctr = thin_ctr,
4503 .dtr = thin_dtr,
4504 .map = thin_map,
eb2aa48d 4505 .end_io = thin_endio,
e5aea7b4 4506 .preresume = thin_preresume,
738211f7 4507 .presuspend = thin_presuspend,
991d9fa0
JT
4508 .postsuspend = thin_postsuspend,
4509 .status = thin_status,
4510 .iterate_devices = thin_iterate_devices,
34fbcf62 4511 .io_hints = thin_io_hints,
991d9fa0
JT
4512};
4513
4514/*----------------------------------------------------------------*/
4515
4516static int __init dm_thin_init(void)
4517{
7e6358d2 4518 int r = -ENOMEM;
991d9fa0
JT
4519
4520 pool_table_init();
4521
7e6358d2 4522 _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
4523 if (!_new_mapping_cache)
4524 return r;
4525
991d9fa0
JT
4526 r = dm_register_target(&thin_target);
4527 if (r)
7e6358d2 4528 goto bad_new_mapping_cache;
991d9fa0
JT
4529
4530 r = dm_register_target(&pool_target);
4531 if (r)
7e6358d2 4532 goto bad_thin_target;
a24c2569 4533
a24c2569
MS
4534 return 0;
4535
7e6358d2 4536bad_thin_target:
a24c2569 4537 dm_unregister_target(&thin_target);
7e6358d2 4538bad_new_mapping_cache:
4539 kmem_cache_destroy(_new_mapping_cache);
991d9fa0
JT
4540
4541 return r;
4542}
4543
4544static void dm_thin_exit(void)
4545{
4546 dm_unregister_target(&thin_target);
4547 dm_unregister_target(&pool_target);
a24c2569 4548
a24c2569 4549 kmem_cache_destroy(_new_mapping_cache);
d5ffebdd
MS
4550
4551 pool_table_exit();
991d9fa0
JT
4552}
4553
4554module_init(dm_thin_init);
4555module_exit(dm_thin_exit);
4556
6a808034 4557module_param_named(no_space_timeout, no_space_timeout_secs, uint, 0644);
80c57893
MS
4558MODULE_PARM_DESC(no_space_timeout, "Out of data space queue IO timeout in seconds");
4559
7cab8bf1 4560MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
991d9fa0
JT
4561MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
4562MODULE_LICENSE("GPL");