2 * bitmap.c two-level bitmap (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
4 * bitmap_create - sets up the bitmap structure
5 * bitmap_destroy - destroys the bitmap structure
7 * additions, Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc.:
8 * - added disk storage for bitmap
9 * - changes to allow various bitmap chunk sizes
10 * - added bitmap daemon (to asynchronously clear bitmap bits from disk)
16 * flush after percent set rather than just time based. (maybe both).
17 * wait if count gets too high, wake when it drops to half.
18 * allow bitmap to be mirrored with superblock (before or after...)
19 * allow hot-add to re-instate a current device.
20 * allow hot-add of bitmap after quiessing device
23 #include <linux/module.h>
24 #include <linux/version.h>
25 #include <linux/errno.h>
26 #include <linux/slab.h>
27 #include <linux/init.h>
28 #include <linux/config.h>
29 #include <linux/timer.h>
30 #include <linux/sched.h>
31 #include <linux/list.h>
32 #include <linux/file.h>
33 #include <linux/mount.h>
34 #include <linux/buffer_head.h>
35 #include <linux/raid/md.h>
36 #include <linux/raid/bitmap.h>
43 /* these are for debugging purposes only! */
45 /* define one and only one of these */
46 #define INJECT_FAULTS_1 0 /* cause bitmap_alloc_page to fail always */
47 #define INJECT_FAULTS_2 0 /* cause bitmap file to be kicked when first bit set*/
48 #define INJECT_FAULTS_3 0 /* treat bitmap file as kicked at init time */
49 #define INJECT_FAULTS_4 0 /* undef */
50 #define INJECT_FAULTS_5 0 /* undef */
51 #define INJECT_FAULTS_6 0
53 /* if these are defined, the driver will fail! debug only */
54 #define INJECT_FATAL_FAULT_1 0 /* fail kmalloc, causing bitmap_create to fail */
55 #define INJECT_FATAL_FAULT_2 0 /* undef */
56 #define INJECT_FATAL_FAULT_3 0 /* undef */
59 //#define DPRINTK PRINTK /* set this NULL to avoid verbose debug output */
60 #define DPRINTK(x...) do { } while(0)
64 # define PRINTK(x...) printk(KERN_DEBUG x)
70 static inline char * bmname(struct bitmap *bitmap)
72 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
77 * test if the bitmap is active
79 int bitmap_active(struct bitmap *bitmap)
86 spin_lock_irqsave(&bitmap->lock, flags);
87 res = bitmap->flags & BITMAP_ACTIVE;
88 spin_unlock_irqrestore(&bitmap->lock, flags);
92 #define WRITE_POOL_SIZE 256
93 /* mempool for queueing pending writes on the bitmap file */
94 static void *write_pool_alloc(unsigned int gfp_flags, void *data)
96 return kmalloc(sizeof(struct page_list), gfp_flags);
99 static void write_pool_free(void *ptr, void *data)
105 * just a placeholder - calls kmalloc for bitmap pages
107 static unsigned char *bitmap_alloc_page(struct bitmap *bitmap)
111 #ifdef INJECT_FAULTS_1
114 page = kmalloc(PAGE_SIZE, GFP_NOIO);
117 printk("%s: bitmap_alloc_page FAILED\n", bmname(bitmap));
119 PRINTK("%s: bitmap_alloc_page: allocated page at %p\n",
120 bmname(bitmap), page);
125 * for now just a placeholder -- just calls kfree for bitmap pages
127 static void bitmap_free_page(struct bitmap *bitmap, unsigned char *page)
129 PRINTK("%s: bitmap_free_page: free page %p\n", bmname(bitmap), page);
134 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
136 * 1) check to see if this page is allocated, if it's not then try to alloc
137 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
138 * page pointer directly as a counter
140 * if we find our page, we increment the page's refcount so that it stays
141 * allocated while we're using it
143 static int bitmap_checkpage(struct bitmap *bitmap, unsigned long page, int create)
145 unsigned char *mappage;
147 if (page >= bitmap->pages) {
149 "%s: invalid bitmap page request: %lu (> %lu)\n",
150 bmname(bitmap), page, bitmap->pages-1);
155 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
158 if (bitmap->bp[page].map) /* page is already allocated, just return */
164 spin_unlock_irq(&bitmap->lock);
166 /* this page has not been allocated yet */
168 if ((mappage = bitmap_alloc_page(bitmap)) == NULL) {
169 PRINTK("%s: bitmap map page allocation failed, hijacking\n",
171 /* failed - set the hijacked flag so that we can use the
172 * pointer as a counter */
173 spin_lock_irq(&bitmap->lock);
174 if (!bitmap->bp[page].map)
175 bitmap->bp[page].hijacked = 1;
181 spin_lock_irq(&bitmap->lock);
183 /* recheck the page */
185 if (bitmap->bp[page].map || bitmap->bp[page].hijacked) {
186 /* somebody beat us to getting the page */
187 bitmap_free_page(bitmap, mappage);
191 /* no page was in place and we have one, so install it */
193 memset(mappage, 0, PAGE_SIZE);
194 bitmap->bp[page].map = mappage;
195 bitmap->missing_pages--;
201 /* if page is completely empty, put it back on the free list, or dealloc it */
202 /* if page was hijacked, unmark the flag so it might get alloced next time */
203 /* Note: lock should be held when calling this */
204 static inline void bitmap_checkfree(struct bitmap *bitmap, unsigned long page)
208 if (bitmap->bp[page].count) /* page is still busy */
211 /* page is no longer in use, it can be released */
213 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
214 bitmap->bp[page].hijacked = 0;
215 bitmap->bp[page].map = NULL;
219 /* normal case, free the page */
222 /* actually ... let's not. We will probably need the page again exactly when
223 * memory is tight and we are flusing to disk
227 ptr = bitmap->bp[page].map;
228 bitmap->bp[page].map = NULL;
229 bitmap->missing_pages++;
230 bitmap_free_page(bitmap, ptr);
237 * bitmap file handling - read and write the bitmap file and its superblock
240 /* copy the pathname of a file to a buffer */
241 char *file_path(struct file *file, char *buf, int count)
252 buf = d_path(d, v, buf, count);
254 return IS_ERR(buf) ? NULL : buf;
258 * basic page I/O operations
261 /* IO operations when bitmap is stored near all superblocks */
262 static struct page *read_sb_page(mddev_t *mddev, long offset, unsigned long index)
264 /* choose a good rdev and read the page from there */
267 struct list_head *tmp;
268 struct page *page = alloc_page(GFP_KERNEL);
272 return ERR_PTR(-ENOMEM);
274 ITERATE_RDEV(mddev, rdev, tmp)
275 if (rdev->in_sync && !rdev->faulty)
277 return ERR_PTR(-EIO);
280 target = (rdev->sb_offset << 1) + offset + index * (PAGE_SIZE/512);
282 } while (!sync_page_io(rdev->bdev, target, PAGE_SIZE, page, READ));
288 static int write_sb_page(mddev_t *mddev, long offset, struct page *page, int wait)
291 struct list_head *tmp;
293 ITERATE_RDEV(mddev, rdev, tmp)
294 if (rdev->in_sync && !rdev->faulty)
295 md_super_write(mddev, rdev,
296 (rdev->sb_offset<<1) + offset
297 + page->index * (PAGE_SIZE/512),
302 wait_event(mddev->sb_wait, atomic_read(&mddev->pending_writes)==0);
307 * write out a page to a file
309 static int write_page(struct bitmap *bitmap, struct page *page, int wait)
313 if (bitmap->file == NULL)
314 return write_sb_page(bitmap->mddev, bitmap->offset, page, wait);
319 if (TestSetPageLocked(page))
320 return -EAGAIN; /* already locked */
321 if (PageWriteback(page)) {
327 ret = page->mapping->a_ops->prepare_write(NULL, page, 0, PAGE_SIZE);
329 ret = page->mapping->a_ops->commit_write(NULL, page, 0,
336 set_page_dirty(page); /* force it to be written out */
339 /* add to list to be waited for by daemon */
340 struct page_list *item = mempool_alloc(bitmap->write_pool, GFP_NOIO);
342 page_cache_get(page);
343 spin_lock(&bitmap->write_lock);
344 list_add(&item->list, &bitmap->complete_pages);
345 spin_unlock(&bitmap->write_lock);
346 md_wakeup_thread(bitmap->writeback_daemon);
348 return write_one_page(page, wait);
351 /* read a page from a file, pinning it into cache, and return bytes_read */
352 static struct page *read_page(struct file *file, unsigned long index,
353 unsigned long *bytes_read)
355 struct inode *inode = file->f_mapping->host;
356 struct page *page = NULL;
357 loff_t isize = i_size_read(inode);
358 unsigned long end_index = isize >> PAGE_CACHE_SHIFT;
360 PRINTK("read bitmap file (%dB @ %Lu)\n", (int)PAGE_CACHE_SIZE,
361 (unsigned long long)index << PAGE_CACHE_SHIFT);
363 page = read_cache_page(inode->i_mapping, index,
364 (filler_t *)inode->i_mapping->a_ops->readpage, file);
367 wait_on_page_locked(page);
368 if (!PageUptodate(page) || PageError(page)) {
369 page_cache_release(page);
370 page = ERR_PTR(-EIO);
374 if (index > end_index) /* we have read beyond EOF */
376 else if (index == end_index) /* possible short read */
377 *bytes_read = isize & ~PAGE_CACHE_MASK;
379 *bytes_read = PAGE_CACHE_SIZE; /* got a full page */
382 printk(KERN_ALERT "md: bitmap read error: (%dB @ %Lu): %ld\n",
383 (int)PAGE_CACHE_SIZE,
384 (unsigned long long)index << PAGE_CACHE_SHIFT,
390 * bitmap file superblock operations
393 /* update the event counter and sync the superblock to disk */
394 int bitmap_update_sb(struct bitmap *bitmap)
399 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
401 spin_lock_irqsave(&bitmap->lock, flags);
402 if (!bitmap->sb_page) { /* no superblock */
403 spin_unlock_irqrestore(&bitmap->lock, flags);
406 spin_unlock_irqrestore(&bitmap->lock, flags);
407 sb = (bitmap_super_t *)kmap(bitmap->sb_page);
408 sb->events = cpu_to_le64(bitmap->mddev->events);
409 if (!bitmap->mddev->degraded)
410 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
411 kunmap(bitmap->sb_page);
412 return write_page(bitmap, bitmap->sb_page, 1);
415 /* print out the bitmap file superblock */
416 void bitmap_print_sb(struct bitmap *bitmap)
420 if (!bitmap || !bitmap->sb_page)
422 sb = (bitmap_super_t *)kmap(bitmap->sb_page);
423 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
424 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
425 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
426 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
427 *(__u32 *)(sb->uuid+0),
428 *(__u32 *)(sb->uuid+4),
429 *(__u32 *)(sb->uuid+8),
430 *(__u32 *)(sb->uuid+12));
431 printk(KERN_DEBUG " events: %llu\n",
432 (unsigned long long) le64_to_cpu(sb->events));
433 printk(KERN_DEBUG "events cleared: %llu\n",
434 (unsigned long long) le64_to_cpu(sb->events_cleared));
435 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
436 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
437 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
438 printk(KERN_DEBUG " sync size: %llu KB\n",
439 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
440 kunmap(bitmap->sb_page);
443 /* read the superblock from the bitmap file and initialize some bitmap fields */
444 static int bitmap_read_sb(struct bitmap *bitmap)
448 unsigned long chunksize, daemon_sleep;
449 unsigned long bytes_read;
450 unsigned long long events;
453 /* page 0 is the superblock, read it... */
455 bitmap->sb_page = read_page(bitmap->file, 0, &bytes_read);
457 bitmap->sb_page = read_sb_page(bitmap->mddev, bitmap->offset, 0);
458 bytes_read = PAGE_SIZE;
460 if (IS_ERR(bitmap->sb_page)) {
461 err = PTR_ERR(bitmap->sb_page);
462 bitmap->sb_page = NULL;
466 sb = (bitmap_super_t *)kmap(bitmap->sb_page);
468 if (bytes_read < sizeof(*sb)) { /* short read */
469 printk(KERN_INFO "%s: bitmap file superblock truncated\n",
475 chunksize = le32_to_cpu(sb->chunksize);
476 daemon_sleep = le32_to_cpu(sb->daemon_sleep);
478 /* verify that the bitmap-specific fields are valid */
479 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
480 reason = "bad magic";
481 else if (sb->version != cpu_to_le32(BITMAP_MAJOR))
482 reason = "unrecognized superblock version";
483 else if (chunksize < 512 || chunksize > (1024 * 1024 * 4))
484 reason = "bitmap chunksize out of range (512B - 4MB)";
485 else if ((1 << ffz(~chunksize)) != chunksize)
486 reason = "bitmap chunksize not a power of 2";
487 else if (daemon_sleep < 1 || daemon_sleep > 15)
488 reason = "daemon sleep period out of range";
490 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
491 bmname(bitmap), reason);
495 /* keep the array size field of the bitmap superblock up to date */
496 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
498 if (!bitmap->mddev->persistent)
502 * if we have a persistent array superblock, compare the
503 * bitmap's UUID and event counter to the mddev's
505 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
506 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
510 events = le64_to_cpu(sb->events);
511 if (events < bitmap->mddev->events) {
512 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
513 "-- forcing full recovery\n", bmname(bitmap), events,
514 (unsigned long long) bitmap->mddev->events);
515 sb->state |= BITMAP_STALE;
518 /* assign fields using values from superblock */
519 bitmap->chunksize = chunksize;
520 bitmap->daemon_sleep = daemon_sleep;
521 bitmap->flags |= sb->state;
522 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
525 kunmap(bitmap->sb_page);
527 bitmap_print_sb(bitmap);
531 enum bitmap_mask_op {
536 /* record the state of the bitmap in the superblock */
537 static void bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
538 enum bitmap_mask_op op)
543 spin_lock_irqsave(&bitmap->lock, flags);
544 if (!bitmap || !bitmap->sb_page) { /* can't set the state */
545 spin_unlock_irqrestore(&bitmap->lock, flags);
548 page_cache_get(bitmap->sb_page);
549 spin_unlock_irqrestore(&bitmap->lock, flags);
550 sb = (bitmap_super_t *)kmap(bitmap->sb_page);
552 case MASK_SET: sb->state |= bits;
554 case MASK_UNSET: sb->state &= ~bits;
558 kunmap(bitmap->sb_page);
559 page_cache_release(bitmap->sb_page);
563 * general bitmap file operations
566 /* calculate the index of the page that contains this bit */
567 static inline unsigned long file_page_index(unsigned long chunk)
569 return CHUNK_BIT_OFFSET(chunk) >> PAGE_BIT_SHIFT;
572 /* calculate the (bit) offset of this bit within a page */
573 static inline unsigned long file_page_offset(unsigned long chunk)
575 return CHUNK_BIT_OFFSET(chunk) & (PAGE_BITS - 1);
579 * return a pointer to the page in the filemap that contains the given bit
581 * this lookup is complicated by the fact that the bitmap sb might be exactly
582 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
585 static inline struct page *filemap_get_page(struct bitmap *bitmap,
588 return bitmap->filemap[file_page_index(chunk) - file_page_index(0)];
592 static void bitmap_file_unmap(struct bitmap *bitmap)
594 struct page **map, *sb_page;
599 spin_lock_irqsave(&bitmap->lock, flags);
600 map = bitmap->filemap;
601 bitmap->filemap = NULL;
602 attr = bitmap->filemap_attr;
603 bitmap->filemap_attr = NULL;
604 pages = bitmap->file_pages;
605 bitmap->file_pages = 0;
606 sb_page = bitmap->sb_page;
607 bitmap->sb_page = NULL;
608 spin_unlock_irqrestore(&bitmap->lock, flags);
611 if (map[pages]->index != 0) /* 0 is sb_page, release it below */
612 page_cache_release(map[pages]);
617 page_cache_release(sb_page);
620 static void bitmap_stop_daemons(struct bitmap *bitmap);
622 /* dequeue the next item in a page list -- don't call from irq context */
623 static struct page_list *dequeue_page(struct bitmap *bitmap)
625 struct page_list *item = NULL;
626 struct list_head *head = &bitmap->complete_pages;
628 spin_lock(&bitmap->write_lock);
629 if (list_empty(head))
631 item = list_entry(head->prev, struct page_list, list);
632 list_del(head->prev);
634 spin_unlock(&bitmap->write_lock);
638 static void drain_write_queues(struct bitmap *bitmap)
640 struct page_list *item;
642 while ((item = dequeue_page(bitmap))) {
643 /* don't bother to wait */
644 page_cache_release(item->page);
645 mempool_free(item, bitmap->write_pool);
648 wake_up(&bitmap->write_wait);
651 static void bitmap_file_put(struct bitmap *bitmap)
657 spin_lock_irqsave(&bitmap->lock, flags);
660 spin_unlock_irqrestore(&bitmap->lock, flags);
662 bitmap_stop_daemons(bitmap);
664 drain_write_queues(bitmap);
666 bitmap_file_unmap(bitmap);
669 inode = file->f_mapping->host;
670 spin_lock(&inode->i_lock);
671 atomic_set(&inode->i_writecount, 1); /* allow writes again */
672 spin_unlock(&inode->i_lock);
679 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
680 * then it is no longer reliable, so we stop using it and we mark the file
681 * as failed in the superblock
683 static void bitmap_file_kick(struct bitmap *bitmap)
685 char *path, *ptr = NULL;
687 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET);
688 bitmap_update_sb(bitmap);
691 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
693 ptr = file_path(bitmap->file, path, PAGE_SIZE);
695 printk(KERN_ALERT "%s: kicking failed bitmap file %s from array!\n",
696 bmname(bitmap), ptr ? ptr : "");
701 bitmap_file_put(bitmap);
706 enum bitmap_page_attr {
707 BITMAP_PAGE_DIRTY = 1, // there are set bits that need to be synced
708 BITMAP_PAGE_CLEAN = 2, // there are bits that might need to be cleared
709 BITMAP_PAGE_NEEDWRITE=4, // there are cleared bits that need to be synced
712 static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
713 enum bitmap_page_attr attr)
715 bitmap->filemap_attr[page->index] |= attr;
718 static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
719 enum bitmap_page_attr attr)
721 bitmap->filemap_attr[page->index] &= ~attr;
724 static inline unsigned long get_page_attr(struct bitmap *bitmap, struct page *page)
726 return bitmap->filemap_attr[page->index];
730 * bitmap_file_set_bit -- called before performing a write to the md device
731 * to set (and eventually sync) a particular bit in the bitmap file
733 * we set the bit immediately, then we record the page number so that
734 * when an unplug occurs, we can flush the dirty pages out to disk
736 static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
741 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
743 if (!bitmap->filemap) {
747 page = filemap_get_page(bitmap, chunk);
748 bit = file_page_offset(chunk);
751 /* make sure the page stays cached until it gets written out */
752 if (! (get_page_attr(bitmap, page) & BITMAP_PAGE_DIRTY))
753 page_cache_get(page);
756 kaddr = kmap_atomic(page, KM_USER0);
758 kunmap_atomic(kaddr, KM_USER0);
759 PRINTK("set file bit %lu page %lu\n", bit, page->index);
761 /* record page number so it gets flushed to disk when unplug occurs */
762 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
766 /* this gets called when the md device is ready to unplug its underlying
767 * (slave) device queues -- before we let any writes go down, we need to
768 * sync the dirty pages of the bitmap file to disk */
769 int bitmap_unplug(struct bitmap *bitmap)
771 unsigned long i, attr, flags;
779 /* look at each page to see if there are any set bits that need to be
780 * flushed out to disk */
781 for (i = 0; i < bitmap->file_pages; i++) {
782 spin_lock_irqsave(&bitmap->lock, flags);
783 if (!bitmap->filemap) {
784 spin_unlock_irqrestore(&bitmap->lock, flags);
787 page = bitmap->filemap[i];
788 attr = get_page_attr(bitmap, page);
789 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
790 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
791 if ((attr & BITMAP_PAGE_DIRTY))
793 spin_unlock_irqrestore(&bitmap->lock, flags);
795 if (attr & (BITMAP_PAGE_DIRTY | BITMAP_PAGE_NEEDWRITE)) {
796 err = write_page(bitmap, page, 0);
797 if (err == -EAGAIN) {
798 if (attr & BITMAP_PAGE_DIRTY)
799 err = write_page(bitmap, page, 1);
807 if (wait) { /* if any writes were performed, we need to wait on them */
809 spin_lock_irq(&bitmap->write_lock);
810 wait_event_lock_irq(bitmap->write_wait,
811 list_empty(&bitmap->complete_pages), bitmap->write_lock,
812 wake_up_process(bitmap->writeback_daemon->tsk));
813 spin_unlock_irq(&bitmap->write_lock);
815 wait_event(bitmap->mddev->sb_wait,
816 atomic_read(&bitmap->mddev->pending_writes)==0);
821 static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset);
822 /* * bitmap_init_from_disk -- called at bitmap_create time to initialize
823 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
824 * memory mapping of the bitmap file
826 * if there's no bitmap file, or if the bitmap file had been
827 * previously kicked from the array, we mark all the bits as
828 * 1's in order to cause a full resync.
830 static int bitmap_init_from_disk(struct bitmap *bitmap)
832 unsigned long i, chunks, index, oldindex, bit;
833 struct page *page = NULL, *oldpage = NULL;
834 unsigned long num_pages, bit_cnt = 0;
836 unsigned long bytes, offset, dummy;
840 chunks = bitmap->chunks;
843 BUG_ON(!file && !bitmap->offset);
845 #ifdef INJECT_FAULTS_3
848 outofdate = bitmap->flags & BITMAP_STALE;
851 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
852 "recovery\n", bmname(bitmap));
854 bytes = (chunks + 7) / 8;
856 num_pages = (bytes + sizeof(bitmap_super_t) + PAGE_SIZE - 1) / PAGE_SIZE;
858 if (file && i_size_read(file->f_mapping->host) < bytes + sizeof(bitmap_super_t)) {
859 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
861 (unsigned long) i_size_read(file->f_mapping->host),
862 bytes + sizeof(bitmap_super_t));
868 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
869 if (!bitmap->filemap)
872 bitmap->filemap_attr = kmalloc(sizeof(long) * num_pages, GFP_KERNEL);
873 if (!bitmap->filemap_attr)
876 memset(bitmap->filemap_attr, 0, sizeof(long) * num_pages);
880 for (i = 0; i < chunks; i++) {
881 index = file_page_index(i);
882 bit = file_page_offset(i);
883 if (index != oldindex) { /* this is a new page, read it in */
884 /* unmap the old page, we're done with it */
889 * if we're here then the superblock page
890 * contains some bits (PAGE_SIZE != sizeof sb)
891 * we've already read it in, so just use it
893 page = bitmap->sb_page;
894 offset = sizeof(bitmap_super_t);
896 page = read_page(file, index, &dummy);
899 page = read_sb_page(bitmap->mddev, bitmap->offset, index);
902 if (IS_ERR(page)) { /* read error */
913 * if bitmap is out of date, dirty the
914 * whole page and write it out
916 memset(page_address(page) + offset, 0xff,
918 ret = write_page(bitmap, page, 1);
921 /* release, page not in filemap yet */
922 page_cache_release(page);
927 bitmap->filemap[bitmap->file_pages++] = page;
929 if (test_bit(bit, page_address(page))) {
930 /* if the disk bit is set, set the memory bit */
931 bitmap_set_memory_bits(bitmap, i << CHUNK_BLOCK_SHIFT(bitmap));
936 /* everything went OK */
938 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_UNSET);
940 if (page) /* unmap the last page */
943 if (bit_cnt) { /* Kick recovery if any bits were set */
944 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
945 md_wakeup_thread(bitmap->mddev->thread);
949 printk(KERN_INFO "%s: bitmap initialized from disk: "
950 "read %lu/%lu pages, set %lu bits, status: %d\n",
951 bmname(bitmap), bitmap->file_pages, num_pages, bit_cnt, ret);
956 void bitmap_write_all(struct bitmap *bitmap)
958 /* We don't actually write all bitmap blocks here,
959 * just flag them as needing to be written
962 unsigned long chunks = bitmap->chunks;
963 unsigned long bytes = (chunks+7)/8 + sizeof(bitmap_super_t);
964 unsigned long num_pages = (bytes + PAGE_SIZE-1) / PAGE_SIZE;
966 bitmap->filemap_attr[num_pages] |= BITMAP_PAGE_NEEDWRITE;
970 static void bitmap_count_page(struct bitmap *bitmap, sector_t offset, int inc)
972 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
973 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
974 bitmap->bp[page].count += inc;
976 if (page == 0) printk("count page 0, offset %llu: %d gives %d\n",
977 (unsigned long long)offset, inc, bitmap->bp[page].count);
979 bitmap_checkfree(bitmap, page);
981 static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
982 sector_t offset, int *blocks,
986 * bitmap daemon -- periodically wakes up to clean bits and flush pages
990 int bitmap_daemon_work(struct bitmap *bitmap)
994 struct page *page = NULL, *lastpage = NULL;
1001 if (time_before(jiffies, bitmap->daemon_lastrun + bitmap->daemon_sleep*HZ))
1003 bitmap->daemon_lastrun = jiffies;
1005 for (j = 0; j < bitmap->chunks; j++) {
1006 bitmap_counter_t *bmc;
1007 spin_lock_irqsave(&bitmap->lock, flags);
1008 if (!bitmap->filemap) {
1009 /* error or shutdown */
1010 spin_unlock_irqrestore(&bitmap->lock, flags);
1014 page = filemap_get_page(bitmap, j);
1016 if (page != lastpage) {
1017 /* skip this page unless it's marked as needing cleaning */
1018 if (!((attr=get_page_attr(bitmap, page)) & BITMAP_PAGE_CLEAN)) {
1019 if (attr & BITMAP_PAGE_NEEDWRITE) {
1020 page_cache_get(page);
1021 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
1023 spin_unlock_irqrestore(&bitmap->lock, flags);
1024 if (attr & BITMAP_PAGE_NEEDWRITE) {
1025 switch (write_page(bitmap, page, 0)) {
1027 set_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
1032 bitmap_file_kick(bitmap);
1034 page_cache_release(page);
1039 /* grab the new page, sync and release the old */
1040 page_cache_get(page);
1041 if (lastpage != NULL) {
1042 if (get_page_attr(bitmap, lastpage) & BITMAP_PAGE_NEEDWRITE) {
1043 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1044 spin_unlock_irqrestore(&bitmap->lock, flags);
1045 err = write_page(bitmap, lastpage, 0);
1046 if (err == -EAGAIN) {
1048 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1051 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1052 spin_unlock_irqrestore(&bitmap->lock, flags);
1055 page_cache_release(lastpage);
1057 bitmap_file_kick(bitmap);
1059 spin_unlock_irqrestore(&bitmap->lock, flags);
1063 printk("bitmap clean at page %lu\n", j);
1065 spin_lock_irqsave(&bitmap->lock, flags);
1066 clear_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1068 bmc = bitmap_get_counter(bitmap, j << CHUNK_BLOCK_SHIFT(bitmap),
1072 if (j < 100) printk("bitmap: j=%lu, *bmc = 0x%x\n", j, *bmc);
1075 *bmc=1; /* maybe clear the bit next time */
1076 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1077 } else if (*bmc == 1) {
1078 /* we can clear the bit */
1080 bitmap_count_page(bitmap, j << CHUNK_BLOCK_SHIFT(bitmap),
1084 clear_bit(file_page_offset(j), page_address(page));
1087 spin_unlock_irqrestore(&bitmap->lock, flags);
1090 /* now sync the final page */
1091 if (lastpage != NULL) {
1093 spin_lock_irqsave(&bitmap->lock, flags);
1094 if (get_page_attr(bitmap, lastpage) &BITMAP_PAGE_NEEDWRITE) {
1095 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1096 spin_unlock_irqrestore(&bitmap->lock, flags);
1097 err = write_page(bitmap, lastpage, 0);
1098 if (err == -EAGAIN) {
1099 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1103 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1104 spin_unlock_irqrestore(&bitmap->lock, flags);
1107 page_cache_release(lastpage);
1113 static void daemon_exit(struct bitmap *bitmap, mdk_thread_t **daemon)
1116 unsigned long flags;
1118 /* if no one is waiting on us, we'll free the md thread struct
1119 * and exit, otherwise we let the waiter clean things up */
1120 spin_lock_irqsave(&bitmap->lock, flags);
1121 if ((dmn = *daemon)) { /* no one is waiting, cleanup and exit */
1123 spin_unlock_irqrestore(&bitmap->lock, flags);
1125 complete_and_exit(NULL, 0); /* do_exit not exported */
1127 spin_unlock_irqrestore(&bitmap->lock, flags);
1130 static void bitmap_writeback_daemon(mddev_t *mddev)
1132 struct bitmap *bitmap = mddev->bitmap;
1134 struct page_list *item;
1137 if (signal_pending(current)) {
1139 "%s: bitmap writeback daemon got signal, exiting...\n",
1145 PRINTK("%s: bitmap writeback daemon woke up...\n", bmname(bitmap));
1146 /* wait on bitmap page writebacks */
1147 while ((item = dequeue_page(bitmap))) {
1149 mempool_free(item, bitmap->write_pool);
1150 PRINTK("wait on page writeback: %p\n", page);
1151 wait_on_page_writeback(page);
1152 PRINTK("finished page writeback: %p\n", page);
1154 err = PageError(page);
1155 page_cache_release(page);
1157 printk(KERN_WARNING "%s: bitmap file writeback "
1158 "failed (page %lu): %d\n",
1159 bmname(bitmap), page->index, err);
1160 bitmap_file_kick(bitmap);
1165 wake_up(&bitmap->write_wait);
1167 printk(KERN_INFO "%s: bitmap writeback daemon exiting (%d)\n",
1168 bmname(bitmap), err);
1169 daemon_exit(bitmap, &bitmap->writeback_daemon);
1173 static int bitmap_start_daemon(struct bitmap *bitmap, mdk_thread_t **ptr,
1174 void (*func)(mddev_t *), char *name)
1176 mdk_thread_t *daemon;
1177 unsigned long flags;
1180 spin_lock_irqsave(&bitmap->lock, flags);
1183 if (!bitmap->file) /* no need for daemon if there's no backing file */
1186 spin_unlock_irqrestore(&bitmap->lock, flags);
1188 #ifdef INJECT_FATAL_FAULT_2
1191 sprintf(namebuf, "%%s_%s", name);
1192 daemon = md_register_thread(func, bitmap->mddev, namebuf);
1195 printk(KERN_ERR "%s: failed to start bitmap daemon\n",
1200 spin_lock_irqsave(&bitmap->lock, flags);
1203 md_wakeup_thread(daemon); /* start it running */
1205 PRINTK("%s: %s daemon (pid %d) started...\n",
1206 bmname(bitmap), name, daemon->tsk->pid);
1208 spin_unlock_irqrestore(&bitmap->lock, flags);
1212 static int bitmap_start_daemons(struct bitmap *bitmap)
1214 int err = bitmap_start_daemon(bitmap, &bitmap->writeback_daemon,
1215 bitmap_writeback_daemon, "bitmap_wb");
1219 static void bitmap_stop_daemon(struct bitmap *bitmap, mdk_thread_t **ptr)
1221 mdk_thread_t *daemon;
1222 unsigned long flags;
1224 spin_lock_irqsave(&bitmap->lock, flags);
1227 spin_unlock_irqrestore(&bitmap->lock, flags);
1229 md_unregister_thread(daemon); /* destroy the thread */
1232 static void bitmap_stop_daemons(struct bitmap *bitmap)
1234 /* the daemons can't stop themselves... they'll just exit instead... */
1235 if (bitmap->writeback_daemon &&
1236 current->pid != bitmap->writeback_daemon->tsk->pid)
1237 bitmap_stop_daemon(bitmap, &bitmap->writeback_daemon);
1240 static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1241 sector_t offset, int *blocks,
1244 /* If 'create', we might release the lock and reclaim it.
1245 * The lock must have been taken with interrupts enabled.
1246 * If !create, we don't release the lock.
1248 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1249 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1250 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1253 if (bitmap_checkpage(bitmap, page, create) < 0) {
1254 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1255 *blocks = csize - (offset & (csize- 1));
1258 /* now locked ... */
1260 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1261 /* should we use the first or second counter field
1262 * of the hijacked pointer? */
1263 int hi = (pageoff > PAGE_COUNTER_MASK);
1264 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1265 PAGE_COUNTER_SHIFT - 1);
1266 *blocks = csize - (offset & (csize- 1));
1267 return &((bitmap_counter_t *)
1268 &bitmap->bp[page].map)[hi];
1269 } else { /* page is allocated */
1270 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1271 *blocks = csize - (offset & (csize- 1));
1272 return (bitmap_counter_t *)
1273 &(bitmap->bp[page].map[pageoff]);
1277 int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors)
1279 if (!bitmap) return 0;
1282 bitmap_counter_t *bmc;
1284 spin_lock_irq(&bitmap->lock);
1285 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1287 spin_unlock_irq(&bitmap->lock);
1293 bitmap_file_set_bit(bitmap, offset);
1294 bitmap_count_page(bitmap,offset, 1);
1295 blk_plug_device(bitmap->mddev->queue);
1300 if ((*bmc & COUNTER_MAX) == COUNTER_MAX) BUG();
1303 spin_unlock_irq(&bitmap->lock);
1306 if (sectors > blocks)
1313 void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
1316 if (!bitmap) return;
1319 unsigned long flags;
1320 bitmap_counter_t *bmc;
1322 spin_lock_irqsave(&bitmap->lock, flags);
1323 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1325 spin_unlock_irqrestore(&bitmap->lock, flags);
1329 if (!success && ! (*bmc & NEEDED_MASK))
1330 *bmc |= NEEDED_MASK;
1334 set_page_attr(bitmap,
1335 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1338 spin_unlock_irqrestore(&bitmap->lock, flags);
1340 if (sectors > blocks)
1346 int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1349 bitmap_counter_t *bmc;
1351 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1353 return 1; /* always resync if no bitmap */
1355 spin_lock_irq(&bitmap->lock);
1356 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1362 else if (NEEDED(*bmc)) {
1364 if (!degraded) { /* don't set/clear bits if degraded */
1365 *bmc |= RESYNC_MASK;
1366 *bmc &= ~NEEDED_MASK;
1370 spin_unlock_irq(&bitmap->lock);
1374 void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, int *blocks, int aborted)
1376 bitmap_counter_t *bmc;
1377 unsigned long flags;
1379 if (offset == 0) printk("bitmap_end_sync 0 (%d)\n", aborted);
1380 */ if (bitmap == NULL) {
1384 spin_lock_irqsave(&bitmap->lock, flags);
1385 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1390 if (offset == 0) printk("bitmap_end sync found 0x%x, blocks %d\n", *bmc, *blocks);
1393 *bmc &= ~RESYNC_MASK;
1395 if (!NEEDED(*bmc) && aborted)
1396 *bmc |= NEEDED_MASK;
1399 set_page_attr(bitmap,
1400 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1406 spin_unlock_irqrestore(&bitmap->lock, flags);
1409 void bitmap_close_sync(struct bitmap *bitmap)
1411 /* Sync has finished, and any bitmap chunks that weren't synced
1412 * properly have been aborted. It remains to us to clear the
1413 * RESYNC bit wherever it is still on
1415 sector_t sector = 0;
1417 if (!bitmap) return;
1418 while (sector < bitmap->mddev->resync_max_sectors) {
1419 bitmap_end_sync(bitmap, sector, &blocks, 0);
1421 if (sector < 500) printk("bitmap_close_sync: sec %llu blks %d\n",
1422 (unsigned long long)sector, blocks);
1423 */ sector += blocks;
1427 static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset)
1429 /* For each chunk covered by any of these sectors, set the
1430 * counter to 1 and set resync_needed. They should all
1431 * be 0 at this point
1435 bitmap_counter_t *bmc;
1436 spin_lock_irq(&bitmap->lock);
1437 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1439 spin_unlock_irq(&bitmap->lock);
1444 *bmc = 1 | NEEDED_MASK;
1445 bitmap_count_page(bitmap, offset, 1);
1446 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
1447 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1449 spin_unlock_irq(&bitmap->lock);
1454 * flush out any pending updates
1456 void bitmap_flush(mddev_t *mddev)
1458 struct bitmap *bitmap = mddev->bitmap;
1461 if (!bitmap) /* there was no bitmap */
1464 /* run the daemon_work three time to ensure everything is flushed
1467 sleep = bitmap->daemon_sleep;
1468 bitmap->daemon_sleep = 0;
1469 bitmap_daemon_work(bitmap);
1470 bitmap_daemon_work(bitmap);
1471 bitmap_daemon_work(bitmap);
1472 bitmap->daemon_sleep = sleep;
1473 bitmap_update_sb(bitmap);
1477 * free memory that was allocated
1479 void bitmap_destroy(mddev_t *mddev)
1481 unsigned long k, pages;
1482 struct bitmap_page *bp;
1483 struct bitmap *bitmap = mddev->bitmap;
1485 if (!bitmap) /* there was no bitmap */
1488 mddev->bitmap = NULL; /* disconnect from the md device */
1490 /* release the bitmap file and kill the daemon */
1491 bitmap_file_put(bitmap);
1494 pages = bitmap->pages;
1496 /* free all allocated memory */
1498 mempool_destroy(bitmap->write_pool);
1500 if (bp) /* deallocate the page memory */
1501 for (k = 0; k < pages; k++)
1502 if (bp[k].map && !bp[k].hijacked)
1509 * initialize the bitmap structure
1510 * if this returns an error, bitmap_destroy must be called to do clean up
1512 int bitmap_create(mddev_t *mddev)
1514 struct bitmap *bitmap;
1515 unsigned long blocks = mddev->resync_max_sectors;
1516 unsigned long chunks;
1517 unsigned long pages;
1518 struct file *file = mddev->bitmap_file;
1521 BUG_ON(sizeof(bitmap_super_t) != 256);
1523 if (!file && !mddev->bitmap_offset) /* bitmap disabled, nothing to do */
1526 BUG_ON(file && mddev->bitmap_offset);
1528 bitmap = kmalloc(sizeof(*bitmap), GFP_KERNEL);
1532 memset(bitmap, 0, sizeof(*bitmap));
1534 spin_lock_init(&bitmap->lock);
1535 bitmap->mddev = mddev;
1536 mddev->bitmap = bitmap;
1538 spin_lock_init(&bitmap->write_lock);
1539 INIT_LIST_HEAD(&bitmap->complete_pages);
1540 init_waitqueue_head(&bitmap->write_wait);
1541 bitmap->write_pool = mempool_create(WRITE_POOL_SIZE, write_pool_alloc,
1542 write_pool_free, NULL);
1543 if (!bitmap->write_pool)
1546 bitmap->file = file;
1547 bitmap->offset = mddev->bitmap_offset;
1548 if (file) get_file(file);
1549 /* read superblock from bitmap file (this sets bitmap->chunksize) */
1550 err = bitmap_read_sb(bitmap);
1554 bitmap->chunkshift = find_first_bit(&bitmap->chunksize,
1555 sizeof(bitmap->chunksize));
1557 /* now that chunksize and chunkshift are set, we can use these macros */
1558 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) /
1559 CHUNK_BLOCK_RATIO(bitmap);
1560 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
1564 bitmap->chunks = chunks;
1565 bitmap->pages = pages;
1566 bitmap->missing_pages = pages;
1567 bitmap->counter_bits = COUNTER_BITS;
1569 bitmap->syncchunk = ~0UL;
1571 #ifdef INJECT_FATAL_FAULT_1
1574 bitmap->bp = kmalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
1578 memset(bitmap->bp, 0, pages * sizeof(*bitmap->bp));
1580 bitmap->flags |= BITMAP_ACTIVE;
1582 /* now that we have some pages available, initialize the in-memory
1583 * bitmap from the on-disk bitmap */
1584 err = bitmap_init_from_disk(bitmap);
1589 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1590 pages, bmname(bitmap));
1592 /* kick off the bitmap daemons */
1593 err = bitmap_start_daemons(bitmap);
1596 return bitmap_update_sb(bitmap);
1599 /* the bitmap API -- for raid personalities */
1600 EXPORT_SYMBOL(bitmap_startwrite);
1601 EXPORT_SYMBOL(bitmap_endwrite);
1602 EXPORT_SYMBOL(bitmap_start_sync);
1603 EXPORT_SYMBOL(bitmap_end_sync);
1604 EXPORT_SYMBOL(bitmap_unplug);
1605 EXPORT_SYMBOL(bitmap_close_sync);
1606 EXPORT_SYMBOL(bitmap_daemon_work);