blob: 3319c2fec28e40f7908d7e0688595c113f3a597f [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
NeilBrownbff61972009-03-31 14:33:13 +110019#include <linux/blkdev.h>
NeilBrown32a76272005-06-21 17:17:14 -070020#include <linux/module.h>
NeilBrown32a76272005-06-21 17:17:14 -070021#include <linux/errno.h>
22#include <linux/slab.h>
23#include <linux/init.h>
NeilBrown32a76272005-06-21 17:17:14 -070024#include <linux/timer.h>
25#include <linux/sched.h>
26#include <linux/list.h>
27#include <linux/file.h>
28#include <linux/mount.h>
29#include <linux/buffer_head.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110030#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110031#include "bitmap.h"
NeilBrown32a76272005-06-21 17:17:14 -070032
33/* debug macros */
34
35#define DEBUG 0
36
37#if DEBUG
38/* these are for debugging purposes only! */
39
40/* define one and only one of these */
41#define INJECT_FAULTS_1 0 /* cause bitmap_alloc_page to fail always */
42#define INJECT_FAULTS_2 0 /* cause bitmap file to be kicked when first bit set*/
43#define INJECT_FAULTS_3 0 /* treat bitmap file as kicked at init time */
44#define INJECT_FAULTS_4 0 /* undef */
45#define INJECT_FAULTS_5 0 /* undef */
46#define INJECT_FAULTS_6 0
47
48/* if these are defined, the driver will fail! debug only */
49#define INJECT_FATAL_FAULT_1 0 /* fail kmalloc, causing bitmap_create to fail */
50#define INJECT_FATAL_FAULT_2 0 /* undef */
51#define INJECT_FATAL_FAULT_3 0 /* undef */
52#endif
53
54//#define DPRINTK PRINTK /* set this NULL to avoid verbose debug output */
55#define DPRINTK(x...) do { } while(0)
56
57#ifndef PRINTK
58# if DEBUG > 0
59# define PRINTK(x...) printk(KERN_DEBUG x)
60# else
61# define PRINTK(x...)
62# endif
63#endif
64
65static inline char * bmname(struct bitmap *bitmap)
66{
67 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
68}
69
NeilBrown32a76272005-06-21 17:17:14 -070070
71/*
72 * just a placeholder - calls kmalloc for bitmap pages
73 */
74static unsigned char *bitmap_alloc_page(struct bitmap *bitmap)
75{
76 unsigned char *page;
77
Olaf Hering44456d32005-07-27 11:45:17 -070078#ifdef INJECT_FAULTS_1
NeilBrown32a76272005-06-21 17:17:14 -070079 page = NULL;
80#else
81 page = kmalloc(PAGE_SIZE, GFP_NOIO);
82#endif
83 if (!page)
84 printk("%s: bitmap_alloc_page FAILED\n", bmname(bitmap));
85 else
NeilBrowna654b9d82005-06-21 17:17:27 -070086 PRINTK("%s: bitmap_alloc_page: allocated page at %p\n",
NeilBrown32a76272005-06-21 17:17:14 -070087 bmname(bitmap), page);
88 return page;
89}
90
91/*
92 * for now just a placeholder -- just calls kfree for bitmap pages
93 */
94static void bitmap_free_page(struct bitmap *bitmap, unsigned char *page)
95{
96 PRINTK("%s: bitmap_free_page: free page %p\n", bmname(bitmap), page);
97 kfree(page);
98}
99
100/*
101 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
102 *
103 * 1) check to see if this page is allocated, if it's not then try to alloc
104 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
105 * page pointer directly as a counter
106 *
107 * if we find our page, we increment the page's refcount so that it stays
108 * allocated while we're using it
109 */
110static int bitmap_checkpage(struct bitmap *bitmap, unsigned long page, int create)
111{
112 unsigned char *mappage;
113
114 if (page >= bitmap->pages) {
NeilBrown1187cf02009-03-31 14:27:02 +1100115 /* This can happen if bitmap_start_sync goes beyond
116 * End-of-device while looking for a whole page.
117 * It is harmless.
118 */
NeilBrown32a76272005-06-21 17:17:14 -0700119 return -EINVAL;
120 }
121
122
123 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
124 return 0;
125
126 if (bitmap->bp[page].map) /* page is already allocated, just return */
127 return 0;
128
129 if (!create)
130 return -ENOENT;
131
132 spin_unlock_irq(&bitmap->lock);
133
134 /* this page has not been allocated yet */
135
136 if ((mappage = bitmap_alloc_page(bitmap)) == NULL) {
137 PRINTK("%s: bitmap map page allocation failed, hijacking\n",
138 bmname(bitmap));
139 /* failed - set the hijacked flag so that we can use the
140 * pointer as a counter */
141 spin_lock_irq(&bitmap->lock);
142 if (!bitmap->bp[page].map)
143 bitmap->bp[page].hijacked = 1;
144 goto out;
145 }
146
147 /* got a page */
148
149 spin_lock_irq(&bitmap->lock);
150
151 /* recheck the page */
152
153 if (bitmap->bp[page].map || bitmap->bp[page].hijacked) {
154 /* somebody beat us to getting the page */
155 bitmap_free_page(bitmap, mappage);
156 return 0;
157 }
158
159 /* no page was in place and we have one, so install it */
160
161 memset(mappage, 0, PAGE_SIZE);
162 bitmap->bp[page].map = mappage;
163 bitmap->missing_pages--;
164out:
165 return 0;
166}
167
168
169/* if page is completely empty, put it back on the free list, or dealloc it */
170/* if page was hijacked, unmark the flag so it might get alloced next time */
171/* Note: lock should be held when calling this */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800172static void bitmap_checkfree(struct bitmap *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700173{
174 char *ptr;
175
176 if (bitmap->bp[page].count) /* page is still busy */
177 return;
178
179 /* page is no longer in use, it can be released */
180
181 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
182 bitmap->bp[page].hijacked = 0;
183 bitmap->bp[page].map = NULL;
184 return;
185 }
186
187 /* normal case, free the page */
188
189#if 0
190/* actually ... let's not. We will probably need the page again exactly when
191 * memory is tight and we are flusing to disk
192 */
193 return;
194#else
195 ptr = bitmap->bp[page].map;
196 bitmap->bp[page].map = NULL;
197 bitmap->missing_pages++;
198 bitmap_free_page(bitmap, ptr);
199 return;
200#endif
201}
202
203
204/*
205 * bitmap file handling - read and write the bitmap file and its superblock
206 */
207
NeilBrown32a76272005-06-21 17:17:14 -0700208/*
209 * basic page I/O operations
210 */
211
NeilBrowna654b9d82005-06-21 17:17:27 -0700212/* IO operations when bitmap is stored near all superblocks */
NeilBrowna2ed9612008-12-19 16:25:01 +1100213static struct page *read_sb_page(mddev_t *mddev, long offset,
214 struct page *page,
215 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700216{
217 /* choose a good rdev and read the page from there */
218
219 mdk_rdev_t *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700220 sector_t target;
221
222 if (!page)
NeilBrowna2ed9612008-12-19 16:25:01 +1100223 page = alloc_page(GFP_KERNEL);
224 if (!page)
NeilBrowna654b9d82005-06-21 17:17:27 -0700225 return ERR_PTR(-ENOMEM);
NeilBrowna654b9d82005-06-21 17:17:27 -0700226
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100227 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800228 if (! test_bit(In_sync, &rdev->flags)
229 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700230 continue;
231
Andre Noll0f420352008-07-11 22:02:23 +1000232 target = rdev->sb_start + offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700233
NeilBrowna2ed9612008-12-19 16:25:01 +1100234 if (sync_page_io(rdev->bdev, target,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400235 roundup(size, bdev_logical_block_size(rdev->bdev)),
NeilBrowna2ed9612008-12-19 16:25:01 +1100236 page, READ)) {
NeilBrownab904d62005-09-09 16:23:52 -0700237 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700238 attach_page_buffers(page, NULL); /* so that free_buffer will
239 * quietly no-op */
NeilBrownab904d62005-09-09 16:23:52 -0700240 return page;
241 }
242 }
243 return ERR_PTR(-EIO);
NeilBrowna654b9d82005-06-21 17:17:27 -0700244
NeilBrowna654b9d82005-06-21 17:17:27 -0700245}
246
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000247static mdk_rdev_t *next_active_rdev(mdk_rdev_t *rdev, mddev_t *mddev)
248{
249 /* Iterate the disks of an mddev, using rcu to protect access to the
250 * linked list, and raising the refcount of devices we return to ensure
251 * they don't disappear while in use.
252 * As devices are only added or removed when raid_disk is < 0 and
253 * nr_pending is 0 and In_sync is clear, the entries we return will
254 * still be in the same position on the list when we re-enter
255 * list_for_each_continue_rcu.
256 */
257 struct list_head *pos;
258 rcu_read_lock();
259 if (rdev == NULL)
260 /* start at the beginning */
261 pos = &mddev->disks;
262 else {
263 /* release the previous rdev and start from there. */
264 rdev_dec_pending(rdev, mddev);
265 pos = &rdev->same_set;
266 }
267 list_for_each_continue_rcu(pos, &mddev->disks) {
268 rdev = list_entry(pos, mdk_rdev_t, same_set);
269 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000270 !test_bit(Faulty, &rdev->flags)) {
271 /* this is a usable devices */
272 atomic_inc(&rdev->nr_pending);
273 rcu_read_unlock();
274 return rdev;
275 }
276 }
277 rcu_read_unlock();
278 return NULL;
279}
280
NeilBrownab6085c2007-05-23 13:58:10 -0700281static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700282{
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000283 mdk_rdev_t *rdev = NULL;
NeilBrownab6085c2007-05-23 13:58:10 -0700284 mddev_t *mddev = bitmap->mddev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700285
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000286 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownab6085c2007-05-23 13:58:10 -0700287 int size = PAGE_SIZE;
288 if (page->index == bitmap->file_pages-1)
289 size = roundup(bitmap->last_page_size,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400290 bdev_logical_block_size(rdev->bdev));
NeilBrownf0d76d72007-07-17 04:06:12 -0700291 /* Just make sure we aren't corrupting data or
292 * metadata
293 */
294 if (bitmap->offset < 0) {
295 /* DATA BITMAP METADATA */
296 if (bitmap->offset
NeilBrown85bfb4d2007-10-22 20:45:11 -0700297 + (long)(page->index * (PAGE_SIZE/512))
NeilBrownf0d76d72007-07-17 04:06:12 -0700298 + size/512 > 0)
299 /* bitmap runs in to metadata */
NeilBrown4b809912008-07-21 17:05:25 +1000300 goto bad_alignment;
Andre Noll58c0fed2009-03-31 14:33:13 +1100301 if (rdev->data_offset + mddev->dev_sectors
Andre Noll0f420352008-07-11 22:02:23 +1000302 > rdev->sb_start + bitmap->offset)
NeilBrownf0d76d72007-07-17 04:06:12 -0700303 /* data runs in to bitmap */
NeilBrown4b809912008-07-21 17:05:25 +1000304 goto bad_alignment;
Andre Noll0f420352008-07-11 22:02:23 +1000305 } else if (rdev->sb_start < rdev->data_offset) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700306 /* METADATA BITMAP DATA */
Andre Noll0f420352008-07-11 22:02:23 +1000307 if (rdev->sb_start
NeilBrownf0d76d72007-07-17 04:06:12 -0700308 + bitmap->offset
309 + page->index*(PAGE_SIZE/512) + size/512
310 > rdev->data_offset)
311 /* bitmap runs in to data */
NeilBrown4b809912008-07-21 17:05:25 +1000312 goto bad_alignment;
NeilBrownf0d76d72007-07-17 04:06:12 -0700313 } else {
314 /* DATA METADATA BITMAP - no problems */
315 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700316 md_super_write(mddev, rdev,
Andre Noll0f420352008-07-11 22:02:23 +1000317 rdev->sb_start + bitmap->offset
NeilBrowna654b9d82005-06-21 17:17:27 -0700318 + page->index * (PAGE_SIZE/512),
NeilBrownab6085c2007-05-23 13:58:10 -0700319 size,
NeilBrowna654b9d82005-06-21 17:17:27 -0700320 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000321 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700322
323 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800324 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700325 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000326
327 bad_alignment:
328 rcu_read_unlock();
329 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700330}
331
NeilBrown4ad13662007-07-17 04:06:13 -0700332static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700333/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700334 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700335 */
NeilBrown4ad13662007-07-17 04:06:13 -0700336static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700337{
NeilBrownd785a062006-06-26 00:27:48 -0700338 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700339
NeilBrownf0d76d72007-07-17 04:06:12 -0700340 if (bitmap->file == NULL) {
341 switch (write_sb_page(bitmap, page, wait)) {
342 case -EINVAL:
343 bitmap->flags |= BITMAP_WRITE_ERROR;
NeilBrownf0d76d72007-07-17 04:06:12 -0700344 }
NeilBrown4ad13662007-07-17 04:06:13 -0700345 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700346
NeilBrown4ad13662007-07-17 04:06:13 -0700347 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800348
NeilBrown4ad13662007-07-17 04:06:13 -0700349 while (bh && bh->b_blocknr) {
350 atomic_inc(&bitmap->pending_writes);
351 set_buffer_locked(bh);
352 set_buffer_mapped(bh);
353 submit_bh(WRITE, bh);
354 bh = bh->b_this_page;
355 }
NeilBrown32a76272005-06-21 17:17:14 -0700356
NeilBrown4ad13662007-07-17 04:06:13 -0700357 if (wait) {
358 wait_event(bitmap->write_wait,
359 atomic_read(&bitmap->pending_writes)==0);
360 }
NeilBrown32a76272005-06-21 17:17:14 -0700361 }
NeilBrown4ad13662007-07-17 04:06:13 -0700362 if (bitmap->flags & BITMAP_WRITE_ERROR)
363 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700364}
365
NeilBrownd785a062006-06-26 00:27:48 -0700366static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700367{
NeilBrownd785a062006-06-26 00:27:48 -0700368 struct bitmap *bitmap = bh->b_private;
369 unsigned long flags;
370
371 if (!uptodate) {
372 spin_lock_irqsave(&bitmap->lock, flags);
373 bitmap->flags |= BITMAP_WRITE_ERROR;
374 spin_unlock_irqrestore(&bitmap->lock, flags);
375 }
376 if (atomic_dec_and_test(&bitmap->pending_writes))
377 wake_up(&bitmap->write_wait);
378}
379
380/* copied from buffer.c */
381static void
382__clear_page_buffers(struct page *page)
383{
384 ClearPagePrivate(page);
385 set_page_private(page, 0);
386 page_cache_release(page);
387}
388static void free_buffers(struct page *page)
389{
390 struct buffer_head *bh = page_buffers(page);
391
392 while (bh) {
393 struct buffer_head *next = bh->b_this_page;
394 free_buffer_head(bh);
395 bh = next;
396 }
397 __clear_page_buffers(page);
398 put_page(page);
399}
400
401/* read a page from a file.
402 * We both read the page, and attach buffers to the page to record the
403 * address of each block (using bmap). These addresses will be used
404 * to write the block later, completely bypassing the filesystem.
405 * This usage is similar to how swap files are handled, and allows us
406 * to write to a file with no concerns of memory allocation failing.
407 */
408static struct page *read_page(struct file *file, unsigned long index,
409 struct bitmap *bitmap,
410 unsigned long count)
411{
NeilBrown32a76272005-06-21 17:17:14 -0700412 struct page *page = NULL;
Josef Sipekc649bb92006-12-08 02:37:19 -0800413 struct inode *inode = file->f_path.dentry->d_inode;
NeilBrownd785a062006-06-26 00:27:48 -0700414 struct buffer_head *bh;
415 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700416
NeilBrown2d1f3b52006-01-06 00:20:31 -0800417 PRINTK("read bitmap file (%dB @ %Lu)\n", (int)PAGE_SIZE,
418 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700419
NeilBrownd785a062006-06-26 00:27:48 -0700420 page = alloc_page(GFP_KERNEL);
421 if (!page)
422 page = ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -0700423 if (IS_ERR(page))
424 goto out;
NeilBrownd785a062006-06-26 00:27:48 -0700425
NeilBrownd785a062006-06-26 00:27:48 -0700426 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
427 if (!bh) {
428 put_page(page);
429 page = ERR_PTR(-ENOMEM);
430 goto out;
431 }
432 attach_page_buffers(page, bh);
433 block = index << (PAGE_SHIFT - inode->i_blkbits);
434 while (bh) {
435 if (count == 0)
436 bh->b_blocknr = 0;
437 else {
438 bh->b_blocknr = bmap(inode, block);
439 if (bh->b_blocknr == 0) {
440 /* Cannot use this file! */
441 free_buffers(page);
442 page = ERR_PTR(-EINVAL);
443 goto out;
444 }
445 bh->b_bdev = inode->i_sb->s_bdev;
446 if (count < (1<<inode->i_blkbits))
447 count = 0;
448 else
449 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700450
NeilBrownd785a062006-06-26 00:27:48 -0700451 bh->b_end_io = end_bitmap_write;
452 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700453 atomic_inc(&bitmap->pending_writes);
454 set_buffer_locked(bh);
455 set_buffer_mapped(bh);
456 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700457 }
458 block++;
459 bh = bh->b_this_page;
460 }
NeilBrownd785a062006-06-26 00:27:48 -0700461 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700462
463 wait_event(bitmap->write_wait,
464 atomic_read(&bitmap->pending_writes)==0);
465 if (bitmap->flags & BITMAP_WRITE_ERROR) {
466 free_buffers(page);
467 page = ERR_PTR(-EIO);
468 }
NeilBrown32a76272005-06-21 17:17:14 -0700469out:
470 if (IS_ERR(page))
471 printk(KERN_ALERT "md: bitmap read error: (%dB @ %Lu): %ld\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800472 (int)PAGE_SIZE,
473 (unsigned long long)index << PAGE_SHIFT,
NeilBrown32a76272005-06-21 17:17:14 -0700474 PTR_ERR(page));
475 return page;
476}
477
478/*
479 * bitmap file superblock operations
480 */
481
482/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700483void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700484{
485 bitmap_super_t *sb;
486 unsigned long flags;
487
488 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700489 return;
NeilBrown32a76272005-06-21 17:17:14 -0700490 spin_lock_irqsave(&bitmap->lock, flags);
491 if (!bitmap->sb_page) { /* no superblock */
492 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700493 return;
NeilBrown32a76272005-06-21 17:17:14 -0700494 }
NeilBrown32a76272005-06-21 17:17:14 -0700495 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800496 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700497 sb->events = cpu_to_le64(bitmap->mddev->events);
Neil Browna0da84f2008-06-28 08:31:22 +1000498 if (bitmap->mddev->events < bitmap->events_cleared) {
499 /* rocking back to read-only */
500 bitmap->events_cleared = bitmap->mddev->events;
501 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
502 }
NeilBrownea03aff2006-01-06 00:20:34 -0800503 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700504 write_page(bitmap, bitmap->sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700505}
506
507/* print out the bitmap file superblock */
508void bitmap_print_sb(struct bitmap *bitmap)
509{
510 bitmap_super_t *sb;
511
512 if (!bitmap || !bitmap->sb_page)
513 return;
NeilBrownea03aff2006-01-06 00:20:34 -0800514 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700515 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700516 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
517 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
518 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700519 *(__u32 *)(sb->uuid+0),
520 *(__u32 *)(sb->uuid+4),
521 *(__u32 *)(sb->uuid+8),
522 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700523 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700524 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700525 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700526 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700527 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
528 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
529 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
530 printk(KERN_DEBUG " sync size: %llu KB\n",
531 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700532 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
NeilBrownea03aff2006-01-06 00:20:34 -0800533 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700534}
535
536/* read the superblock from the bitmap file and initialize some bitmap fields */
537static int bitmap_read_sb(struct bitmap *bitmap)
538{
539 char *reason = NULL;
540 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700541 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700542 unsigned long long events;
543 int err = -EINVAL;
544
545 /* page 0 is the superblock, read it... */
NeilBrownf49d5e62007-01-26 00:57:03 -0800546 if (bitmap->file) {
547 loff_t isize = i_size_read(bitmap->file->f_mapping->host);
548 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
549
550 bitmap->sb_page = read_page(bitmap->file, 0, bitmap, bytes);
551 } else {
NeilBrowna2ed9612008-12-19 16:25:01 +1100552 bitmap->sb_page = read_sb_page(bitmap->mddev, bitmap->offset,
553 NULL,
554 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700555 }
NeilBrown32a76272005-06-21 17:17:14 -0700556 if (IS_ERR(bitmap->sb_page)) {
557 err = PTR_ERR(bitmap->sb_page);
558 bitmap->sb_page = NULL;
559 return err;
560 }
561
NeilBrownea03aff2006-01-06 00:20:34 -0800562 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700563
NeilBrown32a76272005-06-21 17:17:14 -0700564 chunksize = le32_to_cpu(sb->chunksize);
565 daemon_sleep = le32_to_cpu(sb->daemon_sleep);
NeilBrown4b6d2872005-09-09 16:23:47 -0700566 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown32a76272005-06-21 17:17:14 -0700567
568 /* verify that the bitmap-specific fields are valid */
569 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
570 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800571 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
572 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700573 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100574 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800575 reason = "bitmap chunksize too small";
NeilBrown32a76272005-06-21 17:17:14 -0700576 else if ((1 << ffz(~chunksize)) != chunksize)
577 reason = "bitmap chunksize not a power of 2";
NeilBrown7dd5d342006-01-06 00:20:39 -0800578 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT / HZ)
579 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700580 else if (write_behind > COUNTER_MAX)
581 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700582 if (reason) {
583 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
584 bmname(bitmap), reason);
585 goto out;
586 }
587
588 /* keep the array size field of the bitmap superblock up to date */
589 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
590
591 if (!bitmap->mddev->persistent)
592 goto success;
593
594 /*
595 * if we have a persistent array superblock, compare the
596 * bitmap's UUID and event counter to the mddev's
597 */
598 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
599 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
600 bmname(bitmap));
601 goto out;
602 }
603 events = le64_to_cpu(sb->events);
604 if (events < bitmap->mddev->events) {
605 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
606 "-- forcing full recovery\n", bmname(bitmap), events,
607 (unsigned long long) bitmap->mddev->events);
NeilBrown4f2e6392006-10-21 10:24:09 -0700608 sb->state |= cpu_to_le32(BITMAP_STALE);
NeilBrown32a76272005-06-21 17:17:14 -0700609 }
610success:
611 /* assign fields using values from superblock */
612 bitmap->chunksize = chunksize;
613 bitmap->daemon_sleep = daemon_sleep;
NeilBrown585f0dd2005-09-09 16:23:49 -0700614 bitmap->daemon_lastrun = jiffies;
NeilBrown4b6d2872005-09-09 16:23:47 -0700615 bitmap->max_write_behind = write_behind;
NeilBrown4f2e6392006-10-21 10:24:09 -0700616 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800617 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
618 bitmap->flags |= BITMAP_HOSTENDIAN;
NeilBrown32a76272005-06-21 17:17:14 -0700619 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
NeilBrown4f2e6392006-10-21 10:24:09 -0700620 if (sb->state & cpu_to_le32(BITMAP_STALE))
NeilBrown6a079972005-09-09 16:23:44 -0700621 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown32a76272005-06-21 17:17:14 -0700622 err = 0;
623out:
NeilBrownea03aff2006-01-06 00:20:34 -0800624 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700625 if (err)
626 bitmap_print_sb(bitmap);
627 return err;
628}
629
630enum bitmap_mask_op {
631 MASK_SET,
632 MASK_UNSET
633};
634
NeilBrown4ad13662007-07-17 04:06:13 -0700635/* record the state of the bitmap in the superblock. Return the old value */
636static int bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
637 enum bitmap_mask_op op)
NeilBrown32a76272005-06-21 17:17:14 -0700638{
639 bitmap_super_t *sb;
640 unsigned long flags;
NeilBrown4ad13662007-07-17 04:06:13 -0700641 int old;
NeilBrown32a76272005-06-21 17:17:14 -0700642
643 spin_lock_irqsave(&bitmap->lock, flags);
Adrian Bunk7e317652006-03-25 03:07:51 -0800644 if (!bitmap->sb_page) { /* can't set the state */
NeilBrown32a76272005-06-21 17:17:14 -0700645 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700646 return 0;
NeilBrown32a76272005-06-21 17:17:14 -0700647 }
NeilBrown32a76272005-06-21 17:17:14 -0700648 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800649 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700650 old = le32_to_cpu(sb->state) & bits;
NeilBrown32a76272005-06-21 17:17:14 -0700651 switch (op) {
NeilBrown4f2e6392006-10-21 10:24:09 -0700652 case MASK_SET: sb->state |= cpu_to_le32(bits);
NeilBrown32a76272005-06-21 17:17:14 -0700653 break;
NeilBrown4f2e6392006-10-21 10:24:09 -0700654 case MASK_UNSET: sb->state &= cpu_to_le32(~bits);
NeilBrown32a76272005-06-21 17:17:14 -0700655 break;
656 default: BUG();
657 }
NeilBrownea03aff2006-01-06 00:20:34 -0800658 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700659 return old;
NeilBrown32a76272005-06-21 17:17:14 -0700660}
661
662/*
663 * general bitmap file operations
664 */
665
666/* calculate the index of the page that contains this bit */
667static inline unsigned long file_page_index(unsigned long chunk)
668{
669 return CHUNK_BIT_OFFSET(chunk) >> PAGE_BIT_SHIFT;
670}
671
672/* calculate the (bit) offset of this bit within a page */
673static inline unsigned long file_page_offset(unsigned long chunk)
674{
675 return CHUNK_BIT_OFFSET(chunk) & (PAGE_BITS - 1);
676}
677
678/*
679 * return a pointer to the page in the filemap that contains the given bit
680 *
681 * this lookup is complicated by the fact that the bitmap sb might be exactly
682 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
683 * 0 or page 1
684 */
685static inline struct page *filemap_get_page(struct bitmap *bitmap,
686 unsigned long chunk)
687{
Paul Clements9b1d1da2006-10-03 01:15:49 -0700688 if (file_page_index(chunk) >= bitmap->file_pages) return NULL;
NeilBrown32a76272005-06-21 17:17:14 -0700689 return bitmap->filemap[file_page_index(chunk) - file_page_index(0)];
690}
691
692
693static void bitmap_file_unmap(struct bitmap *bitmap)
694{
695 struct page **map, *sb_page;
696 unsigned long *attr;
697 int pages;
698 unsigned long flags;
699
700 spin_lock_irqsave(&bitmap->lock, flags);
701 map = bitmap->filemap;
702 bitmap->filemap = NULL;
703 attr = bitmap->filemap_attr;
704 bitmap->filemap_attr = NULL;
705 pages = bitmap->file_pages;
706 bitmap->file_pages = 0;
707 sb_page = bitmap->sb_page;
708 bitmap->sb_page = NULL;
709 spin_unlock_irqrestore(&bitmap->lock, flags);
710
711 while (pages--)
712 if (map[pages]->index != 0) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700713 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700714 kfree(map);
715 kfree(attr);
716
NeilBrownd785a062006-06-26 00:27:48 -0700717 if (sb_page)
718 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700719}
720
721static void bitmap_file_put(struct bitmap *bitmap)
722{
723 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700724 unsigned long flags;
725
726 spin_lock_irqsave(&bitmap->lock, flags);
727 file = bitmap->file;
728 bitmap->file = NULL;
729 spin_unlock_irqrestore(&bitmap->lock, flags);
730
NeilBrownd785a062006-06-26 00:27:48 -0700731 if (file)
732 wait_event(bitmap->write_wait,
733 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700734 bitmap_file_unmap(bitmap);
735
NeilBrownd785a062006-06-26 00:27:48 -0700736 if (file) {
Josef Sipekc649bb92006-12-08 02:37:19 -0800737 struct inode *inode = file->f_path.dentry->d_inode;
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800738 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700739 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700740 }
NeilBrown32a76272005-06-21 17:17:14 -0700741}
742
743
744/*
745 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
746 * then it is no longer reliable, so we stop using it and we mark the file
747 * as failed in the superblock
748 */
749static void bitmap_file_kick(struct bitmap *bitmap)
750{
751 char *path, *ptr = NULL;
752
NeilBrown4ad13662007-07-17 04:06:13 -0700753 if (bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET) == 0) {
754 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700755
NeilBrown4ad13662007-07-17 04:06:13 -0700756 if (bitmap->file) {
757 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
758 if (path)
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700759 ptr = d_path(&bitmap->file->f_path, path,
760 PAGE_SIZE);
761
NeilBrown32a76272005-06-21 17:17:14 -0700762
NeilBrown4ad13662007-07-17 04:06:13 -0700763 printk(KERN_ALERT
764 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700765 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700766
NeilBrown4ad13662007-07-17 04:06:13 -0700767 kfree(path);
768 } else
769 printk(KERN_ALERT
770 "%s: disabling internal bitmap due to errors\n",
771 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700772 }
NeilBrown32a76272005-06-21 17:17:14 -0700773
774 bitmap_file_put(bitmap);
775
776 return;
777}
778
779enum bitmap_page_attr {
NeilBrowne16b68b2006-06-26 00:27:45 -0700780 BITMAP_PAGE_DIRTY = 0, // there are set bits that need to be synced
781 BITMAP_PAGE_CLEAN = 1, // there are bits that might need to be cleared
782 BITMAP_PAGE_NEEDWRITE=2, // there are cleared bits that need to be synced
NeilBrown32a76272005-06-21 17:17:14 -0700783};
784
785static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
786 enum bitmap_page_attr attr)
787{
NeilBrowne16b68b2006-06-26 00:27:45 -0700788 __set_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700789}
790
791static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
792 enum bitmap_page_attr attr)
793{
NeilBrowne16b68b2006-06-26 00:27:45 -0700794 __clear_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700795}
796
NeilBrownec7a3192006-06-26 00:27:45 -0700797static inline unsigned long test_page_attr(struct bitmap *bitmap, struct page *page,
798 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700799{
NeilBrowne16b68b2006-06-26 00:27:45 -0700800 return test_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700801}
802
803/*
804 * bitmap_file_set_bit -- called before performing a write to the md device
805 * to set (and eventually sync) a particular bit in the bitmap file
806 *
807 * we set the bit immediately, then we record the page number so that
808 * when an unplug occurs, we can flush the dirty pages out to disk
809 */
810static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
811{
812 unsigned long bit;
813 struct page *page;
814 void *kaddr;
815 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
816
NeilBrowna654b9d82005-06-21 17:17:27 -0700817 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700818 return;
819 }
820
821 page = filemap_get_page(bitmap, chunk);
Paul Clements9b1d1da2006-10-03 01:15:49 -0700822 if (!page) return;
NeilBrown32a76272005-06-21 17:17:14 -0700823 bit = file_page_offset(chunk);
824
NeilBrown32a76272005-06-21 17:17:14 -0700825 /* set the bit */
826 kaddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -0800827 if (bitmap->flags & BITMAP_HOSTENDIAN)
828 set_bit(bit, kaddr);
829 else
830 ext2_set_bit(bit, kaddr);
NeilBrown32a76272005-06-21 17:17:14 -0700831 kunmap_atomic(kaddr, KM_USER0);
832 PRINTK("set file bit %lu page %lu\n", bit, page->index);
833
834 /* record page number so it gets flushed to disk when unplug occurs */
835 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
836
837}
838
839/* this gets called when the md device is ready to unplug its underlying
840 * (slave) device queues -- before we let any writes go down, we need to
841 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700842void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700843{
NeilBrownec7a3192006-06-26 00:27:45 -0700844 unsigned long i, flags;
845 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700846 struct page *page;
847 int wait = 0;
848
849 if (!bitmap)
NeilBrown4ad13662007-07-17 04:06:13 -0700850 return;
NeilBrown32a76272005-06-21 17:17:14 -0700851
852 /* look at each page to see if there are any set bits that need to be
853 * flushed out to disk */
854 for (i = 0; i < bitmap->file_pages; i++) {
855 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -0700856 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700857 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700858 return;
NeilBrown32a76272005-06-21 17:17:14 -0700859 }
860 page = bitmap->filemap[i];
NeilBrownec7a3192006-06-26 00:27:45 -0700861 dirty = test_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
862 need_write = test_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -0700863 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
864 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrownec7a3192006-06-26 00:27:45 -0700865 if (dirty)
NeilBrown32a76272005-06-21 17:17:14 -0700866 wait = 1;
867 spin_unlock_irqrestore(&bitmap->lock, flags);
868
NeilBrownd785a062006-06-26 00:27:48 -0700869 if (dirty | need_write)
NeilBrown4ad13662007-07-17 04:06:13 -0700870 write_page(bitmap, page, 0);
NeilBrown32a76272005-06-21 17:17:14 -0700871 }
872 if (wait) { /* if any writes were performed, we need to wait on them */
NeilBrown0b79ccf2006-06-26 00:27:44 -0700873 if (bitmap->file)
NeilBrownd785a062006-06-26 00:27:48 -0700874 wait_event(bitmap->write_wait,
875 atomic_read(&bitmap->pending_writes)==0);
NeilBrown0b79ccf2006-06-26 00:27:44 -0700876 else
NeilBrowna9701a32005-11-08 21:39:34 -0800877 md_super_wait(bitmap->mddev);
NeilBrown32a76272005-06-21 17:17:14 -0700878 }
NeilBrownd785a062006-06-26 00:27:48 -0700879 if (bitmap->flags & BITMAP_WRITE_ERROR)
880 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700881}
882
NeilBrown6a079972005-09-09 16:23:44 -0700883static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700884/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
885 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
886 * memory mapping of the bitmap file
887 * Special cases:
888 * if there's no bitmap file, or if the bitmap file had been
889 * previously kicked from the array, we mark all the bits as
890 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700891 *
892 * We ignore all bits for sectors that end earlier than 'start'.
893 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700894 */
NeilBrown6a079972005-09-09 16:23:44 -0700895static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700896{
897 unsigned long i, chunks, index, oldindex, bit;
898 struct page *page = NULL, *oldpage = NULL;
899 unsigned long num_pages, bit_cnt = 0;
900 struct file *file;
NeilBrownd785a062006-06-26 00:27:48 -0700901 unsigned long bytes, offset;
NeilBrown32a76272005-06-21 17:17:14 -0700902 int outofdate;
903 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800904 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -0700905
906 chunks = bitmap->chunks;
907 file = bitmap->file;
908
NeilBrowna654b9d82005-06-21 17:17:27 -0700909 BUG_ON(!file && !bitmap->offset);
NeilBrown32a76272005-06-21 17:17:14 -0700910
Olaf Hering44456d32005-07-27 11:45:17 -0700911#ifdef INJECT_FAULTS_3
NeilBrown32a76272005-06-21 17:17:14 -0700912 outofdate = 1;
913#else
914 outofdate = bitmap->flags & BITMAP_STALE;
915#endif
916 if (outofdate)
917 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
918 "recovery\n", bmname(bitmap));
919
920 bytes = (chunks + 7) / 8;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700921
NeilBrowncdbb4cc2005-06-21 17:17:18 -0700922 num_pages = (bytes + sizeof(bitmap_super_t) + PAGE_SIZE - 1) / PAGE_SIZE;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700923
NeilBrowna654b9d82005-06-21 17:17:27 -0700924 if (file && i_size_read(file->f_mapping->host) < bytes + sizeof(bitmap_super_t)) {
NeilBrown32a76272005-06-21 17:17:14 -0700925 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
926 bmname(bitmap),
927 (unsigned long) i_size_read(file->f_mapping->host),
928 bytes + sizeof(bitmap_super_t));
NeilBrown4ad13662007-07-17 04:06:13 -0700929 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700930 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700931
932 ret = -ENOMEM;
933
NeilBrown32a76272005-06-21 17:17:14 -0700934 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700935 if (!bitmap->filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700936 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700937
NeilBrowne16b68b2006-06-26 00:27:45 -0700938 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
939 bitmap->filemap_attr = kzalloc(
Neil Brown505fa2c2007-04-11 23:28:44 -0700940 roundup( DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
NeilBrowne16b68b2006-06-26 00:27:45 -0700941 GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700942 if (!bitmap->filemap_attr)
NeilBrown4ad13662007-07-17 04:06:13 -0700943 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700944
NeilBrown32a76272005-06-21 17:17:14 -0700945 oldindex = ~0L;
946
947 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -0800948 int b;
NeilBrown32a76272005-06-21 17:17:14 -0700949 index = file_page_index(i);
950 bit = file_page_offset(i);
951 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -0700952 int count;
NeilBrown32a76272005-06-21 17:17:14 -0700953 /* unmap the old page, we're done with it */
NeilBrownd785a062006-06-26 00:27:48 -0700954 if (index == num_pages-1)
NeilBrownf49d5e62007-01-26 00:57:03 -0800955 count = bytes + sizeof(bitmap_super_t)
956 - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -0700957 else
958 count = PAGE_SIZE;
NeilBrown32a76272005-06-21 17:17:14 -0700959 if (index == 0) {
960 /*
961 * if we're here then the superblock page
962 * contains some bits (PAGE_SIZE != sizeof sb)
963 * we've already read it in, so just use it
964 */
965 page = bitmap->sb_page;
966 offset = sizeof(bitmap_super_t);
NeilBrown53845272009-01-09 08:31:05 +1100967 if (!file)
968 read_sb_page(bitmap->mddev,
969 bitmap->offset,
970 page,
971 index, count);
NeilBrowna654b9d82005-06-21 17:17:27 -0700972 } else if (file) {
NeilBrownd785a062006-06-26 00:27:48 -0700973 page = read_page(file, index, bitmap, count);
NeilBrowna654b9d82005-06-21 17:17:27 -0700974 offset = 0;
975 } else {
NeilBrowna2ed9612008-12-19 16:25:01 +1100976 page = read_sb_page(bitmap->mddev, bitmap->offset,
977 NULL,
978 index, count);
NeilBrown32a76272005-06-21 17:17:14 -0700979 offset = 0;
980 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700981 if (IS_ERR(page)) { /* read error */
982 ret = PTR_ERR(page);
NeilBrown4ad13662007-07-17 04:06:13 -0700983 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -0700984 }
985
NeilBrown32a76272005-06-21 17:17:14 -0700986 oldindex = index;
987 oldpage = page;
NeilBrown32a76272005-06-21 17:17:14 -0700988
NeilBrownb74fd282009-05-07 12:47:19 +1000989 bitmap->filemap[bitmap->file_pages++] = page;
990 bitmap->last_page_size = count;
991
NeilBrown32a76272005-06-21 17:17:14 -0700992 if (outofdate) {
993 /*
994 * if bitmap is out of date, dirty the
995 * whole page and write it out
996 */
NeilBrownea03aff2006-01-06 00:20:34 -0800997 paddr = kmap_atomic(page, KM_USER0);
998 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -0700999 PAGE_SIZE - offset);
NeilBrownea03aff2006-01-06 00:20:34 -08001000 kunmap_atomic(paddr, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -07001001 write_page(bitmap, page, 1);
1002
1003 ret = -EIO;
NeilBrownb74fd282009-05-07 12:47:19 +10001004 if (bitmap->flags & BITMAP_WRITE_ERROR)
NeilBrown4ad13662007-07-17 04:06:13 -07001005 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001006 }
NeilBrown32a76272005-06-21 17:17:14 -07001007 }
NeilBrownea03aff2006-01-06 00:20:34 -08001008 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001009 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001010 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001011 else
NeilBrownea03aff2006-01-06 00:20:34 -08001012 b = ext2_test_bit(bit, paddr);
1013 kunmap_atomic(paddr, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001014 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001015 /* if the disk bit is set, set the memory bit */
NeilBrowndb305e52009-05-07 12:49:06 +10001016 int needed = ((sector_t)(i+1) << (CHUNK_BLOCK_SHIFT(bitmap))
1017 >= start);
1018 bitmap_set_memory_bits(bitmap,
1019 (sector_t)i << CHUNK_BLOCK_SHIFT(bitmap),
1020 needed);
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
NeilBrownbe512692009-05-26 09:41:17 +10001100 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001101 for (j = 0; j < bitmap->chunks; j++) {
1102 bitmap_counter_t *bmc;
NeilBrownbe512692009-05-26 09:41:17 +10001103 if (!bitmap->filemap)
NeilBrown32a76272005-06-21 17:17:14 -07001104 /* error or shutdown */
NeilBrown32a76272005-06-21 17:17:14 -07001105 break;
NeilBrown32a76272005-06-21 17:17:14 -07001106
1107 page = filemap_get_page(bitmap, j);
NeilBrown32a76272005-06-21 17:17:14 -07001108
1109 if (page != lastpage) {
NeilBrownaa3163f2005-06-21 17:17:22 -07001110 /* skip this page unless it's marked as needing cleaning */
NeilBrownec7a3192006-06-26 00:27:45 -07001111 if (!test_page_attr(bitmap, page, BITMAP_PAGE_CLEAN)) {
1112 int need_write = test_page_attr(bitmap, page,
1113 BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001114 if (need_write)
NeilBrownaa3163f2005-06-21 17:17:22 -07001115 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001116
NeilBrownaa3163f2005-06-21 17:17:22 -07001117 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001118 if (need_write) {
NeilBrown4ad13662007-07-17 04:06:13 -07001119 write_page(bitmap, page, 0);
NeilBrown8311c292008-03-04 14:29:30 -08001120 bitmap->allclean = 0;
1121 }
NeilBrownbe512692009-05-26 09:41:17 +10001122 spin_lock_irqsave(&bitmap->lock, flags);
1123 j |= (PAGE_BITS - 1);
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 }
NeilBrowndb305e52009-05-07 12:49:06 +10001156 bmc = bitmap_get_counter(bitmap,
1157 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
1158 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001159 if (bmc) {
1160/*
1161 if (j < 100) printk("bitmap: j=%lu, *bmc = 0x%x\n", j, *bmc);
1162*/
NeilBrown8311c292008-03-04 14:29:30 -08001163 if (*bmc)
1164 bitmap->allclean = 0;
1165
NeilBrown32a76272005-06-21 17:17:14 -07001166 if (*bmc == 2) {
1167 *bmc=1; /* maybe clear the bit next time */
1168 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1169 } else if (*bmc == 1) {
1170 /* we can clear the bit */
1171 *bmc = 0;
NeilBrowndb305e52009-05-07 12:49:06 +10001172 bitmap_count_page(bitmap,
1173 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
NeilBrown32a76272005-06-21 17:17:14 -07001174 -1);
1175
1176 /* clear the bit */
NeilBrownea03aff2006-01-06 00:20:34 -08001177 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001178 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001179 clear_bit(file_page_offset(j), paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001180 else
NeilBrownea03aff2006-01-06 00:20:34 -08001181 ext2_clear_bit(file_page_offset(j), paddr);
1182 kunmap_atomic(paddr, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -07001183 }
NeilBrownbe512692009-05-26 09:41:17 +10001184 } else
1185 j |= PAGE_COUNTER_MASK;
NeilBrown32a76272005-06-21 17:17:14 -07001186 }
NeilBrownbe512692009-05-26 09:41:17 +10001187 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001188
1189 /* now sync the final page */
1190 if (lastpage != NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001191 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownec7a3192006-06-26 00:27:45 -07001192 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001193 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1194 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001195 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001196 } else {
1197 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1198 spin_unlock_irqrestore(&bitmap->lock, flags);
1199 }
NeilBrown32a76272005-06-21 17:17:14 -07001200 }
1201
NeilBrown7be3dfe2008-03-10 11:43:48 -07001202 done:
NeilBrown8311c292008-03-04 14:29:30 -08001203 if (bitmap->allclean == 0)
1204 bitmap->mddev->thread->timeout = bitmap->daemon_sleep * HZ;
NeilBrown32a76272005-06-21 17:17:14 -07001205}
1206
NeilBrown32a76272005-06-21 17:17:14 -07001207static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1208 sector_t offset, int *blocks,
1209 int create)
1210{
1211 /* If 'create', we might release the lock and reclaim it.
1212 * The lock must have been taken with interrupts enabled.
1213 * If !create, we don't release the lock.
1214 */
1215 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1216 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1217 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1218 sector_t csize;
1219
1220 if (bitmap_checkpage(bitmap, page, create) < 0) {
1221 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1222 *blocks = csize - (offset & (csize- 1));
1223 return NULL;
1224 }
1225 /* now locked ... */
1226
1227 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1228 /* should we use the first or second counter field
1229 * of the hijacked pointer? */
1230 int hi = (pageoff > PAGE_COUNTER_MASK);
1231 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1232 PAGE_COUNTER_SHIFT - 1);
1233 *blocks = csize - (offset & (csize- 1));
1234 return &((bitmap_counter_t *)
1235 &bitmap->bp[page].map)[hi];
1236 } else { /* page is allocated */
1237 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1238 *blocks = csize - (offset & (csize- 1));
1239 return (bitmap_counter_t *)
1240 &(bitmap->bp[page].map[pageoff]);
1241 }
1242}
1243
NeilBrown4b6d2872005-09-09 16:23:47 -07001244int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001245{
1246 if (!bitmap) return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001247
1248 if (behind) {
1249 atomic_inc(&bitmap->behind_writes);
1250 PRINTK(KERN_DEBUG "inc write-behind count %d/%d\n",
1251 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1252 }
1253
NeilBrown32a76272005-06-21 17:17:14 -07001254 while (sectors) {
1255 int blocks;
1256 bitmap_counter_t *bmc;
1257
1258 spin_lock_irq(&bitmap->lock);
1259 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1260 if (!bmc) {
1261 spin_unlock_irq(&bitmap->lock);
1262 return 0;
1263 }
1264
Neil Brownda6e1a32007-02-08 14:20:37 -08001265 if (unlikely((*bmc & COUNTER_MAX) == COUNTER_MAX)) {
1266 DEFINE_WAIT(__wait);
1267 /* note that it is safe to do the prepare_to_wait
1268 * after the test as long as we do it before dropping
1269 * the spinlock.
1270 */
1271 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1272 TASK_UNINTERRUPTIBLE);
1273 spin_unlock_irq(&bitmap->lock);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05001274 blk_unplug(bitmap->mddev->queue);
Neil Brownda6e1a32007-02-08 14:20:37 -08001275 schedule();
1276 finish_wait(&bitmap->overflow_wait, &__wait);
1277 continue;
1278 }
1279
NeilBrown32a76272005-06-21 17:17:14 -07001280 switch(*bmc) {
1281 case 0:
1282 bitmap_file_set_bit(bitmap, offset);
1283 bitmap_count_page(bitmap,offset, 1);
Jens Axboe93769f52008-08-01 20:32:31 +02001284 blk_plug_device_unlocked(bitmap->mddev->queue);
NeilBrown32a76272005-06-21 17:17:14 -07001285 /* fall through */
1286 case 1:
1287 *bmc = 2;
1288 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001289
NeilBrown32a76272005-06-21 17:17:14 -07001290 (*bmc)++;
1291
1292 spin_unlock_irq(&bitmap->lock);
1293
1294 offset += blocks;
1295 if (sectors > blocks)
1296 sectors -= blocks;
1297 else sectors = 0;
1298 }
NeilBrown8311c292008-03-04 14:29:30 -08001299 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001300 return 0;
1301}
1302
1303void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001304 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001305{
1306 if (!bitmap) return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001307 if (behind) {
1308 atomic_dec(&bitmap->behind_writes);
1309 PRINTK(KERN_DEBUG "dec write-behind count %d/%d\n",
1310 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1311 }
NeilBrownd0a4bb42009-03-31 14:27:02 +11001312 if (bitmap->mddev->degraded)
1313 /* Never clear bits or update events_cleared when degraded */
1314 success = 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001315
NeilBrown32a76272005-06-21 17:17:14 -07001316 while (sectors) {
1317 int blocks;
1318 unsigned long flags;
1319 bitmap_counter_t *bmc;
1320
1321 spin_lock_irqsave(&bitmap->lock, flags);
1322 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1323 if (!bmc) {
1324 spin_unlock_irqrestore(&bitmap->lock, flags);
1325 return;
1326 }
1327
Neil Browna0da84f2008-06-28 08:31:22 +10001328 if (success &&
1329 bitmap->events_cleared < bitmap->mddev->events) {
1330 bitmap->events_cleared = bitmap->mddev->events;
1331 bitmap->need_sync = 1;
1332 }
1333
NeilBrown32a76272005-06-21 17:17:14 -07001334 if (!success && ! (*bmc & NEEDED_MASK))
1335 *bmc |= NEEDED_MASK;
1336
Neil Brownda6e1a32007-02-08 14:20:37 -08001337 if ((*bmc & COUNTER_MAX) == COUNTER_MAX)
1338 wake_up(&bitmap->overflow_wait);
1339
NeilBrown32a76272005-06-21 17:17:14 -07001340 (*bmc)--;
1341 if (*bmc <= 2) {
1342 set_page_attr(bitmap,
1343 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1344 BITMAP_PAGE_CLEAN);
1345 }
1346 spin_unlock_irqrestore(&bitmap->lock, flags);
1347 offset += blocks;
1348 if (sectors > blocks)
1349 sectors -= blocks;
1350 else sectors = 0;
1351 }
1352}
1353
NeilBrown1187cf02009-03-31 14:27:02 +11001354static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1355 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001356{
1357 bitmap_counter_t *bmc;
1358 int rv;
1359 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1360 *blocks = 1024;
1361 return 1; /* always resync if no bitmap */
1362 }
1363 spin_lock_irq(&bitmap->lock);
1364 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1365 rv = 0;
1366 if (bmc) {
1367 /* locked */
1368 if (RESYNC(*bmc))
1369 rv = 1;
1370 else if (NEEDED(*bmc)) {
1371 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001372 if (!degraded) { /* don't set/clear bits if degraded */
1373 *bmc |= RESYNC_MASK;
1374 *bmc &= ~NEEDED_MASK;
1375 }
NeilBrown32a76272005-06-21 17:17:14 -07001376 }
1377 }
1378 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001379 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001380 return rv;
1381}
1382
NeilBrown1187cf02009-03-31 14:27:02 +11001383int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1384 int degraded)
1385{
1386 /* bitmap_start_sync must always report on multiples of whole
1387 * pages, otherwise resync (which is very PAGE_SIZE based) will
1388 * get confused.
1389 * So call __bitmap_start_sync repeatedly (if needed) until
1390 * At least PAGE_SIZE>>9 blocks are covered.
1391 * Return the 'or' of the result.
1392 */
1393 int rv = 0;
1394 int blocks1;
1395
1396 *blocks = 0;
1397 while (*blocks < (PAGE_SIZE>>9)) {
1398 rv |= __bitmap_start_sync(bitmap, offset,
1399 &blocks1, degraded);
1400 offset += blocks1;
1401 *blocks += blocks1;
1402 }
1403 return rv;
1404}
1405
NeilBrown32a76272005-06-21 17:17:14 -07001406void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, int *blocks, int aborted)
1407{
1408 bitmap_counter_t *bmc;
1409 unsigned long flags;
1410/*
1411 if (offset == 0) printk("bitmap_end_sync 0 (%d)\n", aborted);
1412*/ if (bitmap == NULL) {
1413 *blocks = 1024;
1414 return;
1415 }
1416 spin_lock_irqsave(&bitmap->lock, flags);
1417 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1418 if (bmc == NULL)
1419 goto unlock;
1420 /* locked */
1421/*
1422 if (offset == 0) printk("bitmap_end sync found 0x%x, blocks %d\n", *bmc, *blocks);
1423*/
1424 if (RESYNC(*bmc)) {
1425 *bmc &= ~RESYNC_MASK;
1426
1427 if (!NEEDED(*bmc) && aborted)
1428 *bmc |= NEEDED_MASK;
1429 else {
1430 if (*bmc <= 2) {
1431 set_page_attr(bitmap,
1432 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1433 BITMAP_PAGE_CLEAN);
1434 }
1435 }
1436 }
1437 unlock:
1438 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001439 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001440}
1441
1442void bitmap_close_sync(struct bitmap *bitmap)
1443{
1444 /* Sync has finished, and any bitmap chunks that weren't synced
1445 * properly have been aborted. It remains to us to clear the
1446 * RESYNC bit wherever it is still on
1447 */
1448 sector_t sector = 0;
1449 int blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001450 if (!bitmap)
1451 return;
NeilBrown32a76272005-06-21 17:17:14 -07001452 while (sector < bitmap->mddev->resync_max_sectors) {
1453 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001454 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001455 }
1456}
1457
NeilBrownb47490c2008-02-06 01:39:50 -08001458void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1459{
1460 sector_t s = 0;
1461 int blocks;
1462
1463 if (!bitmap)
1464 return;
1465 if (sector == 0) {
1466 bitmap->last_end_sync = jiffies;
1467 return;
1468 }
1469 if (time_before(jiffies, (bitmap->last_end_sync
1470 + bitmap->daemon_sleep * HZ)))
1471 return;
1472 wait_event(bitmap->mddev->recovery_wait,
1473 atomic_read(&bitmap->mddev->recovery_active) == 0);
1474
NeilBrown97e4f422009-03-31 14:33:13 +11001475 bitmap->mddev->curr_resync_completed = bitmap->mddev->curr_resync;
1476 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrownb47490c2008-02-06 01:39:50 -08001477 sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
1478 s = 0;
1479 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1480 bitmap_end_sync(bitmap, s, &blocks, 0);
1481 s += blocks;
1482 }
1483 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001484 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001485}
1486
NeilBrown6a079972005-09-09 16:23:44 -07001487static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001488{
1489 /* For each chunk covered by any of these sectors, set the
NeilBrown193f1c92005-08-04 12:53:33 -07001490 * counter to 1 and set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001491 * be 0 at this point
1492 */
NeilBrown193f1c92005-08-04 12:53:33 -07001493
1494 int secs;
1495 bitmap_counter_t *bmc;
1496 spin_lock_irq(&bitmap->lock);
1497 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1498 if (!bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001499 spin_unlock_irq(&bitmap->lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001500 return;
NeilBrown32a76272005-06-21 17:17:14 -07001501 }
NeilBrown193f1c92005-08-04 12:53:33 -07001502 if (! *bmc) {
1503 struct page *page;
NeilBrown6a079972005-09-09 16:23:44 -07001504 *bmc = 1 | (needed?NEEDED_MASK:0);
NeilBrown193f1c92005-08-04 12:53:33 -07001505 bitmap_count_page(bitmap, offset, 1);
1506 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
1507 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1508 }
1509 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001510 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001511}
1512
Paul Clements9b1d1da2006-10-03 01:15:49 -07001513/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1514void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1515{
1516 unsigned long chunk;
1517
1518 for (chunk = s; chunk <= e; chunk++) {
NeilBrowndb305e52009-05-07 12:49:06 +10001519 sector_t sec = (sector_t)chunk << CHUNK_BLOCK_SHIFT(bitmap);
Paul Clements9b1d1da2006-10-03 01:15:49 -07001520 bitmap_set_memory_bits(bitmap, sec, 1);
1521 bitmap_file_set_bit(bitmap, sec);
1522 }
1523}
1524
NeilBrown32a76272005-06-21 17:17:14 -07001525/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001526 * flush out any pending updates
1527 */
1528void bitmap_flush(mddev_t *mddev)
1529{
1530 struct bitmap *bitmap = mddev->bitmap;
1531 int sleep;
1532
1533 if (!bitmap) /* there was no bitmap */
1534 return;
1535
1536 /* run the daemon_work three time to ensure everything is flushed
1537 * that can be
1538 */
1539 sleep = bitmap->daemon_sleep;
1540 bitmap->daemon_sleep = 0;
1541 bitmap_daemon_work(bitmap);
1542 bitmap_daemon_work(bitmap);
1543 bitmap_daemon_work(bitmap);
1544 bitmap->daemon_sleep = sleep;
1545 bitmap_update_sb(bitmap);
1546}
1547
1548/*
NeilBrown32a76272005-06-21 17:17:14 -07001549 * free memory that was allocated
1550 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001551static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001552{
1553 unsigned long k, pages;
1554 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001555
1556 if (!bitmap) /* there was no bitmap */
1557 return;
1558
NeilBrown32a76272005-06-21 17:17:14 -07001559 /* release the bitmap file and kill the daemon */
1560 bitmap_file_put(bitmap);
1561
1562 bp = bitmap->bp;
1563 pages = bitmap->pages;
1564
1565 /* free all allocated memory */
1566
NeilBrown32a76272005-06-21 17:17:14 -07001567 if (bp) /* deallocate the page memory */
1568 for (k = 0; k < pages; k++)
1569 if (bp[k].map && !bp[k].hijacked)
1570 kfree(bp[k].map);
1571 kfree(bp);
1572 kfree(bitmap);
1573}
NeilBrown3178b0d2005-09-09 16:23:50 -07001574void bitmap_destroy(mddev_t *mddev)
1575{
1576 struct bitmap *bitmap = mddev->bitmap;
1577
1578 if (!bitmap) /* there was no bitmap */
1579 return;
1580
1581 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrownb15c2e52006-01-06 00:20:16 -08001582 if (mddev->thread)
1583 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001584
1585 bitmap_free(bitmap);
1586}
NeilBrown32a76272005-06-21 17:17:14 -07001587
1588/*
1589 * initialize the bitmap structure
1590 * if this returns an error, bitmap_destroy must be called to do clean up
1591 */
1592int bitmap_create(mddev_t *mddev)
1593{
1594 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001595 sector_t blocks = mddev->resync_max_sectors;
NeilBrown32a76272005-06-21 17:17:14 -07001596 unsigned long chunks;
1597 unsigned long pages;
1598 struct file *file = mddev->bitmap_file;
1599 int err;
NeilBrown6a079972005-09-09 16:23:44 -07001600 sector_t start;
NeilBrown32a76272005-06-21 17:17:14 -07001601
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001602 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001603
NeilBrowna654b9d82005-06-21 17:17:27 -07001604 if (!file && !mddev->bitmap_offset) /* bitmap disabled, nothing to do */
NeilBrown32a76272005-06-21 17:17:14 -07001605 return 0;
1606
NeilBrowna654b9d82005-06-21 17:17:27 -07001607 BUG_ON(file && mddev->bitmap_offset);
1608
NeilBrown9ffae0c2006-01-06 00:20:32 -08001609 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001610 if (!bitmap)
1611 return -ENOMEM;
1612
NeilBrown32a76272005-06-21 17:17:14 -07001613 spin_lock_init(&bitmap->lock);
NeilBrownce25c312006-06-26 00:27:49 -07001614 atomic_set(&bitmap->pending_writes, 0);
1615 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001616 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001617
NeilBrown32a76272005-06-21 17:17:14 -07001618 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001619
NeilBrown32a76272005-06-21 17:17:14 -07001620 bitmap->file = file;
NeilBrowna654b9d82005-06-21 17:17:27 -07001621 bitmap->offset = mddev->bitmap_offset;
NeilBrownce25c312006-06-26 00:27:49 -07001622 if (file) {
1623 get_file(file);
Mark Fashehef51c972007-05-08 00:27:10 -07001624 do_sync_mapping_range(file->f_mapping, 0, LLONG_MAX,
1625 SYNC_FILE_RANGE_WAIT_BEFORE |
1626 SYNC_FILE_RANGE_WRITE |
1627 SYNC_FILE_RANGE_WAIT_AFTER);
NeilBrownce25c312006-06-26 00:27:49 -07001628 }
NeilBrown32a76272005-06-21 17:17:14 -07001629 /* read superblock from bitmap file (this sets bitmap->chunksize) */
1630 err = bitmap_read_sb(bitmap);
1631 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001632 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001633
Paul Clementsa638b2d2006-10-03 01:16:01 -07001634 bitmap->chunkshift = ffz(~bitmap->chunksize);
NeilBrown32a76272005-06-21 17:17:14 -07001635
1636 /* now that chunksize and chunkshift are set, we can use these macros */
NeilBrown1f593902009-04-20 11:50:24 +10001637 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) >>
1638 CHUNK_BLOCK_SHIFT(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -07001639 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
1640
1641 BUG_ON(!pages);
1642
1643 bitmap->chunks = chunks;
1644 bitmap->pages = pages;
1645 bitmap->missing_pages = pages;
1646 bitmap->counter_bits = COUNTER_BITS;
1647
1648 bitmap->syncchunk = ~0UL;
1649
Olaf Hering44456d32005-07-27 11:45:17 -07001650#ifdef INJECT_FATAL_FAULT_1
NeilBrown32a76272005-06-21 17:17:14 -07001651 bitmap->bp = NULL;
1652#else
NeilBrown9ffae0c2006-01-06 00:20:32 -08001653 bitmap->bp = kzalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001654#endif
NeilBrown3178b0d2005-09-09 16:23:50 -07001655 err = -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -07001656 if (!bitmap->bp)
NeilBrown3178b0d2005-09-09 16:23:50 -07001657 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001658
NeilBrown32a76272005-06-21 17:17:14 -07001659 /* now that we have some pages available, initialize the in-memory
1660 * bitmap from the on-disk bitmap */
NeilBrown6a079972005-09-09 16:23:44 -07001661 start = 0;
1662 if (mddev->degraded == 0
1663 || bitmap->events_cleared == mddev->events)
1664 /* no need to keep dirty bits to optimise a re-add of a missing device */
1665 start = mddev->recovery_cp;
1666 err = bitmap_init_from_disk(bitmap, start);
NeilBrown193f1c92005-08-04 12:53:33 -07001667
NeilBrown32a76272005-06-21 17:17:14 -07001668 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001669 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001670
1671 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1672 pages, bmname(bitmap));
1673
NeilBrown3178b0d2005-09-09 16:23:50 -07001674 mddev->bitmap = bitmap;
1675
NeilBrownb15c2e52006-01-06 00:20:16 -08001676 mddev->thread->timeout = bitmap->daemon_sleep * HZ;
1677
NeilBrown4ad13662007-07-17 04:06:13 -07001678 bitmap_update_sb(bitmap);
1679
1680 return (bitmap->flags & BITMAP_WRITE_ERROR) ? -EIO : 0;
NeilBrown3178b0d2005-09-09 16:23:50 -07001681
1682 error:
1683 bitmap_free(bitmap);
1684 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001685}
1686
1687/* the bitmap API -- for raid personalities */
1688EXPORT_SYMBOL(bitmap_startwrite);
1689EXPORT_SYMBOL(bitmap_endwrite);
1690EXPORT_SYMBOL(bitmap_start_sync);
1691EXPORT_SYMBOL(bitmap_end_sync);
1692EXPORT_SYMBOL(bitmap_unplug);
1693EXPORT_SYMBOL(bitmap_close_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001694EXPORT_SYMBOL(bitmap_cond_end_sync);