1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2011-2012 Red Hat, Inc.
5 * This file is released under the GPL.
8 #include "dm-thin-metadata.h"
9 #include "persistent-data/dm-btree.h"
10 #include "persistent-data/dm-space-map.h"
11 #include "persistent-data/dm-space-map-disk.h"
12 #include "persistent-data/dm-transaction-manager.h"
14 #include <linux/list.h>
15 #include <linux/device-mapper.h>
16 #include <linux/workqueue.h>
19 *--------------------------------------------------------------------------
20 * As far as the metadata goes, there is:
22 * - A superblock in block zero, taking up fewer than 512 bytes for
25 * - A space map managing the metadata blocks.
27 * - A space map managing the data blocks.
29 * - A btree mapping our internal thin dev ids onto struct disk_device_details.
31 * - A hierarchical btree, with 2 levels which effectively maps (thin
32 * dev id, virtual block) -> block_time. Block time is a 64-bit
33 * field holding the time in the low 24 bits, and block in the top 40
36 * BTrees consist solely of btree_nodes, that fill a block. Some are
37 * internal nodes, as such their values are a __le64 pointing to other
38 * nodes. Leaf nodes can store data of any reasonable size (ie. much
39 * smaller than the block size). The nodes consist of the header,
40 * followed by an array of keys, followed by an array of values. We have
41 * to binary search on the keys so they're all held together to help the
44 * Space maps have 2 btrees:
46 * - One maps a uint64_t onto a struct index_entry. Which points to a
47 * bitmap block, and has some details about how many free entries there
50 * - The bitmap blocks have a header (for the checksum). Then the rest
51 * of the block is pairs of bits. With the meaning being:
56 * 3 - ref count is higher than 2
58 * - If the count is higher than 2 then the ref count is entered in a
59 * second btree that directly maps the block_address to a uint32_t ref
62 * The space map metadata variant doesn't have a bitmaps btree. Instead
63 * it has one single blocks worth of index_entries. This avoids
64 * recursive issues with the bitmap btree needing to allocate space in
65 * order to insert. With a small data block size such as 64k the
66 * metadata support data devices that are hundreds of terrabytes.
68 * The space maps allocate space linearly from front to back. Space that
69 * is freed in a transaction is never recycled within that transaction.
70 * To try and avoid fragmenting _free_ space the allocator always goes
71 * back and fills in gaps.
73 * All metadata io is in THIN_METADATA_BLOCK_SIZE sized/aligned chunks
74 * from the block manager.
75 *--------------------------------------------------------------------------
78 #define DM_MSG_PREFIX "thin metadata"
80 #define THIN_SUPERBLOCK_MAGIC 27022010
81 #define THIN_SUPERBLOCK_LOCATION 0
82 #define THIN_VERSION 2
83 #define SECTOR_TO_BLOCK_SHIFT 3
87 * 3 for btree insert +
88 * 2 for btree lookup used within space map
90 * 2 for shadow spine +
91 * 4 for rebalance 3 child node
93 #define THIN_MAX_CONCURRENT_LOCKS 6
95 /* This should be plenty */
96 #define SPACE_MAP_ROOT_SIZE 128
99 * Little endian on-disk superblock and device details.
101 struct thin_disk_superblock
{
102 __le32 csum
; /* Checksum of superblock except for this field. */
104 __le64 blocknr
; /* This block number, dm_block_t. */
114 * Root held by userspace transactions.
118 __u8 data_space_map_root
[SPACE_MAP_ROOT_SIZE
];
119 __u8 metadata_space_map_root
[SPACE_MAP_ROOT_SIZE
];
122 * 2-level btree mapping (dev_id, (dev block, time)) -> data block
124 __le64 data_mapping_root
;
127 * Device detail root mapping dev_id -> device_details
129 __le64 device_details_root
;
131 __le32 data_block_size
; /* In 512-byte sectors. */
133 __le32 metadata_block_size
; /* In 512-byte sectors. */
134 __le64 metadata_nr_blocks
;
137 __le32 compat_ro_flags
;
138 __le32 incompat_flags
;
141 struct disk_device_details
{
142 __le64 mapped_blocks
;
143 __le64 transaction_id
; /* When created. */
144 __le32 creation_time
;
145 __le32 snapshotted_time
;
148 struct dm_pool_metadata
{
149 struct hlist_node hash
;
151 struct block_device
*bdev
;
152 struct dm_block_manager
*bm
;
153 struct dm_space_map
*metadata_sm
;
154 struct dm_space_map
*data_sm
;
155 struct dm_transaction_manager
*tm
;
156 struct dm_transaction_manager
*nb_tm
;
160 * First level holds thin_dev_t.
161 * Second level holds mappings.
163 struct dm_btree_info info
;
166 * Non-blocking version of the above.
168 struct dm_btree_info nb_info
;
171 * Just the top level for deleting whole devices.
173 struct dm_btree_info tl_info
;
176 * Just the bottom level for creating new devices.
178 struct dm_btree_info bl_info
;
181 * Describes the device details btree.
183 struct dm_btree_info details_info
;
185 struct rw_semaphore root_lock
;
188 dm_block_t details_root
;
189 struct list_head thin_devices
;
192 sector_t data_block_size
;
195 * Pre-commit callback.
197 * This allows the thin provisioning target to run a callback before
198 * the metadata are committed.
200 dm_pool_pre_commit_fn pre_commit_fn
;
201 void *pre_commit_context
;
204 * We reserve a section of the metadata for commit overhead.
205 * All reported space does *not* include this.
207 dm_block_t metadata_reserve
;
210 * Set if a transaction has to be aborted but the attempt to roll back
211 * to the previous (good) transaction failed. The only pool metadata
212 * operation possible in this state is the closing of the device.
217 * Set once a thin-pool has been accessed through one of the interfaces
218 * that imply the pool is in-service (e.g. thin devices created/deleted,
219 * thin-pool message, metadata snapshots, etc).
224 * Reading the space map roots can fail, so we read it into these
225 * buffers before the superblock is locked and updated.
227 __u8 data_space_map_root
[SPACE_MAP_ROOT_SIZE
];
228 __u8 metadata_space_map_root
[SPACE_MAP_ROOT_SIZE
];
231 struct dm_thin_device
{
232 struct list_head list
;
233 struct dm_pool_metadata
*pmd
;
238 bool aborted_with_changes
:1;
239 uint64_t mapped_blocks
;
240 uint64_t transaction_id
;
241 uint32_t creation_time
;
242 uint32_t snapshotted_time
;
246 *--------------------------------------------------------------
247 * superblock validator
248 *--------------------------------------------------------------
250 #define SUPERBLOCK_CSUM_XOR 160774
252 static void sb_prepare_for_write(const struct dm_block_validator
*v
,
256 struct thin_disk_superblock
*disk_super
= dm_block_data(b
);
258 disk_super
->blocknr
= cpu_to_le64(dm_block_location(b
));
259 disk_super
->csum
= cpu_to_le32(dm_bm_checksum(&disk_super
->flags
,
260 block_size
- sizeof(__le32
),
261 SUPERBLOCK_CSUM_XOR
));
264 static int sb_check(const struct dm_block_validator
*v
,
268 struct thin_disk_superblock
*disk_super
= dm_block_data(b
);
271 if (dm_block_location(b
) != le64_to_cpu(disk_super
->blocknr
)) {
272 DMERR("%s failed: blocknr %llu: wanted %llu",
273 __func__
, le64_to_cpu(disk_super
->blocknr
),
274 (unsigned long long)dm_block_location(b
));
278 if (le64_to_cpu(disk_super
->magic
) != THIN_SUPERBLOCK_MAGIC
) {
279 DMERR("%s failed: magic %llu: wanted %llu",
280 __func__
, le64_to_cpu(disk_super
->magic
),
281 (unsigned long long)THIN_SUPERBLOCK_MAGIC
);
285 csum_le
= cpu_to_le32(dm_bm_checksum(&disk_super
->flags
,
286 block_size
- sizeof(__le32
),
287 SUPERBLOCK_CSUM_XOR
));
288 if (csum_le
!= disk_super
->csum
) {
289 DMERR("%s failed: csum %u: wanted %u",
290 __func__
, le32_to_cpu(csum_le
), le32_to_cpu(disk_super
->csum
));
297 static const struct dm_block_validator sb_validator
= {
298 .name
= "superblock",
299 .prepare_for_write
= sb_prepare_for_write
,
304 *--------------------------------------------------------------
305 * Methods for the btree value types
306 *--------------------------------------------------------------
308 static uint64_t pack_block_time(dm_block_t b
, uint32_t t
)
310 return (b
<< 24) | t
;
313 static void unpack_block_time(uint64_t v
, dm_block_t
*b
, uint32_t *t
)
316 *t
= v
& ((1 << 24) - 1);
320 * It's more efficient to call dm_sm_{inc,dec}_blocks as few times as
321 * possible. 'with_runs' reads contiguous runs of blocks, and calls the
324 typedef int (*run_fn
)(struct dm_space_map
*, dm_block_t
, dm_block_t
);
326 static void with_runs(struct dm_space_map
*sm
, const __le64
*value_le
, unsigned int count
, run_fn fn
)
328 uint64_t b
, begin
, end
;
333 for (i
= 0; i
< count
; i
++, value_le
++) {
334 /* We know value_le is 8 byte aligned */
335 unpack_block_time(le64_to_cpu(*value_le
), &b
, &t
);
356 static void data_block_inc(void *context
, const void *value_le
, unsigned int count
)
358 with_runs((struct dm_space_map
*) context
,
359 (const __le64
*) value_le
, count
, dm_sm_inc_blocks
);
362 static void data_block_dec(void *context
, const void *value_le
, unsigned int count
)
364 with_runs((struct dm_space_map
*) context
,
365 (const __le64
*) value_le
, count
, dm_sm_dec_blocks
);
368 static int data_block_equal(void *context
, const void *value1_le
, const void *value2_le
)
374 memcpy(&v1_le
, value1_le
, sizeof(v1_le
));
375 memcpy(&v2_le
, value2_le
, sizeof(v2_le
));
376 unpack_block_time(le64_to_cpu(v1_le
), &b1
, &t
);
377 unpack_block_time(le64_to_cpu(v2_le
), &b2
, &t
);
382 static void subtree_inc(void *context
, const void *value
, unsigned int count
)
384 struct dm_btree_info
*info
= context
;
385 const __le64
*root_le
= value
;
388 for (i
= 0; i
< count
; i
++, root_le
++)
389 dm_tm_inc(info
->tm
, le64_to_cpu(*root_le
));
392 static void subtree_dec(void *context
, const void *value
, unsigned int count
)
394 struct dm_btree_info
*info
= context
;
395 const __le64
*root_le
= value
;
398 for (i
= 0; i
< count
; i
++, root_le
++)
399 if (dm_btree_del(info
, le64_to_cpu(*root_le
)))
400 DMERR("btree delete failed");
403 static int subtree_equal(void *context
, const void *value1_le
, const void *value2_le
)
407 memcpy(&v1_le
, value1_le
, sizeof(v1_le
));
408 memcpy(&v2_le
, value2_le
, sizeof(v2_le
));
410 return v1_le
== v2_le
;
413 /*----------------------------------------------------------------*/
416 * Variant that is used for in-core only changes or code that
417 * shouldn't put the pool in service on its own (e.g. commit).
419 static inline void pmd_write_lock_in_core(struct dm_pool_metadata
*pmd
)
420 __acquires(pmd
->root_lock
)
422 down_write(&pmd
->root_lock
);
425 static inline void pmd_write_lock(struct dm_pool_metadata
*pmd
)
427 pmd_write_lock_in_core(pmd
);
428 if (unlikely(!pmd
->in_service
))
429 pmd
->in_service
= true;
432 static inline void pmd_write_unlock(struct dm_pool_metadata
*pmd
)
433 __releases(pmd
->root_lock
)
435 up_write(&pmd
->root_lock
);
438 /*----------------------------------------------------------------*/
440 static int superblock_lock_zero(struct dm_pool_metadata
*pmd
,
441 struct dm_block
**sblock
)
443 return dm_bm_write_lock_zero(pmd
->bm
, THIN_SUPERBLOCK_LOCATION
,
444 &sb_validator
, sblock
);
447 static int superblock_lock(struct dm_pool_metadata
*pmd
,
448 struct dm_block
**sblock
)
450 return dm_bm_write_lock(pmd
->bm
, THIN_SUPERBLOCK_LOCATION
,
451 &sb_validator
, sblock
);
454 static int __superblock_all_zeroes(struct dm_block_manager
*bm
, int *result
)
459 __le64
*data_le
, zero
= cpu_to_le64(0);
460 unsigned int block_size
= dm_bm_block_size(bm
) / sizeof(__le64
);
463 * We can't use a validator here - it may be all zeroes.
465 r
= dm_bm_read_lock(bm
, THIN_SUPERBLOCK_LOCATION
, NULL
, &b
);
469 data_le
= dm_block_data(b
);
471 for (i
= 0; i
< block_size
; i
++) {
472 if (data_le
[i
] != zero
) {
483 static void __setup_btree_details(struct dm_pool_metadata
*pmd
)
485 pmd
->info
.tm
= pmd
->tm
;
486 pmd
->info
.levels
= 2;
487 pmd
->info
.value_type
.context
= pmd
->data_sm
;
488 pmd
->info
.value_type
.size
= sizeof(__le64
);
489 pmd
->info
.value_type
.inc
= data_block_inc
;
490 pmd
->info
.value_type
.dec
= data_block_dec
;
491 pmd
->info
.value_type
.equal
= data_block_equal
;
493 memcpy(&pmd
->nb_info
, &pmd
->info
, sizeof(pmd
->nb_info
));
494 pmd
->nb_info
.tm
= pmd
->nb_tm
;
496 pmd
->tl_info
.tm
= pmd
->tm
;
497 pmd
->tl_info
.levels
= 1;
498 pmd
->tl_info
.value_type
.context
= &pmd
->bl_info
;
499 pmd
->tl_info
.value_type
.size
= sizeof(__le64
);
500 pmd
->tl_info
.value_type
.inc
= subtree_inc
;
501 pmd
->tl_info
.value_type
.dec
= subtree_dec
;
502 pmd
->tl_info
.value_type
.equal
= subtree_equal
;
504 pmd
->bl_info
.tm
= pmd
->tm
;
505 pmd
->bl_info
.levels
= 1;
506 pmd
->bl_info
.value_type
.context
= pmd
->data_sm
;
507 pmd
->bl_info
.value_type
.size
= sizeof(__le64
);
508 pmd
->bl_info
.value_type
.inc
= data_block_inc
;
509 pmd
->bl_info
.value_type
.dec
= data_block_dec
;
510 pmd
->bl_info
.value_type
.equal
= data_block_equal
;
512 pmd
->details_info
.tm
= pmd
->tm
;
513 pmd
->details_info
.levels
= 1;
514 pmd
->details_info
.value_type
.context
= NULL
;
515 pmd
->details_info
.value_type
.size
= sizeof(struct disk_device_details
);
516 pmd
->details_info
.value_type
.inc
= NULL
;
517 pmd
->details_info
.value_type
.dec
= NULL
;
518 pmd
->details_info
.value_type
.equal
= NULL
;
521 static int save_sm_roots(struct dm_pool_metadata
*pmd
)
526 r
= dm_sm_root_size(pmd
->metadata_sm
, &len
);
530 r
= dm_sm_copy_root(pmd
->metadata_sm
, &pmd
->metadata_space_map_root
, len
);
534 r
= dm_sm_root_size(pmd
->data_sm
, &len
);
538 return dm_sm_copy_root(pmd
->data_sm
, &pmd
->data_space_map_root
, len
);
541 static void copy_sm_roots(struct dm_pool_metadata
*pmd
,
542 struct thin_disk_superblock
*disk
)
544 memcpy(&disk
->metadata_space_map_root
,
545 &pmd
->metadata_space_map_root
,
546 sizeof(pmd
->metadata_space_map_root
));
548 memcpy(&disk
->data_space_map_root
,
549 &pmd
->data_space_map_root
,
550 sizeof(pmd
->data_space_map_root
));
553 static int __write_initial_superblock(struct dm_pool_metadata
*pmd
)
556 struct dm_block
*sblock
;
557 struct thin_disk_superblock
*disk_super
;
558 sector_t bdev_size
= bdev_nr_sectors(pmd
->bdev
);
560 if (bdev_size
> THIN_METADATA_MAX_SECTORS
)
561 bdev_size
= THIN_METADATA_MAX_SECTORS
;
563 r
= dm_sm_commit(pmd
->data_sm
);
567 r
= dm_tm_pre_commit(pmd
->tm
);
571 r
= save_sm_roots(pmd
);
575 r
= superblock_lock_zero(pmd
, &sblock
);
579 disk_super
= dm_block_data(sblock
);
580 disk_super
->flags
= 0;
581 memset(disk_super
->uuid
, 0, sizeof(disk_super
->uuid
));
582 disk_super
->magic
= cpu_to_le64(THIN_SUPERBLOCK_MAGIC
);
583 disk_super
->version
= cpu_to_le32(THIN_VERSION
);
584 disk_super
->time
= 0;
585 disk_super
->trans_id
= 0;
586 disk_super
->held_root
= 0;
588 copy_sm_roots(pmd
, disk_super
);
590 disk_super
->data_mapping_root
= cpu_to_le64(pmd
->root
);
591 disk_super
->device_details_root
= cpu_to_le64(pmd
->details_root
);
592 disk_super
->metadata_block_size
= cpu_to_le32(THIN_METADATA_BLOCK_SIZE
);
593 disk_super
->metadata_nr_blocks
= cpu_to_le64(bdev_size
>> SECTOR_TO_BLOCK_SHIFT
);
594 disk_super
->data_block_size
= cpu_to_le32(pmd
->data_block_size
);
596 return dm_tm_commit(pmd
->tm
, sblock
);
599 static int __format_metadata(struct dm_pool_metadata
*pmd
)
603 r
= dm_tm_create_with_sm(pmd
->bm
, THIN_SUPERBLOCK_LOCATION
,
604 &pmd
->tm
, &pmd
->metadata_sm
);
607 pmd
->metadata_sm
= NULL
;
608 DMERR("tm_create_with_sm failed");
612 pmd
->data_sm
= dm_sm_disk_create(pmd
->tm
, 0);
613 if (IS_ERR(pmd
->data_sm
)) {
614 DMERR("sm_disk_create failed");
615 r
= PTR_ERR(pmd
->data_sm
);
620 pmd
->nb_tm
= dm_tm_create_non_blocking_clone(pmd
->tm
);
622 DMERR("could not create non-blocking clone tm");
624 goto bad_cleanup_data_sm
;
627 __setup_btree_details(pmd
);
629 r
= dm_btree_empty(&pmd
->info
, &pmd
->root
);
631 goto bad_cleanup_nb_tm
;
633 r
= dm_btree_empty(&pmd
->details_info
, &pmd
->details_root
);
635 DMERR("couldn't create devices root");
636 goto bad_cleanup_nb_tm
;
639 r
= __write_initial_superblock(pmd
);
641 goto bad_cleanup_nb_tm
;
646 dm_tm_destroy(pmd
->nb_tm
);
649 dm_sm_destroy(pmd
->data_sm
);
652 dm_tm_destroy(pmd
->tm
);
654 dm_sm_destroy(pmd
->metadata_sm
);
655 pmd
->metadata_sm
= NULL
;
660 static int __check_incompat_features(struct thin_disk_superblock
*disk_super
,
661 struct dm_pool_metadata
*pmd
)
665 features
= le32_to_cpu(disk_super
->incompat_flags
) & ~THIN_FEATURE_INCOMPAT_SUPP
;
667 DMERR("could not access metadata due to unsupported optional features (%lx).",
668 (unsigned long)features
);
673 * Check for read-only metadata to skip the following RDWR checks.
675 if (bdev_read_only(pmd
->bdev
))
678 features
= le32_to_cpu(disk_super
->compat_ro_flags
) & ~THIN_FEATURE_COMPAT_RO_SUPP
;
680 DMERR("could not access metadata RDWR due to unsupported optional features (%lx).",
681 (unsigned long)features
);
688 static int __open_metadata(struct dm_pool_metadata
*pmd
)
691 struct dm_block
*sblock
;
692 struct thin_disk_superblock
*disk_super
;
694 r
= dm_bm_read_lock(pmd
->bm
, THIN_SUPERBLOCK_LOCATION
,
695 &sb_validator
, &sblock
);
697 DMERR("couldn't read superblock");
701 disk_super
= dm_block_data(sblock
);
703 /* Verify the data block size hasn't changed */
704 if (le32_to_cpu(disk_super
->data_block_size
) != pmd
->data_block_size
) {
705 DMERR("changing the data block size (from %u to %llu) is not supported",
706 le32_to_cpu(disk_super
->data_block_size
),
707 (unsigned long long)pmd
->data_block_size
);
709 goto bad_unlock_sblock
;
712 r
= __check_incompat_features(disk_super
, pmd
);
714 goto bad_unlock_sblock
;
716 r
= dm_tm_open_with_sm(pmd
->bm
, THIN_SUPERBLOCK_LOCATION
,
717 disk_super
->metadata_space_map_root
,
718 sizeof(disk_super
->metadata_space_map_root
),
719 &pmd
->tm
, &pmd
->metadata_sm
);
722 pmd
->metadata_sm
= NULL
;
723 DMERR("tm_open_with_sm failed");
724 goto bad_unlock_sblock
;
727 pmd
->data_sm
= dm_sm_disk_open(pmd
->tm
, disk_super
->data_space_map_root
,
728 sizeof(disk_super
->data_space_map_root
));
729 if (IS_ERR(pmd
->data_sm
)) {
730 DMERR("sm_disk_open failed");
731 r
= PTR_ERR(pmd
->data_sm
);
736 pmd
->nb_tm
= dm_tm_create_non_blocking_clone(pmd
->tm
);
738 DMERR("could not create non-blocking clone tm");
740 goto bad_cleanup_data_sm
;
744 * For pool metadata opening process, root setting is redundant
745 * because it will be set again in __begin_transaction(). But dm
746 * pool aborting process really needs to get last transaction's
747 * root to avoid accessing broken btree.
749 pmd
->root
= le64_to_cpu(disk_super
->data_mapping_root
);
750 pmd
->details_root
= le64_to_cpu(disk_super
->device_details_root
);
752 __setup_btree_details(pmd
);
753 dm_bm_unlock(sblock
);
758 dm_sm_destroy(pmd
->data_sm
);
761 dm_tm_destroy(pmd
->tm
);
763 dm_sm_destroy(pmd
->metadata_sm
);
764 pmd
->metadata_sm
= NULL
;
766 dm_bm_unlock(sblock
);
771 static int __open_or_format_metadata(struct dm_pool_metadata
*pmd
, bool format_device
)
775 r
= __superblock_all_zeroes(pmd
->bm
, &unformatted
);
780 return format_device
? __format_metadata(pmd
) : -EPERM
;
782 return __open_metadata(pmd
);
785 static int __create_persistent_data_objects(struct dm_pool_metadata
*pmd
, bool format_device
)
789 pmd
->bm
= dm_block_manager_create(pmd
->bdev
, THIN_METADATA_BLOCK_SIZE
<< SECTOR_SHIFT
,
790 THIN_MAX_CONCURRENT_LOCKS
);
791 if (IS_ERR(pmd
->bm
)) {
792 DMERR("could not create block manager");
793 r
= PTR_ERR(pmd
->bm
);
798 r
= __open_or_format_metadata(pmd
, format_device
);
800 dm_block_manager_destroy(pmd
->bm
);
807 static void __destroy_persistent_data_objects(struct dm_pool_metadata
*pmd
,
810 dm_sm_destroy(pmd
->data_sm
);
812 dm_sm_destroy(pmd
->metadata_sm
);
813 pmd
->metadata_sm
= NULL
;
814 dm_tm_destroy(pmd
->nb_tm
);
816 dm_tm_destroy(pmd
->tm
);
819 dm_block_manager_destroy(pmd
->bm
);
822 static int __begin_transaction(struct dm_pool_metadata
*pmd
)
825 struct thin_disk_superblock
*disk_super
;
826 struct dm_block
*sblock
;
829 * We re-read the superblock every time. Shouldn't need to do this
832 r
= dm_bm_read_lock(pmd
->bm
, THIN_SUPERBLOCK_LOCATION
,
833 &sb_validator
, &sblock
);
837 disk_super
= dm_block_data(sblock
);
838 pmd
->time
= le32_to_cpu(disk_super
->time
);
839 pmd
->root
= le64_to_cpu(disk_super
->data_mapping_root
);
840 pmd
->details_root
= le64_to_cpu(disk_super
->device_details_root
);
841 pmd
->trans_id
= le64_to_cpu(disk_super
->trans_id
);
842 pmd
->flags
= le32_to_cpu(disk_super
->flags
);
843 pmd
->data_block_size
= le32_to_cpu(disk_super
->data_block_size
);
845 dm_bm_unlock(sblock
);
849 static int __write_changed_details(struct dm_pool_metadata
*pmd
)
852 struct dm_thin_device
*td
, *tmp
;
853 struct disk_device_details details
;
856 list_for_each_entry_safe(td
, tmp
, &pmd
->thin_devices
, list
) {
862 details
.mapped_blocks
= cpu_to_le64(td
->mapped_blocks
);
863 details
.transaction_id
= cpu_to_le64(td
->transaction_id
);
864 details
.creation_time
= cpu_to_le32(td
->creation_time
);
865 details
.snapshotted_time
= cpu_to_le32(td
->snapshotted_time
);
866 __dm_bless_for_disk(&details
);
868 r
= dm_btree_insert(&pmd
->details_info
, pmd
->details_root
,
869 &key
, &details
, &pmd
->details_root
);
884 static int __commit_transaction(struct dm_pool_metadata
*pmd
)
887 struct thin_disk_superblock
*disk_super
;
888 struct dm_block
*sblock
;
891 * We need to know if the thin_disk_superblock exceeds a 512-byte sector.
893 BUILD_BUG_ON(sizeof(struct thin_disk_superblock
) > 512);
894 BUG_ON(!rwsem_is_locked(&pmd
->root_lock
));
896 if (unlikely(!pmd
->in_service
))
899 if (pmd
->pre_commit_fn
) {
900 r
= pmd
->pre_commit_fn(pmd
->pre_commit_context
);
902 DMERR("pre-commit callback failed");
907 r
= __write_changed_details(pmd
);
911 r
= dm_sm_commit(pmd
->data_sm
);
915 r
= dm_tm_pre_commit(pmd
->tm
);
919 r
= save_sm_roots(pmd
);
923 r
= superblock_lock(pmd
, &sblock
);
927 disk_super
= dm_block_data(sblock
);
928 disk_super
->time
= cpu_to_le32(pmd
->time
);
929 disk_super
->data_mapping_root
= cpu_to_le64(pmd
->root
);
930 disk_super
->device_details_root
= cpu_to_le64(pmd
->details_root
);
931 disk_super
->trans_id
= cpu_to_le64(pmd
->trans_id
);
932 disk_super
->flags
= cpu_to_le32(pmd
->flags
);
934 copy_sm_roots(pmd
, disk_super
);
936 return dm_tm_commit(pmd
->tm
, sblock
);
939 static void __set_metadata_reserve(struct dm_pool_metadata
*pmd
)
943 dm_block_t max_blocks
= 4096; /* 16M */
945 r
= dm_sm_get_nr_blocks(pmd
->metadata_sm
, &total
);
947 DMERR("could not get size of metadata device");
948 pmd
->metadata_reserve
= max_blocks
;
950 pmd
->metadata_reserve
= min(max_blocks
, div_u64(total
, 10));
953 struct dm_pool_metadata
*dm_pool_metadata_open(struct block_device
*bdev
,
954 sector_t data_block_size
,
958 struct dm_pool_metadata
*pmd
;
960 pmd
= kmalloc(sizeof(*pmd
), GFP_KERNEL
);
962 DMERR("could not allocate metadata struct");
963 return ERR_PTR(-ENOMEM
);
966 init_rwsem(&pmd
->root_lock
);
968 INIT_LIST_HEAD(&pmd
->thin_devices
);
969 pmd
->fail_io
= false;
970 pmd
->in_service
= false;
972 pmd
->data_block_size
= data_block_size
;
973 pmd
->pre_commit_fn
= NULL
;
974 pmd
->pre_commit_context
= NULL
;
976 r
= __create_persistent_data_objects(pmd
, format_device
);
982 r
= __begin_transaction(pmd
);
984 if (dm_pool_metadata_close(pmd
) < 0)
985 DMWARN("%s: dm_pool_metadata_close() failed.", __func__
);
989 __set_metadata_reserve(pmd
);
994 int dm_pool_metadata_close(struct dm_pool_metadata
*pmd
)
997 unsigned int open_devices
= 0;
998 struct dm_thin_device
*td
, *tmp
;
1000 down_read(&pmd
->root_lock
);
1001 list_for_each_entry_safe(td
, tmp
, &pmd
->thin_devices
, list
) {
1005 list_del(&td
->list
);
1009 up_read(&pmd
->root_lock
);
1012 DMERR("attempt to close pmd when %u device(s) are still open",
1017 pmd_write_lock_in_core(pmd
);
1018 if (!pmd
->fail_io
&& !dm_bm_is_read_only(pmd
->bm
)) {
1019 r
= __commit_transaction(pmd
);
1021 DMWARN("%s: __commit_transaction() failed, error = %d",
1024 pmd_write_unlock(pmd
);
1025 __destroy_persistent_data_objects(pmd
, true);
1032 * __open_device: Returns @td corresponding to device with id @dev,
1033 * creating it if @create is set and incrementing @td->open_count.
1034 * On failure, @td is undefined.
1036 static int __open_device(struct dm_pool_metadata
*pmd
,
1037 dm_thin_id dev
, int create
,
1038 struct dm_thin_device
**td
)
1041 struct dm_thin_device
*td2
;
1043 struct disk_device_details details_le
;
1046 * If the device is already open, return it.
1048 list_for_each_entry(td2
, &pmd
->thin_devices
, list
)
1049 if (td2
->id
== dev
) {
1051 * May not create an already-open device.
1062 * Check the device exists.
1064 r
= dm_btree_lookup(&pmd
->details_info
, pmd
->details_root
,
1067 if (r
!= -ENODATA
|| !create
)
1071 * Create new device.
1074 details_le
.mapped_blocks
= 0;
1075 details_le
.transaction_id
= cpu_to_le64(pmd
->trans_id
);
1076 details_le
.creation_time
= cpu_to_le32(pmd
->time
);
1077 details_le
.snapshotted_time
= cpu_to_le32(pmd
->time
);
1080 *td
= kmalloc(sizeof(**td
), GFP_NOIO
);
1086 (*td
)->open_count
= 1;
1087 (*td
)->changed
= changed
;
1088 (*td
)->aborted_with_changes
= false;
1089 (*td
)->mapped_blocks
= le64_to_cpu(details_le
.mapped_blocks
);
1090 (*td
)->transaction_id
= le64_to_cpu(details_le
.transaction_id
);
1091 (*td
)->creation_time
= le32_to_cpu(details_le
.creation_time
);
1092 (*td
)->snapshotted_time
= le32_to_cpu(details_le
.snapshotted_time
);
1094 list_add(&(*td
)->list
, &pmd
->thin_devices
);
1099 static void __close_device(struct dm_thin_device
*td
)
1104 static int __create_thin(struct dm_pool_metadata
*pmd
,
1108 dm_block_t dev_root
;
1110 struct dm_thin_device
*td
;
1113 r
= dm_btree_lookup(&pmd
->details_info
, pmd
->details_root
,
1119 * Create an empty btree for the mappings.
1121 r
= dm_btree_empty(&pmd
->bl_info
, &dev_root
);
1126 * Insert it into the main mapping tree.
1128 value
= cpu_to_le64(dev_root
);
1129 __dm_bless_for_disk(&value
);
1130 r
= dm_btree_insert(&pmd
->tl_info
, pmd
->root
, &key
, &value
, &pmd
->root
);
1132 dm_btree_del(&pmd
->bl_info
, dev_root
);
1136 r
= __open_device(pmd
, dev
, 1, &td
);
1138 dm_btree_remove(&pmd
->tl_info
, pmd
->root
, &key
, &pmd
->root
);
1139 dm_btree_del(&pmd
->bl_info
, dev_root
);
1147 int dm_pool_create_thin(struct dm_pool_metadata
*pmd
, dm_thin_id dev
)
1151 pmd_write_lock(pmd
);
1153 r
= __create_thin(pmd
, dev
);
1154 pmd_write_unlock(pmd
);
1159 static int __set_snapshot_details(struct dm_pool_metadata
*pmd
,
1160 struct dm_thin_device
*snap
,
1161 dm_thin_id origin
, uint32_t time
)
1164 struct dm_thin_device
*td
;
1166 r
= __open_device(pmd
, origin
, 0, &td
);
1171 td
->snapshotted_time
= time
;
1173 snap
->mapped_blocks
= td
->mapped_blocks
;
1174 snap
->snapshotted_time
= time
;
1180 static int __create_snap(struct dm_pool_metadata
*pmd
,
1181 dm_thin_id dev
, dm_thin_id origin
)
1184 dm_block_t origin_root
;
1185 uint64_t key
= origin
, dev_key
= dev
;
1186 struct dm_thin_device
*td
;
1189 /* check this device is unused */
1190 r
= dm_btree_lookup(&pmd
->details_info
, pmd
->details_root
,
1195 /* find the mapping tree for the origin */
1196 r
= dm_btree_lookup(&pmd
->tl_info
, pmd
->root
, &key
, &value
);
1199 origin_root
= le64_to_cpu(value
);
1201 /* clone the origin, an inc will do */
1202 dm_tm_inc(pmd
->tm
, origin_root
);
1204 /* insert into the main mapping tree */
1205 value
= cpu_to_le64(origin_root
);
1206 __dm_bless_for_disk(&value
);
1208 r
= dm_btree_insert(&pmd
->tl_info
, pmd
->root
, &key
, &value
, &pmd
->root
);
1210 dm_tm_dec(pmd
->tm
, origin_root
);
1216 r
= __open_device(pmd
, dev
, 1, &td
);
1220 r
= __set_snapshot_details(pmd
, td
, origin
, pmd
->time
);
1229 dm_btree_remove(&pmd
->tl_info
, pmd
->root
, &key
, &pmd
->root
);
1230 dm_btree_remove(&pmd
->details_info
, pmd
->details_root
,
1231 &key
, &pmd
->details_root
);
1235 int dm_pool_create_snap(struct dm_pool_metadata
*pmd
,
1241 pmd_write_lock(pmd
);
1243 r
= __create_snap(pmd
, dev
, origin
);
1244 pmd_write_unlock(pmd
);
1249 static int __delete_device(struct dm_pool_metadata
*pmd
, dm_thin_id dev
)
1253 struct dm_thin_device
*td
;
1255 /* TODO: failure should mark the transaction invalid */
1256 r
= __open_device(pmd
, dev
, 0, &td
);
1260 if (td
->open_count
> 1) {
1265 list_del(&td
->list
);
1267 r
= dm_btree_remove(&pmd
->details_info
, pmd
->details_root
,
1268 &key
, &pmd
->details_root
);
1272 r
= dm_btree_remove(&pmd
->tl_info
, pmd
->root
, &key
, &pmd
->root
);
1279 int dm_pool_delete_thin_device(struct dm_pool_metadata
*pmd
,
1284 pmd_write_lock(pmd
);
1286 r
= __delete_device(pmd
, dev
);
1287 pmd_write_unlock(pmd
);
1292 int dm_pool_set_metadata_transaction_id(struct dm_pool_metadata
*pmd
,
1293 uint64_t current_id
,
1298 pmd_write_lock(pmd
);
1303 if (pmd
->trans_id
!= current_id
) {
1304 DMERR("mismatched transaction id");
1308 pmd
->trans_id
= new_id
;
1312 pmd_write_unlock(pmd
);
1317 int dm_pool_get_metadata_transaction_id(struct dm_pool_metadata
*pmd
,
1322 down_read(&pmd
->root_lock
);
1323 if (!pmd
->fail_io
) {
1324 *result
= pmd
->trans_id
;
1327 up_read(&pmd
->root_lock
);
1332 static int __reserve_metadata_snap(struct dm_pool_metadata
*pmd
)
1335 struct thin_disk_superblock
*disk_super
;
1336 struct dm_block
*copy
, *sblock
;
1337 dm_block_t held_root
;
1340 * We commit to ensure the btree roots which we increment in a
1341 * moment are up to date.
1343 r
= __commit_transaction(pmd
);
1345 DMWARN("%s: __commit_transaction() failed, error = %d",
1351 * Copy the superblock.
1353 dm_sm_inc_block(pmd
->metadata_sm
, THIN_SUPERBLOCK_LOCATION
);
1354 r
= dm_tm_shadow_block(pmd
->tm
, THIN_SUPERBLOCK_LOCATION
,
1355 &sb_validator
, ©
, &inc
);
1361 held_root
= dm_block_location(copy
);
1362 disk_super
= dm_block_data(copy
);
1364 if (le64_to_cpu(disk_super
->held_root
)) {
1365 DMWARN("Pool metadata snapshot already exists: release this before taking another.");
1367 dm_tm_dec(pmd
->tm
, held_root
);
1368 dm_tm_unlock(pmd
->tm
, copy
);
1373 * Wipe the spacemap since we're not publishing this.
1375 memset(&disk_super
->data_space_map_root
, 0,
1376 sizeof(disk_super
->data_space_map_root
));
1377 memset(&disk_super
->metadata_space_map_root
, 0,
1378 sizeof(disk_super
->metadata_space_map_root
));
1381 * Increment the data structures that need to be preserved.
1383 dm_tm_inc(pmd
->tm
, le64_to_cpu(disk_super
->data_mapping_root
));
1384 dm_tm_inc(pmd
->tm
, le64_to_cpu(disk_super
->device_details_root
));
1385 dm_tm_unlock(pmd
->tm
, copy
);
1388 * Write the held root into the superblock.
1390 r
= superblock_lock(pmd
, &sblock
);
1392 dm_tm_dec(pmd
->tm
, held_root
);
1396 disk_super
= dm_block_data(sblock
);
1397 disk_super
->held_root
= cpu_to_le64(held_root
);
1398 dm_bm_unlock(sblock
);
1402 int dm_pool_reserve_metadata_snap(struct dm_pool_metadata
*pmd
)
1406 pmd_write_lock(pmd
);
1408 r
= __reserve_metadata_snap(pmd
);
1409 pmd_write_unlock(pmd
);
1414 static int __release_metadata_snap(struct dm_pool_metadata
*pmd
)
1417 struct thin_disk_superblock
*disk_super
;
1418 struct dm_block
*sblock
, *copy
;
1419 dm_block_t held_root
;
1421 r
= superblock_lock(pmd
, &sblock
);
1425 disk_super
= dm_block_data(sblock
);
1426 held_root
= le64_to_cpu(disk_super
->held_root
);
1427 disk_super
->held_root
= cpu_to_le64(0);
1429 dm_bm_unlock(sblock
);
1432 DMWARN("No pool metadata snapshot found: nothing to release.");
1436 r
= dm_tm_read_lock(pmd
->tm
, held_root
, &sb_validator
, ©
);
1440 disk_super
= dm_block_data(copy
);
1441 dm_btree_del(&pmd
->info
, le64_to_cpu(disk_super
->data_mapping_root
));
1442 dm_btree_del(&pmd
->details_info
, le64_to_cpu(disk_super
->device_details_root
));
1443 dm_sm_dec_block(pmd
->metadata_sm
, held_root
);
1445 dm_tm_unlock(pmd
->tm
, copy
);
1450 int dm_pool_release_metadata_snap(struct dm_pool_metadata
*pmd
)
1454 pmd_write_lock(pmd
);
1456 r
= __release_metadata_snap(pmd
);
1457 pmd_write_unlock(pmd
);
1462 static int __get_metadata_snap(struct dm_pool_metadata
*pmd
,
1466 struct thin_disk_superblock
*disk_super
;
1467 struct dm_block
*sblock
;
1469 r
= dm_bm_read_lock(pmd
->bm
, THIN_SUPERBLOCK_LOCATION
,
1470 &sb_validator
, &sblock
);
1474 disk_super
= dm_block_data(sblock
);
1475 *result
= le64_to_cpu(disk_super
->held_root
);
1477 dm_bm_unlock(sblock
);
1482 int dm_pool_get_metadata_snap(struct dm_pool_metadata
*pmd
,
1487 down_read(&pmd
->root_lock
);
1489 r
= __get_metadata_snap(pmd
, result
);
1490 up_read(&pmd
->root_lock
);
1495 int dm_pool_open_thin_device(struct dm_pool_metadata
*pmd
, dm_thin_id dev
,
1496 struct dm_thin_device
**td
)
1500 pmd_write_lock_in_core(pmd
);
1502 r
= __open_device(pmd
, dev
, 0, td
);
1503 pmd_write_unlock(pmd
);
1508 int dm_pool_close_thin_device(struct dm_thin_device
*td
)
1510 pmd_write_lock_in_core(td
->pmd
);
1512 pmd_write_unlock(td
->pmd
);
1517 dm_thin_id
dm_thin_dev_id(struct dm_thin_device
*td
)
1523 * Check whether @time (of block creation) is older than @td's last snapshot.
1524 * If so then the associated block is shared with the last snapshot device.
1525 * Any block on a device created *after* the device last got snapshotted is
1526 * necessarily not shared.
1528 static bool __snapshotted_since(struct dm_thin_device
*td
, uint32_t time
)
1530 return td
->snapshotted_time
> time
;
1533 static void unpack_lookup_result(struct dm_thin_device
*td
, __le64 value
,
1534 struct dm_thin_lookup_result
*result
)
1536 uint64_t block_time
= 0;
1537 dm_block_t exception_block
;
1538 uint32_t exception_time
;
1540 block_time
= le64_to_cpu(value
);
1541 unpack_block_time(block_time
, &exception_block
, &exception_time
);
1542 result
->block
= exception_block
;
1543 result
->shared
= __snapshotted_since(td
, exception_time
);
1546 static int __find_block(struct dm_thin_device
*td
, dm_block_t block
,
1547 int can_issue_io
, struct dm_thin_lookup_result
*result
)
1551 struct dm_pool_metadata
*pmd
= td
->pmd
;
1552 dm_block_t keys
[2] = { td
->id
, block
};
1553 struct dm_btree_info
*info
;
1558 info
= &pmd
->nb_info
;
1560 r
= dm_btree_lookup(info
, pmd
->root
, keys
, &value
);
1562 unpack_lookup_result(td
, value
, result
);
1567 int dm_thin_find_block(struct dm_thin_device
*td
, dm_block_t block
,
1568 int can_issue_io
, struct dm_thin_lookup_result
*result
)
1571 struct dm_pool_metadata
*pmd
= td
->pmd
;
1573 down_read(&pmd
->root_lock
);
1575 up_read(&pmd
->root_lock
);
1579 r
= __find_block(td
, block
, can_issue_io
, result
);
1581 up_read(&pmd
->root_lock
);
1585 static int __find_next_mapped_block(struct dm_thin_device
*td
, dm_block_t block
,
1587 struct dm_thin_lookup_result
*result
)
1591 struct dm_pool_metadata
*pmd
= td
->pmd
;
1592 dm_block_t keys
[2] = { td
->id
, block
};
1594 r
= dm_btree_lookup_next(&pmd
->info
, pmd
->root
, keys
, vblock
, &value
);
1596 unpack_lookup_result(td
, value
, result
);
1601 static int __find_mapped_range(struct dm_thin_device
*td
,
1602 dm_block_t begin
, dm_block_t end
,
1603 dm_block_t
*thin_begin
, dm_block_t
*thin_end
,
1604 dm_block_t
*pool_begin
, bool *maybe_shared
)
1607 dm_block_t pool_end
;
1608 struct dm_thin_lookup_result lookup
;
1613 r
= __find_next_mapped_block(td
, begin
, &begin
, &lookup
);
1620 *thin_begin
= begin
;
1621 *pool_begin
= lookup
.block
;
1622 *maybe_shared
= lookup
.shared
;
1625 pool_end
= *pool_begin
+ 1;
1626 while (begin
!= end
) {
1627 r
= __find_block(td
, begin
, true, &lookup
);
1635 if ((lookup
.block
!= pool_end
) ||
1636 (lookup
.shared
!= *maybe_shared
))
1647 int dm_thin_find_mapped_range(struct dm_thin_device
*td
,
1648 dm_block_t begin
, dm_block_t end
,
1649 dm_block_t
*thin_begin
, dm_block_t
*thin_end
,
1650 dm_block_t
*pool_begin
, bool *maybe_shared
)
1653 struct dm_pool_metadata
*pmd
= td
->pmd
;
1655 down_read(&pmd
->root_lock
);
1656 if (!pmd
->fail_io
) {
1657 r
= __find_mapped_range(td
, begin
, end
, thin_begin
, thin_end
,
1658 pool_begin
, maybe_shared
);
1660 up_read(&pmd
->root_lock
);
1665 static int __insert(struct dm_thin_device
*td
, dm_block_t block
,
1666 dm_block_t data_block
)
1670 struct dm_pool_metadata
*pmd
= td
->pmd
;
1671 dm_block_t keys
[2] = { td
->id
, block
};
1673 value
= cpu_to_le64(pack_block_time(data_block
, pmd
->time
));
1674 __dm_bless_for_disk(&value
);
1676 r
= dm_btree_insert_notify(&pmd
->info
, pmd
->root
, keys
, &value
,
1677 &pmd
->root
, &inserted
);
1683 td
->mapped_blocks
++;
1688 int dm_thin_insert_block(struct dm_thin_device
*td
, dm_block_t block
,
1689 dm_block_t data_block
)
1693 pmd_write_lock(td
->pmd
);
1694 if (!td
->pmd
->fail_io
)
1695 r
= __insert(td
, block
, data_block
);
1696 pmd_write_unlock(td
->pmd
);
1701 static int __remove_range(struct dm_thin_device
*td
, dm_block_t begin
, dm_block_t end
)
1704 unsigned int count
, total_count
= 0;
1705 struct dm_pool_metadata
*pmd
= td
->pmd
;
1706 dm_block_t keys
[1] = { td
->id
};
1708 dm_block_t mapping_root
;
1711 * Find the mapping tree
1713 r
= dm_btree_lookup(&pmd
->tl_info
, pmd
->root
, keys
, &value
);
1718 * Remove from the mapping tree, taking care to inc the
1719 * ref count so it doesn't get deleted.
1721 mapping_root
= le64_to_cpu(value
);
1722 dm_tm_inc(pmd
->tm
, mapping_root
);
1723 r
= dm_btree_remove(&pmd
->tl_info
, pmd
->root
, keys
, &pmd
->root
);
1728 * Remove leaves stops at the first unmapped entry, so we have to
1729 * loop round finding mapped ranges.
1731 while (begin
< end
) {
1732 r
= dm_btree_lookup_next(&pmd
->bl_info
, mapping_root
, &begin
, &begin
, &value
);
1742 r
= dm_btree_remove_leaves(&pmd
->bl_info
, mapping_root
, &begin
, end
, &mapping_root
, &count
);
1746 total_count
+= count
;
1749 td
->mapped_blocks
-= total_count
;
1753 * Reinsert the mapping tree.
1755 value
= cpu_to_le64(mapping_root
);
1756 __dm_bless_for_disk(&value
);
1757 return dm_btree_insert(&pmd
->tl_info
, pmd
->root
, keys
, &value
, &pmd
->root
);
1760 int dm_thin_remove_range(struct dm_thin_device
*td
,
1761 dm_block_t begin
, dm_block_t end
)
1765 pmd_write_lock(td
->pmd
);
1766 if (!td
->pmd
->fail_io
)
1767 r
= __remove_range(td
, begin
, end
);
1768 pmd_write_unlock(td
->pmd
);
1773 int dm_pool_block_is_shared(struct dm_pool_metadata
*pmd
, dm_block_t b
, bool *result
)
1778 down_read(&pmd
->root_lock
);
1779 if (!pmd
->fail_io
) {
1780 r
= dm_sm_get_count(pmd
->data_sm
, b
, &ref_count
);
1782 *result
= (ref_count
> 1);
1784 up_read(&pmd
->root_lock
);
1789 int dm_pool_inc_data_range(struct dm_pool_metadata
*pmd
, dm_block_t b
, dm_block_t e
)
1793 pmd_write_lock(pmd
);
1795 r
= dm_sm_inc_blocks(pmd
->data_sm
, b
, e
);
1796 pmd_write_unlock(pmd
);
1801 int dm_pool_dec_data_range(struct dm_pool_metadata
*pmd
, dm_block_t b
, dm_block_t e
)
1805 pmd_write_lock(pmd
);
1807 r
= dm_sm_dec_blocks(pmd
->data_sm
, b
, e
);
1808 pmd_write_unlock(pmd
);
1813 bool dm_thin_changed_this_transaction(struct dm_thin_device
*td
)
1817 down_read(&td
->pmd
->root_lock
);
1819 up_read(&td
->pmd
->root_lock
);
1824 bool dm_pool_changed_this_transaction(struct dm_pool_metadata
*pmd
)
1827 struct dm_thin_device
*td
, *tmp
;
1829 down_read(&pmd
->root_lock
);
1830 list_for_each_entry_safe(td
, tmp
, &pmd
->thin_devices
, list
) {
1836 up_read(&pmd
->root_lock
);
1841 bool dm_thin_aborted_changes(struct dm_thin_device
*td
)
1845 down_read(&td
->pmd
->root_lock
);
1846 r
= td
->aborted_with_changes
;
1847 up_read(&td
->pmd
->root_lock
);
1852 int dm_pool_alloc_data_block(struct dm_pool_metadata
*pmd
, dm_block_t
*result
)
1856 pmd_write_lock(pmd
);
1858 r
= dm_sm_new_block(pmd
->data_sm
, result
);
1859 pmd_write_unlock(pmd
);
1864 int dm_pool_commit_metadata(struct dm_pool_metadata
*pmd
)
1869 * Care is taken to not have commit be what
1870 * triggers putting the thin-pool in-service.
1872 pmd_write_lock_in_core(pmd
);
1876 r
= __commit_transaction(pmd
);
1881 * Open the next transaction.
1883 r
= __begin_transaction(pmd
);
1885 pmd_write_unlock(pmd
);
1889 static void __set_abort_with_changes_flags(struct dm_pool_metadata
*pmd
)
1891 struct dm_thin_device
*td
;
1893 list_for_each_entry(td
, &pmd
->thin_devices
, list
)
1894 td
->aborted_with_changes
= td
->changed
;
1897 int dm_pool_abort_metadata(struct dm_pool_metadata
*pmd
)
1901 /* fail_io is double-checked with pmd->root_lock held below */
1902 if (unlikely(pmd
->fail_io
))
1905 pmd_write_lock(pmd
);
1907 pmd_write_unlock(pmd
);
1910 __set_abort_with_changes_flags(pmd
);
1912 /* destroy data_sm/metadata_sm/nb_tm/tm */
1913 __destroy_persistent_data_objects(pmd
, false);
1916 dm_block_manager_reset(pmd
->bm
);
1918 /* rebuild data_sm/metadata_sm/nb_tm/tm */
1919 r
= __open_or_format_metadata(pmd
, false);
1921 pmd
->fail_io
= true;
1922 pmd_write_unlock(pmd
);
1926 int dm_pool_get_free_block_count(struct dm_pool_metadata
*pmd
, dm_block_t
*result
)
1930 down_read(&pmd
->root_lock
);
1932 r
= dm_sm_get_nr_free(pmd
->data_sm
, result
);
1933 up_read(&pmd
->root_lock
);
1938 int dm_pool_get_free_metadata_block_count(struct dm_pool_metadata
*pmd
,
1943 down_read(&pmd
->root_lock
);
1945 r
= dm_sm_get_nr_free(pmd
->metadata_sm
, result
);
1948 if (*result
< pmd
->metadata_reserve
)
1951 *result
-= pmd
->metadata_reserve
;
1953 up_read(&pmd
->root_lock
);
1958 int dm_pool_get_metadata_dev_size(struct dm_pool_metadata
*pmd
,
1963 down_read(&pmd
->root_lock
);
1965 r
= dm_sm_get_nr_blocks(pmd
->metadata_sm
, result
);
1966 up_read(&pmd
->root_lock
);
1971 int dm_pool_get_data_dev_size(struct dm_pool_metadata
*pmd
, dm_block_t
*result
)
1975 down_read(&pmd
->root_lock
);
1977 r
= dm_sm_get_nr_blocks(pmd
->data_sm
, result
);
1978 up_read(&pmd
->root_lock
);
1983 int dm_thin_get_mapped_count(struct dm_thin_device
*td
, dm_block_t
*result
)
1986 struct dm_pool_metadata
*pmd
= td
->pmd
;
1988 down_read(&pmd
->root_lock
);
1989 if (!pmd
->fail_io
) {
1990 *result
= td
->mapped_blocks
;
1993 up_read(&pmd
->root_lock
);
1998 static int __highest_block(struct dm_thin_device
*td
, dm_block_t
*result
)
2002 dm_block_t thin_root
;
2003 struct dm_pool_metadata
*pmd
= td
->pmd
;
2005 r
= dm_btree_lookup(&pmd
->tl_info
, pmd
->root
, &td
->id
, &value_le
);
2009 thin_root
= le64_to_cpu(value_le
);
2011 return dm_btree_find_highest_key(&pmd
->bl_info
, thin_root
, result
);
2014 int dm_thin_get_highest_mapped_block(struct dm_thin_device
*td
,
2018 struct dm_pool_metadata
*pmd
= td
->pmd
;
2020 down_read(&pmd
->root_lock
);
2022 r
= __highest_block(td
, result
);
2023 up_read(&pmd
->root_lock
);
2028 static int __resize_space_map(struct dm_space_map
*sm
, dm_block_t new_count
)
2031 dm_block_t old_count
;
2033 r
= dm_sm_get_nr_blocks(sm
, &old_count
);
2037 if (new_count
== old_count
)
2040 if (new_count
< old_count
) {
2041 DMERR("cannot reduce size of space map");
2045 return dm_sm_extend(sm
, new_count
- old_count
);
2048 int dm_pool_resize_data_dev(struct dm_pool_metadata
*pmd
, dm_block_t new_count
)
2052 pmd_write_lock(pmd
);
2054 r
= __resize_space_map(pmd
->data_sm
, new_count
);
2055 pmd_write_unlock(pmd
);
2060 int dm_pool_resize_metadata_dev(struct dm_pool_metadata
*pmd
, dm_block_t new_count
)
2064 pmd_write_lock(pmd
);
2065 if (!pmd
->fail_io
) {
2066 r
= __resize_space_map(pmd
->metadata_sm
, new_count
);
2068 __set_metadata_reserve(pmd
);
2070 pmd_write_unlock(pmd
);
2075 void dm_pool_metadata_read_only(struct dm_pool_metadata
*pmd
)
2077 pmd_write_lock_in_core(pmd
);
2078 dm_bm_set_read_only(pmd
->bm
);
2079 pmd_write_unlock(pmd
);
2082 void dm_pool_metadata_read_write(struct dm_pool_metadata
*pmd
)
2084 pmd_write_lock_in_core(pmd
);
2085 dm_bm_set_read_write(pmd
->bm
);
2086 pmd_write_unlock(pmd
);
2089 int dm_pool_register_metadata_threshold(struct dm_pool_metadata
*pmd
,
2090 dm_block_t threshold
,
2091 dm_sm_threshold_fn fn
,
2096 pmd_write_lock_in_core(pmd
);
2097 if (!pmd
->fail_io
) {
2098 r
= dm_sm_register_threshold_callback(pmd
->metadata_sm
,
2099 threshold
, fn
, context
);
2101 pmd_write_unlock(pmd
);
2106 void dm_pool_register_pre_commit_callback(struct dm_pool_metadata
*pmd
,
2107 dm_pool_pre_commit_fn fn
,
2110 pmd_write_lock_in_core(pmd
);
2111 pmd
->pre_commit_fn
= fn
;
2112 pmd
->pre_commit_context
= context
;
2113 pmd_write_unlock(pmd
);
2116 int dm_pool_metadata_set_needs_check(struct dm_pool_metadata
*pmd
)
2119 struct dm_block
*sblock
;
2120 struct thin_disk_superblock
*disk_super
;
2122 pmd_write_lock(pmd
);
2126 pmd
->flags
|= THIN_METADATA_NEEDS_CHECK_FLAG
;
2128 r
= superblock_lock(pmd
, &sblock
);
2130 DMERR("couldn't lock superblock");
2134 disk_super
= dm_block_data(sblock
);
2135 disk_super
->flags
= cpu_to_le32(pmd
->flags
);
2137 dm_bm_unlock(sblock
);
2139 pmd_write_unlock(pmd
);
2143 bool dm_pool_metadata_needs_check(struct dm_pool_metadata
*pmd
)
2147 down_read(&pmd
->root_lock
);
2148 needs_check
= pmd
->flags
& THIN_METADATA_NEEDS_CHECK_FLAG
;
2149 up_read(&pmd
->root_lock
);
2154 void dm_pool_issue_prefetches(struct dm_pool_metadata
*pmd
)
2156 down_read(&pmd
->root_lock
);
2158 dm_tm_issue_prefetches(pmd
->tm
);
2159 up_read(&pmd
->root_lock
);