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