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