bitmap.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /*
  2. * bitmap.h: Copyright (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
  3. *
  4. * additions: Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc.
  5. */
  6. #ifndef BITMAP_H
  7. #define BITMAP_H 1
  8. #define BITMAP_MAJOR_LO 3
  9. /* version 4 insists the bitmap is in little-endian order
  10. * with version 3, it is host-endian which is non-portable
  11. */
  12. #define BITMAP_MAJOR_HI 4
  13. #define BITMAP_MAJOR_HOSTENDIAN 3
  14. #define BITMAP_MINOR 39
  15. /*
  16. * in-memory bitmap:
  17. *
  18. * Use 16 bit block counters to track pending writes to each "chunk".
  19. * The 2 high order bits are special-purpose, the first is a flag indicating
  20. * whether a resync is needed. The second is a flag indicating whether a
  21. * resync is active.
  22. * This means that the counter is actually 14 bits:
  23. *
  24. * +--------+--------+------------------------------------------------+
  25. * | resync | resync | counter |
  26. * | needed | active | |
  27. * | (0-1) | (0-1) | (0-16383) |
  28. * +--------+--------+------------------------------------------------+
  29. *
  30. * The "resync needed" bit is set when:
  31. * a '1' bit is read from storage at startup.
  32. * a write request fails on some drives
  33. * a resync is aborted on a chunk with 'resync active' set
  34. * It is cleared (and resync-active set) when a resync starts across all drives
  35. * of the chunk.
  36. *
  37. *
  38. * The "resync active" bit is set when:
  39. * a resync is started on all drives, and resync_needed is set.
  40. * resync_needed will be cleared (as long as resync_active wasn't already set).
  41. * It is cleared when a resync completes.
  42. *
  43. * The counter counts pending write requests, plus the on-disk bit.
  44. * When the counter is '1' and the resync bits are clear, the on-disk
  45. * bit can be cleared as well, thus setting the counter to 0.
  46. * When we set a bit, or in the counter (to start a write), if the fields is
  47. * 0, we first set the disk bit and set the counter to 1.
  48. *
  49. * If the counter is 0, the on-disk bit is clear and the stipe is clean
  50. * Anything that dirties the stipe pushes the counter to 2 (at least)
  51. * and sets the on-disk bit (lazily).
  52. * If a periodic sweep find the counter at 2, it is decremented to 1.
  53. * If the sweep find the counter at 1, the on-disk bit is cleared and the
  54. * counter goes to zero.
  55. *
  56. * Also, we'll hijack the "map" pointer itself and use it as two 16 bit block
  57. * counters as a fallback when "page" memory cannot be allocated:
  58. *
  59. * Normal case (page memory allocated):
  60. *
  61. * page pointer (32-bit)
  62. *
  63. * [ ] ------+
  64. * |
  65. * +-------> [ ][ ]..[ ] (4096 byte page == 2048 counters)
  66. * c1 c2 c2048
  67. *
  68. * Hijacked case (page memory allocation failed):
  69. *
  70. * hijacked page pointer (32-bit)
  71. *
  72. * [ ][ ] (no page memory allocated)
  73. * counter #1 (16-bit) counter #2 (16-bit)
  74. *
  75. */
  76. #ifdef __KERNEL__
  77. #define PAGE_BITS (PAGE_SIZE << 3)
  78. #define PAGE_BIT_SHIFT (PAGE_SHIFT + 3)
  79. typedef __u16 bitmap_counter_t;
  80. #define COUNTER_BITS 16
  81. #define COUNTER_BIT_SHIFT 4
  82. #define COUNTER_BYTE_SHIFT (COUNTER_BIT_SHIFT - 3)
  83. #define NEEDED_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 1)))
  84. #define RESYNC_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 2)))
  85. #define COUNTER_MAX ((bitmap_counter_t) RESYNC_MASK - 1)
  86. #define NEEDED(x) (((bitmap_counter_t) x) & NEEDED_MASK)
  87. #define RESYNC(x) (((bitmap_counter_t) x) & RESYNC_MASK)
  88. #define COUNTER(x) (((bitmap_counter_t) x) & COUNTER_MAX)
  89. /* how many counters per page? */
  90. #define PAGE_COUNTER_RATIO (PAGE_BITS / COUNTER_BITS)
  91. /* same, except a shift value for more efficient bitops */
  92. #define PAGE_COUNTER_SHIFT (PAGE_BIT_SHIFT - COUNTER_BIT_SHIFT)
  93. /* same, except a mask value for more efficient bitops */
  94. #define PAGE_COUNTER_MASK (PAGE_COUNTER_RATIO - 1)
  95. #define BITMAP_BLOCK_SIZE 512
  96. #define BITMAP_BLOCK_SHIFT 9
  97. /* how many blocks per chunk? (this is variable) */
  98. #define CHUNK_BLOCK_RATIO(bitmap) ((bitmap)->mddev->bitmap_info.chunksize >> BITMAP_BLOCK_SHIFT)
  99. #define CHUNK_BLOCK_SHIFT(bitmap) ((bitmap)->chunkshift - BITMAP_BLOCK_SHIFT)
  100. #define CHUNK_BLOCK_MASK(bitmap) (CHUNK_BLOCK_RATIO(bitmap) - 1)
  101. /* when hijacked, the counters and bits represent even larger "chunks" */
  102. /* there will be 1024 chunks represented by each counter in the page pointers */
  103. #define PAGEPTR_BLOCK_RATIO(bitmap) \
  104. (CHUNK_BLOCK_RATIO(bitmap) << PAGE_COUNTER_SHIFT >> 1)
  105. #define PAGEPTR_BLOCK_SHIFT(bitmap) \
  106. (CHUNK_BLOCK_SHIFT(bitmap) + PAGE_COUNTER_SHIFT - 1)
  107. #define PAGEPTR_BLOCK_MASK(bitmap) (PAGEPTR_BLOCK_RATIO(bitmap) - 1)
  108. #endif
  109. /*
  110. * bitmap structures:
  111. */
  112. #define BITMAP_MAGIC 0x6d746962
  113. /* use these for bitmap->flags and bitmap->sb->state bit-fields */
  114. enum bitmap_state {
  115. BITMAP_STALE = 0x002, /* the bitmap file is out of date or had -EIO */
  116. BITMAP_WRITE_ERROR = 0x004, /* A write error has occurred */
  117. BITMAP_HOSTENDIAN = 0x8000,
  118. };
  119. /* the superblock at the front of the bitmap file -- little endian */
  120. typedef struct bitmap_super_s {
  121. __le32 magic; /* 0 BITMAP_MAGIC */
  122. __le32 version; /* 4 the bitmap major for now, could change... */
  123. __u8 uuid[16]; /* 8 128 bit uuid - must match md device uuid */
  124. __le64 events; /* 24 event counter for the bitmap (1)*/
  125. __le64 events_cleared;/*32 event counter when last bit cleared (2) */
  126. __le64 sync_size; /* 40 the size of the md device's sync range(3) */
  127. __le32 state; /* 48 bitmap state information */
  128. __le32 chunksize; /* 52 the bitmap chunk size in bytes */
  129. __le32 daemon_sleep; /* 56 seconds between disk flushes */
  130. __le32 write_behind; /* 60 number of outstanding write-behind writes */
  131. __u8 pad[256 - 64]; /* set to zero */
  132. } bitmap_super_t;
  133. /* notes:
  134. * (1) This event counter is updated before the eventcounter in the md superblock
  135. * When a bitmap is loaded, it is only accepted if this event counter is equal
  136. * to, or one greater than, the event counter in the superblock.
  137. * (2) This event counter is updated when the other one is *if*and*only*if* the
  138. * array is not degraded. As bits are not cleared when the array is degraded,
  139. * this represents the last time that any bits were cleared.
  140. * If a device is being added that has an event count with this value or
  141. * higher, it is accepted as conforming to the bitmap.
  142. * (3)This is the number of sectors represented by the bitmap, and is the range that
  143. * resync happens across. For raid1 and raid5/6 it is the size of individual
  144. * devices. For raid10 it is the size of the array.
  145. */
  146. #ifdef __KERNEL__
  147. /* the in-memory bitmap is represented by bitmap_pages */
  148. struct bitmap_page {
  149. /*
  150. * map points to the actual memory page
  151. */
  152. char *map;
  153. /*
  154. * in emergencies (when map cannot be alloced), hijack the map
  155. * pointer and use it as two counters itself
  156. */
  157. unsigned int hijacked:1;
  158. /*
  159. * count of dirty bits on the page
  160. */
  161. unsigned int count:31;
  162. };
  163. /* keep track of bitmap file pages that have pending writes on them */
  164. struct page_list {
  165. struct list_head list;
  166. struct page *page;
  167. };
  168. /* the main bitmap structure - one per mddev */
  169. struct bitmap {
  170. struct bitmap_page *bp;
  171. unsigned long pages; /* total number of pages in the bitmap */
  172. unsigned long missing_pages; /* number of pages not yet allocated */
  173. mddev_t *mddev; /* the md device that the bitmap is for */
  174. /* bitmap chunksize -- how much data does each bit represent? */
  175. unsigned long chunkshift; /* chunksize = 2^chunkshift (for bitops) */
  176. unsigned long chunks; /* total number of data chunks for the array */
  177. __u64 events_cleared;
  178. int need_sync;
  179. /* bitmap spinlock */
  180. spinlock_t lock;
  181. struct file *file; /* backing disk file */
  182. struct page *sb_page; /* cached copy of the bitmap file superblock */
  183. struct page **filemap; /* list of cache pages for the file */
  184. unsigned long *filemap_attr; /* attributes associated w/ filemap pages */
  185. unsigned long file_pages; /* number of pages in the file */
  186. int last_page_size; /* bytes in the last page */
  187. unsigned long flags;
  188. int allclean;
  189. atomic_t behind_writes;
  190. unsigned long behind_writes_used; /* highest actual value at runtime */
  191. /*
  192. * the bitmap daemon - periodically wakes up and sweeps the bitmap
  193. * file, cleaning up bits and flushing out pages to disk as necessary
  194. */
  195. unsigned long daemon_lastrun; /* jiffies of last run */
  196. unsigned long last_end_sync; /* when we lasted called end_sync to
  197. * update bitmap with resync progress */
  198. atomic_t pending_writes; /* pending writes to the bitmap file */
  199. wait_queue_head_t write_wait;
  200. wait_queue_head_t overflow_wait;
  201. wait_queue_head_t behind_wait;
  202. struct sysfs_dirent *sysfs_can_clear;
  203. };
  204. /* the bitmap API */
  205. /* these are used only by md/bitmap */
  206. int bitmap_create(mddev_t *mddev);
  207. int bitmap_load(mddev_t *mddev);
  208. void bitmap_flush(mddev_t *mddev);
  209. void bitmap_destroy(mddev_t *mddev);
  210. void bitmap_print_sb(struct bitmap *bitmap);
  211. void bitmap_update_sb(struct bitmap *bitmap);
  212. int bitmap_setallbits(struct bitmap *bitmap);
  213. void bitmap_write_all(struct bitmap *bitmap);
  214. void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e);
  215. /* these are exported */
  216. int bitmap_startwrite(struct bitmap *bitmap, sector_t offset,
  217. unsigned long sectors, int behind);
  218. void bitmap_endwrite(struct bitmap *bitmap, sector_t offset,
  219. unsigned long sectors, int success, int behind);
  220. int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int degraded);
  221. void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted);
  222. void bitmap_close_sync(struct bitmap *bitmap);
  223. void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector);
  224. void bitmap_unplug(struct bitmap *bitmap);
  225. void bitmap_daemon_work(mddev_t *mddev);
  226. #endif
  227. #endif