]>
Commit | Line | Data |
---|---|---|
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> | |
14 | #include <linux/list.h> | |
15 | #include <linux/init.h> | |
16 | #include <linux/module.h> | |
17 | #include <linux/slab.h> | |
18 | ||
19 | #define DM_MSG_PREFIX "thin" | |
20 | ||
21 | /* | |
22 | * Tunable constants | |
23 | */ | |
7768ed33 | 24 | #define ENDIO_HOOK_POOL_SIZE 1024 |
991d9fa0 JT |
25 | #define MAPPING_POOL_SIZE 1024 |
26 | #define PRISON_CELLS 1024 | |
905e51b3 | 27 | #define COMMIT_PERIOD HZ |
991d9fa0 | 28 | |
df5d2e90 MP |
29 | DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle, |
30 | "A percentage of time allocated for copy on write"); | |
31 | ||
991d9fa0 JT |
32 | /* |
33 | * The block size of the device holding pool data must be | |
34 | * between 64KB and 1GB. | |
35 | */ | |
36 | #define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (64 * 1024 >> SECTOR_SHIFT) | |
37 | #define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT) | |
38 | ||
991d9fa0 JT |
39 | /* |
40 | * Device id is restricted to 24 bits. | |
41 | */ | |
42 | #define MAX_DEV_ID ((1 << 24) - 1) | |
43 | ||
44 | /* | |
45 | * How do we handle breaking sharing of data blocks? | |
46 | * ================================================= | |
47 | * | |
48 | * We use a standard copy-on-write btree to store the mappings for the | |
49 | * devices (note I'm talking about copy-on-write of the metadata here, not | |
50 | * the data). When you take an internal snapshot you clone the root node | |
51 | * of the origin btree. After this there is no concept of an origin or a | |
52 | * snapshot. They are just two device trees that happen to point to the | |
53 | * same data blocks. | |
54 | * | |
55 | * When we get a write in we decide if it's to a shared data block using | |
56 | * some timestamp magic. If it is, we have to break sharing. | |
57 | * | |
58 | * Let's say we write to a shared block in what was the origin. The | |
59 | * steps are: | |
60 | * | |
61 | * i) plug io further to this physical block. (see bio_prison code). | |
62 | * | |
63 | * ii) quiesce any read io to that shared data block. Obviously | |
44feb387 | 64 | * including all devices that share this block. (see dm_deferred_set code) |
991d9fa0 JT |
65 | * |
66 | * iii) copy the data block to a newly allocate block. This step can be | |
67 | * missed out if the io covers the block. (schedule_copy). | |
68 | * | |
69 | * iv) insert the new mapping into the origin's btree | |
fe878f34 | 70 | * (process_prepared_mapping). This act of inserting breaks some |
991d9fa0 JT |
71 | * sharing of btree nodes between the two devices. Breaking sharing only |
72 | * effects the btree of that specific device. Btrees for the other | |
73 | * devices that share the block never change. The btree for the origin | |
74 | * device as it was after the last commit is untouched, ie. we're using | |
75 | * persistent data structures in the functional programming sense. | |
76 | * | |
77 | * v) unplug io to this physical block, including the io that triggered | |
78 | * the breaking of sharing. | |
79 | * | |
80 | * Steps (ii) and (iii) occur in parallel. | |
81 | * | |
82 | * The metadata _doesn't_ need to be committed before the io continues. We | |
83 | * get away with this because the io is always written to a _new_ block. | |
84 | * If there's a crash, then: | |
85 | * | |
86 | * - The origin mapping will point to the old origin block (the shared | |
87 | * one). This will contain the data as it was before the io that triggered | |
88 | * the breaking of sharing came in. | |
89 | * | |
90 | * - The snap mapping still points to the old block. As it would after | |
91 | * the commit. | |
92 | * | |
93 | * The downside of this scheme is the timestamp magic isn't perfect, and | |
94 | * will continue to think that data block in the snapshot device is shared | |
95 | * even after the write to the origin has broken sharing. I suspect data | |
96 | * blocks will typically be shared by many different devices, so we're | |
97 | * breaking sharing n + 1 times, rather than n, where n is the number of | |
98 | * devices that reference this data block. At the moment I think the | |
99 | * benefits far, far outweigh the disadvantages. | |
100 | */ | |
101 | ||
102 | /*----------------------------------------------------------------*/ | |
103 | ||
991d9fa0 JT |
104 | /* |
105 | * Key building. | |
106 | */ | |
107 | static void build_data_key(struct dm_thin_device *td, | |
44feb387 | 108 | dm_block_t b, struct dm_cell_key *key) |
991d9fa0 JT |
109 | { |
110 | key->virtual = 0; | |
111 | key->dev = dm_thin_dev_id(td); | |
112 | key->block = b; | |
113 | } | |
114 | ||
115 | static void build_virtual_key(struct dm_thin_device *td, dm_block_t b, | |
44feb387 | 116 | struct dm_cell_key *key) |
991d9fa0 JT |
117 | { |
118 | key->virtual = 1; | |
119 | key->dev = dm_thin_dev_id(td); | |
120 | key->block = b; | |
121 | } | |
122 | ||
123 | /*----------------------------------------------------------------*/ | |
124 | ||
125 | /* | |
126 | * A pool device ties together a metadata device and a data device. It | |
127 | * also provides the interface for creating and destroying internal | |
128 | * devices. | |
129 | */ | |
a24c2569 | 130 | struct dm_thin_new_mapping; |
67e2e2b2 | 131 | |
e49e5829 JT |
132 | /* |
133 | * The pool runs in 3 modes. Ordered in degraded order for comparisons. | |
134 | */ | |
135 | enum pool_mode { | |
136 | PM_WRITE, /* metadata may be changed */ | |
137 | PM_READ_ONLY, /* metadata may not be changed */ | |
138 | PM_FAIL, /* all I/O fails */ | |
139 | }; | |
140 | ||
67e2e2b2 | 141 | struct pool_features { |
e49e5829 JT |
142 | enum pool_mode mode; |
143 | ||
9bc142dd MS |
144 | bool zero_new_blocks:1; |
145 | bool discard_enabled:1; | |
146 | bool discard_passdown:1; | |
67e2e2b2 JT |
147 | }; |
148 | ||
e49e5829 JT |
149 | struct thin_c; |
150 | typedef void (*process_bio_fn)(struct thin_c *tc, struct bio *bio); | |
151 | typedef void (*process_mapping_fn)(struct dm_thin_new_mapping *m); | |
152 | ||
991d9fa0 JT |
153 | struct pool { |
154 | struct list_head list; | |
155 | struct dm_target *ti; /* Only set if a pool target is bound */ | |
156 | ||
157 | struct mapped_device *pool_md; | |
158 | struct block_device *md_dev; | |
159 | struct dm_pool_metadata *pmd; | |
160 | ||
991d9fa0 | 161 | dm_block_t low_water_blocks; |
55f2b8bd | 162 | uint32_t sectors_per_block; |
f9a8e0cd | 163 | int sectors_per_block_shift; |
991d9fa0 | 164 | |
67e2e2b2 | 165 | struct pool_features pf; |
991d9fa0 JT |
166 | unsigned low_water_triggered:1; /* A dm event has been sent */ |
167 | unsigned no_free_space:1; /* A -ENOSPC warning has been issued */ | |
168 | ||
44feb387 | 169 | struct dm_bio_prison *prison; |
991d9fa0 JT |
170 | struct dm_kcopyd_client *copier; |
171 | ||
172 | struct workqueue_struct *wq; | |
173 | struct work_struct worker; | |
905e51b3 | 174 | struct delayed_work waker; |
991d9fa0 | 175 | |
905e51b3 | 176 | unsigned long last_commit_jiffies; |
55f2b8bd | 177 | unsigned ref_count; |
991d9fa0 JT |
178 | |
179 | spinlock_t lock; | |
180 | struct bio_list deferred_bios; | |
181 | struct bio_list deferred_flush_bios; | |
182 | struct list_head prepared_mappings; | |
104655fd | 183 | struct list_head prepared_discards; |
991d9fa0 JT |
184 | |
185 | struct bio_list retry_on_resume_list; | |
186 | ||
44feb387 MS |
187 | struct dm_deferred_set *shared_read_ds; |
188 | struct dm_deferred_set *all_io_ds; | |
991d9fa0 | 189 | |
a24c2569 | 190 | struct dm_thin_new_mapping *next_mapping; |
991d9fa0 | 191 | mempool_t *mapping_pool; |
e49e5829 JT |
192 | |
193 | process_bio_fn process_bio; | |
194 | process_bio_fn process_discard; | |
195 | ||
196 | process_mapping_fn process_prepared_mapping; | |
197 | process_mapping_fn process_prepared_discard; | |
991d9fa0 JT |
198 | }; |
199 | ||
e49e5829 JT |
200 | static enum pool_mode get_pool_mode(struct pool *pool); |
201 | static void set_pool_mode(struct pool *pool, enum pool_mode mode); | |
202 | ||
991d9fa0 JT |
203 | /* |
204 | * Target context for a pool. | |
205 | */ | |
206 | struct pool_c { | |
207 | struct dm_target *ti; | |
208 | struct pool *pool; | |
209 | struct dm_dev *data_dev; | |
210 | struct dm_dev *metadata_dev; | |
211 | struct dm_target_callbacks callbacks; | |
212 | ||
213 | dm_block_t low_water_blocks; | |
0424caa1 MS |
214 | struct pool_features requested_pf; /* Features requested during table load */ |
215 | struct pool_features adjusted_pf; /* Features used after adjusting for constituent devices */ | |
991d9fa0 JT |
216 | }; |
217 | ||
218 | /* | |
219 | * Target context for a thin. | |
220 | */ | |
221 | struct thin_c { | |
222 | struct dm_dev *pool_dev; | |
2dd9c257 | 223 | struct dm_dev *origin_dev; |
991d9fa0 JT |
224 | dm_thin_id dev_id; |
225 | ||
226 | struct pool *pool; | |
227 | struct dm_thin_device *td; | |
228 | }; | |
229 | ||
230 | /*----------------------------------------------------------------*/ | |
231 | ||
025b9685 JT |
232 | /* |
233 | * wake_worker() is used when new work is queued and when pool_resume is | |
234 | * ready to continue deferred IO processing. | |
235 | */ | |
236 | static void wake_worker(struct pool *pool) | |
237 | { | |
238 | queue_work(pool->wq, &pool->worker); | |
239 | } | |
240 | ||
241 | /*----------------------------------------------------------------*/ | |
242 | ||
6beca5eb JT |
243 | static int bio_detain(struct pool *pool, struct dm_cell_key *key, struct bio *bio, |
244 | struct dm_bio_prison_cell **cell_result) | |
245 | { | |
246 | int r; | |
247 | struct dm_bio_prison_cell *cell_prealloc; | |
248 | ||
249 | /* | |
250 | * Allocate a cell from the prison's mempool. | |
251 | * This might block but it can't fail. | |
252 | */ | |
253 | cell_prealloc = dm_bio_prison_alloc_cell(pool->prison, GFP_NOIO); | |
254 | ||
255 | r = dm_bio_detain(pool->prison, key, bio, cell_prealloc, cell_result); | |
256 | if (r) | |
257 | /* | |
258 | * We reused an old cell; we can get rid of | |
259 | * the new one. | |
260 | */ | |
261 | dm_bio_prison_free_cell(pool->prison, cell_prealloc); | |
262 | ||
263 | return r; | |
264 | } | |
265 | ||
266 | static void cell_release(struct pool *pool, | |
267 | struct dm_bio_prison_cell *cell, | |
268 | struct bio_list *bios) | |
269 | { | |
270 | dm_cell_release(pool->prison, cell, bios); | |
271 | dm_bio_prison_free_cell(pool->prison, cell); | |
272 | } | |
273 | ||
274 | static void cell_release_no_holder(struct pool *pool, | |
275 | struct dm_bio_prison_cell *cell, | |
276 | struct bio_list *bios) | |
277 | { | |
278 | dm_cell_release_no_holder(pool->prison, cell, bios); | |
279 | dm_bio_prison_free_cell(pool->prison, cell); | |
280 | } | |
281 | ||
025b9685 JT |
282 | static void cell_defer_no_holder_no_free(struct thin_c *tc, |
283 | struct dm_bio_prison_cell *cell) | |
284 | { | |
285 | struct pool *pool = tc->pool; | |
286 | unsigned long flags; | |
287 | ||
288 | spin_lock_irqsave(&pool->lock, flags); | |
289 | dm_cell_release_no_holder(pool->prison, cell, &pool->deferred_bios); | |
290 | spin_unlock_irqrestore(&pool->lock, flags); | |
291 | ||
292 | wake_worker(pool); | |
293 | } | |
294 | ||
6beca5eb JT |
295 | static void cell_error(struct pool *pool, |
296 | struct dm_bio_prison_cell *cell) | |
297 | { | |
298 | dm_cell_error(pool->prison, cell); | |
299 | dm_bio_prison_free_cell(pool->prison, cell); | |
300 | } | |
301 | ||
302 | /*----------------------------------------------------------------*/ | |
303 | ||
991d9fa0 JT |
304 | /* |
305 | * A global list of pools that uses a struct mapped_device as a key. | |
306 | */ | |
307 | static struct dm_thin_pool_table { | |
308 | struct mutex mutex; | |
309 | struct list_head pools; | |
310 | } dm_thin_pool_table; | |
311 | ||
312 | static void pool_table_init(void) | |
313 | { | |
314 | mutex_init(&dm_thin_pool_table.mutex); | |
315 | INIT_LIST_HEAD(&dm_thin_pool_table.pools); | |
316 | } | |
317 | ||
318 | static void __pool_table_insert(struct pool *pool) | |
319 | { | |
320 | BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex)); | |
321 | list_add(&pool->list, &dm_thin_pool_table.pools); | |
322 | } | |
323 | ||
324 | static void __pool_table_remove(struct pool *pool) | |
325 | { | |
326 | BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex)); | |
327 | list_del(&pool->list); | |
328 | } | |
329 | ||
330 | static struct pool *__pool_table_lookup(struct mapped_device *md) | |
331 | { | |
332 | struct pool *pool = NULL, *tmp; | |
333 | ||
334 | BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex)); | |
335 | ||
336 | list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) { | |
337 | if (tmp->pool_md == md) { | |
338 | pool = tmp; | |
339 | break; | |
340 | } | |
341 | } | |
342 | ||
343 | return pool; | |
344 | } | |
345 | ||
346 | static struct pool *__pool_table_lookup_metadata_dev(struct block_device *md_dev) | |
347 | { | |
348 | struct pool *pool = NULL, *tmp; | |
349 | ||
350 | BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex)); | |
351 | ||
352 | list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) { | |
353 | if (tmp->md_dev == md_dev) { | |
354 | pool = tmp; | |
355 | break; | |
356 | } | |
357 | } | |
358 | ||
359 | return pool; | |
360 | } | |
361 | ||
362 | /*----------------------------------------------------------------*/ | |
363 | ||
a24c2569 | 364 | struct dm_thin_endio_hook { |
eb2aa48d | 365 | struct thin_c *tc; |
44feb387 MS |
366 | struct dm_deferred_entry *shared_read_entry; |
367 | struct dm_deferred_entry *all_io_entry; | |
a24c2569 | 368 | struct dm_thin_new_mapping *overwrite_mapping; |
eb2aa48d JT |
369 | }; |
370 | ||
991d9fa0 JT |
371 | static void __requeue_bio_list(struct thin_c *tc, struct bio_list *master) |
372 | { | |
373 | struct bio *bio; | |
374 | struct bio_list bios; | |
375 | ||
376 | bio_list_init(&bios); | |
377 | bio_list_merge(&bios, master); | |
378 | bio_list_init(master); | |
379 | ||
380 | while ((bio = bio_list_pop(&bios))) { | |
59c3d2c6 | 381 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
a24c2569 | 382 | |
eb2aa48d | 383 | if (h->tc == tc) |
991d9fa0 JT |
384 | bio_endio(bio, DM_ENDIO_REQUEUE); |
385 | else | |
386 | bio_list_add(master, bio); | |
387 | } | |
388 | } | |
389 | ||
390 | static void requeue_io(struct thin_c *tc) | |
391 | { | |
392 | struct pool *pool = tc->pool; | |
393 | unsigned long flags; | |
394 | ||
395 | spin_lock_irqsave(&pool->lock, flags); | |
396 | __requeue_bio_list(tc, &pool->deferred_bios); | |
397 | __requeue_bio_list(tc, &pool->retry_on_resume_list); | |
398 | spin_unlock_irqrestore(&pool->lock, flags); | |
399 | } | |
400 | ||
401 | /* | |
402 | * This section of code contains the logic for processing a thin device's IO. | |
403 | * Much of the code depends on pool object resources (lists, workqueues, etc) | |
404 | * but most is exclusively called from the thin target rather than the thin-pool | |
405 | * target. | |
406 | */ | |
407 | ||
58f77a21 MS |
408 | static bool block_size_is_power_of_two(struct pool *pool) |
409 | { | |
410 | return pool->sectors_per_block_shift >= 0; | |
411 | } | |
412 | ||
991d9fa0 JT |
413 | static dm_block_t get_bio_block(struct thin_c *tc, struct bio *bio) |
414 | { | |
58f77a21 | 415 | struct pool *pool = tc->pool; |
55f2b8bd MS |
416 | sector_t block_nr = bio->bi_sector; |
417 | ||
58f77a21 MS |
418 | if (block_size_is_power_of_two(pool)) |
419 | block_nr >>= pool->sectors_per_block_shift; | |
f9a8e0cd | 420 | else |
58f77a21 | 421 | (void) sector_div(block_nr, pool->sectors_per_block); |
55f2b8bd MS |
422 | |
423 | return block_nr; | |
991d9fa0 JT |
424 | } |
425 | ||
426 | static void remap(struct thin_c *tc, struct bio *bio, dm_block_t block) | |
427 | { | |
428 | struct pool *pool = tc->pool; | |
55f2b8bd | 429 | sector_t bi_sector = bio->bi_sector; |
991d9fa0 JT |
430 | |
431 | bio->bi_bdev = tc->pool_dev->bdev; | |
58f77a21 | 432 | if (block_size_is_power_of_two(pool)) |
f9a8e0cd MP |
433 | bio->bi_sector = (block << pool->sectors_per_block_shift) | |
434 | (bi_sector & (pool->sectors_per_block - 1)); | |
58f77a21 MS |
435 | else |
436 | bio->bi_sector = (block * pool->sectors_per_block) + | |
437 | sector_div(bi_sector, pool->sectors_per_block); | |
991d9fa0 JT |
438 | } |
439 | ||
2dd9c257 JT |
440 | static void remap_to_origin(struct thin_c *tc, struct bio *bio) |
441 | { | |
442 | bio->bi_bdev = tc->origin_dev->bdev; | |
443 | } | |
444 | ||
4afdd680 JT |
445 | static int bio_triggers_commit(struct thin_c *tc, struct bio *bio) |
446 | { | |
447 | return (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && | |
448 | dm_thin_changed_this_transaction(tc->td); | |
449 | } | |
450 | ||
e8088073 JT |
451 | static void inc_all_io_entry(struct pool *pool, struct bio *bio) |
452 | { | |
453 | struct dm_thin_endio_hook *h; | |
454 | ||
455 | if (bio->bi_rw & REQ_DISCARD) | |
456 | return; | |
457 | ||
59c3d2c6 | 458 | h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
e8088073 JT |
459 | h->all_io_entry = dm_deferred_entry_inc(pool->all_io_ds); |
460 | } | |
461 | ||
2dd9c257 | 462 | static void issue(struct thin_c *tc, struct bio *bio) |
991d9fa0 JT |
463 | { |
464 | struct pool *pool = tc->pool; | |
465 | unsigned long flags; | |
466 | ||
e49e5829 JT |
467 | if (!bio_triggers_commit(tc, bio)) { |
468 | generic_make_request(bio); | |
469 | return; | |
470 | } | |
471 | ||
991d9fa0 | 472 | /* |
e49e5829 JT |
473 | * Complete bio with an error if earlier I/O caused changes to |
474 | * the metadata that can't be committed e.g, due to I/O errors | |
475 | * on the metadata device. | |
991d9fa0 | 476 | */ |
e49e5829 JT |
477 | if (dm_thin_aborted_changes(tc->td)) { |
478 | bio_io_error(bio); | |
479 | return; | |
480 | } | |
481 | ||
482 | /* | |
483 | * Batch together any bios that trigger commits and then issue a | |
484 | * single commit for them in process_deferred_bios(). | |
485 | */ | |
486 | spin_lock_irqsave(&pool->lock, flags); | |
487 | bio_list_add(&pool->deferred_flush_bios, bio); | |
488 | spin_unlock_irqrestore(&pool->lock, flags); | |
991d9fa0 JT |
489 | } |
490 | ||
2dd9c257 JT |
491 | static void remap_to_origin_and_issue(struct thin_c *tc, struct bio *bio) |
492 | { | |
493 | remap_to_origin(tc, bio); | |
494 | issue(tc, bio); | |
495 | } | |
496 | ||
497 | static void remap_and_issue(struct thin_c *tc, struct bio *bio, | |
498 | dm_block_t block) | |
499 | { | |
500 | remap(tc, bio, block); | |
501 | issue(tc, bio); | |
502 | } | |
503 | ||
991d9fa0 JT |
504 | /*----------------------------------------------------------------*/ |
505 | ||
506 | /* | |
507 | * Bio endio functions. | |
508 | */ | |
a24c2569 | 509 | struct dm_thin_new_mapping { |
991d9fa0 JT |
510 | struct list_head list; |
511 | ||
eb2aa48d JT |
512 | unsigned quiesced:1; |
513 | unsigned prepared:1; | |
104655fd | 514 | unsigned pass_discard:1; |
991d9fa0 JT |
515 | |
516 | struct thin_c *tc; | |
517 | dm_block_t virt_block; | |
518 | dm_block_t data_block; | |
a24c2569 | 519 | struct dm_bio_prison_cell *cell, *cell2; |
991d9fa0 JT |
520 | int err; |
521 | ||
522 | /* | |
523 | * If the bio covers the whole area of a block then we can avoid | |
524 | * zeroing or copying. Instead this bio is hooked. The bio will | |
525 | * still be in the cell, so care has to be taken to avoid issuing | |
526 | * the bio twice. | |
527 | */ | |
528 | struct bio *bio; | |
529 | bio_end_io_t *saved_bi_end_io; | |
530 | }; | |
531 | ||
a24c2569 | 532 | static void __maybe_add_mapping(struct dm_thin_new_mapping *m) |
991d9fa0 JT |
533 | { |
534 | struct pool *pool = m->tc->pool; | |
535 | ||
eb2aa48d | 536 | if (m->quiesced && m->prepared) { |
991d9fa0 JT |
537 | list_add(&m->list, &pool->prepared_mappings); |
538 | wake_worker(pool); | |
539 | } | |
540 | } | |
541 | ||
542 | static void copy_complete(int read_err, unsigned long write_err, void *context) | |
543 | { | |
544 | unsigned long flags; | |
a24c2569 | 545 | struct dm_thin_new_mapping *m = context; |
991d9fa0 JT |
546 | struct pool *pool = m->tc->pool; |
547 | ||
548 | m->err = read_err || write_err ? -EIO : 0; | |
549 | ||
550 | spin_lock_irqsave(&pool->lock, flags); | |
551 | m->prepared = 1; | |
552 | __maybe_add_mapping(m); | |
553 | spin_unlock_irqrestore(&pool->lock, flags); | |
554 | } | |
555 | ||
556 | static void overwrite_endio(struct bio *bio, int err) | |
557 | { | |
558 | unsigned long flags; | |
59c3d2c6 | 559 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
a24c2569 | 560 | struct dm_thin_new_mapping *m = h->overwrite_mapping; |
991d9fa0 JT |
561 | struct pool *pool = m->tc->pool; |
562 | ||
563 | m->err = err; | |
564 | ||
565 | spin_lock_irqsave(&pool->lock, flags); | |
566 | m->prepared = 1; | |
567 | __maybe_add_mapping(m); | |
568 | spin_unlock_irqrestore(&pool->lock, flags); | |
569 | } | |
570 | ||
991d9fa0 JT |
571 | /*----------------------------------------------------------------*/ |
572 | ||
573 | /* | |
574 | * Workqueue. | |
575 | */ | |
576 | ||
577 | /* | |
578 | * Prepared mapping jobs. | |
579 | */ | |
580 | ||
581 | /* | |
582 | * This sends the bios in the cell back to the deferred_bios list. | |
583 | */ | |
2aab3850 | 584 | static void cell_defer(struct thin_c *tc, struct dm_bio_prison_cell *cell) |
991d9fa0 JT |
585 | { |
586 | struct pool *pool = tc->pool; | |
587 | unsigned long flags; | |
588 | ||
589 | spin_lock_irqsave(&pool->lock, flags); | |
6beca5eb | 590 | cell_release(pool, cell, &pool->deferred_bios); |
991d9fa0 JT |
591 | spin_unlock_irqrestore(&tc->pool->lock, flags); |
592 | ||
593 | wake_worker(pool); | |
594 | } | |
595 | ||
596 | /* | |
6beca5eb | 597 | * Same as cell_defer above, except it omits the original holder of the cell. |
991d9fa0 | 598 | */ |
f286ba0e | 599 | static void cell_defer_no_holder(struct thin_c *tc, struct dm_bio_prison_cell *cell) |
991d9fa0 | 600 | { |
991d9fa0 JT |
601 | struct pool *pool = tc->pool; |
602 | unsigned long flags; | |
603 | ||
991d9fa0 | 604 | spin_lock_irqsave(&pool->lock, flags); |
6beca5eb | 605 | cell_release_no_holder(pool, cell, &pool->deferred_bios); |
991d9fa0 JT |
606 | spin_unlock_irqrestore(&pool->lock, flags); |
607 | ||
608 | wake_worker(pool); | |
609 | } | |
610 | ||
e49e5829 JT |
611 | static void process_prepared_mapping_fail(struct dm_thin_new_mapping *m) |
612 | { | |
613 | if (m->bio) | |
614 | m->bio->bi_end_io = m->saved_bi_end_io; | |
6beca5eb | 615 | cell_error(m->tc->pool, m->cell); |
e49e5829 JT |
616 | list_del(&m->list); |
617 | mempool_free(m, m->tc->pool->mapping_pool); | |
618 | } | |
025b9685 | 619 | |
a24c2569 | 620 | static void process_prepared_mapping(struct dm_thin_new_mapping *m) |
991d9fa0 JT |
621 | { |
622 | struct thin_c *tc = m->tc; | |
6beca5eb | 623 | struct pool *pool = tc->pool; |
991d9fa0 JT |
624 | struct bio *bio; |
625 | int r; | |
626 | ||
627 | bio = m->bio; | |
628 | if (bio) | |
629 | bio->bi_end_io = m->saved_bi_end_io; | |
630 | ||
631 | if (m->err) { | |
6beca5eb | 632 | cell_error(pool, m->cell); |
905386f8 | 633 | goto out; |
991d9fa0 JT |
634 | } |
635 | ||
636 | /* | |
637 | * Commit the prepared block into the mapping btree. | |
638 | * Any I/O for this block arriving after this point will get | |
639 | * remapped to it directly. | |
640 | */ | |
641 | r = dm_thin_insert_block(tc->td, m->virt_block, m->data_block); | |
642 | if (r) { | |
c397741c | 643 | DMERR_LIMIT("dm_thin_insert_block() failed"); |
6beca5eb | 644 | cell_error(pool, m->cell); |
905386f8 | 645 | goto out; |
991d9fa0 JT |
646 | } |
647 | ||
648 | /* | |
649 | * Release any bios held while the block was being provisioned. | |
650 | * If we are processing a write bio that completely covers the block, | |
651 | * we already processed it so can ignore it now when processing | |
652 | * the bios in the cell. | |
653 | */ | |
654 | if (bio) { | |
f286ba0e | 655 | cell_defer_no_holder(tc, m->cell); |
991d9fa0 JT |
656 | bio_endio(bio, 0); |
657 | } else | |
2aab3850 | 658 | cell_defer(tc, m->cell); |
991d9fa0 | 659 | |
905386f8 | 660 | out: |
991d9fa0 | 661 | list_del(&m->list); |
6beca5eb | 662 | mempool_free(m, pool->mapping_pool); |
991d9fa0 JT |
663 | } |
664 | ||
e49e5829 | 665 | static void process_prepared_discard_fail(struct dm_thin_new_mapping *m) |
104655fd | 666 | { |
104655fd JT |
667 | struct thin_c *tc = m->tc; |
668 | ||
e49e5829 | 669 | bio_io_error(m->bio); |
f286ba0e JT |
670 | cell_defer_no_holder(tc, m->cell); |
671 | cell_defer_no_holder(tc, m->cell2); | |
e49e5829 JT |
672 | mempool_free(m, tc->pool->mapping_pool); |
673 | } | |
674 | ||
675 | static void process_prepared_discard_passdown(struct dm_thin_new_mapping *m) | |
676 | { | |
677 | struct thin_c *tc = m->tc; | |
104655fd | 678 | |
e8088073 | 679 | inc_all_io_entry(tc->pool, m->bio); |
f286ba0e JT |
680 | cell_defer_no_holder(tc, m->cell); |
681 | cell_defer_no_holder(tc, m->cell2); | |
e8088073 | 682 | |
104655fd JT |
683 | if (m->pass_discard) |
684 | remap_and_issue(tc, m->bio, m->data_block); | |
685 | else | |
686 | bio_endio(m->bio, 0); | |
687 | ||
104655fd JT |
688 | mempool_free(m, tc->pool->mapping_pool); |
689 | } | |
690 | ||
e49e5829 JT |
691 | static void process_prepared_discard(struct dm_thin_new_mapping *m) |
692 | { | |
693 | int r; | |
694 | struct thin_c *tc = m->tc; | |
695 | ||
696 | r = dm_thin_remove_block(tc->td, m->virt_block); | |
697 | if (r) | |
c397741c | 698 | DMERR_LIMIT("dm_thin_remove_block() failed"); |
e49e5829 JT |
699 | |
700 | process_prepared_discard_passdown(m); | |
701 | } | |
702 | ||
104655fd | 703 | static void process_prepared(struct pool *pool, struct list_head *head, |
e49e5829 | 704 | process_mapping_fn *fn) |
991d9fa0 JT |
705 | { |
706 | unsigned long flags; | |
707 | struct list_head maps; | |
a24c2569 | 708 | struct dm_thin_new_mapping *m, *tmp; |
991d9fa0 JT |
709 | |
710 | INIT_LIST_HEAD(&maps); | |
711 | spin_lock_irqsave(&pool->lock, flags); | |
104655fd | 712 | list_splice_init(head, &maps); |
991d9fa0 JT |
713 | spin_unlock_irqrestore(&pool->lock, flags); |
714 | ||
715 | list_for_each_entry_safe(m, tmp, &maps, list) | |
e49e5829 | 716 | (*fn)(m); |
991d9fa0 JT |
717 | } |
718 | ||
719 | /* | |
720 | * Deferred bio jobs. | |
721 | */ | |
104655fd | 722 | static int io_overlaps_block(struct pool *pool, struct bio *bio) |
991d9fa0 | 723 | { |
f9a8e0cd | 724 | return bio->bi_size == (pool->sectors_per_block << SECTOR_SHIFT); |
104655fd JT |
725 | } |
726 | ||
727 | static int io_overwrites_block(struct pool *pool, struct bio *bio) | |
728 | { | |
729 | return (bio_data_dir(bio) == WRITE) && | |
730 | io_overlaps_block(pool, bio); | |
991d9fa0 JT |
731 | } |
732 | ||
733 | static void save_and_set_endio(struct bio *bio, bio_end_io_t **save, | |
734 | bio_end_io_t *fn) | |
735 | { | |
736 | *save = bio->bi_end_io; | |
737 | bio->bi_end_io = fn; | |
738 | } | |
739 | ||
740 | static int ensure_next_mapping(struct pool *pool) | |
741 | { | |
742 | if (pool->next_mapping) | |
743 | return 0; | |
744 | ||
745 | pool->next_mapping = mempool_alloc(pool->mapping_pool, GFP_ATOMIC); | |
746 | ||
747 | return pool->next_mapping ? 0 : -ENOMEM; | |
748 | } | |
749 | ||
a24c2569 | 750 | static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool) |
991d9fa0 | 751 | { |
a24c2569 | 752 | struct dm_thin_new_mapping *r = pool->next_mapping; |
991d9fa0 JT |
753 | |
754 | BUG_ON(!pool->next_mapping); | |
755 | ||
756 | pool->next_mapping = NULL; | |
757 | ||
758 | return r; | |
759 | } | |
760 | ||
761 | static void schedule_copy(struct thin_c *tc, dm_block_t virt_block, | |
2dd9c257 JT |
762 | struct dm_dev *origin, dm_block_t data_origin, |
763 | dm_block_t data_dest, | |
a24c2569 | 764 | struct dm_bio_prison_cell *cell, struct bio *bio) |
991d9fa0 JT |
765 | { |
766 | int r; | |
767 | struct pool *pool = tc->pool; | |
a24c2569 | 768 | struct dm_thin_new_mapping *m = get_next_mapping(pool); |
991d9fa0 JT |
769 | |
770 | INIT_LIST_HEAD(&m->list); | |
eb2aa48d | 771 | m->quiesced = 0; |
991d9fa0 JT |
772 | m->prepared = 0; |
773 | m->tc = tc; | |
774 | m->virt_block = virt_block; | |
775 | m->data_block = data_dest; | |
776 | m->cell = cell; | |
777 | m->err = 0; | |
778 | m->bio = NULL; | |
779 | ||
44feb387 | 780 | if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list)) |
eb2aa48d | 781 | m->quiesced = 1; |
991d9fa0 JT |
782 | |
783 | /* | |
784 | * IO to pool_dev remaps to the pool target's data_dev. | |
785 | * | |
786 | * If the whole block of data is being overwritten, we can issue the | |
787 | * bio immediately. Otherwise we use kcopyd to clone the data first. | |
788 | */ | |
789 | if (io_overwrites_block(pool, bio)) { | |
59c3d2c6 | 790 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
a24c2569 | 791 | |
eb2aa48d | 792 | h->overwrite_mapping = m; |
991d9fa0 JT |
793 | m->bio = bio; |
794 | save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio); | |
e8088073 | 795 | inc_all_io_entry(pool, bio); |
991d9fa0 JT |
796 | remap_and_issue(tc, bio, data_dest); |
797 | } else { | |
798 | struct dm_io_region from, to; | |
799 | ||
2dd9c257 | 800 | from.bdev = origin->bdev; |
991d9fa0 JT |
801 | from.sector = data_origin * pool->sectors_per_block; |
802 | from.count = pool->sectors_per_block; | |
803 | ||
804 | to.bdev = tc->pool_dev->bdev; | |
805 | to.sector = data_dest * pool->sectors_per_block; | |
806 | to.count = pool->sectors_per_block; | |
807 | ||
808 | r = dm_kcopyd_copy(pool->copier, &from, 1, &to, | |
809 | 0, copy_complete, m); | |
810 | if (r < 0) { | |
811 | mempool_free(m, pool->mapping_pool); | |
c397741c | 812 | DMERR_LIMIT("dm_kcopyd_copy() failed"); |
6beca5eb | 813 | cell_error(pool, cell); |
991d9fa0 JT |
814 | } |
815 | } | |
816 | } | |
817 | ||
2dd9c257 JT |
818 | static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block, |
819 | dm_block_t data_origin, dm_block_t data_dest, | |
a24c2569 | 820 | struct dm_bio_prison_cell *cell, struct bio *bio) |
2dd9c257 JT |
821 | { |
822 | schedule_copy(tc, virt_block, tc->pool_dev, | |
823 | data_origin, data_dest, cell, bio); | |
824 | } | |
825 | ||
826 | static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block, | |
827 | dm_block_t data_dest, | |
a24c2569 | 828 | struct dm_bio_prison_cell *cell, struct bio *bio) |
2dd9c257 JT |
829 | { |
830 | schedule_copy(tc, virt_block, tc->origin_dev, | |
831 | virt_block, data_dest, cell, bio); | |
832 | } | |
833 | ||
991d9fa0 | 834 | static void schedule_zero(struct thin_c *tc, dm_block_t virt_block, |
a24c2569 | 835 | dm_block_t data_block, struct dm_bio_prison_cell *cell, |
991d9fa0 JT |
836 | struct bio *bio) |
837 | { | |
838 | struct pool *pool = tc->pool; | |
a24c2569 | 839 | struct dm_thin_new_mapping *m = get_next_mapping(pool); |
991d9fa0 JT |
840 | |
841 | INIT_LIST_HEAD(&m->list); | |
eb2aa48d | 842 | m->quiesced = 1; |
991d9fa0 JT |
843 | m->prepared = 0; |
844 | m->tc = tc; | |
845 | m->virt_block = virt_block; | |
846 | m->data_block = data_block; | |
847 | m->cell = cell; | |
848 | m->err = 0; | |
849 | m->bio = NULL; | |
850 | ||
851 | /* | |
852 | * If the whole block of data is being overwritten or we are not | |
853 | * zeroing pre-existing data, we can issue the bio immediately. | |
854 | * Otherwise we use kcopyd to zero the data first. | |
855 | */ | |
67e2e2b2 | 856 | if (!pool->pf.zero_new_blocks) |
991d9fa0 JT |
857 | process_prepared_mapping(m); |
858 | ||
859 | else if (io_overwrites_block(pool, bio)) { | |
59c3d2c6 | 860 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
a24c2569 | 861 | |
eb2aa48d | 862 | h->overwrite_mapping = m; |
991d9fa0 JT |
863 | m->bio = bio; |
864 | save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio); | |
e8088073 | 865 | inc_all_io_entry(pool, bio); |
991d9fa0 | 866 | remap_and_issue(tc, bio, data_block); |
991d9fa0 JT |
867 | } else { |
868 | int r; | |
869 | struct dm_io_region to; | |
870 | ||
871 | to.bdev = tc->pool_dev->bdev; | |
872 | to.sector = data_block * pool->sectors_per_block; | |
873 | to.count = pool->sectors_per_block; | |
874 | ||
875 | r = dm_kcopyd_zero(pool->copier, 1, &to, 0, copy_complete, m); | |
876 | if (r < 0) { | |
877 | mempool_free(m, pool->mapping_pool); | |
c397741c | 878 | DMERR_LIMIT("dm_kcopyd_zero() failed"); |
6beca5eb | 879 | cell_error(pool, cell); |
991d9fa0 JT |
880 | } |
881 | } | |
882 | } | |
883 | ||
e49e5829 JT |
884 | static int commit(struct pool *pool) |
885 | { | |
886 | int r; | |
887 | ||
888 | r = dm_pool_commit_metadata(pool->pmd); | |
889 | if (r) | |
c397741c | 890 | DMERR_LIMIT("commit failed: error = %d", r); |
e49e5829 JT |
891 | |
892 | return r; | |
893 | } | |
894 | ||
895 | /* | |
896 | * A non-zero return indicates read_only or fail_io mode. | |
897 | * Many callers don't care about the return value. | |
898 | */ | |
899 | static int commit_or_fallback(struct pool *pool) | |
900 | { | |
901 | int r; | |
902 | ||
903 | if (get_pool_mode(pool) != PM_WRITE) | |
904 | return -EINVAL; | |
905 | ||
906 | r = commit(pool); | |
907 | if (r) | |
908 | set_pool_mode(pool, PM_READ_ONLY); | |
909 | ||
910 | return r; | |
911 | } | |
912 | ||
991d9fa0 JT |
913 | static int alloc_data_block(struct thin_c *tc, dm_block_t *result) |
914 | { | |
915 | int r; | |
916 | dm_block_t free_blocks; | |
917 | unsigned long flags; | |
918 | struct pool *pool = tc->pool; | |
919 | ||
920 | r = dm_pool_get_free_block_count(pool->pmd, &free_blocks); | |
921 | if (r) | |
922 | return r; | |
923 | ||
924 | if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) { | |
b17446df | 925 | DMWARN("%s: reached low water mark for data device: sending event.", |
991d9fa0 JT |
926 | dm_device_name(pool->pool_md)); |
927 | spin_lock_irqsave(&pool->lock, flags); | |
928 | pool->low_water_triggered = 1; | |
929 | spin_unlock_irqrestore(&pool->lock, flags); | |
930 | dm_table_event(pool->ti->table); | |
931 | } | |
932 | ||
933 | if (!free_blocks) { | |
934 | if (pool->no_free_space) | |
935 | return -ENOSPC; | |
936 | else { | |
937 | /* | |
938 | * Try to commit to see if that will free up some | |
939 | * more space. | |
940 | */ | |
e49e5829 | 941 | (void) commit_or_fallback(pool); |
991d9fa0 JT |
942 | |
943 | r = dm_pool_get_free_block_count(pool->pmd, &free_blocks); | |
944 | if (r) | |
945 | return r; | |
946 | ||
947 | /* | |
948 | * If we still have no space we set a flag to avoid | |
949 | * doing all this checking and return -ENOSPC. | |
950 | */ | |
951 | if (!free_blocks) { | |
952 | DMWARN("%s: no free space available.", | |
953 | dm_device_name(pool->pool_md)); | |
954 | spin_lock_irqsave(&pool->lock, flags); | |
955 | pool->no_free_space = 1; | |
956 | spin_unlock_irqrestore(&pool->lock, flags); | |
957 | return -ENOSPC; | |
958 | } | |
959 | } | |
960 | } | |
961 | ||
962 | r = dm_pool_alloc_data_block(pool->pmd, result); | |
963 | if (r) | |
964 | return r; | |
965 | ||
966 | return 0; | |
967 | } | |
968 | ||
969 | /* | |
970 | * If we have run out of space, queue bios until the device is | |
971 | * resumed, presumably after having been reloaded with more space. | |
972 | */ | |
973 | static void retry_on_resume(struct bio *bio) | |
974 | { | |
59c3d2c6 | 975 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
eb2aa48d | 976 | struct thin_c *tc = h->tc; |
991d9fa0 JT |
977 | struct pool *pool = tc->pool; |
978 | unsigned long flags; | |
979 | ||
980 | spin_lock_irqsave(&pool->lock, flags); | |
981 | bio_list_add(&pool->retry_on_resume_list, bio); | |
982 | spin_unlock_irqrestore(&pool->lock, flags); | |
983 | } | |
984 | ||
6beca5eb | 985 | static void no_space(struct pool *pool, struct dm_bio_prison_cell *cell) |
991d9fa0 JT |
986 | { |
987 | struct bio *bio; | |
988 | struct bio_list bios; | |
989 | ||
990 | bio_list_init(&bios); | |
6beca5eb | 991 | cell_release(pool, cell, &bios); |
991d9fa0 JT |
992 | |
993 | while ((bio = bio_list_pop(&bios))) | |
994 | retry_on_resume(bio); | |
995 | } | |
996 | ||
104655fd JT |
997 | static void process_discard(struct thin_c *tc, struct bio *bio) |
998 | { | |
999 | int r; | |
c3a0ce2e | 1000 | unsigned long flags; |
104655fd | 1001 | struct pool *pool = tc->pool; |
a24c2569 | 1002 | struct dm_bio_prison_cell *cell, *cell2; |
44feb387 | 1003 | struct dm_cell_key key, key2; |
104655fd JT |
1004 | dm_block_t block = get_bio_block(tc, bio); |
1005 | struct dm_thin_lookup_result lookup_result; | |
a24c2569 | 1006 | struct dm_thin_new_mapping *m; |
104655fd JT |
1007 | |
1008 | build_virtual_key(tc->td, block, &key); | |
6beca5eb | 1009 | if (bio_detain(tc->pool, &key, bio, &cell)) |
104655fd JT |
1010 | return; |
1011 | ||
1012 | r = dm_thin_find_block(tc->td, block, 1, &lookup_result); | |
1013 | switch (r) { | |
1014 | case 0: | |
1015 | /* | |
1016 | * Check nobody is fiddling with this pool block. This can | |
1017 | * happen if someone's in the process of breaking sharing | |
1018 | * on this block. | |
1019 | */ | |
1020 | build_data_key(tc->td, lookup_result.block, &key2); | |
6beca5eb | 1021 | if (bio_detain(tc->pool, &key2, bio, &cell2)) { |
f286ba0e | 1022 | cell_defer_no_holder(tc, cell); |
104655fd JT |
1023 | break; |
1024 | } | |
1025 | ||
1026 | if (io_overlaps_block(pool, bio)) { | |
1027 | /* | |
1028 | * IO may still be going to the destination block. We must | |
1029 | * quiesce before we can do the removal. | |
1030 | */ | |
1031 | m = get_next_mapping(pool); | |
1032 | m->tc = tc; | |
17b7d63f | 1033 | m->pass_discard = (!lookup_result.shared) && pool->pf.discard_passdown; |
104655fd JT |
1034 | m->virt_block = block; |
1035 | m->data_block = lookup_result.block; | |
1036 | m->cell = cell; | |
1037 | m->cell2 = cell2; | |
1038 | m->err = 0; | |
1039 | m->bio = bio; | |
1040 | ||
44feb387 | 1041 | if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list)) { |
c3a0ce2e | 1042 | spin_lock_irqsave(&pool->lock, flags); |
104655fd | 1043 | list_add(&m->list, &pool->prepared_discards); |
c3a0ce2e | 1044 | spin_unlock_irqrestore(&pool->lock, flags); |
104655fd JT |
1045 | wake_worker(pool); |
1046 | } | |
1047 | } else { | |
e8088073 | 1048 | inc_all_io_entry(pool, bio); |
f286ba0e JT |
1049 | cell_defer_no_holder(tc, cell); |
1050 | cell_defer_no_holder(tc, cell2); | |
e8088073 | 1051 | |
104655fd | 1052 | /* |
49296309 MP |
1053 | * The DM core makes sure that the discard doesn't span |
1054 | * a block boundary. So we submit the discard of a | |
1055 | * partial block appropriately. | |
104655fd | 1056 | */ |
650d2a06 MP |
1057 | if ((!lookup_result.shared) && pool->pf.discard_passdown) |
1058 | remap_and_issue(tc, bio, lookup_result.block); | |
1059 | else | |
1060 | bio_endio(bio, 0); | |
104655fd JT |
1061 | } |
1062 | break; | |
1063 | ||
1064 | case -ENODATA: | |
1065 | /* | |
1066 | * It isn't provisioned, just forget it. | |
1067 | */ | |
f286ba0e | 1068 | cell_defer_no_holder(tc, cell); |
104655fd JT |
1069 | bio_endio(bio, 0); |
1070 | break; | |
1071 | ||
1072 | default: | |
c397741c MS |
1073 | DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d", |
1074 | __func__, r); | |
f286ba0e | 1075 | cell_defer_no_holder(tc, cell); |
104655fd JT |
1076 | bio_io_error(bio); |
1077 | break; | |
1078 | } | |
1079 | } | |
1080 | ||
991d9fa0 | 1081 | static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block, |
44feb387 | 1082 | struct dm_cell_key *key, |
991d9fa0 | 1083 | struct dm_thin_lookup_result *lookup_result, |
a24c2569 | 1084 | struct dm_bio_prison_cell *cell) |
991d9fa0 JT |
1085 | { |
1086 | int r; | |
1087 | dm_block_t data_block; | |
1088 | ||
1089 | r = alloc_data_block(tc, &data_block); | |
1090 | switch (r) { | |
1091 | case 0: | |
2dd9c257 JT |
1092 | schedule_internal_copy(tc, block, lookup_result->block, |
1093 | data_block, cell, bio); | |
991d9fa0 JT |
1094 | break; |
1095 | ||
1096 | case -ENOSPC: | |
6beca5eb | 1097 | no_space(tc->pool, cell); |
991d9fa0 JT |
1098 | break; |
1099 | ||
1100 | default: | |
c397741c MS |
1101 | DMERR_LIMIT("%s: alloc_data_block() failed: error = %d", |
1102 | __func__, r); | |
6beca5eb | 1103 | cell_error(tc->pool, cell); |
991d9fa0 JT |
1104 | break; |
1105 | } | |
1106 | } | |
1107 | ||
1108 | static void process_shared_bio(struct thin_c *tc, struct bio *bio, | |
1109 | dm_block_t block, | |
1110 | struct dm_thin_lookup_result *lookup_result) | |
1111 | { | |
a24c2569 | 1112 | struct dm_bio_prison_cell *cell; |
991d9fa0 | 1113 | struct pool *pool = tc->pool; |
44feb387 | 1114 | struct dm_cell_key key; |
991d9fa0 JT |
1115 | |
1116 | /* | |
1117 | * If cell is already occupied, then sharing is already in the process | |
1118 | * of being broken so we have nothing further to do here. | |
1119 | */ | |
1120 | build_data_key(tc->td, lookup_result->block, &key); | |
6beca5eb | 1121 | if (bio_detain(pool, &key, bio, &cell)) |
991d9fa0 JT |
1122 | return; |
1123 | ||
60049701 | 1124 | if (bio_data_dir(bio) == WRITE && bio->bi_size) |
991d9fa0 JT |
1125 | break_sharing(tc, bio, block, &key, lookup_result, cell); |
1126 | else { | |
59c3d2c6 | 1127 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
991d9fa0 | 1128 | |
44feb387 | 1129 | h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds); |
e8088073 | 1130 | inc_all_io_entry(pool, bio); |
f286ba0e | 1131 | cell_defer_no_holder(tc, cell); |
e8088073 | 1132 | |
991d9fa0 JT |
1133 | remap_and_issue(tc, bio, lookup_result->block); |
1134 | } | |
1135 | } | |
1136 | ||
1137 | static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block, | |
a24c2569 | 1138 | struct dm_bio_prison_cell *cell) |
991d9fa0 JT |
1139 | { |
1140 | int r; | |
1141 | dm_block_t data_block; | |
6beca5eb | 1142 | struct pool *pool = tc->pool; |
991d9fa0 JT |
1143 | |
1144 | /* | |
1145 | * Remap empty bios (flushes) immediately, without provisioning. | |
1146 | */ | |
1147 | if (!bio->bi_size) { | |
6beca5eb | 1148 | inc_all_io_entry(pool, bio); |
f286ba0e | 1149 | cell_defer_no_holder(tc, cell); |
e8088073 | 1150 | |
991d9fa0 JT |
1151 | remap_and_issue(tc, bio, 0); |
1152 | return; | |
1153 | } | |
1154 | ||
1155 | /* | |
1156 | * Fill read bios with zeroes and complete them immediately. | |
1157 | */ | |
1158 | if (bio_data_dir(bio) == READ) { | |
1159 | zero_fill_bio(bio); | |
f286ba0e | 1160 | cell_defer_no_holder(tc, cell); |
991d9fa0 JT |
1161 | bio_endio(bio, 0); |
1162 | return; | |
1163 | } | |
1164 | ||
1165 | r = alloc_data_block(tc, &data_block); | |
1166 | switch (r) { | |
1167 | case 0: | |
2dd9c257 JT |
1168 | if (tc->origin_dev) |
1169 | schedule_external_copy(tc, block, data_block, cell, bio); | |
1170 | else | |
1171 | schedule_zero(tc, block, data_block, cell, bio); | |
991d9fa0 JT |
1172 | break; |
1173 | ||
1174 | case -ENOSPC: | |
6beca5eb | 1175 | no_space(pool, cell); |
991d9fa0 JT |
1176 | break; |
1177 | ||
1178 | default: | |
c397741c MS |
1179 | DMERR_LIMIT("%s: alloc_data_block() failed: error = %d", |
1180 | __func__, r); | |
6beca5eb JT |
1181 | set_pool_mode(pool, PM_READ_ONLY); |
1182 | cell_error(pool, cell); | |
991d9fa0 JT |
1183 | break; |
1184 | } | |
1185 | } | |
1186 | ||
1187 | static void process_bio(struct thin_c *tc, struct bio *bio) | |
1188 | { | |
1189 | int r; | |
6beca5eb | 1190 | struct pool *pool = tc->pool; |
991d9fa0 | 1191 | dm_block_t block = get_bio_block(tc, bio); |
a24c2569 | 1192 | struct dm_bio_prison_cell *cell; |
44feb387 | 1193 | struct dm_cell_key key; |
991d9fa0 JT |
1194 | struct dm_thin_lookup_result lookup_result; |
1195 | ||
1196 | /* | |
1197 | * If cell is already occupied, then the block is already | |
1198 | * being provisioned so we have nothing further to do here. | |
1199 | */ | |
1200 | build_virtual_key(tc->td, block, &key); | |
6beca5eb | 1201 | if (bio_detain(pool, &key, bio, &cell)) |
991d9fa0 JT |
1202 | return; |
1203 | ||
1204 | r = dm_thin_find_block(tc->td, block, 1, &lookup_result); | |
1205 | switch (r) { | |
1206 | case 0: | |
e8088073 | 1207 | if (lookup_result.shared) { |
991d9fa0 | 1208 | process_shared_bio(tc, bio, block, &lookup_result); |
6beca5eb | 1209 | cell_defer_no_holder(tc, cell); /* FIXME: pass this cell into process_shared? */ |
e8088073 | 1210 | } else { |
6beca5eb | 1211 | inc_all_io_entry(pool, bio); |
f286ba0e | 1212 | cell_defer_no_holder(tc, cell); |
e8088073 | 1213 | |
991d9fa0 | 1214 | remap_and_issue(tc, bio, lookup_result.block); |
e8088073 | 1215 | } |
991d9fa0 JT |
1216 | break; |
1217 | ||
1218 | case -ENODATA: | |
2dd9c257 | 1219 | if (bio_data_dir(bio) == READ && tc->origin_dev) { |
6beca5eb | 1220 | inc_all_io_entry(pool, bio); |
f286ba0e | 1221 | cell_defer_no_holder(tc, cell); |
e8088073 | 1222 | |
2dd9c257 JT |
1223 | remap_to_origin_and_issue(tc, bio); |
1224 | } else | |
1225 | provision_block(tc, bio, block, cell); | |
991d9fa0 JT |
1226 | break; |
1227 | ||
1228 | default: | |
c397741c MS |
1229 | DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d", |
1230 | __func__, r); | |
f286ba0e | 1231 | cell_defer_no_holder(tc, cell); |
991d9fa0 JT |
1232 | bio_io_error(bio); |
1233 | break; | |
1234 | } | |
1235 | } | |
1236 | ||
e49e5829 JT |
1237 | static void process_bio_read_only(struct thin_c *tc, struct bio *bio) |
1238 | { | |
1239 | int r; | |
1240 | int rw = bio_data_dir(bio); | |
1241 | dm_block_t block = get_bio_block(tc, bio); | |
1242 | struct dm_thin_lookup_result lookup_result; | |
1243 | ||
1244 | r = dm_thin_find_block(tc->td, block, 1, &lookup_result); | |
1245 | switch (r) { | |
1246 | case 0: | |
1247 | if (lookup_result.shared && (rw == WRITE) && bio->bi_size) | |
1248 | bio_io_error(bio); | |
e8088073 JT |
1249 | else { |
1250 | inc_all_io_entry(tc->pool, bio); | |
e49e5829 | 1251 | remap_and_issue(tc, bio, lookup_result.block); |
e8088073 | 1252 | } |
e49e5829 JT |
1253 | break; |
1254 | ||
1255 | case -ENODATA: | |
1256 | if (rw != READ) { | |
1257 | bio_io_error(bio); | |
1258 | break; | |
1259 | } | |
1260 | ||
1261 | if (tc->origin_dev) { | |
e8088073 | 1262 | inc_all_io_entry(tc->pool, bio); |
e49e5829 JT |
1263 | remap_to_origin_and_issue(tc, bio); |
1264 | break; | |
1265 | } | |
1266 | ||
1267 | zero_fill_bio(bio); | |
1268 | bio_endio(bio, 0); | |
1269 | break; | |
1270 | ||
1271 | default: | |
c397741c MS |
1272 | DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d", |
1273 | __func__, r); | |
e49e5829 JT |
1274 | bio_io_error(bio); |
1275 | break; | |
1276 | } | |
1277 | } | |
1278 | ||
1279 | static void process_bio_fail(struct thin_c *tc, struct bio *bio) | |
1280 | { | |
1281 | bio_io_error(bio); | |
1282 | } | |
1283 | ||
905e51b3 JT |
1284 | static int need_commit_due_to_time(struct pool *pool) |
1285 | { | |
1286 | return jiffies < pool->last_commit_jiffies || | |
1287 | jiffies > pool->last_commit_jiffies + COMMIT_PERIOD; | |
1288 | } | |
1289 | ||
991d9fa0 JT |
1290 | static void process_deferred_bios(struct pool *pool) |
1291 | { | |
1292 | unsigned long flags; | |
1293 | struct bio *bio; | |
1294 | struct bio_list bios; | |
991d9fa0 JT |
1295 | |
1296 | bio_list_init(&bios); | |
1297 | ||
1298 | spin_lock_irqsave(&pool->lock, flags); | |
1299 | bio_list_merge(&bios, &pool->deferred_bios); | |
1300 | bio_list_init(&pool->deferred_bios); | |
1301 | spin_unlock_irqrestore(&pool->lock, flags); | |
1302 | ||
1303 | while ((bio = bio_list_pop(&bios))) { | |
59c3d2c6 | 1304 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
eb2aa48d JT |
1305 | struct thin_c *tc = h->tc; |
1306 | ||
991d9fa0 JT |
1307 | /* |
1308 | * If we've got no free new_mapping structs, and processing | |
1309 | * this bio might require one, we pause until there are some | |
1310 | * prepared mappings to process. | |
1311 | */ | |
1312 | if (ensure_next_mapping(pool)) { | |
1313 | spin_lock_irqsave(&pool->lock, flags); | |
1314 | bio_list_merge(&pool->deferred_bios, &bios); | |
1315 | spin_unlock_irqrestore(&pool->lock, flags); | |
1316 | ||
1317 | break; | |
1318 | } | |
104655fd JT |
1319 | |
1320 | if (bio->bi_rw & REQ_DISCARD) | |
e49e5829 | 1321 | pool->process_discard(tc, bio); |
104655fd | 1322 | else |
e49e5829 | 1323 | pool->process_bio(tc, bio); |
991d9fa0 JT |
1324 | } |
1325 | ||
1326 | /* | |
1327 | * If there are any deferred flush bios, we must commit | |
1328 | * the metadata before issuing them. | |
1329 | */ | |
1330 | bio_list_init(&bios); | |
1331 | spin_lock_irqsave(&pool->lock, flags); | |
1332 | bio_list_merge(&bios, &pool->deferred_flush_bios); | |
1333 | bio_list_init(&pool->deferred_flush_bios); | |
1334 | spin_unlock_irqrestore(&pool->lock, flags); | |
1335 | ||
905e51b3 | 1336 | if (bio_list_empty(&bios) && !need_commit_due_to_time(pool)) |
991d9fa0 JT |
1337 | return; |
1338 | ||
e49e5829 | 1339 | if (commit_or_fallback(pool)) { |
991d9fa0 JT |
1340 | while ((bio = bio_list_pop(&bios))) |
1341 | bio_io_error(bio); | |
1342 | return; | |
1343 | } | |
905e51b3 | 1344 | pool->last_commit_jiffies = jiffies; |
991d9fa0 JT |
1345 | |
1346 | while ((bio = bio_list_pop(&bios))) | |
1347 | generic_make_request(bio); | |
1348 | } | |
1349 | ||
1350 | static void do_worker(struct work_struct *ws) | |
1351 | { | |
1352 | struct pool *pool = container_of(ws, struct pool, worker); | |
1353 | ||
e49e5829 JT |
1354 | process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping); |
1355 | process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard); | |
991d9fa0 JT |
1356 | process_deferred_bios(pool); |
1357 | } | |
1358 | ||
905e51b3 JT |
1359 | /* |
1360 | * We want to commit periodically so that not too much | |
1361 | * unwritten data builds up. | |
1362 | */ | |
1363 | static void do_waker(struct work_struct *ws) | |
1364 | { | |
1365 | struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker); | |
1366 | wake_worker(pool); | |
1367 | queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD); | |
1368 | } | |
1369 | ||
991d9fa0 JT |
1370 | /*----------------------------------------------------------------*/ |
1371 | ||
e49e5829 JT |
1372 | static enum pool_mode get_pool_mode(struct pool *pool) |
1373 | { | |
1374 | return pool->pf.mode; | |
1375 | } | |
1376 | ||
1377 | static void set_pool_mode(struct pool *pool, enum pool_mode mode) | |
1378 | { | |
1379 | int r; | |
1380 | ||
1381 | pool->pf.mode = mode; | |
1382 | ||
1383 | switch (mode) { | |
1384 | case PM_FAIL: | |
1385 | DMERR("switching pool to failure mode"); | |
1386 | pool->process_bio = process_bio_fail; | |
1387 | pool->process_discard = process_bio_fail; | |
1388 | pool->process_prepared_mapping = process_prepared_mapping_fail; | |
1389 | pool->process_prepared_discard = process_prepared_discard_fail; | |
1390 | break; | |
1391 | ||
1392 | case PM_READ_ONLY: | |
1393 | DMERR("switching pool to read-only mode"); | |
1394 | r = dm_pool_abort_metadata(pool->pmd); | |
1395 | if (r) { | |
1396 | DMERR("aborting transaction failed"); | |
1397 | set_pool_mode(pool, PM_FAIL); | |
1398 | } else { | |
1399 | dm_pool_metadata_read_only(pool->pmd); | |
1400 | pool->process_bio = process_bio_read_only; | |
1401 | pool->process_discard = process_discard; | |
1402 | pool->process_prepared_mapping = process_prepared_mapping_fail; | |
1403 | pool->process_prepared_discard = process_prepared_discard_passdown; | |
1404 | } | |
1405 | break; | |
1406 | ||
1407 | case PM_WRITE: | |
1408 | pool->process_bio = process_bio; | |
1409 | pool->process_discard = process_discard; | |
1410 | pool->process_prepared_mapping = process_prepared_mapping; | |
1411 | pool->process_prepared_discard = process_prepared_discard; | |
1412 | break; | |
1413 | } | |
1414 | } | |
1415 | ||
1416 | /*----------------------------------------------------------------*/ | |
1417 | ||
991d9fa0 JT |
1418 | /* |
1419 | * Mapping functions. | |
1420 | */ | |
1421 | ||
1422 | /* | |
1423 | * Called only while mapping a thin bio to hand it over to the workqueue. | |
1424 | */ | |
1425 | static void thin_defer_bio(struct thin_c *tc, struct bio *bio) | |
1426 | { | |
1427 | unsigned long flags; | |
1428 | struct pool *pool = tc->pool; | |
1429 | ||
1430 | spin_lock_irqsave(&pool->lock, flags); | |
1431 | bio_list_add(&pool->deferred_bios, bio); | |
1432 | spin_unlock_irqrestore(&pool->lock, flags); | |
1433 | ||
1434 | wake_worker(pool); | |
1435 | } | |
1436 | ||
59c3d2c6 | 1437 | static void thin_hook_bio(struct thin_c *tc, struct bio *bio) |
eb2aa48d | 1438 | { |
59c3d2c6 | 1439 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
eb2aa48d JT |
1440 | |
1441 | h->tc = tc; | |
1442 | h->shared_read_entry = NULL; | |
e8088073 | 1443 | h->all_io_entry = NULL; |
eb2aa48d | 1444 | h->overwrite_mapping = NULL; |
eb2aa48d JT |
1445 | } |
1446 | ||
991d9fa0 JT |
1447 | /* |
1448 | * Non-blocking function called from the thin target's map function. | |
1449 | */ | |
7de3ee57 | 1450 | static int thin_bio_map(struct dm_target *ti, struct bio *bio) |
991d9fa0 JT |
1451 | { |
1452 | int r; | |
1453 | struct thin_c *tc = ti->private; | |
1454 | dm_block_t block = get_bio_block(tc, bio); | |
1455 | struct dm_thin_device *td = tc->td; | |
1456 | struct dm_thin_lookup_result result; | |
025b9685 JT |
1457 | struct dm_bio_prison_cell cell1, cell2; |
1458 | struct dm_bio_prison_cell *cell_result; | |
e8088073 | 1459 | struct dm_cell_key key; |
991d9fa0 | 1460 | |
59c3d2c6 | 1461 | thin_hook_bio(tc, bio); |
e49e5829 JT |
1462 | |
1463 | if (get_pool_mode(tc->pool) == PM_FAIL) { | |
1464 | bio_io_error(bio); | |
1465 | return DM_MAPIO_SUBMITTED; | |
1466 | } | |
1467 | ||
104655fd | 1468 | if (bio->bi_rw & (REQ_DISCARD | REQ_FLUSH | REQ_FUA)) { |
991d9fa0 JT |
1469 | thin_defer_bio(tc, bio); |
1470 | return DM_MAPIO_SUBMITTED; | |
1471 | } | |
1472 | ||
1473 | r = dm_thin_find_block(td, block, 0, &result); | |
1474 | ||
1475 | /* | |
1476 | * Note that we defer readahead too. | |
1477 | */ | |
1478 | switch (r) { | |
1479 | case 0: | |
1480 | if (unlikely(result.shared)) { | |
1481 | /* | |
1482 | * We have a race condition here between the | |
1483 | * result.shared value returned by the lookup and | |
1484 | * snapshot creation, which may cause new | |
1485 | * sharing. | |
1486 | * | |
1487 | * To avoid this always quiesce the origin before | |
1488 | * taking the snap. You want to do this anyway to | |
1489 | * ensure a consistent application view | |
1490 | * (i.e. lockfs). | |
1491 | * | |
1492 | * More distant ancestors are irrelevant. The | |
1493 | * shared flag will be set in their case. | |
1494 | */ | |
1495 | thin_defer_bio(tc, bio); | |
e8088073 | 1496 | return DM_MAPIO_SUBMITTED; |
991d9fa0 | 1497 | } |
e8088073 JT |
1498 | |
1499 | build_virtual_key(tc->td, block, &key); | |
025b9685 | 1500 | if (dm_bio_detain(tc->pool->prison, &key, bio, &cell1, &cell_result)) |
e8088073 JT |
1501 | return DM_MAPIO_SUBMITTED; |
1502 | ||
1503 | build_data_key(tc->td, result.block, &key); | |
025b9685 JT |
1504 | if (dm_bio_detain(tc->pool->prison, &key, bio, &cell2, &cell_result)) { |
1505 | cell_defer_no_holder_no_free(tc, &cell1); | |
e8088073 JT |
1506 | return DM_MAPIO_SUBMITTED; |
1507 | } | |
1508 | ||
1509 | inc_all_io_entry(tc->pool, bio); | |
025b9685 JT |
1510 | cell_defer_no_holder_no_free(tc, &cell2); |
1511 | cell_defer_no_holder_no_free(tc, &cell1); | |
e8088073 JT |
1512 | |
1513 | remap(tc, bio, result.block); | |
1514 | return DM_MAPIO_REMAPPED; | |
991d9fa0 JT |
1515 | |
1516 | case -ENODATA: | |
e49e5829 JT |
1517 | if (get_pool_mode(tc->pool) == PM_READ_ONLY) { |
1518 | /* | |
1519 | * This block isn't provisioned, and we have no way | |
1520 | * of doing so. Just error it. | |
1521 | */ | |
1522 | bio_io_error(bio); | |
2aab3850 | 1523 | return DM_MAPIO_SUBMITTED; |
e49e5829 JT |
1524 | } |
1525 | /* fall through */ | |
1526 | ||
1527 | case -EWOULDBLOCK: | |
991d9fa0 JT |
1528 | /* |
1529 | * In future, the failed dm_thin_find_block above could | |
1530 | * provide the hint to load the metadata into cache. | |
1531 | */ | |
991d9fa0 | 1532 | thin_defer_bio(tc, bio); |
2aab3850 | 1533 | return DM_MAPIO_SUBMITTED; |
e49e5829 JT |
1534 | |
1535 | default: | |
1536 | /* | |
1537 | * Must always call bio_io_error on failure. | |
1538 | * dm_thin_find_block can fail with -EINVAL if the | |
1539 | * pool is switched to fail-io mode. | |
1540 | */ | |
1541 | bio_io_error(bio); | |
2aab3850 | 1542 | return DM_MAPIO_SUBMITTED; |
991d9fa0 | 1543 | } |
991d9fa0 JT |
1544 | } |
1545 | ||
1546 | static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits) | |
1547 | { | |
1548 | int r; | |
1549 | unsigned long flags; | |
1550 | struct pool_c *pt = container_of(cb, struct pool_c, callbacks); | |
1551 | ||
1552 | spin_lock_irqsave(&pt->pool->lock, flags); | |
1553 | r = !bio_list_empty(&pt->pool->retry_on_resume_list); | |
1554 | spin_unlock_irqrestore(&pt->pool->lock, flags); | |
1555 | ||
1556 | if (!r) { | |
1557 | struct request_queue *q = bdev_get_queue(pt->data_dev->bdev); | |
1558 | r = bdi_congested(&q->backing_dev_info, bdi_bits); | |
1559 | } | |
1560 | ||
1561 | return r; | |
1562 | } | |
1563 | ||
1564 | static void __requeue_bios(struct pool *pool) | |
1565 | { | |
1566 | bio_list_merge(&pool->deferred_bios, &pool->retry_on_resume_list); | |
1567 | bio_list_init(&pool->retry_on_resume_list); | |
1568 | } | |
1569 | ||
1570 | /*---------------------------------------------------------------- | |
1571 | * Binding of control targets to a pool object | |
1572 | *--------------------------------------------------------------*/ | |
9bc142dd MS |
1573 | static bool data_dev_supports_discard(struct pool_c *pt) |
1574 | { | |
1575 | struct request_queue *q = bdev_get_queue(pt->data_dev->bdev); | |
1576 | ||
1577 | return q && blk_queue_discard(q); | |
1578 | } | |
1579 | ||
58051b94 JT |
1580 | static bool is_factor(sector_t block_size, uint32_t n) |
1581 | { | |
1582 | return !sector_div(block_size, n); | |
1583 | } | |
1584 | ||
9bc142dd MS |
1585 | /* |
1586 | * If discard_passdown was enabled verify that the data device | |
0424caa1 | 1587 | * supports discards. Disable discard_passdown if not. |
9bc142dd | 1588 | */ |
0424caa1 | 1589 | static void disable_passdown_if_not_supported(struct pool_c *pt) |
9bc142dd | 1590 | { |
0424caa1 MS |
1591 | struct pool *pool = pt->pool; |
1592 | struct block_device *data_bdev = pt->data_dev->bdev; | |
1593 | struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits; | |
1594 | sector_t block_size = pool->sectors_per_block << SECTOR_SHIFT; | |
1595 | const char *reason = NULL; | |
9bc142dd MS |
1596 | char buf[BDEVNAME_SIZE]; |
1597 | ||
0424caa1 | 1598 | if (!pt->adjusted_pf.discard_passdown) |
9bc142dd MS |
1599 | return; |
1600 | ||
0424caa1 MS |
1601 | if (!data_dev_supports_discard(pt)) |
1602 | reason = "discard unsupported"; | |
1603 | ||
1604 | else if (data_limits->max_discard_sectors < pool->sectors_per_block) | |
1605 | reason = "max discard sectors smaller than a block"; | |
9bc142dd | 1606 | |
0424caa1 MS |
1607 | else if (data_limits->discard_granularity > block_size) |
1608 | reason = "discard granularity larger than a block"; | |
1609 | ||
58051b94 | 1610 | else if (!is_factor(block_size, data_limits->discard_granularity)) |
0424caa1 MS |
1611 | reason = "discard granularity not a factor of block size"; |
1612 | ||
1613 | if (reason) { | |
1614 | DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason); | |
1615 | pt->adjusted_pf.discard_passdown = false; | |
1616 | } | |
9bc142dd MS |
1617 | } |
1618 | ||
991d9fa0 JT |
1619 | static int bind_control_target(struct pool *pool, struct dm_target *ti) |
1620 | { | |
1621 | struct pool_c *pt = ti->private; | |
1622 | ||
e49e5829 JT |
1623 | /* |
1624 | * We want to make sure that degraded pools are never upgraded. | |
1625 | */ | |
1626 | enum pool_mode old_mode = pool->pf.mode; | |
0424caa1 | 1627 | enum pool_mode new_mode = pt->adjusted_pf.mode; |
e49e5829 JT |
1628 | |
1629 | if (old_mode > new_mode) | |
1630 | new_mode = old_mode; | |
1631 | ||
991d9fa0 JT |
1632 | pool->ti = ti; |
1633 | pool->low_water_blocks = pt->low_water_blocks; | |
0424caa1 | 1634 | pool->pf = pt->adjusted_pf; |
991d9fa0 | 1635 | |
9bc142dd | 1636 | set_pool_mode(pool, new_mode); |
f402693d | 1637 | |
991d9fa0 JT |
1638 | return 0; |
1639 | } | |
1640 | ||
1641 | static void unbind_control_target(struct pool *pool, struct dm_target *ti) | |
1642 | { | |
1643 | if (pool->ti == ti) | |
1644 | pool->ti = NULL; | |
1645 | } | |
1646 | ||
1647 | /*---------------------------------------------------------------- | |
1648 | * Pool creation | |
1649 | *--------------------------------------------------------------*/ | |
67e2e2b2 JT |
1650 | /* Initialize pool features. */ |
1651 | static void pool_features_init(struct pool_features *pf) | |
1652 | { | |
e49e5829 | 1653 | pf->mode = PM_WRITE; |
9bc142dd MS |
1654 | pf->zero_new_blocks = true; |
1655 | pf->discard_enabled = true; | |
1656 | pf->discard_passdown = true; | |
67e2e2b2 JT |
1657 | } |
1658 | ||
991d9fa0 JT |
1659 | static void __pool_destroy(struct pool *pool) |
1660 | { | |
1661 | __pool_table_remove(pool); | |
1662 | ||
1663 | if (dm_pool_metadata_close(pool->pmd) < 0) | |
1664 | DMWARN("%s: dm_pool_metadata_close() failed.", __func__); | |
1665 | ||
44feb387 | 1666 | dm_bio_prison_destroy(pool->prison); |
991d9fa0 JT |
1667 | dm_kcopyd_client_destroy(pool->copier); |
1668 | ||
1669 | if (pool->wq) | |
1670 | destroy_workqueue(pool->wq); | |
1671 | ||
1672 | if (pool->next_mapping) | |
1673 | mempool_free(pool->next_mapping, pool->mapping_pool); | |
1674 | mempool_destroy(pool->mapping_pool); | |
44feb387 MS |
1675 | dm_deferred_set_destroy(pool->shared_read_ds); |
1676 | dm_deferred_set_destroy(pool->all_io_ds); | |
991d9fa0 JT |
1677 | kfree(pool); |
1678 | } | |
1679 | ||
a24c2569 | 1680 | static struct kmem_cache *_new_mapping_cache; |
a24c2569 | 1681 | |
991d9fa0 JT |
1682 | static struct pool *pool_create(struct mapped_device *pool_md, |
1683 | struct block_device *metadata_dev, | |
e49e5829 JT |
1684 | unsigned long block_size, |
1685 | int read_only, char **error) | |
991d9fa0 JT |
1686 | { |
1687 | int r; | |
1688 | void *err_p; | |
1689 | struct pool *pool; | |
1690 | struct dm_pool_metadata *pmd; | |
e49e5829 | 1691 | bool format_device = read_only ? false : true; |
991d9fa0 | 1692 | |
e49e5829 | 1693 | pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device); |
991d9fa0 JT |
1694 | if (IS_ERR(pmd)) { |
1695 | *error = "Error creating metadata object"; | |
1696 | return (struct pool *)pmd; | |
1697 | } | |
1698 | ||
1699 | pool = kmalloc(sizeof(*pool), GFP_KERNEL); | |
1700 | if (!pool) { | |
1701 | *error = "Error allocating memory for pool"; | |
1702 | err_p = ERR_PTR(-ENOMEM); | |
1703 | goto bad_pool; | |
1704 | } | |
1705 | ||
1706 | pool->pmd = pmd; | |
1707 | pool->sectors_per_block = block_size; | |
f9a8e0cd MP |
1708 | if (block_size & (block_size - 1)) |
1709 | pool->sectors_per_block_shift = -1; | |
1710 | else | |
1711 | pool->sectors_per_block_shift = __ffs(block_size); | |
991d9fa0 | 1712 | pool->low_water_blocks = 0; |
67e2e2b2 | 1713 | pool_features_init(&pool->pf); |
44feb387 | 1714 | pool->prison = dm_bio_prison_create(PRISON_CELLS); |
991d9fa0 JT |
1715 | if (!pool->prison) { |
1716 | *error = "Error creating pool's bio prison"; | |
1717 | err_p = ERR_PTR(-ENOMEM); | |
1718 | goto bad_prison; | |
1719 | } | |
1720 | ||
df5d2e90 | 1721 | pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle); |
991d9fa0 JT |
1722 | if (IS_ERR(pool->copier)) { |
1723 | r = PTR_ERR(pool->copier); | |
1724 | *error = "Error creating pool's kcopyd client"; | |
1725 | err_p = ERR_PTR(r); | |
1726 | goto bad_kcopyd_client; | |
1727 | } | |
1728 | ||
1729 | /* | |
1730 | * Create singlethreaded workqueue that will service all devices | |
1731 | * that use this metadata. | |
1732 | */ | |
1733 | pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM); | |
1734 | if (!pool->wq) { | |
1735 | *error = "Error creating pool's workqueue"; | |
1736 | err_p = ERR_PTR(-ENOMEM); | |
1737 | goto bad_wq; | |
1738 | } | |
1739 | ||
1740 | INIT_WORK(&pool->worker, do_worker); | |
905e51b3 | 1741 | INIT_DELAYED_WORK(&pool->waker, do_waker); |
991d9fa0 JT |
1742 | spin_lock_init(&pool->lock); |
1743 | bio_list_init(&pool->deferred_bios); | |
1744 | bio_list_init(&pool->deferred_flush_bios); | |
1745 | INIT_LIST_HEAD(&pool->prepared_mappings); | |
104655fd | 1746 | INIT_LIST_HEAD(&pool->prepared_discards); |
991d9fa0 JT |
1747 | pool->low_water_triggered = 0; |
1748 | pool->no_free_space = 0; | |
1749 | bio_list_init(&pool->retry_on_resume_list); | |
44feb387 MS |
1750 | |
1751 | pool->shared_read_ds = dm_deferred_set_create(); | |
1752 | if (!pool->shared_read_ds) { | |
1753 | *error = "Error creating pool's shared read deferred set"; | |
1754 | err_p = ERR_PTR(-ENOMEM); | |
1755 | goto bad_shared_read_ds; | |
1756 | } | |
1757 | ||
1758 | pool->all_io_ds = dm_deferred_set_create(); | |
1759 | if (!pool->all_io_ds) { | |
1760 | *error = "Error creating pool's all io deferred set"; | |
1761 | err_p = ERR_PTR(-ENOMEM); | |
1762 | goto bad_all_io_ds; | |
1763 | } | |
991d9fa0 JT |
1764 | |
1765 | pool->next_mapping = NULL; | |
a24c2569 MS |
1766 | pool->mapping_pool = mempool_create_slab_pool(MAPPING_POOL_SIZE, |
1767 | _new_mapping_cache); | |
991d9fa0 JT |
1768 | if (!pool->mapping_pool) { |
1769 | *error = "Error creating pool's mapping mempool"; | |
1770 | err_p = ERR_PTR(-ENOMEM); | |
1771 | goto bad_mapping_pool; | |
1772 | } | |
1773 | ||
991d9fa0 | 1774 | pool->ref_count = 1; |
905e51b3 | 1775 | pool->last_commit_jiffies = jiffies; |
991d9fa0 JT |
1776 | pool->pool_md = pool_md; |
1777 | pool->md_dev = metadata_dev; | |
1778 | __pool_table_insert(pool); | |
1779 | ||
1780 | return pool; | |
1781 | ||
991d9fa0 | 1782 | bad_mapping_pool: |
44feb387 MS |
1783 | dm_deferred_set_destroy(pool->all_io_ds); |
1784 | bad_all_io_ds: | |
1785 | dm_deferred_set_destroy(pool->shared_read_ds); | |
1786 | bad_shared_read_ds: | |
991d9fa0 JT |
1787 | destroy_workqueue(pool->wq); |
1788 | bad_wq: | |
1789 | dm_kcopyd_client_destroy(pool->copier); | |
1790 | bad_kcopyd_client: | |
44feb387 | 1791 | dm_bio_prison_destroy(pool->prison); |
991d9fa0 JT |
1792 | bad_prison: |
1793 | kfree(pool); | |
1794 | bad_pool: | |
1795 | if (dm_pool_metadata_close(pmd)) | |
1796 | DMWARN("%s: dm_pool_metadata_close() failed.", __func__); | |
1797 | ||
1798 | return err_p; | |
1799 | } | |
1800 | ||
1801 | static void __pool_inc(struct pool *pool) | |
1802 | { | |
1803 | BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex)); | |
1804 | pool->ref_count++; | |
1805 | } | |
1806 | ||
1807 | static void __pool_dec(struct pool *pool) | |
1808 | { | |
1809 | BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex)); | |
1810 | BUG_ON(!pool->ref_count); | |
1811 | if (!--pool->ref_count) | |
1812 | __pool_destroy(pool); | |
1813 | } | |
1814 | ||
1815 | static struct pool *__pool_find(struct mapped_device *pool_md, | |
1816 | struct block_device *metadata_dev, | |
e49e5829 JT |
1817 | unsigned long block_size, int read_only, |
1818 | char **error, int *created) | |
991d9fa0 JT |
1819 | { |
1820 | struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev); | |
1821 | ||
1822 | if (pool) { | |
f09996c9 MS |
1823 | if (pool->pool_md != pool_md) { |
1824 | *error = "metadata device already in use by a pool"; | |
991d9fa0 | 1825 | return ERR_PTR(-EBUSY); |
f09996c9 | 1826 | } |
991d9fa0 JT |
1827 | __pool_inc(pool); |
1828 | ||
1829 | } else { | |
1830 | pool = __pool_table_lookup(pool_md); | |
1831 | if (pool) { | |
f09996c9 MS |
1832 | if (pool->md_dev != metadata_dev) { |
1833 | *error = "different pool cannot replace a pool"; | |
991d9fa0 | 1834 | return ERR_PTR(-EINVAL); |
f09996c9 | 1835 | } |
991d9fa0 JT |
1836 | __pool_inc(pool); |
1837 | ||
67e2e2b2 | 1838 | } else { |
e49e5829 | 1839 | pool = pool_create(pool_md, metadata_dev, block_size, read_only, error); |
67e2e2b2 JT |
1840 | *created = 1; |
1841 | } | |
991d9fa0 JT |
1842 | } |
1843 | ||
1844 | return pool; | |
1845 | } | |
1846 | ||
1847 | /*---------------------------------------------------------------- | |
1848 | * Pool target methods | |
1849 | *--------------------------------------------------------------*/ | |
1850 | static void pool_dtr(struct dm_target *ti) | |
1851 | { | |
1852 | struct pool_c *pt = ti->private; | |
1853 | ||
1854 | mutex_lock(&dm_thin_pool_table.mutex); | |
1855 | ||
1856 | unbind_control_target(pt->pool, ti); | |
1857 | __pool_dec(pt->pool); | |
1858 | dm_put_device(ti, pt->metadata_dev); | |
1859 | dm_put_device(ti, pt->data_dev); | |
1860 | kfree(pt); | |
1861 | ||
1862 | mutex_unlock(&dm_thin_pool_table.mutex); | |
1863 | } | |
1864 | ||
991d9fa0 JT |
1865 | static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf, |
1866 | struct dm_target *ti) | |
1867 | { | |
1868 | int r; | |
1869 | unsigned argc; | |
1870 | const char *arg_name; | |
1871 | ||
1872 | static struct dm_arg _args[] = { | |
67e2e2b2 | 1873 | {0, 3, "Invalid number of pool feature arguments"}, |
991d9fa0 JT |
1874 | }; |
1875 | ||
1876 | /* | |
1877 | * No feature arguments supplied. | |
1878 | */ | |
1879 | if (!as->argc) | |
1880 | return 0; | |
1881 | ||
1882 | r = dm_read_arg_group(_args, as, &argc, &ti->error); | |
1883 | if (r) | |
1884 | return -EINVAL; | |
1885 | ||
1886 | while (argc && !r) { | |
1887 | arg_name = dm_shift_arg(as); | |
1888 | argc--; | |
1889 | ||
e49e5829 | 1890 | if (!strcasecmp(arg_name, "skip_block_zeroing")) |
9bc142dd | 1891 | pf->zero_new_blocks = false; |
e49e5829 JT |
1892 | |
1893 | else if (!strcasecmp(arg_name, "ignore_discard")) | |
9bc142dd | 1894 | pf->discard_enabled = false; |
e49e5829 JT |
1895 | |
1896 | else if (!strcasecmp(arg_name, "no_discard_passdown")) | |
9bc142dd | 1897 | pf->discard_passdown = false; |
991d9fa0 | 1898 | |
e49e5829 JT |
1899 | else if (!strcasecmp(arg_name, "read_only")) |
1900 | pf->mode = PM_READ_ONLY; | |
1901 | ||
1902 | else { | |
1903 | ti->error = "Unrecognised pool feature requested"; | |
1904 | r = -EINVAL; | |
1905 | break; | |
1906 | } | |
991d9fa0 JT |
1907 | } |
1908 | ||
1909 | return r; | |
1910 | } | |
1911 | ||
b17446df JT |
1912 | static sector_t get_metadata_dev_size(struct block_device *bdev) |
1913 | { | |
1914 | sector_t metadata_dev_size = i_size_read(bdev->bd_inode) >> SECTOR_SHIFT; | |
1915 | char buffer[BDEVNAME_SIZE]; | |
1916 | ||
1917 | if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING) { | |
1918 | DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.", | |
1919 | bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS); | |
1920 | metadata_dev_size = THIN_METADATA_MAX_SECTORS_WARNING; | |
1921 | } | |
1922 | ||
1923 | return metadata_dev_size; | |
1924 | } | |
1925 | ||
991d9fa0 JT |
1926 | /* |
1927 | * thin-pool <metadata dev> <data dev> | |
1928 | * <data block size (sectors)> | |
1929 | * <low water mark (blocks)> | |
1930 | * [<#feature args> [<arg>]*] | |
1931 | * | |
1932 | * Optional feature arguments are: | |
1933 | * skip_block_zeroing: skips the zeroing of newly-provisioned blocks. | |
67e2e2b2 JT |
1934 | * ignore_discard: disable discard |
1935 | * no_discard_passdown: don't pass discards down to the data device | |
991d9fa0 JT |
1936 | */ |
1937 | static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv) | |
1938 | { | |
67e2e2b2 | 1939 | int r, pool_created = 0; |
991d9fa0 JT |
1940 | struct pool_c *pt; |
1941 | struct pool *pool; | |
1942 | struct pool_features pf; | |
1943 | struct dm_arg_set as; | |
1944 | struct dm_dev *data_dev; | |
1945 | unsigned long block_size; | |
1946 | dm_block_t low_water_blocks; | |
1947 | struct dm_dev *metadata_dev; | |
5d0db96d | 1948 | fmode_t metadata_mode; |
991d9fa0 JT |
1949 | |
1950 | /* | |
1951 | * FIXME Remove validation from scope of lock. | |
1952 | */ | |
1953 | mutex_lock(&dm_thin_pool_table.mutex); | |
1954 | ||
1955 | if (argc < 4) { | |
1956 | ti->error = "Invalid argument count"; | |
1957 | r = -EINVAL; | |
1958 | goto out_unlock; | |
1959 | } | |
5d0db96d | 1960 | |
991d9fa0 JT |
1961 | as.argc = argc; |
1962 | as.argv = argv; | |
1963 | ||
5d0db96d JT |
1964 | /* |
1965 | * Set default pool features. | |
1966 | */ | |
1967 | pool_features_init(&pf); | |
1968 | ||
1969 | dm_consume_args(&as, 4); | |
1970 | r = parse_pool_features(&as, &pf, ti); | |
1971 | if (r) | |
1972 | goto out_unlock; | |
1973 | ||
1974 | metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE); | |
1975 | r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev); | |
991d9fa0 JT |
1976 | if (r) { |
1977 | ti->error = "Error opening metadata block device"; | |
1978 | goto out_unlock; | |
1979 | } | |
1980 | ||
b17446df JT |
1981 | /* |
1982 | * Run for the side-effect of possibly issuing a warning if the | |
1983 | * device is too big. | |
1984 | */ | |
1985 | (void) get_metadata_dev_size(metadata_dev->bdev); | |
991d9fa0 JT |
1986 | |
1987 | r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev); | |
1988 | if (r) { | |
1989 | ti->error = "Error getting data device"; | |
1990 | goto out_metadata; | |
1991 | } | |
1992 | ||
1993 | if (kstrtoul(argv[2], 10, &block_size) || !block_size || | |
1994 | block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS || | |
1995 | block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS || | |
55f2b8bd | 1996 | block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) { |
991d9fa0 JT |
1997 | ti->error = "Invalid block size"; |
1998 | r = -EINVAL; | |
1999 | goto out; | |
2000 | } | |
2001 | ||
2002 | if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) { | |
2003 | ti->error = "Invalid low water mark"; | |
2004 | r = -EINVAL; | |
2005 | goto out; | |
2006 | } | |
2007 | ||
991d9fa0 JT |
2008 | pt = kzalloc(sizeof(*pt), GFP_KERNEL); |
2009 | if (!pt) { | |
2010 | r = -ENOMEM; | |
2011 | goto out; | |
2012 | } | |
2013 | ||
2014 | pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev, | |
e49e5829 | 2015 | block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created); |
991d9fa0 JT |
2016 | if (IS_ERR(pool)) { |
2017 | r = PTR_ERR(pool); | |
2018 | goto out_free_pt; | |
2019 | } | |
2020 | ||
67e2e2b2 JT |
2021 | /* |
2022 | * 'pool_created' reflects whether this is the first table load. | |
2023 | * Top level discard support is not allowed to be changed after | |
2024 | * initial load. This would require a pool reload to trigger thin | |
2025 | * device changes. | |
2026 | */ | |
2027 | if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) { | |
2028 | ti->error = "Discard support cannot be disabled once enabled"; | |
2029 | r = -EINVAL; | |
2030 | goto out_flags_changed; | |
2031 | } | |
2032 | ||
991d9fa0 JT |
2033 | pt->pool = pool; |
2034 | pt->ti = ti; | |
2035 | pt->metadata_dev = metadata_dev; | |
2036 | pt->data_dev = data_dev; | |
2037 | pt->low_water_blocks = low_water_blocks; | |
0424caa1 | 2038 | pt->adjusted_pf = pt->requested_pf = pf; |
55a62eef | 2039 | ti->num_flush_bios = 1; |
9bc142dd | 2040 | |
67e2e2b2 JT |
2041 | /* |
2042 | * Only need to enable discards if the pool should pass | |
2043 | * them down to the data device. The thin device's discard | |
2044 | * processing will cause mappings to be removed from the btree. | |
2045 | */ | |
2046 | if (pf.discard_enabled && pf.discard_passdown) { | |
55a62eef | 2047 | ti->num_discard_bios = 1; |
9bc142dd | 2048 | |
67e2e2b2 JT |
2049 | /* |
2050 | * Setting 'discards_supported' circumvents the normal | |
2051 | * stacking of discard limits (this keeps the pool and | |
2052 | * thin devices' discard limits consistent). | |
2053 | */ | |
0ac55489 | 2054 | ti->discards_supported = true; |
307615a2 | 2055 | ti->discard_zeroes_data_unsupported = true; |
67e2e2b2 | 2056 | } |
991d9fa0 JT |
2057 | ti->private = pt; |
2058 | ||
2059 | pt->callbacks.congested_fn = pool_is_congested; | |
2060 | dm_table_add_target_callbacks(ti->table, &pt->callbacks); | |
2061 | ||
2062 | mutex_unlock(&dm_thin_pool_table.mutex); | |
2063 | ||
2064 | return 0; | |
2065 | ||
67e2e2b2 JT |
2066 | out_flags_changed: |
2067 | __pool_dec(pool); | |
991d9fa0 JT |
2068 | out_free_pt: |
2069 | kfree(pt); | |
2070 | out: | |
2071 | dm_put_device(ti, data_dev); | |
2072 | out_metadata: | |
2073 | dm_put_device(ti, metadata_dev); | |
2074 | out_unlock: | |
2075 | mutex_unlock(&dm_thin_pool_table.mutex); | |
2076 | ||
2077 | return r; | |
2078 | } | |
2079 | ||
7de3ee57 | 2080 | static int pool_map(struct dm_target *ti, struct bio *bio) |
991d9fa0 JT |
2081 | { |
2082 | int r; | |
2083 | struct pool_c *pt = ti->private; | |
2084 | struct pool *pool = pt->pool; | |
2085 | unsigned long flags; | |
2086 | ||
2087 | /* | |
2088 | * As this is a singleton target, ti->begin is always zero. | |
2089 | */ | |
2090 | spin_lock_irqsave(&pool->lock, flags); | |
2091 | bio->bi_bdev = pt->data_dev->bdev; | |
2092 | r = DM_MAPIO_REMAPPED; | |
2093 | spin_unlock_irqrestore(&pool->lock, flags); | |
2094 | ||
2095 | return r; | |
2096 | } | |
2097 | ||
b17446df | 2098 | static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit) |
991d9fa0 JT |
2099 | { |
2100 | int r; | |
2101 | struct pool_c *pt = ti->private; | |
2102 | struct pool *pool = pt->pool; | |
55f2b8bd MS |
2103 | sector_t data_size = ti->len; |
2104 | dm_block_t sb_data_size; | |
991d9fa0 | 2105 | |
b17446df | 2106 | *need_commit = false; |
991d9fa0 | 2107 | |
55f2b8bd MS |
2108 | (void) sector_div(data_size, pool->sectors_per_block); |
2109 | ||
991d9fa0 JT |
2110 | r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size); |
2111 | if (r) { | |
2112 | DMERR("failed to retrieve data device size"); | |
2113 | return r; | |
2114 | } | |
2115 | ||
2116 | if (data_size < sb_data_size) { | |
b17446df | 2117 | DMERR("pool target (%llu blocks) too small: expected %llu", |
55f2b8bd | 2118 | (unsigned long long)data_size, sb_data_size); |
991d9fa0 JT |
2119 | return -EINVAL; |
2120 | ||
2121 | } else if (data_size > sb_data_size) { | |
2122 | r = dm_pool_resize_data_dev(pool->pmd, data_size); | |
2123 | if (r) { | |
2124 | DMERR("failed to resize data device"); | |
e49e5829 | 2125 | set_pool_mode(pool, PM_READ_ONLY); |
991d9fa0 JT |
2126 | return r; |
2127 | } | |
2128 | ||
b17446df | 2129 | *need_commit = true; |
991d9fa0 JT |
2130 | } |
2131 | ||
2132 | return 0; | |
2133 | } | |
2134 | ||
b17446df JT |
2135 | /* |
2136 | * Retrieves the number of blocks of the data device from | |
2137 | * the superblock and compares it to the actual device size, | |
2138 | * thus resizing the data device in case it has grown. | |
2139 | * | |
2140 | * This both copes with opening preallocated data devices in the ctr | |
2141 | * being followed by a resume | |
2142 | * -and- | |
2143 | * calling the resume method individually after userspace has | |
2144 | * grown the data device in reaction to a table event. | |
2145 | */ | |
2146 | static int pool_preresume(struct dm_target *ti) | |
2147 | { | |
2148 | int r; | |
2149 | bool need_commit1; | |
2150 | struct pool_c *pt = ti->private; | |
2151 | struct pool *pool = pt->pool; | |
2152 | ||
2153 | /* | |
2154 | * Take control of the pool object. | |
2155 | */ | |
2156 | r = bind_control_target(pool, ti); | |
2157 | if (r) | |
2158 | return r; | |
2159 | ||
2160 | r = maybe_resize_data_dev(ti, &need_commit1); | |
2161 | if (r) | |
2162 | return r; | |
2163 | ||
2164 | if (need_commit1) | |
2165 | (void) commit_or_fallback(pool); | |
2166 | ||
2167 | return 0; | |
2168 | } | |
2169 | ||
991d9fa0 JT |
2170 | static void pool_resume(struct dm_target *ti) |
2171 | { | |
2172 | struct pool_c *pt = ti->private; | |
2173 | struct pool *pool = pt->pool; | |
2174 | unsigned long flags; | |
2175 | ||
2176 | spin_lock_irqsave(&pool->lock, flags); | |
2177 | pool->low_water_triggered = 0; | |
2178 | pool->no_free_space = 0; | |
2179 | __requeue_bios(pool); | |
2180 | spin_unlock_irqrestore(&pool->lock, flags); | |
2181 | ||
905e51b3 | 2182 | do_waker(&pool->waker.work); |
991d9fa0 JT |
2183 | } |
2184 | ||
2185 | static void pool_postsuspend(struct dm_target *ti) | |
2186 | { | |
991d9fa0 JT |
2187 | struct pool_c *pt = ti->private; |
2188 | struct pool *pool = pt->pool; | |
2189 | ||
905e51b3 | 2190 | cancel_delayed_work(&pool->waker); |
991d9fa0 | 2191 | flush_workqueue(pool->wq); |
e49e5829 | 2192 | (void) commit_or_fallback(pool); |
991d9fa0 JT |
2193 | } |
2194 | ||
2195 | static int check_arg_count(unsigned argc, unsigned args_required) | |
2196 | { | |
2197 | if (argc != args_required) { | |
2198 | DMWARN("Message received with %u arguments instead of %u.", | |
2199 | argc, args_required); | |
2200 | return -EINVAL; | |
2201 | } | |
2202 | ||
2203 | return 0; | |
2204 | } | |
2205 | ||
2206 | static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning) | |
2207 | { | |
2208 | if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) && | |
2209 | *dev_id <= MAX_DEV_ID) | |
2210 | return 0; | |
2211 | ||
2212 | if (warning) | |
2213 | DMWARN("Message received with invalid device id: %s", arg); | |
2214 | ||
2215 | return -EINVAL; | |
2216 | } | |
2217 | ||
2218 | static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool) | |
2219 | { | |
2220 | dm_thin_id dev_id; | |
2221 | int r; | |
2222 | ||
2223 | r = check_arg_count(argc, 2); | |
2224 | if (r) | |
2225 | return r; | |
2226 | ||
2227 | r = read_dev_id(argv[1], &dev_id, 1); | |
2228 | if (r) | |
2229 | return r; | |
2230 | ||
2231 | r = dm_pool_create_thin(pool->pmd, dev_id); | |
2232 | if (r) { | |
2233 | DMWARN("Creation of new thinly-provisioned device with id %s failed.", | |
2234 | argv[1]); | |
2235 | return r; | |
2236 | } | |
2237 | ||
2238 | return 0; | |
2239 | } | |
2240 | ||
2241 | static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool) | |
2242 | { | |
2243 | dm_thin_id dev_id; | |
2244 | dm_thin_id origin_dev_id; | |
2245 | int r; | |
2246 | ||
2247 | r = check_arg_count(argc, 3); | |
2248 | if (r) | |
2249 | return r; | |
2250 | ||
2251 | r = read_dev_id(argv[1], &dev_id, 1); | |
2252 | if (r) | |
2253 | return r; | |
2254 | ||
2255 | r = read_dev_id(argv[2], &origin_dev_id, 1); | |
2256 | if (r) | |
2257 | return r; | |
2258 | ||
2259 | r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id); | |
2260 | if (r) { | |
2261 | DMWARN("Creation of new snapshot %s of device %s failed.", | |
2262 | argv[1], argv[2]); | |
2263 | return r; | |
2264 | } | |
2265 | ||
2266 | return 0; | |
2267 | } | |
2268 | ||
2269 | static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool) | |
2270 | { | |
2271 | dm_thin_id dev_id; | |
2272 | int r; | |
2273 | ||
2274 | r = check_arg_count(argc, 2); | |
2275 | if (r) | |
2276 | return r; | |
2277 | ||
2278 | r = read_dev_id(argv[1], &dev_id, 1); | |
2279 | if (r) | |
2280 | return r; | |
2281 | ||
2282 | r = dm_pool_delete_thin_device(pool->pmd, dev_id); | |
2283 | if (r) | |
2284 | DMWARN("Deletion of thin device %s failed.", argv[1]); | |
2285 | ||
2286 | return r; | |
2287 | } | |
2288 | ||
2289 | static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool) | |
2290 | { | |
2291 | dm_thin_id old_id, new_id; | |
2292 | int r; | |
2293 | ||
2294 | r = check_arg_count(argc, 3); | |
2295 | if (r) | |
2296 | return r; | |
2297 | ||
2298 | if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) { | |
2299 | DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]); | |
2300 | return -EINVAL; | |
2301 | } | |
2302 | ||
2303 | if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) { | |
2304 | DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]); | |
2305 | return -EINVAL; | |
2306 | } | |
2307 | ||
2308 | r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id); | |
2309 | if (r) { | |
2310 | DMWARN("Failed to change transaction id from %s to %s.", | |
2311 | argv[1], argv[2]); | |
2312 | return r; | |
2313 | } | |
2314 | ||
2315 | return 0; | |
2316 | } | |
2317 | ||
cc8394d8 JT |
2318 | static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool) |
2319 | { | |
2320 | int r; | |
2321 | ||
2322 | r = check_arg_count(argc, 1); | |
2323 | if (r) | |
2324 | return r; | |
2325 | ||
e49e5829 | 2326 | (void) commit_or_fallback(pool); |
0d200aef | 2327 | |
cc8394d8 JT |
2328 | r = dm_pool_reserve_metadata_snap(pool->pmd); |
2329 | if (r) | |
2330 | DMWARN("reserve_metadata_snap message failed."); | |
2331 | ||
2332 | return r; | |
2333 | } | |
2334 | ||
2335 | static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool) | |
2336 | { | |
2337 | int r; | |
2338 | ||
2339 | r = check_arg_count(argc, 1); | |
2340 | if (r) | |
2341 | return r; | |
2342 | ||
2343 | r = dm_pool_release_metadata_snap(pool->pmd); | |
2344 | if (r) | |
2345 | DMWARN("release_metadata_snap message failed."); | |
2346 | ||
2347 | return r; | |
2348 | } | |
2349 | ||
991d9fa0 JT |
2350 | /* |
2351 | * Messages supported: | |
2352 | * create_thin <dev_id> | |
2353 | * create_snap <dev_id> <origin_id> | |
2354 | * delete <dev_id> | |
2355 | * trim <dev_id> <new_size_in_sectors> | |
2356 | * set_transaction_id <current_trans_id> <new_trans_id> | |
cc8394d8 JT |
2357 | * reserve_metadata_snap |
2358 | * release_metadata_snap | |
991d9fa0 JT |
2359 | */ |
2360 | static int pool_message(struct dm_target *ti, unsigned argc, char **argv) | |
2361 | { | |
2362 | int r = -EINVAL; | |
2363 | struct pool_c *pt = ti->private; | |
2364 | struct pool *pool = pt->pool; | |
2365 | ||
2366 | if (!strcasecmp(argv[0], "create_thin")) | |
2367 | r = process_create_thin_mesg(argc, argv, pool); | |
2368 | ||
2369 | else if (!strcasecmp(argv[0], "create_snap")) | |
2370 | r = process_create_snap_mesg(argc, argv, pool); | |
2371 | ||
2372 | else if (!strcasecmp(argv[0], "delete")) | |
2373 | r = process_delete_mesg(argc, argv, pool); | |
2374 | ||
2375 | else if (!strcasecmp(argv[0], "set_transaction_id")) | |
2376 | r = process_set_transaction_id_mesg(argc, argv, pool); | |
2377 | ||
cc8394d8 JT |
2378 | else if (!strcasecmp(argv[0], "reserve_metadata_snap")) |
2379 | r = process_reserve_metadata_snap_mesg(argc, argv, pool); | |
2380 | ||
2381 | else if (!strcasecmp(argv[0], "release_metadata_snap")) | |
2382 | r = process_release_metadata_snap_mesg(argc, argv, pool); | |
2383 | ||
991d9fa0 JT |
2384 | else |
2385 | DMWARN("Unrecognised thin pool target message received: %s", argv[0]); | |
2386 | ||
e49e5829 JT |
2387 | if (!r) |
2388 | (void) commit_or_fallback(pool); | |
991d9fa0 JT |
2389 | |
2390 | return r; | |
2391 | } | |
2392 | ||
e49e5829 JT |
2393 | static void emit_flags(struct pool_features *pf, char *result, |
2394 | unsigned sz, unsigned maxlen) | |
2395 | { | |
2396 | unsigned count = !pf->zero_new_blocks + !pf->discard_enabled + | |
2397 | !pf->discard_passdown + (pf->mode == PM_READ_ONLY); | |
2398 | DMEMIT("%u ", count); | |
2399 | ||
2400 | if (!pf->zero_new_blocks) | |
2401 | DMEMIT("skip_block_zeroing "); | |
2402 | ||
2403 | if (!pf->discard_enabled) | |
2404 | DMEMIT("ignore_discard "); | |
2405 | ||
2406 | if (!pf->discard_passdown) | |
2407 | DMEMIT("no_discard_passdown "); | |
2408 | ||
2409 | if (pf->mode == PM_READ_ONLY) | |
2410 | DMEMIT("read_only "); | |
2411 | } | |
2412 | ||
991d9fa0 JT |
2413 | /* |
2414 | * Status line is: | |
2415 | * <transaction id> <used metadata sectors>/<total metadata sectors> | |
2416 | * <used data sectors>/<total data sectors> <held metadata root> | |
2417 | */ | |
fd7c092e MP |
2418 | static void pool_status(struct dm_target *ti, status_type_t type, |
2419 | unsigned status_flags, char *result, unsigned maxlen) | |
991d9fa0 | 2420 | { |
e49e5829 | 2421 | int r; |
991d9fa0 JT |
2422 | unsigned sz = 0; |
2423 | uint64_t transaction_id; | |
2424 | dm_block_t nr_free_blocks_data; | |
2425 | dm_block_t nr_free_blocks_metadata; | |
2426 | dm_block_t nr_blocks_data; | |
2427 | dm_block_t nr_blocks_metadata; | |
2428 | dm_block_t held_root; | |
2429 | char buf[BDEVNAME_SIZE]; | |
2430 | char buf2[BDEVNAME_SIZE]; | |
2431 | struct pool_c *pt = ti->private; | |
2432 | struct pool *pool = pt->pool; | |
2433 | ||
2434 | switch (type) { | |
2435 | case STATUSTYPE_INFO: | |
e49e5829 JT |
2436 | if (get_pool_mode(pool) == PM_FAIL) { |
2437 | DMEMIT("Fail"); | |
2438 | break; | |
2439 | } | |
2440 | ||
1f4e0ff0 AK |
2441 | /* Commit to ensure statistics aren't out-of-date */ |
2442 | if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti)) | |
2443 | (void) commit_or_fallback(pool); | |
2444 | ||
fd7c092e MP |
2445 | r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id); |
2446 | if (r) { | |
2447 | DMERR("dm_pool_get_metadata_transaction_id returned %d", r); | |
2448 | goto err; | |
2449 | } | |
991d9fa0 | 2450 | |
fd7c092e MP |
2451 | r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata); |
2452 | if (r) { | |
2453 | DMERR("dm_pool_get_free_metadata_block_count returned %d", r); | |
2454 | goto err; | |
2455 | } | |
991d9fa0 JT |
2456 | |
2457 | r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata); | |
fd7c092e MP |
2458 | if (r) { |
2459 | DMERR("dm_pool_get_metadata_dev_size returned %d", r); | |
2460 | goto err; | |
2461 | } | |
991d9fa0 | 2462 | |
fd7c092e MP |
2463 | r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data); |
2464 | if (r) { | |
2465 | DMERR("dm_pool_get_free_block_count returned %d", r); | |
2466 | goto err; | |
2467 | } | |
991d9fa0 JT |
2468 | |
2469 | r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data); | |
fd7c092e MP |
2470 | if (r) { |
2471 | DMERR("dm_pool_get_data_dev_size returned %d", r); | |
2472 | goto err; | |
2473 | } | |
991d9fa0 | 2474 | |
cc8394d8 | 2475 | r = dm_pool_get_metadata_snap(pool->pmd, &held_root); |
fd7c092e MP |
2476 | if (r) { |
2477 | DMERR("dm_pool_get_metadata_snap returned %d", r); | |
2478 | goto err; | |
2479 | } | |
991d9fa0 JT |
2480 | |
2481 | DMEMIT("%llu %llu/%llu %llu/%llu ", | |
2482 | (unsigned long long)transaction_id, | |
2483 | (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata), | |
2484 | (unsigned long long)nr_blocks_metadata, | |
2485 | (unsigned long long)(nr_blocks_data - nr_free_blocks_data), | |
2486 | (unsigned long long)nr_blocks_data); | |
2487 | ||
2488 | if (held_root) | |
e49e5829 JT |
2489 | DMEMIT("%llu ", held_root); |
2490 | else | |
2491 | DMEMIT("- "); | |
2492 | ||
2493 | if (pool->pf.mode == PM_READ_ONLY) | |
2494 | DMEMIT("ro "); | |
991d9fa0 | 2495 | else |
e49e5829 JT |
2496 | DMEMIT("rw "); |
2497 | ||
018debea MS |
2498 | if (!pool->pf.discard_enabled) |
2499 | DMEMIT("ignore_discard"); | |
2500 | else if (pool->pf.discard_passdown) | |
e49e5829 JT |
2501 | DMEMIT("discard_passdown"); |
2502 | else | |
2503 | DMEMIT("no_discard_passdown"); | |
991d9fa0 JT |
2504 | |
2505 | break; | |
2506 | ||
2507 | case STATUSTYPE_TABLE: | |
2508 | DMEMIT("%s %s %lu %llu ", | |
2509 | format_dev_t(buf, pt->metadata_dev->bdev->bd_dev), | |
2510 | format_dev_t(buf2, pt->data_dev->bdev->bd_dev), | |
2511 | (unsigned long)pool->sectors_per_block, | |
2512 | (unsigned long long)pt->low_water_blocks); | |
0424caa1 | 2513 | emit_flags(&pt->requested_pf, result, sz, maxlen); |
991d9fa0 JT |
2514 | break; |
2515 | } | |
fd7c092e | 2516 | return; |
991d9fa0 | 2517 | |
fd7c092e MP |
2518 | err: |
2519 | DMEMIT("Error"); | |
991d9fa0 JT |
2520 | } |
2521 | ||
2522 | static int pool_iterate_devices(struct dm_target *ti, | |
2523 | iterate_devices_callout_fn fn, void *data) | |
2524 | { | |
2525 | struct pool_c *pt = ti->private; | |
2526 | ||
2527 | return fn(ti, pt->data_dev, 0, ti->len, data); | |
2528 | } | |
2529 | ||
2530 | static int pool_merge(struct dm_target *ti, struct bvec_merge_data *bvm, | |
2531 | struct bio_vec *biovec, int max_size) | |
2532 | { | |
2533 | struct pool_c *pt = ti->private; | |
2534 | struct request_queue *q = bdev_get_queue(pt->data_dev->bdev); | |
2535 | ||
2536 | if (!q->merge_bvec_fn) | |
2537 | return max_size; | |
2538 | ||
2539 | bvm->bi_bdev = pt->data_dev->bdev; | |
2540 | ||
2541 | return min(max_size, q->merge_bvec_fn(q, bvm, biovec)); | |
2542 | } | |
2543 | ||
0424caa1 | 2544 | static void set_discard_limits(struct pool_c *pt, struct queue_limits *limits) |
104655fd | 2545 | { |
0424caa1 MS |
2546 | struct pool *pool = pt->pool; |
2547 | struct queue_limits *data_limits; | |
2548 | ||
104655fd JT |
2549 | limits->max_discard_sectors = pool->sectors_per_block; |
2550 | ||
2551 | /* | |
0424caa1 | 2552 | * discard_granularity is just a hint, and not enforced. |
104655fd | 2553 | */ |
0424caa1 MS |
2554 | if (pt->adjusted_pf.discard_passdown) { |
2555 | data_limits = &bdev_get_queue(pt->data_dev->bdev)->limits; | |
2556 | limits->discard_granularity = data_limits->discard_granularity; | |
f13945d7 | 2557 | } else |
0424caa1 | 2558 | limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT; |
104655fd JT |
2559 | } |
2560 | ||
991d9fa0 JT |
2561 | static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits) |
2562 | { | |
2563 | struct pool_c *pt = ti->private; | |
2564 | struct pool *pool = pt->pool; | |
2565 | ||
2566 | blk_limits_io_min(limits, 0); | |
2567 | blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT); | |
0424caa1 MS |
2568 | |
2569 | /* | |
2570 | * pt->adjusted_pf is a staging area for the actual features to use. | |
2571 | * They get transferred to the live pool in bind_control_target() | |
2572 | * called from pool_preresume(). | |
2573 | */ | |
2574 | if (!pt->adjusted_pf.discard_enabled) | |
2575 | return; | |
2576 | ||
2577 | disable_passdown_if_not_supported(pt); | |
2578 | ||
2579 | set_discard_limits(pt, limits); | |
991d9fa0 JT |
2580 | } |
2581 | ||
2582 | static struct target_type pool_target = { | |
2583 | .name = "thin-pool", | |
2584 | .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE | | |
2585 | DM_TARGET_IMMUTABLE, | |
f046f89a | 2586 | .version = {1, 7, 0}, |
991d9fa0 JT |
2587 | .module = THIS_MODULE, |
2588 | .ctr = pool_ctr, | |
2589 | .dtr = pool_dtr, | |
2590 | .map = pool_map, | |
2591 | .postsuspend = pool_postsuspend, | |
2592 | .preresume = pool_preresume, | |
2593 | .resume = pool_resume, | |
2594 | .message = pool_message, | |
2595 | .status = pool_status, | |
2596 | .merge = pool_merge, | |
2597 | .iterate_devices = pool_iterate_devices, | |
2598 | .io_hints = pool_io_hints, | |
2599 | }; | |
2600 | ||
2601 | /*---------------------------------------------------------------- | |
2602 | * Thin target methods | |
2603 | *--------------------------------------------------------------*/ | |
2604 | static void thin_dtr(struct dm_target *ti) | |
2605 | { | |
2606 | struct thin_c *tc = ti->private; | |
2607 | ||
2608 | mutex_lock(&dm_thin_pool_table.mutex); | |
2609 | ||
2610 | __pool_dec(tc->pool); | |
2611 | dm_pool_close_thin_device(tc->td); | |
2612 | dm_put_device(ti, tc->pool_dev); | |
2dd9c257 JT |
2613 | if (tc->origin_dev) |
2614 | dm_put_device(ti, tc->origin_dev); | |
991d9fa0 JT |
2615 | kfree(tc); |
2616 | ||
2617 | mutex_unlock(&dm_thin_pool_table.mutex); | |
2618 | } | |
2619 | ||
2620 | /* | |
2621 | * Thin target parameters: | |
2622 | * | |
2dd9c257 | 2623 | * <pool_dev> <dev_id> [origin_dev] |
991d9fa0 JT |
2624 | * |
2625 | * pool_dev: the path to the pool (eg, /dev/mapper/my_pool) | |
2626 | * dev_id: the internal device identifier | |
2dd9c257 | 2627 | * origin_dev: a device external to the pool that should act as the origin |
67e2e2b2 JT |
2628 | * |
2629 | * If the pool device has discards disabled, they get disabled for the thin | |
2630 | * device as well. | |
991d9fa0 JT |
2631 | */ |
2632 | static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv) | |
2633 | { | |
2634 | int r; | |
2635 | struct thin_c *tc; | |
2dd9c257 | 2636 | struct dm_dev *pool_dev, *origin_dev; |
991d9fa0 JT |
2637 | struct mapped_device *pool_md; |
2638 | ||
2639 | mutex_lock(&dm_thin_pool_table.mutex); | |
2640 | ||
2dd9c257 | 2641 | if (argc != 2 && argc != 3) { |
991d9fa0 JT |
2642 | ti->error = "Invalid argument count"; |
2643 | r = -EINVAL; | |
2644 | goto out_unlock; | |
2645 | } | |
2646 | ||
2647 | tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL); | |
2648 | if (!tc) { | |
2649 | ti->error = "Out of memory"; | |
2650 | r = -ENOMEM; | |
2651 | goto out_unlock; | |
2652 | } | |
2653 | ||
2dd9c257 JT |
2654 | if (argc == 3) { |
2655 | r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev); | |
2656 | if (r) { | |
2657 | ti->error = "Error opening origin device"; | |
2658 | goto bad_origin_dev; | |
2659 | } | |
2660 | tc->origin_dev = origin_dev; | |
2661 | } | |
2662 | ||
991d9fa0 JT |
2663 | r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev); |
2664 | if (r) { | |
2665 | ti->error = "Error opening pool device"; | |
2666 | goto bad_pool_dev; | |
2667 | } | |
2668 | tc->pool_dev = pool_dev; | |
2669 | ||
2670 | if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) { | |
2671 | ti->error = "Invalid device id"; | |
2672 | r = -EINVAL; | |
2673 | goto bad_common; | |
2674 | } | |
2675 | ||
2676 | pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev); | |
2677 | if (!pool_md) { | |
2678 | ti->error = "Couldn't get pool mapped device"; | |
2679 | r = -EINVAL; | |
2680 | goto bad_common; | |
2681 | } | |
2682 | ||
2683 | tc->pool = __pool_table_lookup(pool_md); | |
2684 | if (!tc->pool) { | |
2685 | ti->error = "Couldn't find pool object"; | |
2686 | r = -EINVAL; | |
2687 | goto bad_pool_lookup; | |
2688 | } | |
2689 | __pool_inc(tc->pool); | |
2690 | ||
e49e5829 JT |
2691 | if (get_pool_mode(tc->pool) == PM_FAIL) { |
2692 | ti->error = "Couldn't open thin device, Pool is in fail mode"; | |
2693 | goto bad_thin_open; | |
2694 | } | |
2695 | ||
991d9fa0 JT |
2696 | r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td); |
2697 | if (r) { | |
2698 | ti->error = "Couldn't open thin internal device"; | |
2699 | goto bad_thin_open; | |
2700 | } | |
2701 | ||
542f9038 MS |
2702 | r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block); |
2703 | if (r) | |
2704 | goto bad_thin_open; | |
2705 | ||
55a62eef | 2706 | ti->num_flush_bios = 1; |
16ad3d10 | 2707 | ti->flush_supported = true; |
59c3d2c6 | 2708 | ti->per_bio_data_size = sizeof(struct dm_thin_endio_hook); |
67e2e2b2 JT |
2709 | |
2710 | /* In case the pool supports discards, pass them on. */ | |
2711 | if (tc->pool->pf.discard_enabled) { | |
0ac55489 | 2712 | ti->discards_supported = true; |
55a62eef | 2713 | ti->num_discard_bios = 1; |
0ac55489 | 2714 | ti->discard_zeroes_data_unsupported = true; |
55a62eef AK |
2715 | /* Discard bios must be split on a block boundary */ |
2716 | ti->split_discard_bios = true; | |
67e2e2b2 | 2717 | } |
991d9fa0 JT |
2718 | |
2719 | dm_put(pool_md); | |
2720 | ||
2721 | mutex_unlock(&dm_thin_pool_table.mutex); | |
2722 | ||
2723 | return 0; | |
2724 | ||
2725 | bad_thin_open: | |
2726 | __pool_dec(tc->pool); | |
2727 | bad_pool_lookup: | |
2728 | dm_put(pool_md); | |
2729 | bad_common: | |
2730 | dm_put_device(ti, tc->pool_dev); | |
2731 | bad_pool_dev: | |
2dd9c257 JT |
2732 | if (tc->origin_dev) |
2733 | dm_put_device(ti, tc->origin_dev); | |
2734 | bad_origin_dev: | |
991d9fa0 JT |
2735 | kfree(tc); |
2736 | out_unlock: | |
2737 | mutex_unlock(&dm_thin_pool_table.mutex); | |
2738 | ||
2739 | return r; | |
2740 | } | |
2741 | ||
7de3ee57 | 2742 | static int thin_map(struct dm_target *ti, struct bio *bio) |
991d9fa0 | 2743 | { |
6efd6e83 | 2744 | bio->bi_sector = dm_target_offset(ti, bio->bi_sector); |
991d9fa0 | 2745 | |
7de3ee57 | 2746 | return thin_bio_map(ti, bio); |
991d9fa0 JT |
2747 | } |
2748 | ||
7de3ee57 | 2749 | static int thin_endio(struct dm_target *ti, struct bio *bio, int err) |
eb2aa48d JT |
2750 | { |
2751 | unsigned long flags; | |
59c3d2c6 | 2752 | struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook)); |
eb2aa48d | 2753 | struct list_head work; |
a24c2569 | 2754 | struct dm_thin_new_mapping *m, *tmp; |
eb2aa48d JT |
2755 | struct pool *pool = h->tc->pool; |
2756 | ||
2757 | if (h->shared_read_entry) { | |
2758 | INIT_LIST_HEAD(&work); | |
44feb387 | 2759 | dm_deferred_entry_dec(h->shared_read_entry, &work); |
eb2aa48d JT |
2760 | |
2761 | spin_lock_irqsave(&pool->lock, flags); | |
2762 | list_for_each_entry_safe(m, tmp, &work, list) { | |
2763 | list_del(&m->list); | |
2764 | m->quiesced = 1; | |
2765 | __maybe_add_mapping(m); | |
2766 | } | |
2767 | spin_unlock_irqrestore(&pool->lock, flags); | |
2768 | } | |
2769 | ||
104655fd JT |
2770 | if (h->all_io_entry) { |
2771 | INIT_LIST_HEAD(&work); | |
44feb387 | 2772 | dm_deferred_entry_dec(h->all_io_entry, &work); |
563af186 JT |
2773 | if (!list_empty(&work)) { |
2774 | spin_lock_irqsave(&pool->lock, flags); | |
2775 | list_for_each_entry_safe(m, tmp, &work, list) | |
2776 | list_add(&m->list, &pool->prepared_discards); | |
2777 | spin_unlock_irqrestore(&pool->lock, flags); | |
2778 | wake_worker(pool); | |
2779 | } | |
104655fd JT |
2780 | } |
2781 | ||
eb2aa48d JT |
2782 | return 0; |
2783 | } | |
2784 | ||
991d9fa0 JT |
2785 | static void thin_postsuspend(struct dm_target *ti) |
2786 | { | |
2787 | if (dm_noflush_suspending(ti)) | |
2788 | requeue_io((struct thin_c *)ti->private); | |
2789 | } | |
2790 | ||
2791 | /* | |
2792 | * <nr mapped sectors> <highest mapped sector> | |
2793 | */ | |
fd7c092e MP |
2794 | static void thin_status(struct dm_target *ti, status_type_t type, |
2795 | unsigned status_flags, char *result, unsigned maxlen) | |
991d9fa0 JT |
2796 | { |
2797 | int r; | |
2798 | ssize_t sz = 0; | |
2799 | dm_block_t mapped, highest; | |
2800 | char buf[BDEVNAME_SIZE]; | |
2801 | struct thin_c *tc = ti->private; | |
2802 | ||
e49e5829 JT |
2803 | if (get_pool_mode(tc->pool) == PM_FAIL) { |
2804 | DMEMIT("Fail"); | |
fd7c092e | 2805 | return; |
e49e5829 JT |
2806 | } |
2807 | ||
991d9fa0 JT |
2808 | if (!tc->td) |
2809 | DMEMIT("-"); | |
2810 | else { | |
2811 | switch (type) { | |
2812 | case STATUSTYPE_INFO: | |
2813 | r = dm_thin_get_mapped_count(tc->td, &mapped); | |
fd7c092e MP |
2814 | if (r) { |
2815 | DMERR("dm_thin_get_mapped_count returned %d", r); | |
2816 | goto err; | |
2817 | } | |
991d9fa0 JT |
2818 | |
2819 | r = dm_thin_get_highest_mapped_block(tc->td, &highest); | |
fd7c092e MP |
2820 | if (r < 0) { |
2821 | DMERR("dm_thin_get_highest_mapped_block returned %d", r); | |
2822 | goto err; | |
2823 | } | |
991d9fa0 JT |
2824 | |
2825 | DMEMIT("%llu ", mapped * tc->pool->sectors_per_block); | |
2826 | if (r) | |
2827 | DMEMIT("%llu", ((highest + 1) * | |
2828 | tc->pool->sectors_per_block) - 1); | |
2829 | else | |
2830 | DMEMIT("-"); | |
2831 | break; | |
2832 | ||
2833 | case STATUSTYPE_TABLE: | |
2834 | DMEMIT("%s %lu", | |
2835 | format_dev_t(buf, tc->pool_dev->bdev->bd_dev), | |
2836 | (unsigned long) tc->dev_id); | |
2dd9c257 JT |
2837 | if (tc->origin_dev) |
2838 | DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev)); | |
991d9fa0 JT |
2839 | break; |
2840 | } | |
2841 | } | |
2842 | ||
fd7c092e MP |
2843 | return; |
2844 | ||
2845 | err: | |
2846 | DMEMIT("Error"); | |
991d9fa0 JT |
2847 | } |
2848 | ||
2849 | static int thin_iterate_devices(struct dm_target *ti, | |
2850 | iterate_devices_callout_fn fn, void *data) | |
2851 | { | |
55f2b8bd | 2852 | sector_t blocks; |
991d9fa0 | 2853 | struct thin_c *tc = ti->private; |
55f2b8bd | 2854 | struct pool *pool = tc->pool; |
991d9fa0 JT |
2855 | |
2856 | /* | |
2857 | * We can't call dm_pool_get_data_dev_size() since that blocks. So | |
2858 | * we follow a more convoluted path through to the pool's target. | |
2859 | */ | |
55f2b8bd | 2860 | if (!pool->ti) |
991d9fa0 JT |
2861 | return 0; /* nothing is bound */ |
2862 | ||
55f2b8bd MS |
2863 | blocks = pool->ti->len; |
2864 | (void) sector_div(blocks, pool->sectors_per_block); | |
991d9fa0 | 2865 | if (blocks) |
55f2b8bd | 2866 | return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data); |
991d9fa0 JT |
2867 | |
2868 | return 0; | |
2869 | } | |
2870 | ||
991d9fa0 JT |
2871 | static struct target_type thin_target = { |
2872 | .name = "thin", | |
f046f89a | 2873 | .version = {1, 8, 0}, |
991d9fa0 JT |
2874 | .module = THIS_MODULE, |
2875 | .ctr = thin_ctr, | |
2876 | .dtr = thin_dtr, | |
2877 | .map = thin_map, | |
eb2aa48d | 2878 | .end_io = thin_endio, |
991d9fa0 JT |
2879 | .postsuspend = thin_postsuspend, |
2880 | .status = thin_status, | |
2881 | .iterate_devices = thin_iterate_devices, | |
991d9fa0 JT |
2882 | }; |
2883 | ||
2884 | /*----------------------------------------------------------------*/ | |
2885 | ||
2886 | static int __init dm_thin_init(void) | |
2887 | { | |
2888 | int r; | |
2889 | ||
2890 | pool_table_init(); | |
2891 | ||
2892 | r = dm_register_target(&thin_target); | |
2893 | if (r) | |
2894 | return r; | |
2895 | ||
2896 | r = dm_register_target(&pool_target); | |
2897 | if (r) | |
a24c2569 MS |
2898 | goto bad_pool_target; |
2899 | ||
2900 | r = -ENOMEM; | |
2901 | ||
a24c2569 MS |
2902 | _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0); |
2903 | if (!_new_mapping_cache) | |
2904 | goto bad_new_mapping_cache; | |
2905 | ||
a24c2569 MS |
2906 | return 0; |
2907 | ||
a24c2569 | 2908 | bad_new_mapping_cache: |
a24c2569 MS |
2909 | dm_unregister_target(&pool_target); |
2910 | bad_pool_target: | |
2911 | dm_unregister_target(&thin_target); | |
991d9fa0 JT |
2912 | |
2913 | return r; | |
2914 | } | |
2915 | ||
2916 | static void dm_thin_exit(void) | |
2917 | { | |
2918 | dm_unregister_target(&thin_target); | |
2919 | dm_unregister_target(&pool_target); | |
a24c2569 | 2920 | |
a24c2569 | 2921 | kmem_cache_destroy(_new_mapping_cache); |
991d9fa0 JT |
2922 | } |
2923 | ||
2924 | module_init(dm_thin_init); | |
2925 | module_exit(dm_thin_exit); | |
2926 | ||
7cab8bf1 | 2927 | MODULE_DESCRIPTION(DM_NAME " thin provisioning target"); |
991d9fa0 JT |
2928 | MODULE_AUTHOR("Joe Thornber <[email protected]>"); |
2929 | MODULE_LICENSE("GPL"); |