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