/*1* bitmap.h: Copyright (C) Peter T. Breuer ([email protected]) 20032*3* additions: Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc.4*/5#ifndef BITMAP_H6#define BITMAP_H 178#define BITMAP_MAJOR_LO 39/* version 4 insists the bitmap is in little-endian order10* with version 3, it is host-endian which is non-portable11*/12#define BITMAP_MAJOR_HI 413#define BITMAP_MAJOR_HOSTENDIAN 31415#define BITMAP_MINOR 391617/*18* in-memory bitmap:19*20* Use 16 bit block counters to track pending writes to each "chunk".21* The 2 high order bits are special-purpose, the first is a flag indicating22* whether a resync is needed. The second is a flag indicating whether a23* resync is active.24* This means that the counter is actually 14 bits:25*26* +--------+--------+------------------------------------------------+27* | resync | resync | counter |28* | needed | active | |29* | (0-1) | (0-1) | (0-16383) |30* +--------+--------+------------------------------------------------+31*32* The "resync needed" bit is set when:33* a '1' bit is read from storage at startup.34* a write request fails on some drives35* a resync is aborted on a chunk with 'resync active' set36* It is cleared (and resync-active set) when a resync starts across all drives37* of the chunk.38*39*40* The "resync active" bit is set when:41* a resync is started on all drives, and resync_needed is set.42* resync_needed will be cleared (as long as resync_active wasn't already set).43* It is cleared when a resync completes.44*45* The counter counts pending write requests, plus the on-disk bit.46* When the counter is '1' and the resync bits are clear, the on-disk47* bit can be cleared as well, thus setting the counter to 0.48* When we set a bit, or in the counter (to start a write), if the fields is49* 0, we first set the disk bit and set the counter to 1.50*51* If the counter is 0, the on-disk bit is clear and the stipe is clean52* Anything that dirties the stipe pushes the counter to 2 (at least)53* and sets the on-disk bit (lazily).54* If a periodic sweep find the counter at 2, it is decremented to 1.55* If the sweep find the counter at 1, the on-disk bit is cleared and the56* counter goes to zero.57*58* Also, we'll hijack the "map" pointer itself and use it as two 16 bit block59* counters as a fallback when "page" memory cannot be allocated:60*61* Normal case (page memory allocated):62*63* page pointer (32-bit)64*65* [ ] ------+66* |67* +-------> [ ][ ]..[ ] (4096 byte page == 2048 counters)68* c1 c2 c204869*70* Hijacked case (page memory allocation failed):71*72* hijacked page pointer (32-bit)73*74* [ ][ ] (no page memory allocated)75* counter #1 (16-bit) counter #2 (16-bit)76*77*/7879#ifdef __KERNEL__8081#define PAGE_BITS (PAGE_SIZE << 3)82#define PAGE_BIT_SHIFT (PAGE_SHIFT + 3)8384typedef __u16 bitmap_counter_t;85#define COUNTER_BITS 1686#define COUNTER_BIT_SHIFT 487#define COUNTER_BYTE_SHIFT (COUNTER_BIT_SHIFT - 3)8889#define NEEDED_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 1)))90#define RESYNC_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 2)))91#define COUNTER_MAX ((bitmap_counter_t) RESYNC_MASK - 1)92#define NEEDED(x) (((bitmap_counter_t) x) & NEEDED_MASK)93#define RESYNC(x) (((bitmap_counter_t) x) & RESYNC_MASK)94#define COUNTER(x) (((bitmap_counter_t) x) & COUNTER_MAX)9596/* how many counters per page? */97#define PAGE_COUNTER_RATIO (PAGE_BITS / COUNTER_BITS)98/* same, except a shift value for more efficient bitops */99#define PAGE_COUNTER_SHIFT (PAGE_BIT_SHIFT - COUNTER_BIT_SHIFT)100/* same, except a mask value for more efficient bitops */101#define PAGE_COUNTER_MASK (PAGE_COUNTER_RATIO - 1)102103#define BITMAP_BLOCK_SIZE 512104#define BITMAP_BLOCK_SHIFT 9105106/* how many blocks per chunk? (this is variable) */107#define CHUNK_BLOCK_RATIO(bitmap) ((bitmap)->mddev->bitmap_info.chunksize >> BITMAP_BLOCK_SHIFT)108#define CHUNK_BLOCK_SHIFT(bitmap) ((bitmap)->chunkshift - BITMAP_BLOCK_SHIFT)109#define CHUNK_BLOCK_MASK(bitmap) (CHUNK_BLOCK_RATIO(bitmap) - 1)110111/* when hijacked, the counters and bits represent even larger "chunks" */112/* there will be 1024 chunks represented by each counter in the page pointers */113#define PAGEPTR_BLOCK_RATIO(bitmap) \114(CHUNK_BLOCK_RATIO(bitmap) << PAGE_COUNTER_SHIFT >> 1)115#define PAGEPTR_BLOCK_SHIFT(bitmap) \116(CHUNK_BLOCK_SHIFT(bitmap) + PAGE_COUNTER_SHIFT - 1)117#define PAGEPTR_BLOCK_MASK(bitmap) (PAGEPTR_BLOCK_RATIO(bitmap) - 1)118119#endif120121/*122* bitmap structures:123*/124125#define BITMAP_MAGIC 0x6d746962126127/* use these for bitmap->flags and bitmap->sb->state bit-fields */128enum bitmap_state {129BITMAP_STALE = 0x002, /* the bitmap file is out of date or had -EIO */130BITMAP_WRITE_ERROR = 0x004, /* A write error has occurred */131BITMAP_HOSTENDIAN = 0x8000,132};133134/* the superblock at the front of the bitmap file -- little endian */135typedef struct bitmap_super_s {136__le32 magic; /* 0 BITMAP_MAGIC */137__le32 version; /* 4 the bitmap major for now, could change... */138__u8 uuid[16]; /* 8 128 bit uuid - must match md device uuid */139__le64 events; /* 24 event counter for the bitmap (1)*/140__le64 events_cleared;/*32 event counter when last bit cleared (2) */141__le64 sync_size; /* 40 the size of the md device's sync range(3) */142__le32 state; /* 48 bitmap state information */143__le32 chunksize; /* 52 the bitmap chunk size in bytes */144__le32 daemon_sleep; /* 56 seconds between disk flushes */145__le32 write_behind; /* 60 number of outstanding write-behind writes */146147__u8 pad[256 - 64]; /* set to zero */148} bitmap_super_t;149150/* notes:151* (1) This event counter is updated before the eventcounter in the md superblock152* When a bitmap is loaded, it is only accepted if this event counter is equal153* to, or one greater than, the event counter in the superblock.154* (2) This event counter is updated when the other one is *if*and*only*if* the155* array is not degraded. As bits are not cleared when the array is degraded,156* this represents the last time that any bits were cleared.157* If a device is being added that has an event count with this value or158* higher, it is accepted as conforming to the bitmap.159* (3)This is the number of sectors represented by the bitmap, and is the range that160* resync happens across. For raid1 and raid5/6 it is the size of individual161* devices. For raid10 it is the size of the array.162*/163164#ifdef __KERNEL__165166/* the in-memory bitmap is represented by bitmap_pages */167struct bitmap_page {168/*169* map points to the actual memory page170*/171char *map;172/*173* in emergencies (when map cannot be alloced), hijack the map174* pointer and use it as two counters itself175*/176unsigned int hijacked:1;177/*178* count of dirty bits on the page179*/180unsigned int count:31;181};182183/* keep track of bitmap file pages that have pending writes on them */184struct page_list {185struct list_head list;186struct page *page;187};188189/* the main bitmap structure - one per mddev */190struct bitmap {191struct bitmap_page *bp;192unsigned long pages; /* total number of pages in the bitmap */193unsigned long missing_pages; /* number of pages not yet allocated */194195mddev_t *mddev; /* the md device that the bitmap is for */196197/* bitmap chunksize -- how much data does each bit represent? */198unsigned long chunkshift; /* chunksize = 2^chunkshift (for bitops) */199unsigned long chunks; /* total number of data chunks for the array */200201__u64 events_cleared;202int need_sync;203204/* bitmap spinlock */205spinlock_t lock;206207struct file *file; /* backing disk file */208struct page *sb_page; /* cached copy of the bitmap file superblock */209struct page **filemap; /* list of cache pages for the file */210unsigned long *filemap_attr; /* attributes associated w/ filemap pages */211unsigned long file_pages; /* number of pages in the file */212int last_page_size; /* bytes in the last page */213214unsigned long logattrs; /* used when filemap_attr doesn't exist215* because we are working with a dirty_log216*/217218unsigned long flags;219220int allclean;221222atomic_t behind_writes;223unsigned long behind_writes_used; /* highest actual value at runtime */224225/*226* the bitmap daemon - periodically wakes up and sweeps the bitmap227* file, cleaning up bits and flushing out pages to disk as necessary228*/229unsigned long daemon_lastrun; /* jiffies of last run */230unsigned long last_end_sync; /* when we lasted called end_sync to231* update bitmap with resync progress */232233atomic_t pending_writes; /* pending writes to the bitmap file */234wait_queue_head_t write_wait;235wait_queue_head_t overflow_wait;236wait_queue_head_t behind_wait;237238struct sysfs_dirent *sysfs_can_clear;239240};241242/* the bitmap API */243244/* these are used only by md/bitmap */245int bitmap_create(mddev_t *mddev);246int bitmap_load(mddev_t *mddev);247void bitmap_flush(mddev_t *mddev);248void bitmap_destroy(mddev_t *mddev);249250void bitmap_print_sb(struct bitmap *bitmap);251void bitmap_update_sb(struct bitmap *bitmap);252253int bitmap_setallbits(struct bitmap *bitmap);254void bitmap_write_all(struct bitmap *bitmap);255256void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e);257258/* these are exported */259int bitmap_startwrite(struct bitmap *bitmap, sector_t offset,260unsigned long sectors, int behind);261void bitmap_endwrite(struct bitmap *bitmap, sector_t offset,262unsigned long sectors, int success, int behind);263int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int degraded);264void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted);265void bitmap_close_sync(struct bitmap *bitmap);266void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector);267268void bitmap_unplug(struct bitmap *bitmap);269void bitmap_daemon_work(mddev_t *mddev);270#endif271272#endif273274275