blob: 719943763391263c7a4ab98ad0201244ce1d3d62 [file] [log] [blame]
NeilBrown32a76272005-06-21 17:17:14 -07001/*
2 * bitmap.c two-level bitmap (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
3 *
4 * bitmap_create - sets up the bitmap structure
5 * bitmap_destroy - destroys the bitmap structure
6 *
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
NeilBrown32a76272005-06-21 17:17:14 -070010 */
11
12/*
13 * Still to do:
14 *
15 * flush after percent set rather than just time based. (maybe both).
16 * wait if count gets too high, wake when it drops to half.
NeilBrown32a76272005-06-21 17:17:14 -070017 */
18
19#include <linux/module.h>
NeilBrown32a76272005-06-21 17:17:14 -070020#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/init.h>
NeilBrown32a76272005-06-21 17:17:14 -070023#include <linux/timer.h>
24#include <linux/sched.h>
25#include <linux/list.h>
26#include <linux/file.h>
27#include <linux/mount.h>
28#include <linux/buffer_head.h>
29#include <linux/raid/md.h>
30#include <linux/raid/bitmap.h>
31
32/* debug macros */
33
34#define DEBUG 0
35
36#if DEBUG
37/* these are for debugging purposes only! */
38
39/* define one and only one of these */
40#define INJECT_FAULTS_1 0 /* cause bitmap_alloc_page to fail always */
41#define INJECT_FAULTS_2 0 /* cause bitmap file to be kicked when first bit set*/
42#define INJECT_FAULTS_3 0 /* treat bitmap file as kicked at init time */
43#define INJECT_FAULTS_4 0 /* undef */
44#define INJECT_FAULTS_5 0 /* undef */
45#define INJECT_FAULTS_6 0
46
47/* if these are defined, the driver will fail! debug only */
48#define INJECT_FATAL_FAULT_1 0 /* fail kmalloc, causing bitmap_create to fail */
49#define INJECT_FATAL_FAULT_2 0 /* undef */
50#define INJECT_FATAL_FAULT_3 0 /* undef */
51#endif
52
53//#define DPRINTK PRINTK /* set this NULL to avoid verbose debug output */
54#define DPRINTK(x...) do { } while(0)
55
56#ifndef PRINTK
57# if DEBUG > 0
58# define PRINTK(x...) printk(KERN_DEBUG x)
59# else
60# define PRINTK(x...)
61# endif
62#endif
63
64static inline char * bmname(struct bitmap *bitmap)
65{
66 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
67}
68
NeilBrown32a76272005-06-21 17:17:14 -070069
70/*
71 * just a placeholder - calls kmalloc for bitmap pages
72 */
73static unsigned char *bitmap_alloc_page(struct bitmap *bitmap)
74{
75 unsigned char *page;
76
Olaf Hering44456d32005-07-27 11:45:17 -070077#ifdef INJECT_FAULTS_1
NeilBrown32a76272005-06-21 17:17:14 -070078 page = NULL;
79#else
80 page = kmalloc(PAGE_SIZE, GFP_NOIO);
81#endif
82 if (!page)
83 printk("%s: bitmap_alloc_page FAILED\n", bmname(bitmap));
84 else
NeilBrowna654b9d82005-06-21 17:17:27 -070085 PRINTK("%s: bitmap_alloc_page: allocated page at %p\n",
NeilBrown32a76272005-06-21 17:17:14 -070086 bmname(bitmap), page);
87 return page;
88}
89
90/*
91 * for now just a placeholder -- just calls kfree for bitmap pages
92 */
93static void bitmap_free_page(struct bitmap *bitmap, unsigned char *page)
94{
95 PRINTK("%s: bitmap_free_page: free page %p\n", bmname(bitmap), page);
96 kfree(page);
97}
98
99/*
100 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
101 *
102 * 1) check to see if this page is allocated, if it's not then try to alloc
103 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
104 * page pointer directly as a counter
105 *
106 * if we find our page, we increment the page's refcount so that it stays
107 * allocated while we're using it
108 */
109static int bitmap_checkpage(struct bitmap *bitmap, unsigned long page, int create)
110{
111 unsigned char *mappage;
112
113 if (page >= bitmap->pages) {
114 printk(KERN_ALERT
115 "%s: invalid bitmap page request: %lu (> %lu)\n",
116 bmname(bitmap), page, bitmap->pages-1);
117 return -EINVAL;
118 }
119
120
121 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
122 return 0;
123
124 if (bitmap->bp[page].map) /* page is already allocated, just return */
125 return 0;
126
127 if (!create)
128 return -ENOENT;
129
130 spin_unlock_irq(&bitmap->lock);
131
132 /* this page has not been allocated yet */
133
134 if ((mappage = bitmap_alloc_page(bitmap)) == NULL) {
135 PRINTK("%s: bitmap map page allocation failed, hijacking\n",
136 bmname(bitmap));
137 /* failed - set the hijacked flag so that we can use the
138 * pointer as a counter */
139 spin_lock_irq(&bitmap->lock);
140 if (!bitmap->bp[page].map)
141 bitmap->bp[page].hijacked = 1;
142 goto out;
143 }
144
145 /* got a page */
146
147 spin_lock_irq(&bitmap->lock);
148
149 /* recheck the page */
150
151 if (bitmap->bp[page].map || bitmap->bp[page].hijacked) {
152 /* somebody beat us to getting the page */
153 bitmap_free_page(bitmap, mappage);
154 return 0;
155 }
156
157 /* no page was in place and we have one, so install it */
158
159 memset(mappage, 0, PAGE_SIZE);
160 bitmap->bp[page].map = mappage;
161 bitmap->missing_pages--;
162out:
163 return 0;
164}
165
166
167/* if page is completely empty, put it back on the free list, or dealloc it */
168/* if page was hijacked, unmark the flag so it might get alloced next time */
169/* Note: lock should be held when calling this */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800170static void bitmap_checkfree(struct bitmap *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700171{
172 char *ptr;
173
174 if (bitmap->bp[page].count) /* page is still busy */
175 return;
176
177 /* page is no longer in use, it can be released */
178
179 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
180 bitmap->bp[page].hijacked = 0;
181 bitmap->bp[page].map = NULL;
182 return;
183 }
184
185 /* normal case, free the page */
186
187#if 0
188/* actually ... let's not. We will probably need the page again exactly when
189 * memory is tight and we are flusing to disk
190 */
191 return;
192#else
193 ptr = bitmap->bp[page].map;
194 bitmap->bp[page].map = NULL;
195 bitmap->missing_pages++;
196 bitmap_free_page(bitmap, ptr);
197 return;
198#endif
199}
200
201
202/*
203 * bitmap file handling - read and write the bitmap file and its superblock
204 */
205
NeilBrown32a76272005-06-21 17:17:14 -0700206/*
207 * basic page I/O operations
208 */
209
NeilBrowna654b9d82005-06-21 17:17:27 -0700210/* IO operations when bitmap is stored near all superblocks */
NeilBrowna2ed9612008-12-19 16:25:01 +1100211static struct page *read_sb_page(mddev_t *mddev, long offset,
212 struct page *page,
213 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700214{
215 /* choose a good rdev and read the page from there */
216
217 mdk_rdev_t *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700218 sector_t target;
219
220 if (!page)
NeilBrowna2ed9612008-12-19 16:25:01 +1100221 page = alloc_page(GFP_KERNEL);
222 if (!page)
NeilBrowna654b9d82005-06-21 17:17:27 -0700223 return ERR_PTR(-ENOMEM);
NeilBrowna654b9d82005-06-21 17:17:27 -0700224
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100225 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800226 if (! test_bit(In_sync, &rdev->flags)
227 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700228 continue;
229
Andre Noll0f420352008-07-11 22:02:23 +1000230 target = rdev->sb_start + offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700231
NeilBrowna2ed9612008-12-19 16:25:01 +1100232 if (sync_page_io(rdev->bdev, target,
233 roundup(size, bdev_hardsect_size(rdev->bdev)),
234 page, READ)) {
NeilBrownab904d62005-09-09 16:23:52 -0700235 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700236 attach_page_buffers(page, NULL); /* so that free_buffer will
237 * quietly no-op */
NeilBrownab904d62005-09-09 16:23:52 -0700238 return page;
239 }
240 }
241 return ERR_PTR(-EIO);
NeilBrowna654b9d82005-06-21 17:17:27 -0700242
NeilBrowna654b9d82005-06-21 17:17:27 -0700243}
244
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000245static mdk_rdev_t *next_active_rdev(mdk_rdev_t *rdev, mddev_t *mddev)
246{
247 /* Iterate the disks of an mddev, using rcu to protect access to the
248 * linked list, and raising the refcount of devices we return to ensure
249 * they don't disappear while in use.
250 * As devices are only added or removed when raid_disk is < 0 and
251 * nr_pending is 0 and In_sync is clear, the entries we return will
252 * still be in the same position on the list when we re-enter
253 * list_for_each_continue_rcu.
254 */
255 struct list_head *pos;
256 rcu_read_lock();
257 if (rdev == NULL)
258 /* start at the beginning */
259 pos = &mddev->disks;
260 else {
261 /* release the previous rdev and start from there. */
262 rdev_dec_pending(rdev, mddev);
263 pos = &rdev->same_set;
264 }
265 list_for_each_continue_rcu(pos, &mddev->disks) {
266 rdev = list_entry(pos, mdk_rdev_t, same_set);
267 if (rdev->raid_disk >= 0 &&
268 test_bit(In_sync, &rdev->flags) &&
269 !test_bit(Faulty, &rdev->flags)) {
270 /* this is a usable devices */
271 atomic_inc(&rdev->nr_pending);
272 rcu_read_unlock();
273 return rdev;
274 }
275 }
276 rcu_read_unlock();
277 return NULL;
278}
279
NeilBrownab6085c2007-05-23 13:58:10 -0700280static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700281{
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000282 mdk_rdev_t *rdev = NULL;
NeilBrownab6085c2007-05-23 13:58:10 -0700283 mddev_t *mddev = bitmap->mddev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700284
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000285 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownab6085c2007-05-23 13:58:10 -0700286 int size = PAGE_SIZE;
287 if (page->index == bitmap->file_pages-1)
288 size = roundup(bitmap->last_page_size,
289 bdev_hardsect_size(rdev->bdev));
NeilBrownf0d76d72007-07-17 04:06:12 -0700290 /* Just make sure we aren't corrupting data or
291 * metadata
292 */
293 if (bitmap->offset < 0) {
294 /* DATA BITMAP METADATA */
295 if (bitmap->offset
NeilBrown85bfb4d2007-10-22 20:45:11 -0700296 + (long)(page->index * (PAGE_SIZE/512))
NeilBrownf0d76d72007-07-17 04:06:12 -0700297 + size/512 > 0)
298 /* bitmap runs in to metadata */
NeilBrown4b809912008-07-21 17:05:25 +1000299 goto bad_alignment;
NeilBrownf0d76d72007-07-17 04:06:12 -0700300 if (rdev->data_offset + mddev->size*2
Andre Noll0f420352008-07-11 22:02:23 +1000301 > rdev->sb_start + bitmap->offset)
NeilBrownf0d76d72007-07-17 04:06:12 -0700302 /* data runs in to bitmap */
NeilBrown4b809912008-07-21 17:05:25 +1000303 goto bad_alignment;
Andre Noll0f420352008-07-11 22:02:23 +1000304 } else if (rdev->sb_start < rdev->data_offset) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700305 /* METADATA BITMAP DATA */
Andre Noll0f420352008-07-11 22:02:23 +1000306 if (rdev->sb_start
NeilBrownf0d76d72007-07-17 04:06:12 -0700307 + bitmap->offset
308 + page->index*(PAGE_SIZE/512) + size/512
309 > rdev->data_offset)
310 /* bitmap runs in to data */
NeilBrown4b809912008-07-21 17:05:25 +1000311 goto bad_alignment;
NeilBrownf0d76d72007-07-17 04:06:12 -0700312 } else {
313 /* DATA METADATA BITMAP - no problems */
314 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700315 md_super_write(mddev, rdev,
Andre Noll0f420352008-07-11 22:02:23 +1000316 rdev->sb_start + bitmap->offset
NeilBrowna654b9d82005-06-21 17:17:27 -0700317 + page->index * (PAGE_SIZE/512),
NeilBrownab6085c2007-05-23 13:58:10 -0700318 size,
NeilBrowna654b9d82005-06-21 17:17:27 -0700319 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000320 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700321
322 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800323 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700324 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000325
326 bad_alignment:
327 rcu_read_unlock();
328 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700329}
330
NeilBrown4ad13662007-07-17 04:06:13 -0700331static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700332/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700333 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700334 */
NeilBrown4ad13662007-07-17 04:06:13 -0700335static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700336{
NeilBrownd785a062006-06-26 00:27:48 -0700337 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700338
NeilBrownf0d76d72007-07-17 04:06:12 -0700339 if (bitmap->file == NULL) {
340 switch (write_sb_page(bitmap, page, wait)) {
341 case -EINVAL:
342 bitmap->flags |= BITMAP_WRITE_ERROR;
NeilBrownf0d76d72007-07-17 04:06:12 -0700343 }
NeilBrown4ad13662007-07-17 04:06:13 -0700344 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700345
NeilBrown4ad13662007-07-17 04:06:13 -0700346 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800347
NeilBrown4ad13662007-07-17 04:06:13 -0700348 while (bh && bh->b_blocknr) {
349 atomic_inc(&bitmap->pending_writes);
350 set_buffer_locked(bh);
351 set_buffer_mapped(bh);
352 submit_bh(WRITE, bh);
353 bh = bh->b_this_page;
354 }
NeilBrown32a76272005-06-21 17:17:14 -0700355
NeilBrown4ad13662007-07-17 04:06:13 -0700356 if (wait) {
357 wait_event(bitmap->write_wait,
358 atomic_read(&bitmap->pending_writes)==0);
359 }
NeilBrown32a76272005-06-21 17:17:14 -0700360 }
NeilBrown4ad13662007-07-17 04:06:13 -0700361 if (bitmap->flags & BITMAP_WRITE_ERROR)
362 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700363}
364
NeilBrownd785a062006-06-26 00:27:48 -0700365static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700366{
NeilBrownd785a062006-06-26 00:27:48 -0700367 struct bitmap *bitmap = bh->b_private;
368 unsigned long flags;
369
370 if (!uptodate) {
371 spin_lock_irqsave(&bitmap->lock, flags);
372 bitmap->flags |= BITMAP_WRITE_ERROR;
373 spin_unlock_irqrestore(&bitmap->lock, flags);
374 }
375 if (atomic_dec_and_test(&bitmap->pending_writes))
376 wake_up(&bitmap->write_wait);
377}
378
379/* copied from buffer.c */
380static void
381__clear_page_buffers(struct page *page)
382{
383 ClearPagePrivate(page);
384 set_page_private(page, 0);
385 page_cache_release(page);
386}
387static void free_buffers(struct page *page)
388{
389 struct buffer_head *bh = page_buffers(page);
390
391 while (bh) {
392 struct buffer_head *next = bh->b_this_page;
393 free_buffer_head(bh);
394 bh = next;
395 }
396 __clear_page_buffers(page);
397 put_page(page);
398}
399
400/* read a page from a file.
401 * We both read the page, and attach buffers to the page to record the
402 * address of each block (using bmap). These addresses will be used
403 * to write the block later, completely bypassing the filesystem.
404 * This usage is similar to how swap files are handled, and allows us
405 * to write to a file with no concerns of memory allocation failing.
406 */
407static struct page *read_page(struct file *file, unsigned long index,
408 struct bitmap *bitmap,
409 unsigned long count)
410{
NeilBrown32a76272005-06-21 17:17:14 -0700411 struct page *page = NULL;
Josef Sipekc649bb92006-12-08 02:37:19 -0800412 struct inode *inode = file->f_path.dentry->d_inode;
NeilBrownd785a062006-06-26 00:27:48 -0700413 struct buffer_head *bh;
414 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700415
NeilBrown2d1f3b52006-01-06 00:20:31 -0800416 PRINTK("read bitmap file (%dB @ %Lu)\n", (int)PAGE_SIZE,
417 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700418
NeilBrownd785a062006-06-26 00:27:48 -0700419 page = alloc_page(GFP_KERNEL);
420 if (!page)
421 page = ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -0700422 if (IS_ERR(page))
423 goto out;
NeilBrownd785a062006-06-26 00:27:48 -0700424
NeilBrownd785a062006-06-26 00:27:48 -0700425 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
426 if (!bh) {
427 put_page(page);
428 page = ERR_PTR(-ENOMEM);
429 goto out;
430 }
431 attach_page_buffers(page, bh);
432 block = index << (PAGE_SHIFT - inode->i_blkbits);
433 while (bh) {
434 if (count == 0)
435 bh->b_blocknr = 0;
436 else {
437 bh->b_blocknr = bmap(inode, block);
438 if (bh->b_blocknr == 0) {
439 /* Cannot use this file! */
440 free_buffers(page);
441 page = ERR_PTR(-EINVAL);
442 goto out;
443 }
444 bh->b_bdev = inode->i_sb->s_bdev;
445 if (count < (1<<inode->i_blkbits))
446 count = 0;
447 else
448 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700449
NeilBrownd785a062006-06-26 00:27:48 -0700450 bh->b_end_io = end_bitmap_write;
451 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700452 atomic_inc(&bitmap->pending_writes);
453 set_buffer_locked(bh);
454 set_buffer_mapped(bh);
455 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700456 }
457 block++;
458 bh = bh->b_this_page;
459 }
NeilBrownd785a062006-06-26 00:27:48 -0700460 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700461
462 wait_event(bitmap->write_wait,
463 atomic_read(&bitmap->pending_writes)==0);
464 if (bitmap->flags & BITMAP_WRITE_ERROR) {
465 free_buffers(page);
466 page = ERR_PTR(-EIO);
467 }
NeilBrown32a76272005-06-21 17:17:14 -0700468out:
469 if (IS_ERR(page))
470 printk(KERN_ALERT "md: bitmap read error: (%dB @ %Lu): %ld\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800471 (int)PAGE_SIZE,
472 (unsigned long long)index << PAGE_SHIFT,
NeilBrown32a76272005-06-21 17:17:14 -0700473 PTR_ERR(page));
474 return page;
475}
476
477/*
478 * bitmap file superblock operations
479 */
480
481/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700482void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700483{
484 bitmap_super_t *sb;
485 unsigned long flags;
486
487 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700488 return;
NeilBrown32a76272005-06-21 17:17:14 -0700489 spin_lock_irqsave(&bitmap->lock, flags);
490 if (!bitmap->sb_page) { /* no superblock */
491 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700492 return;
NeilBrown32a76272005-06-21 17:17:14 -0700493 }
NeilBrown32a76272005-06-21 17:17:14 -0700494 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800495 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700496 sb->events = cpu_to_le64(bitmap->mddev->events);
Neil Browna0da84f2008-06-28 08:31:22 +1000497 if (bitmap->mddev->events < bitmap->events_cleared) {
498 /* rocking back to read-only */
499 bitmap->events_cleared = bitmap->mddev->events;
500 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
501 }
NeilBrownea03aff2006-01-06 00:20:34 -0800502 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700503 write_page(bitmap, bitmap->sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700504}
505
506/* print out the bitmap file superblock */
507void bitmap_print_sb(struct bitmap *bitmap)
508{
509 bitmap_super_t *sb;
510
511 if (!bitmap || !bitmap->sb_page)
512 return;
NeilBrownea03aff2006-01-06 00:20:34 -0800513 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700514 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700515 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
516 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
517 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700518 *(__u32 *)(sb->uuid+0),
519 *(__u32 *)(sb->uuid+4),
520 *(__u32 *)(sb->uuid+8),
521 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700522 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700523 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700524 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700525 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700526 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
527 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
528 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
529 printk(KERN_DEBUG " sync size: %llu KB\n",
530 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700531 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
NeilBrownea03aff2006-01-06 00:20:34 -0800532 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700533}
534
535/* read the superblock from the bitmap file and initialize some bitmap fields */
536static int bitmap_read_sb(struct bitmap *bitmap)
537{
538 char *reason = NULL;
539 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700540 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700541 unsigned long long events;
542 int err = -EINVAL;
543
544 /* page 0 is the superblock, read it... */
NeilBrownf49d5e62007-01-26 00:57:03 -0800545 if (bitmap->file) {
546 loff_t isize = i_size_read(bitmap->file->f_mapping->host);
547 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
548
549 bitmap->sb_page = read_page(bitmap->file, 0, bitmap, bytes);
550 } else {
NeilBrowna2ed9612008-12-19 16:25:01 +1100551 bitmap->sb_page = read_sb_page(bitmap->mddev, bitmap->offset,
552 NULL,
553 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700554 }
NeilBrown32a76272005-06-21 17:17:14 -0700555 if (IS_ERR(bitmap->sb_page)) {
556 err = PTR_ERR(bitmap->sb_page);
557 bitmap->sb_page = NULL;
558 return err;
559 }
560
NeilBrownea03aff2006-01-06 00:20:34 -0800561 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700562
NeilBrown32a76272005-06-21 17:17:14 -0700563 chunksize = le32_to_cpu(sb->chunksize);
564 daemon_sleep = le32_to_cpu(sb->daemon_sleep);
NeilBrown4b6d2872005-09-09 16:23:47 -0700565 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown32a76272005-06-21 17:17:14 -0700566
567 /* verify that the bitmap-specific fields are valid */
568 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
569 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800570 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
571 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700572 reason = "unrecognized superblock version";
NeilBrown7dd5d342006-01-06 00:20:39 -0800573 else if (chunksize < PAGE_SIZE)
574 reason = "bitmap chunksize too small";
NeilBrown32a76272005-06-21 17:17:14 -0700575 else if ((1 << ffz(~chunksize)) != chunksize)
576 reason = "bitmap chunksize not a power of 2";
NeilBrown7dd5d342006-01-06 00:20:39 -0800577 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT / HZ)
578 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700579 else if (write_behind > COUNTER_MAX)
580 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700581 if (reason) {
582 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
583 bmname(bitmap), reason);
584 goto out;
585 }
586
587 /* keep the array size field of the bitmap superblock up to date */
588 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
589
590 if (!bitmap->mddev->persistent)
591 goto success;
592
593 /*
594 * if we have a persistent array superblock, compare the
595 * bitmap's UUID and event counter to the mddev's
596 */
597 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
598 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
599 bmname(bitmap));
600 goto out;
601 }
602 events = le64_to_cpu(sb->events);
603 if (events < bitmap->mddev->events) {
604 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
605 "-- forcing full recovery\n", bmname(bitmap), events,
606 (unsigned long long) bitmap->mddev->events);
NeilBrown4f2e6392006-10-21 10:24:09 -0700607 sb->state |= cpu_to_le32(BITMAP_STALE);
NeilBrown32a76272005-06-21 17:17:14 -0700608 }
609success:
610 /* assign fields using values from superblock */
611 bitmap->chunksize = chunksize;
612 bitmap->daemon_sleep = daemon_sleep;
NeilBrown585f0dd2005-09-09 16:23:49 -0700613 bitmap->daemon_lastrun = jiffies;
NeilBrown4b6d2872005-09-09 16:23:47 -0700614 bitmap->max_write_behind = write_behind;
NeilBrown4f2e6392006-10-21 10:24:09 -0700615 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800616 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
617 bitmap->flags |= BITMAP_HOSTENDIAN;
NeilBrown32a76272005-06-21 17:17:14 -0700618 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
NeilBrown4f2e6392006-10-21 10:24:09 -0700619 if (sb->state & cpu_to_le32(BITMAP_STALE))
NeilBrown6a079972005-09-09 16:23:44 -0700620 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown32a76272005-06-21 17:17:14 -0700621 err = 0;
622out:
NeilBrownea03aff2006-01-06 00:20:34 -0800623 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700624 if (err)
625 bitmap_print_sb(bitmap);
626 return err;
627}
628
629enum bitmap_mask_op {
630 MASK_SET,
631 MASK_UNSET
632};
633
NeilBrown4ad13662007-07-17 04:06:13 -0700634/* record the state of the bitmap in the superblock. Return the old value */
635static int bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
636 enum bitmap_mask_op op)
NeilBrown32a76272005-06-21 17:17:14 -0700637{
638 bitmap_super_t *sb;
639 unsigned long flags;
NeilBrown4ad13662007-07-17 04:06:13 -0700640 int old;
NeilBrown32a76272005-06-21 17:17:14 -0700641
642 spin_lock_irqsave(&bitmap->lock, flags);
Adrian Bunk7e317652006-03-25 03:07:51 -0800643 if (!bitmap->sb_page) { /* can't set the state */
NeilBrown32a76272005-06-21 17:17:14 -0700644 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700645 return 0;
NeilBrown32a76272005-06-21 17:17:14 -0700646 }
NeilBrown32a76272005-06-21 17:17:14 -0700647 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800648 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700649 old = le32_to_cpu(sb->state) & bits;
NeilBrown32a76272005-06-21 17:17:14 -0700650 switch (op) {
NeilBrown4f2e6392006-10-21 10:24:09 -0700651 case MASK_SET: sb->state |= cpu_to_le32(bits);
NeilBrown32a76272005-06-21 17:17:14 -0700652 break;
NeilBrown4f2e6392006-10-21 10:24:09 -0700653 case MASK_UNSET: sb->state &= cpu_to_le32(~bits);
NeilBrown32a76272005-06-21 17:17:14 -0700654 break;
655 default: BUG();
656 }
NeilBrownea03aff2006-01-06 00:20:34 -0800657 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700658 return old;
NeilBrown32a76272005-06-21 17:17:14 -0700659}
660
661/*
662 * general bitmap file operations
663 */
664
665/* calculate the index of the page that contains this bit */
666static inline unsigned long file_page_index(unsigned long chunk)
667{
668 return CHUNK_BIT_OFFSET(chunk) >> PAGE_BIT_SHIFT;
669}
670
671/* calculate the (bit) offset of this bit within a page */
672static inline unsigned long file_page_offset(unsigned long chunk)
673{
674 return CHUNK_BIT_OFFSET(chunk) & (PAGE_BITS - 1);
675}
676
677/*
678 * return a pointer to the page in the filemap that contains the given bit
679 *
680 * this lookup is complicated by the fact that the bitmap sb might be exactly
681 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
682 * 0 or page 1
683 */
684static inline struct page *filemap_get_page(struct bitmap *bitmap,
685 unsigned long chunk)
686{
Paul Clements9b1d1da2006-10-03 01:15:49 -0700687 if (file_page_index(chunk) >= bitmap->file_pages) return NULL;
NeilBrown32a76272005-06-21 17:17:14 -0700688 return bitmap->filemap[file_page_index(chunk) - file_page_index(0)];
689}
690
691
692static void bitmap_file_unmap(struct bitmap *bitmap)
693{
694 struct page **map, *sb_page;
695 unsigned long *attr;
696 int pages;
697 unsigned long flags;
698
699 spin_lock_irqsave(&bitmap->lock, flags);
700 map = bitmap->filemap;
701 bitmap->filemap = NULL;
702 attr = bitmap->filemap_attr;
703 bitmap->filemap_attr = NULL;
704 pages = bitmap->file_pages;
705 bitmap->file_pages = 0;
706 sb_page = bitmap->sb_page;
707 bitmap->sb_page = NULL;
708 spin_unlock_irqrestore(&bitmap->lock, flags);
709
710 while (pages--)
711 if (map[pages]->index != 0) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700712 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700713 kfree(map);
714 kfree(attr);
715
NeilBrownd785a062006-06-26 00:27:48 -0700716 if (sb_page)
717 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700718}
719
720static void bitmap_file_put(struct bitmap *bitmap)
721{
722 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700723 unsigned long flags;
724
725 spin_lock_irqsave(&bitmap->lock, flags);
726 file = bitmap->file;
727 bitmap->file = NULL;
728 spin_unlock_irqrestore(&bitmap->lock, flags);
729
NeilBrownd785a062006-06-26 00:27:48 -0700730 if (file)
731 wait_event(bitmap->write_wait,
732 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700733 bitmap_file_unmap(bitmap);
734
NeilBrownd785a062006-06-26 00:27:48 -0700735 if (file) {
Josef Sipekc649bb92006-12-08 02:37:19 -0800736 struct inode *inode = file->f_path.dentry->d_inode;
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800737 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700738 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700739 }
NeilBrown32a76272005-06-21 17:17:14 -0700740}
741
742
743/*
744 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
745 * then it is no longer reliable, so we stop using it and we mark the file
746 * as failed in the superblock
747 */
748static void bitmap_file_kick(struct bitmap *bitmap)
749{
750 char *path, *ptr = NULL;
751
NeilBrown4ad13662007-07-17 04:06:13 -0700752 if (bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET) == 0) {
753 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700754
NeilBrown4ad13662007-07-17 04:06:13 -0700755 if (bitmap->file) {
756 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
757 if (path)
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700758 ptr = d_path(&bitmap->file->f_path, path,
759 PAGE_SIZE);
760
NeilBrown32a76272005-06-21 17:17:14 -0700761
NeilBrown4ad13662007-07-17 04:06:13 -0700762 printk(KERN_ALERT
763 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700764 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700765
NeilBrown4ad13662007-07-17 04:06:13 -0700766 kfree(path);
767 } else
768 printk(KERN_ALERT
769 "%s: disabling internal bitmap due to errors\n",
770 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700771 }
NeilBrown32a76272005-06-21 17:17:14 -0700772
773 bitmap_file_put(bitmap);
774
775 return;
776}
777
778enum bitmap_page_attr {
NeilBrowne16b68b2006-06-26 00:27:45 -0700779 BITMAP_PAGE_DIRTY = 0, // there are set bits that need to be synced
780 BITMAP_PAGE_CLEAN = 1, // there are bits that might need to be cleared
781 BITMAP_PAGE_NEEDWRITE=2, // there are cleared bits that need to be synced
NeilBrown32a76272005-06-21 17:17:14 -0700782};
783
784static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
785 enum bitmap_page_attr attr)
786{
NeilBrowne16b68b2006-06-26 00:27:45 -0700787 __set_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700788}
789
790static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
791 enum bitmap_page_attr attr)
792{
NeilBrowne16b68b2006-06-26 00:27:45 -0700793 __clear_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700794}
795
NeilBrownec7a3192006-06-26 00:27:45 -0700796static inline unsigned long test_page_attr(struct bitmap *bitmap, struct page *page,
797 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700798{
NeilBrowne16b68b2006-06-26 00:27:45 -0700799 return test_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700800}
801
802/*
803 * bitmap_file_set_bit -- called before performing a write to the md device
804 * to set (and eventually sync) a particular bit in the bitmap file
805 *
806 * we set the bit immediately, then we record the page number so that
807 * when an unplug occurs, we can flush the dirty pages out to disk
808 */
809static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
810{
811 unsigned long bit;
812 struct page *page;
813 void *kaddr;
814 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
815
NeilBrowna654b9d82005-06-21 17:17:27 -0700816 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700817 return;
818 }
819
820 page = filemap_get_page(bitmap, chunk);
Paul Clements9b1d1da2006-10-03 01:15:49 -0700821 if (!page) return;
NeilBrown32a76272005-06-21 17:17:14 -0700822 bit = file_page_offset(chunk);
823
NeilBrown32a76272005-06-21 17:17:14 -0700824 /* set the bit */
825 kaddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -0800826 if (bitmap->flags & BITMAP_HOSTENDIAN)
827 set_bit(bit, kaddr);
828 else
829 ext2_set_bit(bit, kaddr);
NeilBrown32a76272005-06-21 17:17:14 -0700830 kunmap_atomic(kaddr, KM_USER0);
831 PRINTK("set file bit %lu page %lu\n", bit, page->index);
832
833 /* record page number so it gets flushed to disk when unplug occurs */
834 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
835
836}
837
838/* this gets called when the md device is ready to unplug its underlying
839 * (slave) device queues -- before we let any writes go down, we need to
840 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700841void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700842{
NeilBrownec7a3192006-06-26 00:27:45 -0700843 unsigned long i, flags;
844 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700845 struct page *page;
846 int wait = 0;
847
848 if (!bitmap)
NeilBrown4ad13662007-07-17 04:06:13 -0700849 return;
NeilBrown32a76272005-06-21 17:17:14 -0700850
851 /* look at each page to see if there are any set bits that need to be
852 * flushed out to disk */
853 for (i = 0; i < bitmap->file_pages; i++) {
854 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -0700855 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700856 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700857 return;
NeilBrown32a76272005-06-21 17:17:14 -0700858 }
859 page = bitmap->filemap[i];
NeilBrownec7a3192006-06-26 00:27:45 -0700860 dirty = test_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
861 need_write = test_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -0700862 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
863 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrownec7a3192006-06-26 00:27:45 -0700864 if (dirty)
NeilBrown32a76272005-06-21 17:17:14 -0700865 wait = 1;
866 spin_unlock_irqrestore(&bitmap->lock, flags);
867
NeilBrownd785a062006-06-26 00:27:48 -0700868 if (dirty | need_write)
NeilBrown4ad13662007-07-17 04:06:13 -0700869 write_page(bitmap, page, 0);
NeilBrown32a76272005-06-21 17:17:14 -0700870 }
871 if (wait) { /* if any writes were performed, we need to wait on them */
NeilBrown0b79ccf2006-06-26 00:27:44 -0700872 if (bitmap->file)
NeilBrownd785a062006-06-26 00:27:48 -0700873 wait_event(bitmap->write_wait,
874 atomic_read(&bitmap->pending_writes)==0);
NeilBrown0b79ccf2006-06-26 00:27:44 -0700875 else
NeilBrowna9701a32005-11-08 21:39:34 -0800876 md_super_wait(bitmap->mddev);
NeilBrown32a76272005-06-21 17:17:14 -0700877 }
NeilBrownd785a062006-06-26 00:27:48 -0700878 if (bitmap->flags & BITMAP_WRITE_ERROR)
879 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700880}
881
NeilBrown6a079972005-09-09 16:23:44 -0700882static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700883/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
884 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
885 * memory mapping of the bitmap file
886 * Special cases:
887 * if there's no bitmap file, or if the bitmap file had been
888 * previously kicked from the array, we mark all the bits as
889 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700890 *
891 * We ignore all bits for sectors that end earlier than 'start'.
892 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700893 */
NeilBrown6a079972005-09-09 16:23:44 -0700894static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700895{
896 unsigned long i, chunks, index, oldindex, bit;
897 struct page *page = NULL, *oldpage = NULL;
898 unsigned long num_pages, bit_cnt = 0;
899 struct file *file;
NeilBrownd785a062006-06-26 00:27:48 -0700900 unsigned long bytes, offset;
NeilBrown32a76272005-06-21 17:17:14 -0700901 int outofdate;
902 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800903 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -0700904
905 chunks = bitmap->chunks;
906 file = bitmap->file;
907
NeilBrowna654b9d82005-06-21 17:17:27 -0700908 BUG_ON(!file && !bitmap->offset);
NeilBrown32a76272005-06-21 17:17:14 -0700909
Olaf Hering44456d32005-07-27 11:45:17 -0700910#ifdef INJECT_FAULTS_3
NeilBrown32a76272005-06-21 17:17:14 -0700911 outofdate = 1;
912#else
913 outofdate = bitmap->flags & BITMAP_STALE;
914#endif
915 if (outofdate)
916 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
917 "recovery\n", bmname(bitmap));
918
919 bytes = (chunks + 7) / 8;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700920
NeilBrowncdbb4cc2005-06-21 17:17:18 -0700921 num_pages = (bytes + sizeof(bitmap_super_t) + PAGE_SIZE - 1) / PAGE_SIZE;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700922
NeilBrowna654b9d82005-06-21 17:17:27 -0700923 if (file && i_size_read(file->f_mapping->host) < bytes + sizeof(bitmap_super_t)) {
NeilBrown32a76272005-06-21 17:17:14 -0700924 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
925 bmname(bitmap),
926 (unsigned long) i_size_read(file->f_mapping->host),
927 bytes + sizeof(bitmap_super_t));
NeilBrown4ad13662007-07-17 04:06:13 -0700928 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700929 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700930
931 ret = -ENOMEM;
932
NeilBrown32a76272005-06-21 17:17:14 -0700933 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700934 if (!bitmap->filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700935 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700936
NeilBrowne16b68b2006-06-26 00:27:45 -0700937 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
938 bitmap->filemap_attr = kzalloc(
Neil Brown505fa2c2007-04-11 23:28:44 -0700939 roundup( DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
NeilBrowne16b68b2006-06-26 00:27:45 -0700940 GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700941 if (!bitmap->filemap_attr)
NeilBrown4ad13662007-07-17 04:06:13 -0700942 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700943
NeilBrown32a76272005-06-21 17:17:14 -0700944 oldindex = ~0L;
945
946 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -0800947 int b;
NeilBrown32a76272005-06-21 17:17:14 -0700948 index = file_page_index(i);
949 bit = file_page_offset(i);
950 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -0700951 int count;
NeilBrown32a76272005-06-21 17:17:14 -0700952 /* unmap the old page, we're done with it */
NeilBrownd785a062006-06-26 00:27:48 -0700953 if (index == num_pages-1)
NeilBrownf49d5e62007-01-26 00:57:03 -0800954 count = bytes + sizeof(bitmap_super_t)
955 - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -0700956 else
957 count = PAGE_SIZE;
NeilBrown32a76272005-06-21 17:17:14 -0700958 if (index == 0) {
959 /*
960 * if we're here then the superblock page
961 * contains some bits (PAGE_SIZE != sizeof sb)
962 * we've already read it in, so just use it
963 */
964 page = bitmap->sb_page;
965 offset = sizeof(bitmap_super_t);
NeilBrown53845272009-01-09 08:31:05 +1100966 if (!file)
967 read_sb_page(bitmap->mddev,
968 bitmap->offset,
969 page,
970 index, count);
NeilBrowna654b9d82005-06-21 17:17:27 -0700971 } else if (file) {
NeilBrownd785a062006-06-26 00:27:48 -0700972 page = read_page(file, index, bitmap, count);
NeilBrowna654b9d82005-06-21 17:17:27 -0700973 offset = 0;
974 } else {
NeilBrowna2ed9612008-12-19 16:25:01 +1100975 page = read_sb_page(bitmap->mddev, bitmap->offset,
976 NULL,
977 index, count);
NeilBrown32a76272005-06-21 17:17:14 -0700978 offset = 0;
979 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700980 if (IS_ERR(page)) { /* read error */
981 ret = PTR_ERR(page);
NeilBrown4ad13662007-07-17 04:06:13 -0700982 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -0700983 }
984
NeilBrown32a76272005-06-21 17:17:14 -0700985 oldindex = index;
986 oldpage = page;
NeilBrown32a76272005-06-21 17:17:14 -0700987
988 if (outofdate) {
989 /*
990 * if bitmap is out of date, dirty the
991 * whole page and write it out
992 */
NeilBrownea03aff2006-01-06 00:20:34 -0800993 paddr = kmap_atomic(page, KM_USER0);
994 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -0700995 PAGE_SIZE - offset);
NeilBrownea03aff2006-01-06 00:20:34 -0800996 kunmap_atomic(paddr, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700997 write_page(bitmap, page, 1);
998
999 ret = -EIO;
1000 if (bitmap->flags & BITMAP_WRITE_ERROR) {
NeilBrown32a76272005-06-21 17:17:14 -07001001 /* release, page not in filemap yet */
NeilBrown2d1f3b52006-01-06 00:20:31 -08001002 put_page(page);
NeilBrown4ad13662007-07-17 04:06:13 -07001003 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001004 }
1005 }
1006
1007 bitmap->filemap[bitmap->file_pages++] = page;
NeilBrownab6085c2007-05-23 13:58:10 -07001008 bitmap->last_page_size = count;
NeilBrown32a76272005-06-21 17:17:14 -07001009 }
NeilBrownea03aff2006-01-06 00:20:34 -08001010 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001011 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001012 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001013 else
NeilBrownea03aff2006-01-06 00:20:34 -08001014 b = ext2_test_bit(bit, paddr);
1015 kunmap_atomic(paddr, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001016 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001017 /* if the disk bit is set, set the memory bit */
NeilBrown6a079972005-09-09 16:23:44 -07001018 bitmap_set_memory_bits(bitmap, i << CHUNK_BLOCK_SHIFT(bitmap),
1019 ((i+1) << (CHUNK_BLOCK_SHIFT(bitmap)) >= start)
1020 );
NeilBrown32a76272005-06-21 17:17:14 -07001021 bit_cnt++;
NeilBrown6a079972005-09-09 16:23:44 -07001022 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -07001023 }
NeilBrown32a76272005-06-21 17:17:14 -07001024 }
1025
1026 /* everything went OK */
1027 ret = 0;
1028 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_UNSET);
1029
NeilBrown32a76272005-06-21 17:17:14 -07001030 if (bit_cnt) { /* Kick recovery if any bits were set */
1031 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
1032 md_wakeup_thread(bitmap->mddev->thread);
1033 }
1034
NeilBrown32a76272005-06-21 17:17:14 -07001035 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrown4ad13662007-07-17 04:06:13 -07001036 "read %lu/%lu pages, set %lu bits\n",
1037 bmname(bitmap), bitmap->file_pages, num_pages, bit_cnt);
NeilBrown32a76272005-06-21 17:17:14 -07001038
NeilBrown4ad13662007-07-17 04:06:13 -07001039 return 0;
1040
1041 err:
1042 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1043 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001044 return ret;
1045}
1046
NeilBrowna654b9d82005-06-21 17:17:27 -07001047void bitmap_write_all(struct bitmap *bitmap)
1048{
1049 /* We don't actually write all bitmap blocks here,
1050 * just flag them as needing to be written
1051 */
NeilBrownec7a3192006-06-26 00:27:45 -07001052 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001053
NeilBrownec7a3192006-06-26 00:27:45 -07001054 for (i=0; i < bitmap->file_pages; i++)
1055 set_page_attr(bitmap, bitmap->filemap[i],
1056 BITMAP_PAGE_NEEDWRITE);
NeilBrowna654b9d82005-06-21 17:17:27 -07001057}
1058
NeilBrown32a76272005-06-21 17:17:14 -07001059
1060static void bitmap_count_page(struct bitmap *bitmap, sector_t offset, int inc)
1061{
1062 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1063 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1064 bitmap->bp[page].count += inc;
1065/*
1066 if (page == 0) printk("count page 0, offset %llu: %d gives %d\n",
1067 (unsigned long long)offset, inc, bitmap->bp[page].count);
1068*/
1069 bitmap_checkfree(bitmap, page);
1070}
1071static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1072 sector_t offset, int *blocks,
1073 int create);
1074
1075/*
1076 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1077 * out to disk
1078 */
1079
NeilBrown4ad13662007-07-17 04:06:13 -07001080void bitmap_daemon_work(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001081{
NeilBrownaa3163f2005-06-21 17:17:22 -07001082 unsigned long j;
NeilBrown32a76272005-06-21 17:17:14 -07001083 unsigned long flags;
1084 struct page *page = NULL, *lastpage = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001085 int blocks;
NeilBrownea03aff2006-01-06 00:20:34 -08001086 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -07001087
1088 if (bitmap == NULL)
NeilBrown4ad13662007-07-17 04:06:13 -07001089 return;
NeilBrown32a76272005-06-21 17:17:14 -07001090 if (time_before(jiffies, bitmap->daemon_lastrun + bitmap->daemon_sleep*HZ))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001091 goto done;
1092
NeilBrown32a76272005-06-21 17:17:14 -07001093 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001094 if (bitmap->allclean) {
1095 bitmap->mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
1096 return;
1097 }
1098 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001099
1100 for (j = 0; j < bitmap->chunks; j++) {
1101 bitmap_counter_t *bmc;
1102 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -07001103 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -07001104 /* error or shutdown */
1105 spin_unlock_irqrestore(&bitmap->lock, flags);
1106 break;
1107 }
1108
1109 page = filemap_get_page(bitmap, j);
NeilBrown32a76272005-06-21 17:17:14 -07001110
1111 if (page != lastpage) {
NeilBrownaa3163f2005-06-21 17:17:22 -07001112 /* skip this page unless it's marked as needing cleaning */
NeilBrownec7a3192006-06-26 00:27:45 -07001113 if (!test_page_attr(bitmap, page, BITMAP_PAGE_CLEAN)) {
1114 int need_write = test_page_attr(bitmap, page,
1115 BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001116 if (need_write)
NeilBrownaa3163f2005-06-21 17:17:22 -07001117 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001118
NeilBrownaa3163f2005-06-21 17:17:22 -07001119 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001120 if (need_write) {
NeilBrown4ad13662007-07-17 04:06:13 -07001121 write_page(bitmap, page, 0);
NeilBrown8311c292008-03-04 14:29:30 -08001122 bitmap->allclean = 0;
1123 }
NeilBrownaa3163f2005-06-21 17:17:22 -07001124 continue;
1125 }
1126
NeilBrown32a76272005-06-21 17:17:14 -07001127 /* grab the new page, sync and release the old */
NeilBrown32a76272005-06-21 17:17:14 -07001128 if (lastpage != NULL) {
NeilBrownec7a3192006-06-26 00:27:45 -07001129 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001130 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1131 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001132 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001133 } else {
1134 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1135 spin_unlock_irqrestore(&bitmap->lock, flags);
1136 }
NeilBrown32a76272005-06-21 17:17:14 -07001137 } else
1138 spin_unlock_irqrestore(&bitmap->lock, flags);
1139 lastpage = page;
Neil Browna0da84f2008-06-28 08:31:22 +10001140
1141 /* We are possibly going to clear some bits, so make
1142 * sure that events_cleared is up-to-date.
1143 */
1144 if (bitmap->need_sync) {
1145 bitmap_super_t *sb;
1146 bitmap->need_sync = 0;
1147 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
1148 sb->events_cleared =
1149 cpu_to_le64(bitmap->events_cleared);
1150 kunmap_atomic(sb, KM_USER0);
1151 write_page(bitmap, bitmap->sb_page, 1);
1152 }
NeilBrown32a76272005-06-21 17:17:14 -07001153 spin_lock_irqsave(&bitmap->lock, flags);
1154 clear_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1155 }
1156 bmc = bitmap_get_counter(bitmap, j << CHUNK_BLOCK_SHIFT(bitmap),
1157 &blocks, 0);
1158 if (bmc) {
1159/*
1160 if (j < 100) printk("bitmap: j=%lu, *bmc = 0x%x\n", j, *bmc);
1161*/
NeilBrown8311c292008-03-04 14:29:30 -08001162 if (*bmc)
1163 bitmap->allclean = 0;
1164
NeilBrown32a76272005-06-21 17:17:14 -07001165 if (*bmc == 2) {
1166 *bmc=1; /* maybe clear the bit next time */
1167 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1168 } else if (*bmc == 1) {
1169 /* we can clear the bit */
1170 *bmc = 0;
1171 bitmap_count_page(bitmap, j << CHUNK_BLOCK_SHIFT(bitmap),
1172 -1);
1173
1174 /* clear the bit */
NeilBrownea03aff2006-01-06 00:20:34 -08001175 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001176 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001177 clear_bit(file_page_offset(j), paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001178 else
NeilBrownea03aff2006-01-06 00:20:34 -08001179 ext2_clear_bit(file_page_offset(j), paddr);
1180 kunmap_atomic(paddr, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -07001181 }
1182 }
1183 spin_unlock_irqrestore(&bitmap->lock, flags);
1184 }
1185
1186 /* now sync the final page */
1187 if (lastpage != NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001188 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownec7a3192006-06-26 00:27:45 -07001189 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001190 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1191 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001192 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001193 } else {
1194 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1195 spin_unlock_irqrestore(&bitmap->lock, flags);
1196 }
NeilBrown32a76272005-06-21 17:17:14 -07001197 }
1198
NeilBrown7be3dfe2008-03-10 11:43:48 -07001199 done:
NeilBrown8311c292008-03-04 14:29:30 -08001200 if (bitmap->allclean == 0)
1201 bitmap->mddev->thread->timeout = bitmap->daemon_sleep * HZ;
NeilBrown32a76272005-06-21 17:17:14 -07001202}
1203
NeilBrown32a76272005-06-21 17:17:14 -07001204static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1205 sector_t offset, int *blocks,
1206 int create)
1207{
1208 /* If 'create', we might release the lock and reclaim it.
1209 * The lock must have been taken with interrupts enabled.
1210 * If !create, we don't release the lock.
1211 */
1212 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1213 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1214 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1215 sector_t csize;
1216
1217 if (bitmap_checkpage(bitmap, page, create) < 0) {
1218 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1219 *blocks = csize - (offset & (csize- 1));
1220 return NULL;
1221 }
1222 /* now locked ... */
1223
1224 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1225 /* should we use the first or second counter field
1226 * of the hijacked pointer? */
1227 int hi = (pageoff > PAGE_COUNTER_MASK);
1228 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1229 PAGE_COUNTER_SHIFT - 1);
1230 *blocks = csize - (offset & (csize- 1));
1231 return &((bitmap_counter_t *)
1232 &bitmap->bp[page].map)[hi];
1233 } else { /* page is allocated */
1234 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1235 *blocks = csize - (offset & (csize- 1));
1236 return (bitmap_counter_t *)
1237 &(bitmap->bp[page].map[pageoff]);
1238 }
1239}
1240
NeilBrown4b6d2872005-09-09 16:23:47 -07001241int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001242{
1243 if (!bitmap) return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001244
1245 if (behind) {
1246 atomic_inc(&bitmap->behind_writes);
1247 PRINTK(KERN_DEBUG "inc write-behind count %d/%d\n",
1248 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1249 }
1250
NeilBrown32a76272005-06-21 17:17:14 -07001251 while (sectors) {
1252 int blocks;
1253 bitmap_counter_t *bmc;
1254
1255 spin_lock_irq(&bitmap->lock);
1256 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1257 if (!bmc) {
1258 spin_unlock_irq(&bitmap->lock);
1259 return 0;
1260 }
1261
Neil Brownda6e1a32007-02-08 14:20:37 -08001262 if (unlikely((*bmc & COUNTER_MAX) == COUNTER_MAX)) {
1263 DEFINE_WAIT(__wait);
1264 /* note that it is safe to do the prepare_to_wait
1265 * after the test as long as we do it before dropping
1266 * the spinlock.
1267 */
1268 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1269 TASK_UNINTERRUPTIBLE);
1270 spin_unlock_irq(&bitmap->lock);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05001271 blk_unplug(bitmap->mddev->queue);
Neil Brownda6e1a32007-02-08 14:20:37 -08001272 schedule();
1273 finish_wait(&bitmap->overflow_wait, &__wait);
1274 continue;
1275 }
1276
NeilBrown32a76272005-06-21 17:17:14 -07001277 switch(*bmc) {
1278 case 0:
1279 bitmap_file_set_bit(bitmap, offset);
1280 bitmap_count_page(bitmap,offset, 1);
Jens Axboe93769f52008-08-01 20:32:31 +02001281 blk_plug_device_unlocked(bitmap->mddev->queue);
NeilBrown32a76272005-06-21 17:17:14 -07001282 /* fall through */
1283 case 1:
1284 *bmc = 2;
1285 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001286
NeilBrown32a76272005-06-21 17:17:14 -07001287 (*bmc)++;
1288
1289 spin_unlock_irq(&bitmap->lock);
1290
1291 offset += blocks;
1292 if (sectors > blocks)
1293 sectors -= blocks;
1294 else sectors = 0;
1295 }
NeilBrown8311c292008-03-04 14:29:30 -08001296 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001297 return 0;
1298}
1299
1300void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001301 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001302{
1303 if (!bitmap) return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001304 if (behind) {
1305 atomic_dec(&bitmap->behind_writes);
1306 PRINTK(KERN_DEBUG "dec write-behind count %d/%d\n",
1307 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1308 }
1309
NeilBrown32a76272005-06-21 17:17:14 -07001310 while (sectors) {
1311 int blocks;
1312 unsigned long flags;
1313 bitmap_counter_t *bmc;
1314
1315 spin_lock_irqsave(&bitmap->lock, flags);
1316 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1317 if (!bmc) {
1318 spin_unlock_irqrestore(&bitmap->lock, flags);
1319 return;
1320 }
1321
Neil Browna0da84f2008-06-28 08:31:22 +10001322 if (success &&
1323 bitmap->events_cleared < bitmap->mddev->events) {
1324 bitmap->events_cleared = bitmap->mddev->events;
1325 bitmap->need_sync = 1;
1326 }
1327
NeilBrown32a76272005-06-21 17:17:14 -07001328 if (!success && ! (*bmc & NEEDED_MASK))
1329 *bmc |= NEEDED_MASK;
1330
Neil Brownda6e1a32007-02-08 14:20:37 -08001331 if ((*bmc & COUNTER_MAX) == COUNTER_MAX)
1332 wake_up(&bitmap->overflow_wait);
1333
NeilBrown32a76272005-06-21 17:17:14 -07001334 (*bmc)--;
1335 if (*bmc <= 2) {
1336 set_page_attr(bitmap,
1337 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1338 BITMAP_PAGE_CLEAN);
1339 }
1340 spin_unlock_irqrestore(&bitmap->lock, flags);
1341 offset += blocks;
1342 if (sectors > blocks)
1343 sectors -= blocks;
1344 else sectors = 0;
1345 }
1346}
1347
NeilBrown6a806c52005-07-15 03:56:35 -07001348int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1349 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001350{
1351 bitmap_counter_t *bmc;
1352 int rv;
1353 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1354 *blocks = 1024;
1355 return 1; /* always resync if no bitmap */
1356 }
1357 spin_lock_irq(&bitmap->lock);
1358 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1359 rv = 0;
1360 if (bmc) {
1361 /* locked */
1362 if (RESYNC(*bmc))
1363 rv = 1;
1364 else if (NEEDED(*bmc)) {
1365 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001366 if (!degraded) { /* don't set/clear bits if degraded */
1367 *bmc |= RESYNC_MASK;
1368 *bmc &= ~NEEDED_MASK;
1369 }
NeilBrown32a76272005-06-21 17:17:14 -07001370 }
1371 }
1372 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001373 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001374 return rv;
1375}
1376
1377void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, int *blocks, int aborted)
1378{
1379 bitmap_counter_t *bmc;
1380 unsigned long flags;
1381/*
1382 if (offset == 0) printk("bitmap_end_sync 0 (%d)\n", aborted);
1383*/ if (bitmap == NULL) {
1384 *blocks = 1024;
1385 return;
1386 }
1387 spin_lock_irqsave(&bitmap->lock, flags);
1388 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1389 if (bmc == NULL)
1390 goto unlock;
1391 /* locked */
1392/*
1393 if (offset == 0) printk("bitmap_end sync found 0x%x, blocks %d\n", *bmc, *blocks);
1394*/
1395 if (RESYNC(*bmc)) {
1396 *bmc &= ~RESYNC_MASK;
1397
1398 if (!NEEDED(*bmc) && aborted)
1399 *bmc |= NEEDED_MASK;
1400 else {
1401 if (*bmc <= 2) {
1402 set_page_attr(bitmap,
1403 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1404 BITMAP_PAGE_CLEAN);
1405 }
1406 }
1407 }
1408 unlock:
1409 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001410 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001411}
1412
1413void bitmap_close_sync(struct bitmap *bitmap)
1414{
1415 /* Sync has finished, and any bitmap chunks that weren't synced
1416 * properly have been aborted. It remains to us to clear the
1417 * RESYNC bit wherever it is still on
1418 */
1419 sector_t sector = 0;
1420 int blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001421 if (!bitmap)
1422 return;
NeilBrown32a76272005-06-21 17:17:14 -07001423 while (sector < bitmap->mddev->resync_max_sectors) {
1424 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001425 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001426 }
1427}
1428
NeilBrownb47490c2008-02-06 01:39:50 -08001429void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1430{
1431 sector_t s = 0;
1432 int blocks;
1433
1434 if (!bitmap)
1435 return;
1436 if (sector == 0) {
1437 bitmap->last_end_sync = jiffies;
1438 return;
1439 }
1440 if (time_before(jiffies, (bitmap->last_end_sync
1441 + bitmap->daemon_sleep * HZ)))
1442 return;
1443 wait_event(bitmap->mddev->recovery_wait,
1444 atomic_read(&bitmap->mddev->recovery_active) == 0);
1445
1446 sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
1447 s = 0;
1448 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1449 bitmap_end_sync(bitmap, s, &blocks, 0);
1450 s += blocks;
1451 }
1452 bitmap->last_end_sync = jiffies;
1453}
1454
NeilBrown6a079972005-09-09 16:23:44 -07001455static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001456{
1457 /* For each chunk covered by any of these sectors, set the
NeilBrown193f1c92005-08-04 12:53:33 -07001458 * counter to 1 and set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001459 * be 0 at this point
1460 */
NeilBrown193f1c92005-08-04 12:53:33 -07001461
1462 int secs;
1463 bitmap_counter_t *bmc;
1464 spin_lock_irq(&bitmap->lock);
1465 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1466 if (!bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001467 spin_unlock_irq(&bitmap->lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001468 return;
NeilBrown32a76272005-06-21 17:17:14 -07001469 }
NeilBrown193f1c92005-08-04 12:53:33 -07001470 if (! *bmc) {
1471 struct page *page;
NeilBrown6a079972005-09-09 16:23:44 -07001472 *bmc = 1 | (needed?NEEDED_MASK:0);
NeilBrown193f1c92005-08-04 12:53:33 -07001473 bitmap_count_page(bitmap, offset, 1);
1474 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
1475 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1476 }
1477 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001478 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001479}
1480
Paul Clements9b1d1da2006-10-03 01:15:49 -07001481/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1482void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1483{
1484 unsigned long chunk;
1485
1486 for (chunk = s; chunk <= e; chunk++) {
1487 sector_t sec = chunk << CHUNK_BLOCK_SHIFT(bitmap);
1488 bitmap_set_memory_bits(bitmap, sec, 1);
1489 bitmap_file_set_bit(bitmap, sec);
1490 }
1491}
1492
NeilBrown32a76272005-06-21 17:17:14 -07001493/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001494 * flush out any pending updates
1495 */
1496void bitmap_flush(mddev_t *mddev)
1497{
1498 struct bitmap *bitmap = mddev->bitmap;
1499 int sleep;
1500
1501 if (!bitmap) /* there was no bitmap */
1502 return;
1503
1504 /* run the daemon_work three time to ensure everything is flushed
1505 * that can be
1506 */
1507 sleep = bitmap->daemon_sleep;
1508 bitmap->daemon_sleep = 0;
1509 bitmap_daemon_work(bitmap);
1510 bitmap_daemon_work(bitmap);
1511 bitmap_daemon_work(bitmap);
1512 bitmap->daemon_sleep = sleep;
1513 bitmap_update_sb(bitmap);
1514}
1515
1516/*
NeilBrown32a76272005-06-21 17:17:14 -07001517 * free memory that was allocated
1518 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001519static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001520{
1521 unsigned long k, pages;
1522 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001523
1524 if (!bitmap) /* there was no bitmap */
1525 return;
1526
NeilBrown32a76272005-06-21 17:17:14 -07001527 /* release the bitmap file and kill the daemon */
1528 bitmap_file_put(bitmap);
1529
1530 bp = bitmap->bp;
1531 pages = bitmap->pages;
1532
1533 /* free all allocated memory */
1534
NeilBrown32a76272005-06-21 17:17:14 -07001535 if (bp) /* deallocate the page memory */
1536 for (k = 0; k < pages; k++)
1537 if (bp[k].map && !bp[k].hijacked)
1538 kfree(bp[k].map);
1539 kfree(bp);
1540 kfree(bitmap);
1541}
NeilBrown3178b0d2005-09-09 16:23:50 -07001542void bitmap_destroy(mddev_t *mddev)
1543{
1544 struct bitmap *bitmap = mddev->bitmap;
1545
1546 if (!bitmap) /* there was no bitmap */
1547 return;
1548
1549 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrownb15c2e52006-01-06 00:20:16 -08001550 if (mddev->thread)
1551 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001552
1553 bitmap_free(bitmap);
1554}
NeilBrown32a76272005-06-21 17:17:14 -07001555
1556/*
1557 * initialize the bitmap structure
1558 * if this returns an error, bitmap_destroy must be called to do clean up
1559 */
1560int bitmap_create(mddev_t *mddev)
1561{
1562 struct bitmap *bitmap;
1563 unsigned long blocks = mddev->resync_max_sectors;
1564 unsigned long chunks;
1565 unsigned long pages;
1566 struct file *file = mddev->bitmap_file;
1567 int err;
NeilBrown6a079972005-09-09 16:23:44 -07001568 sector_t start;
NeilBrown32a76272005-06-21 17:17:14 -07001569
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001570 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001571
NeilBrowna654b9d82005-06-21 17:17:27 -07001572 if (!file && !mddev->bitmap_offset) /* bitmap disabled, nothing to do */
NeilBrown32a76272005-06-21 17:17:14 -07001573 return 0;
1574
NeilBrowna654b9d82005-06-21 17:17:27 -07001575 BUG_ON(file && mddev->bitmap_offset);
1576
NeilBrown9ffae0c2006-01-06 00:20:32 -08001577 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001578 if (!bitmap)
1579 return -ENOMEM;
1580
NeilBrown32a76272005-06-21 17:17:14 -07001581 spin_lock_init(&bitmap->lock);
NeilBrownce25c312006-06-26 00:27:49 -07001582 atomic_set(&bitmap->pending_writes, 0);
1583 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001584 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001585
NeilBrown32a76272005-06-21 17:17:14 -07001586 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001587
NeilBrown32a76272005-06-21 17:17:14 -07001588 bitmap->file = file;
NeilBrowna654b9d82005-06-21 17:17:27 -07001589 bitmap->offset = mddev->bitmap_offset;
NeilBrownce25c312006-06-26 00:27:49 -07001590 if (file) {
1591 get_file(file);
Mark Fashehef51c972007-05-08 00:27:10 -07001592 do_sync_mapping_range(file->f_mapping, 0, LLONG_MAX,
1593 SYNC_FILE_RANGE_WAIT_BEFORE |
1594 SYNC_FILE_RANGE_WRITE |
1595 SYNC_FILE_RANGE_WAIT_AFTER);
NeilBrownce25c312006-06-26 00:27:49 -07001596 }
NeilBrown32a76272005-06-21 17:17:14 -07001597 /* read superblock from bitmap file (this sets bitmap->chunksize) */
1598 err = bitmap_read_sb(bitmap);
1599 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001600 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001601
Paul Clementsa638b2d2006-10-03 01:16:01 -07001602 bitmap->chunkshift = ffz(~bitmap->chunksize);
NeilBrown32a76272005-06-21 17:17:14 -07001603
1604 /* now that chunksize and chunkshift are set, we can use these macros */
1605 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) /
1606 CHUNK_BLOCK_RATIO(bitmap);
1607 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
1608
1609 BUG_ON(!pages);
1610
1611 bitmap->chunks = chunks;
1612 bitmap->pages = pages;
1613 bitmap->missing_pages = pages;
1614 bitmap->counter_bits = COUNTER_BITS;
1615
1616 bitmap->syncchunk = ~0UL;
1617
Olaf Hering44456d32005-07-27 11:45:17 -07001618#ifdef INJECT_FATAL_FAULT_1
NeilBrown32a76272005-06-21 17:17:14 -07001619 bitmap->bp = NULL;
1620#else
NeilBrown9ffae0c2006-01-06 00:20:32 -08001621 bitmap->bp = kzalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001622#endif
NeilBrown3178b0d2005-09-09 16:23:50 -07001623 err = -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -07001624 if (!bitmap->bp)
NeilBrown3178b0d2005-09-09 16:23:50 -07001625 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001626
NeilBrown32a76272005-06-21 17:17:14 -07001627 /* now that we have some pages available, initialize the in-memory
1628 * bitmap from the on-disk bitmap */
NeilBrown6a079972005-09-09 16:23:44 -07001629 start = 0;
1630 if (mddev->degraded == 0
1631 || bitmap->events_cleared == mddev->events)
1632 /* no need to keep dirty bits to optimise a re-add of a missing device */
1633 start = mddev->recovery_cp;
1634 err = bitmap_init_from_disk(bitmap, start);
NeilBrown193f1c92005-08-04 12:53:33 -07001635
NeilBrown32a76272005-06-21 17:17:14 -07001636 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001637 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001638
1639 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1640 pages, bmname(bitmap));
1641
NeilBrown3178b0d2005-09-09 16:23:50 -07001642 mddev->bitmap = bitmap;
1643
NeilBrownb15c2e52006-01-06 00:20:16 -08001644 mddev->thread->timeout = bitmap->daemon_sleep * HZ;
1645
NeilBrown4ad13662007-07-17 04:06:13 -07001646 bitmap_update_sb(bitmap);
1647
1648 return (bitmap->flags & BITMAP_WRITE_ERROR) ? -EIO : 0;
NeilBrown3178b0d2005-09-09 16:23:50 -07001649
1650 error:
1651 bitmap_free(bitmap);
1652 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001653}
1654
1655/* the bitmap API -- for raid personalities */
1656EXPORT_SYMBOL(bitmap_startwrite);
1657EXPORT_SYMBOL(bitmap_endwrite);
1658EXPORT_SYMBOL(bitmap_start_sync);
1659EXPORT_SYMBOL(bitmap_end_sync);
1660EXPORT_SYMBOL(bitmap_unplug);
1661EXPORT_SYMBOL(bitmap_close_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001662EXPORT_SYMBOL(bitmap_cond_end_sync);