2 * Copyright (C) 2003 Sistina Software
4 * This file is released under the LGPL.
7 #include <linux/init.h>
8 #include <linux/slab.h>
9 #include <linux/module.h>
10 #include <linux/vmalloc.h>
15 static LIST_HEAD(_log_types
);
16 static DEFINE_SPINLOCK(_lock
);
18 int dm_register_dirty_log_type(struct dirty_log_type
*type
)
22 list_add(&type
->list
, &_log_types
);
28 int dm_unregister_dirty_log_type(struct dirty_log_type
*type
)
33 DMWARN("Attempt to unregister a log type that is still in use");
35 list_del(&type
->list
);
42 static struct dirty_log_type
*get_type(const char *type_name
)
44 struct dirty_log_type
*type
;
47 list_for_each_entry (type
, &_log_types
, list
)
48 if (!strcmp(type_name
, type
->name
)) {
49 if (!type
->use_count
&& !try_module_get(type
->module
)){
62 static void put_type(struct dirty_log_type
*type
)
65 if (!--type
->use_count
)
66 module_put(type
->module
);
70 struct dirty_log
*dm_create_dirty_log(const char *type_name
, struct dm_target
*ti
,
71 unsigned int argc
, char **argv
)
73 struct dirty_log_type
*type
;
74 struct dirty_log
*log
;
76 log
= kmalloc(sizeof(*log
), GFP_KERNEL
);
80 type
= get_type(type_name
);
87 if (type
->ctr(log
, ti
, argc
, argv
)) {
96 void dm_destroy_dirty_log(struct dirty_log
*log
)
103 /*-----------------------------------------------------------------
104 * Persistent and core logs share a lot of their implementation.
105 * FIXME: need a reload method to be called from a resume
106 *---------------------------------------------------------------*/
108 * Magic for persistent mirrors: "MiRr"
110 #define MIRROR_MAGIC 0x4D695272
113 * The on-disk version of the metadata.
115 #define MIRROR_DISK_VERSION 2
122 * Simple, incrementing version. no backward
130 struct dm_target
*ti
;
132 uint32_t region_size
;
133 unsigned int region_count
;
136 unsigned bitset_uint32_count
;
137 uint32_t *clean_bits
;
139 uint32_t *recovering_bits
; /* FIXME: this seems excessive */
145 DEFAULTSYNC
, /* Synchronize if necessary */
146 NOSYNC
, /* Devices known to be already in sync */
147 FORCESYNC
, /* Force a sync to happen */
153 struct dm_dev
*log_dev
;
154 struct log_header header
;
156 struct io_region header_location
;
157 struct log_header
*disk_header
;
161 * The touched member needs to be updated every time we access
162 * one of the bitsets.
164 static inline int log_test_bit(uint32_t *bs
, unsigned bit
)
166 return ext2_test_bit(bit
, (unsigned long *) bs
) ? 1 : 0;
169 static inline void log_set_bit(struct log_c
*l
,
170 uint32_t *bs
, unsigned bit
)
172 ext2_set_bit(bit
, (unsigned long *) bs
);
176 static inline void log_clear_bit(struct log_c
*l
,
177 uint32_t *bs
, unsigned bit
)
179 ext2_clear_bit(bit
, (unsigned long *) bs
);
183 /*----------------------------------------------------------------
185 *--------------------------------------------------------------*/
186 static void header_to_disk(struct log_header
*core
, struct log_header
*disk
)
188 disk
->magic
= cpu_to_le32(core
->magic
);
189 disk
->version
= cpu_to_le32(core
->version
);
190 disk
->nr_regions
= cpu_to_le64(core
->nr_regions
);
193 static void header_from_disk(struct log_header
*core
, struct log_header
*disk
)
195 core
->magic
= le32_to_cpu(disk
->magic
);
196 core
->version
= le32_to_cpu(disk
->version
);
197 core
->nr_regions
= le64_to_cpu(disk
->nr_regions
);
200 static int read_header(struct log_c
*log
)
205 r
= dm_io_sync_vm(1, &log
->header_location
, READ
,
206 log
->disk_header
, &ebits
);
210 header_from_disk(&log
->header
, log
->disk_header
);
212 /* New log required? */
213 if (log
->sync
!= DEFAULTSYNC
|| log
->header
.magic
!= MIRROR_MAGIC
) {
214 log
->header
.magic
= MIRROR_MAGIC
;
215 log
->header
.version
= MIRROR_DISK_VERSION
;
216 log
->header
.nr_regions
= 0;
219 #ifdef __LITTLE_ENDIAN
220 if (log
->header
.version
== 1)
221 log
->header
.version
= 2;
224 if (log
->header
.version
!= MIRROR_DISK_VERSION
) {
225 DMWARN("incompatible disk log version");
232 static inline int write_header(struct log_c
*log
)
236 header_to_disk(&log
->header
, log
->disk_header
);
237 return dm_io_sync_vm(1, &log
->header_location
, WRITE
,
238 log
->disk_header
, &ebits
);
241 /*----------------------------------------------------------------
242 * core log constructor/destructor
244 * argv contains region_size followed optionally by [no]sync
245 *--------------------------------------------------------------*/
247 static int core_ctr(struct dirty_log
*log
, struct dm_target
*ti
,
248 unsigned int argc
, char **argv
)
250 enum sync sync
= DEFAULTSYNC
;
253 uint32_t region_size
;
254 unsigned int region_count
;
257 if (argc
< 1 || argc
> 2) {
258 DMWARN("wrong number of arguments to mirror log");
263 if (!strcmp(argv
[1], "sync"))
265 else if (!strcmp(argv
[1], "nosync"))
268 DMWARN("unrecognised sync argument to mirror log: %s",
274 if (sscanf(argv
[0], "%u", ®ion_size
) != 1) {
275 DMWARN("invalid region size string");
279 region_count
= dm_sector_div_up(ti
->len
, region_size
);
281 lc
= kmalloc(sizeof(*lc
), GFP_KERNEL
);
283 DMWARN("couldn't allocate core log");
289 lc
->region_size
= region_size
;
290 lc
->region_count
= region_count
;
294 * Work out how many "unsigned long"s we need to hold the bitset.
296 bitset_size
= dm_round_up(region_count
,
297 sizeof(unsigned long) << BYTE_SHIFT
);
298 bitset_size
>>= BYTE_SHIFT
;
300 lc
->bitset_uint32_count
= bitset_size
/ 4;
301 lc
->clean_bits
= vmalloc(bitset_size
);
302 if (!lc
->clean_bits
) {
303 DMWARN("couldn't allocate clean bitset");
307 memset(lc
->clean_bits
, -1, bitset_size
);
309 lc
->sync_bits
= vmalloc(bitset_size
);
310 if (!lc
->sync_bits
) {
311 DMWARN("couldn't allocate sync bitset");
312 vfree(lc
->clean_bits
);
316 memset(lc
->sync_bits
, (sync
== NOSYNC
) ? -1 : 0, bitset_size
);
317 lc
->sync_count
= (sync
== NOSYNC
) ? region_count
: 0;
319 lc
->recovering_bits
= vmalloc(bitset_size
);
320 if (!lc
->recovering_bits
) {
321 DMWARN("couldn't allocate sync bitset");
322 vfree(lc
->sync_bits
);
323 vfree(lc
->clean_bits
);
327 memset(lc
->recovering_bits
, 0, bitset_size
);
333 static void core_dtr(struct dirty_log
*log
)
335 struct log_c
*lc
= (struct log_c
*) log
->context
;
336 vfree(lc
->clean_bits
);
337 vfree(lc
->sync_bits
);
338 vfree(lc
->recovering_bits
);
342 /*----------------------------------------------------------------
343 * disk log constructor/destructor
345 * argv contains log_device region_size followed optionally by [no]sync
346 *--------------------------------------------------------------*/
347 static int disk_ctr(struct dirty_log
*log
, struct dm_target
*ti
,
348 unsigned int argc
, char **argv
)
351 size_t size
, bitset_size
;
354 uint32_t *clean_bits
;
356 if (argc
< 2 || argc
> 3) {
357 DMWARN("wrong number of arguments to disk mirror log");
361 r
= dm_get_device(ti
, argv
[0], 0, 0 /* FIXME */,
362 FMODE_READ
| FMODE_WRITE
, &dev
);
366 r
= core_ctr(log
, ti
, argc
- 1, argv
+ 1);
368 dm_put_device(ti
, dev
);
372 lc
= (struct log_c
*) log
->context
;
375 /* setup the disk header fields */
376 lc
->header_location
.bdev
= lc
->log_dev
->bdev
;
377 lc
->header_location
.sector
= 0;
379 /* Include both the header and the bitset in one buffer. */
380 bitset_size
= lc
->bitset_uint32_count
* sizeof(uint32_t);
381 size
= dm_round_up((LOG_OFFSET
<< SECTOR_SHIFT
) + bitset_size
,
382 ti
->limits
.hardsect_size
);
383 lc
->header_location
.count
= size
>> SECTOR_SHIFT
;
385 lc
->disk_header
= vmalloc(size
);
386 if (!lc
->disk_header
)
390 * Deallocate the clean_bits buffer that was allocated in core_ctr()
391 * and point it at the appropriate place in the disk_header buffer.
393 clean_bits
= lc
->clean_bits
;
394 lc
->clean_bits
= (void *)lc
->disk_header
+ (LOG_OFFSET
<< SECTOR_SHIFT
);
395 memcpy(lc
->clean_bits
, clean_bits
, bitset_size
);
401 dm_put_device(ti
, lc
->log_dev
);
406 static void disk_dtr(struct dirty_log
*log
)
408 struct log_c
*lc
= (struct log_c
*) log
->context
;
409 dm_put_device(lc
->ti
, lc
->log_dev
);
410 vfree(lc
->disk_header
);
411 lc
->clean_bits
= NULL
;
415 static int count_bits32(uint32_t *addr
, unsigned size
)
419 for (i
= 0; i
< size
; i
++) {
420 count
+= hweight32(*(addr
+i
));
425 static int disk_resume(struct dirty_log
*log
)
429 struct log_c
*lc
= (struct log_c
*) log
->context
;
430 size_t size
= lc
->bitset_uint32_count
* sizeof(uint32_t);
432 /* read the disk header */
437 /* set or clear any new bits */
438 if (lc
->sync
== NOSYNC
)
439 for (i
= lc
->header
.nr_regions
; i
< lc
->region_count
; i
++)
440 /* FIXME: amazingly inefficient */
441 log_set_bit(lc
, lc
->clean_bits
, i
);
443 for (i
= lc
->header
.nr_regions
; i
< lc
->region_count
; i
++)
444 /* FIXME: amazingly inefficient */
445 log_clear_bit(lc
, lc
->clean_bits
, i
);
447 /* copy clean across to sync */
448 memcpy(lc
->sync_bits
, lc
->clean_bits
, size
);
449 lc
->sync_count
= count_bits32(lc
->clean_bits
, lc
->bitset_uint32_count
);
451 /* set the correct number of regions in the header */
452 lc
->header
.nr_regions
= lc
->region_count
;
454 /* write the new header */
455 return write_header(lc
);
458 static uint32_t core_get_region_size(struct dirty_log
*log
)
460 struct log_c
*lc
= (struct log_c
*) log
->context
;
461 return lc
->region_size
;
464 static int core_is_clean(struct dirty_log
*log
, region_t region
)
466 struct log_c
*lc
= (struct log_c
*) log
->context
;
467 return log_test_bit(lc
->clean_bits
, region
);
470 static int core_in_sync(struct dirty_log
*log
, region_t region
, int block
)
472 struct log_c
*lc
= (struct log_c
*) log
->context
;
473 return log_test_bit(lc
->sync_bits
, region
);
476 static int core_flush(struct dirty_log
*log
)
482 static int disk_flush(struct dirty_log
*log
)
485 struct log_c
*lc
= (struct log_c
*) log
->context
;
487 /* only write if the log has changed */
491 r
= write_header(lc
);
498 static void core_mark_region(struct dirty_log
*log
, region_t region
)
500 struct log_c
*lc
= (struct log_c
*) log
->context
;
501 log_clear_bit(lc
, lc
->clean_bits
, region
);
504 static void core_clear_region(struct dirty_log
*log
, region_t region
)
506 struct log_c
*lc
= (struct log_c
*) log
->context
;
507 log_set_bit(lc
, lc
->clean_bits
, region
);
510 static int core_get_resync_work(struct dirty_log
*log
, region_t
*region
)
512 struct log_c
*lc
= (struct log_c
*) log
->context
;
514 if (lc
->sync_search
>= lc
->region_count
)
518 *region
= ext2_find_next_zero_bit(
519 (unsigned long *) lc
->sync_bits
,
522 lc
->sync_search
= *region
+ 1;
524 if (*region
>= lc
->region_count
)
527 } while (log_test_bit(lc
->recovering_bits
, *region
));
529 log_set_bit(lc
, lc
->recovering_bits
, *region
);
533 static void core_complete_resync_work(struct dirty_log
*log
, region_t region
,
536 struct log_c
*lc
= (struct log_c
*) log
->context
;
538 log_clear_bit(lc
, lc
->recovering_bits
, region
);
540 log_set_bit(lc
, lc
->sync_bits
, region
);
545 static region_t
core_get_sync_count(struct dirty_log
*log
)
547 struct log_c
*lc
= (struct log_c
*) log
->context
;
549 return lc
->sync_count
;
552 #define DMEMIT_SYNC \
553 if (lc->sync != DEFAULTSYNC) \
554 DMEMIT("%ssync ", lc->sync == NOSYNC ? "no" : "")
556 static int core_status(struct dirty_log
*log
, status_type_t status
,
557 char *result
, unsigned int maxlen
)
560 struct log_c
*lc
= log
->context
;
563 case STATUSTYPE_INFO
:
566 case STATUSTYPE_TABLE
:
567 DMEMIT("%s %u %u ", log
->type
->name
,
568 lc
->sync
== DEFAULTSYNC
? 1 : 2, lc
->region_size
);
575 static int disk_status(struct dirty_log
*log
, status_type_t status
,
576 char *result
, unsigned int maxlen
)
580 struct log_c
*lc
= log
->context
;
583 case STATUSTYPE_INFO
:
586 case STATUSTYPE_TABLE
:
587 format_dev_t(buffer
, lc
->log_dev
->bdev
->bd_dev
);
588 DMEMIT("%s %u %s %u ", log
->type
->name
,
589 lc
->sync
== DEFAULTSYNC
? 2 : 3, buffer
,
597 static struct dirty_log_type _core_type
= {
599 .module
= THIS_MODULE
,
602 .get_region_size
= core_get_region_size
,
603 .is_clean
= core_is_clean
,
604 .in_sync
= core_in_sync
,
606 .mark_region
= core_mark_region
,
607 .clear_region
= core_clear_region
,
608 .get_resync_work
= core_get_resync_work
,
609 .complete_resync_work
= core_complete_resync_work
,
610 .get_sync_count
= core_get_sync_count
,
611 .status
= core_status
,
614 static struct dirty_log_type _disk_type
= {
616 .module
= THIS_MODULE
,
619 .suspend
= disk_flush
,
620 .resume
= disk_resume
,
621 .get_region_size
= core_get_region_size
,
622 .is_clean
= core_is_clean
,
623 .in_sync
= core_in_sync
,
625 .mark_region
= core_mark_region
,
626 .clear_region
= core_clear_region
,
627 .get_resync_work
= core_get_resync_work
,
628 .complete_resync_work
= core_complete_resync_work
,
629 .get_sync_count
= core_get_sync_count
,
630 .status
= disk_status
,
633 int __init
dm_dirty_log_init(void)
637 r
= dm_register_dirty_log_type(&_core_type
);
639 DMWARN("couldn't register core log");
641 r
= dm_register_dirty_log_type(&_disk_type
);
643 DMWARN("couldn't register disk type");
644 dm_unregister_dirty_log_type(&_core_type
);
650 void dm_dirty_log_exit(void)
652 dm_unregister_dirty_log_type(&_disk_type
);
653 dm_unregister_dirty_log_type(&_core_type
);
656 EXPORT_SYMBOL(dm_register_dirty_log_type
);
657 EXPORT_SYMBOL(dm_unregister_dirty_log_type
);
658 EXPORT_SYMBOL(dm_create_dirty_log
);
659 EXPORT_SYMBOL(dm_destroy_dirty_log
);