blob: 26ac8aad0b1993dab39cf91fc692f5dca534cdb5 [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)
NeilBrownee305ac2009-09-23 18:06:44 +1000111__releases(bitmap->lock)
112__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -0700113{
114 unsigned char *mappage;
115
116 if (page >= bitmap->pages) {
NeilBrown1187cf02009-03-31 14:27:02 +1100117 /* This can happen if bitmap_start_sync goes beyond
118 * End-of-device while looking for a whole page.
119 * It is harmless.
120 */
NeilBrown32a76272005-06-21 17:17:14 -0700121 return -EINVAL;
122 }
123
124
125 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
126 return 0;
127
128 if (bitmap->bp[page].map) /* page is already allocated, just return */
129 return 0;
130
131 if (!create)
132 return -ENOENT;
133
134 spin_unlock_irq(&bitmap->lock);
135
136 /* this page has not been allocated yet */
137
138 if ((mappage = bitmap_alloc_page(bitmap)) == NULL) {
139 PRINTK("%s: bitmap map page allocation failed, hijacking\n",
140 bmname(bitmap));
141 /* failed - set the hijacked flag so that we can use the
142 * pointer as a counter */
143 spin_lock_irq(&bitmap->lock);
144 if (!bitmap->bp[page].map)
145 bitmap->bp[page].hijacked = 1;
146 goto out;
147 }
148
149 /* got a page */
150
151 spin_lock_irq(&bitmap->lock);
152
153 /* recheck the page */
154
155 if (bitmap->bp[page].map || bitmap->bp[page].hijacked) {
156 /* somebody beat us to getting the page */
157 bitmap_free_page(bitmap, mappage);
158 return 0;
159 }
160
161 /* no page was in place and we have one, so install it */
162
163 memset(mappage, 0, PAGE_SIZE);
164 bitmap->bp[page].map = mappage;
165 bitmap->missing_pages--;
166out:
167 return 0;
168}
169
170
171/* if page is completely empty, put it back on the free list, or dealloc it */
172/* if page was hijacked, unmark the flag so it might get alloced next time */
173/* Note: lock should be held when calling this */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800174static void bitmap_checkfree(struct bitmap *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700175{
176 char *ptr;
177
178 if (bitmap->bp[page].count) /* page is still busy */
179 return;
180
181 /* page is no longer in use, it can be released */
182
183 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
184 bitmap->bp[page].hijacked = 0;
185 bitmap->bp[page].map = NULL;
186 return;
187 }
188
189 /* normal case, free the page */
190
191#if 0
192/* actually ... let's not. We will probably need the page again exactly when
193 * memory is tight and we are flusing to disk
194 */
195 return;
196#else
197 ptr = bitmap->bp[page].map;
198 bitmap->bp[page].map = NULL;
199 bitmap->missing_pages++;
200 bitmap_free_page(bitmap, ptr);
201 return;
202#endif
203}
204
205
206/*
207 * bitmap file handling - read and write the bitmap file and its superblock
208 */
209
NeilBrown32a76272005-06-21 17:17:14 -0700210/*
211 * basic page I/O operations
212 */
213
NeilBrowna654b9d82005-06-21 17:17:27 -0700214/* IO operations when bitmap is stored near all superblocks */
NeilBrownf6af9492009-12-14 12:49:54 +1100215static struct page *read_sb_page(mddev_t *mddev, loff_t offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100216 struct page *page,
217 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700218{
219 /* choose a good rdev and read the page from there */
220
221 mdk_rdev_t *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700222 sector_t target;
223
224 if (!page)
NeilBrowna2ed9612008-12-19 16:25:01 +1100225 page = alloc_page(GFP_KERNEL);
226 if (!page)
NeilBrowna654b9d82005-06-21 17:17:27 -0700227 return ERR_PTR(-ENOMEM);
NeilBrowna654b9d82005-06-21 17:17:27 -0700228
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100229 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800230 if (! test_bit(In_sync, &rdev->flags)
231 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700232 continue;
233
Andre Noll0f420352008-07-11 22:02:23 +1000234 target = rdev->sb_start + offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700235
NeilBrowna2ed9612008-12-19 16:25:01 +1100236 if (sync_page_io(rdev->bdev, target,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400237 roundup(size, bdev_logical_block_size(rdev->bdev)),
NeilBrowna2ed9612008-12-19 16:25:01 +1100238 page, READ)) {
NeilBrownab904d62005-09-09 16:23:52 -0700239 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700240 attach_page_buffers(page, NULL); /* so that free_buffer will
241 * quietly no-op */
NeilBrownab904d62005-09-09 16:23:52 -0700242 return page;
243 }
244 }
245 return ERR_PTR(-EIO);
NeilBrowna654b9d82005-06-21 17:17:27 -0700246
NeilBrowna654b9d82005-06-21 17:17:27 -0700247}
248
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000249static mdk_rdev_t *next_active_rdev(mdk_rdev_t *rdev, mddev_t *mddev)
250{
251 /* Iterate the disks of an mddev, using rcu to protect access to the
252 * linked list, and raising the refcount of devices we return to ensure
253 * they don't disappear while in use.
254 * As devices are only added or removed when raid_disk is < 0 and
255 * nr_pending is 0 and In_sync is clear, the entries we return will
256 * still be in the same position on the list when we re-enter
257 * list_for_each_continue_rcu.
258 */
259 struct list_head *pos;
260 rcu_read_lock();
261 if (rdev == NULL)
262 /* start at the beginning */
263 pos = &mddev->disks;
264 else {
265 /* release the previous rdev and start from there. */
266 rdev_dec_pending(rdev, mddev);
267 pos = &rdev->same_set;
268 }
269 list_for_each_continue_rcu(pos, &mddev->disks) {
270 rdev = list_entry(pos, mdk_rdev_t, same_set);
271 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000272 !test_bit(Faulty, &rdev->flags)) {
273 /* this is a usable devices */
274 atomic_inc(&rdev->nr_pending);
275 rcu_read_unlock();
276 return rdev;
277 }
278 }
279 rcu_read_unlock();
280 return NULL;
281}
282
NeilBrownab6085c2007-05-23 13:58:10 -0700283static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700284{
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000285 mdk_rdev_t *rdev = NULL;
NeilBrownab6085c2007-05-23 13:58:10 -0700286 mddev_t *mddev = bitmap->mddev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700287
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000288 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownab6085c2007-05-23 13:58:10 -0700289 int size = PAGE_SIZE;
NeilBrownf6af9492009-12-14 12:49:54 +1100290 loff_t offset = mddev->bitmap_info.offset;
NeilBrownab6085c2007-05-23 13:58:10 -0700291 if (page->index == bitmap->file_pages-1)
292 size = roundup(bitmap->last_page_size,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400293 bdev_logical_block_size(rdev->bdev));
NeilBrownf0d76d72007-07-17 04:06:12 -0700294 /* Just make sure we aren't corrupting data or
295 * metadata
296 */
NeilBrownf6af9492009-12-14 12:49:54 +1100297 if (mddev->external) {
298 /* Bitmap could be anywhere. */
299 if (rdev->sb_start + offset + (page->index *(PAGE_SIZE/512)) >
300 rdev->data_offset &&
301 rdev->sb_start + offset <
302 rdev->data_offset + mddev->dev_sectors +
303 (PAGE_SIZE/512))
304 goto bad_alignment;
305 } else if (offset < 0) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700306 /* DATA BITMAP METADATA */
NeilBrown42a04b52009-12-14 12:49:53 +1100307 if (offset
NeilBrown85bfb4d2007-10-22 20:45:11 -0700308 + (long)(page->index * (PAGE_SIZE/512))
NeilBrownf0d76d72007-07-17 04:06:12 -0700309 + size/512 > 0)
310 /* bitmap runs in to metadata */
NeilBrown4b809912008-07-21 17:05:25 +1000311 goto bad_alignment;
Andre Noll58c0fed2009-03-31 14:33:13 +1100312 if (rdev->data_offset + mddev->dev_sectors
NeilBrown42a04b52009-12-14 12:49:53 +1100313 > rdev->sb_start + offset)
NeilBrownf0d76d72007-07-17 04:06:12 -0700314 /* data runs in to bitmap */
NeilBrown4b809912008-07-21 17:05:25 +1000315 goto bad_alignment;
Andre Noll0f420352008-07-11 22:02:23 +1000316 } else if (rdev->sb_start < rdev->data_offset) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700317 /* METADATA BITMAP DATA */
Andre Noll0f420352008-07-11 22:02:23 +1000318 if (rdev->sb_start
NeilBrown42a04b52009-12-14 12:49:53 +1100319 + offset
NeilBrownf0d76d72007-07-17 04:06:12 -0700320 + page->index*(PAGE_SIZE/512) + size/512
321 > rdev->data_offset)
322 /* bitmap runs in to data */
NeilBrown4b809912008-07-21 17:05:25 +1000323 goto bad_alignment;
NeilBrownf0d76d72007-07-17 04:06:12 -0700324 } else {
325 /* DATA METADATA BITMAP - no problems */
326 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700327 md_super_write(mddev, rdev,
NeilBrown42a04b52009-12-14 12:49:53 +1100328 rdev->sb_start + offset
NeilBrowna654b9d82005-06-21 17:17:27 -0700329 + page->index * (PAGE_SIZE/512),
NeilBrownab6085c2007-05-23 13:58:10 -0700330 size,
NeilBrowna654b9d82005-06-21 17:17:27 -0700331 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000332 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700333
334 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800335 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700336 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000337
338 bad_alignment:
NeilBrown4b809912008-07-21 17:05:25 +1000339 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700340}
341
NeilBrown4ad13662007-07-17 04:06:13 -0700342static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700343/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700344 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700345 */
NeilBrown4ad13662007-07-17 04:06:13 -0700346static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700347{
NeilBrownd785a062006-06-26 00:27:48 -0700348 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700349
NeilBrownf0d76d72007-07-17 04:06:12 -0700350 if (bitmap->file == NULL) {
351 switch (write_sb_page(bitmap, page, wait)) {
352 case -EINVAL:
353 bitmap->flags |= BITMAP_WRITE_ERROR;
NeilBrownf0d76d72007-07-17 04:06:12 -0700354 }
NeilBrown4ad13662007-07-17 04:06:13 -0700355 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700356
NeilBrown4ad13662007-07-17 04:06:13 -0700357 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800358
NeilBrown4ad13662007-07-17 04:06:13 -0700359 while (bh && bh->b_blocknr) {
360 atomic_inc(&bitmap->pending_writes);
361 set_buffer_locked(bh);
362 set_buffer_mapped(bh);
363 submit_bh(WRITE, bh);
364 bh = bh->b_this_page;
365 }
NeilBrown32a76272005-06-21 17:17:14 -0700366
NeilBrown4ad13662007-07-17 04:06:13 -0700367 if (wait) {
368 wait_event(bitmap->write_wait,
369 atomic_read(&bitmap->pending_writes)==0);
370 }
NeilBrown32a76272005-06-21 17:17:14 -0700371 }
NeilBrown4ad13662007-07-17 04:06:13 -0700372 if (bitmap->flags & BITMAP_WRITE_ERROR)
373 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700374}
375
NeilBrownd785a062006-06-26 00:27:48 -0700376static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700377{
NeilBrownd785a062006-06-26 00:27:48 -0700378 struct bitmap *bitmap = bh->b_private;
379 unsigned long flags;
380
381 if (!uptodate) {
382 spin_lock_irqsave(&bitmap->lock, flags);
383 bitmap->flags |= BITMAP_WRITE_ERROR;
384 spin_unlock_irqrestore(&bitmap->lock, flags);
385 }
386 if (atomic_dec_and_test(&bitmap->pending_writes))
387 wake_up(&bitmap->write_wait);
388}
389
390/* copied from buffer.c */
391static void
392__clear_page_buffers(struct page *page)
393{
394 ClearPagePrivate(page);
395 set_page_private(page, 0);
396 page_cache_release(page);
397}
398static void free_buffers(struct page *page)
399{
400 struct buffer_head *bh = page_buffers(page);
401
402 while (bh) {
403 struct buffer_head *next = bh->b_this_page;
404 free_buffer_head(bh);
405 bh = next;
406 }
407 __clear_page_buffers(page);
408 put_page(page);
409}
410
411/* read a page from a file.
412 * We both read the page, and attach buffers to the page to record the
413 * address of each block (using bmap). These addresses will be used
414 * to write the block later, completely bypassing the filesystem.
415 * This usage is similar to how swap files are handled, and allows us
416 * to write to a file with no concerns of memory allocation failing.
417 */
418static struct page *read_page(struct file *file, unsigned long index,
419 struct bitmap *bitmap,
420 unsigned long count)
421{
NeilBrown32a76272005-06-21 17:17:14 -0700422 struct page *page = NULL;
Josef Sipekc649bb92006-12-08 02:37:19 -0800423 struct inode *inode = file->f_path.dentry->d_inode;
NeilBrownd785a062006-06-26 00:27:48 -0700424 struct buffer_head *bh;
425 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700426
NeilBrown2d1f3b52006-01-06 00:20:31 -0800427 PRINTK("read bitmap file (%dB @ %Lu)\n", (int)PAGE_SIZE,
428 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700429
NeilBrownd785a062006-06-26 00:27:48 -0700430 page = alloc_page(GFP_KERNEL);
431 if (!page)
432 page = ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -0700433 if (IS_ERR(page))
434 goto out;
NeilBrownd785a062006-06-26 00:27:48 -0700435
NeilBrownd785a062006-06-26 00:27:48 -0700436 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
437 if (!bh) {
438 put_page(page);
439 page = ERR_PTR(-ENOMEM);
440 goto out;
441 }
442 attach_page_buffers(page, bh);
443 block = index << (PAGE_SHIFT - inode->i_blkbits);
444 while (bh) {
445 if (count == 0)
446 bh->b_blocknr = 0;
447 else {
448 bh->b_blocknr = bmap(inode, block);
449 if (bh->b_blocknr == 0) {
450 /* Cannot use this file! */
451 free_buffers(page);
452 page = ERR_PTR(-EINVAL);
453 goto out;
454 }
455 bh->b_bdev = inode->i_sb->s_bdev;
456 if (count < (1<<inode->i_blkbits))
457 count = 0;
458 else
459 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700460
NeilBrownd785a062006-06-26 00:27:48 -0700461 bh->b_end_io = end_bitmap_write;
462 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700463 atomic_inc(&bitmap->pending_writes);
464 set_buffer_locked(bh);
465 set_buffer_mapped(bh);
466 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700467 }
468 block++;
469 bh = bh->b_this_page;
470 }
NeilBrownd785a062006-06-26 00:27:48 -0700471 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700472
473 wait_event(bitmap->write_wait,
474 atomic_read(&bitmap->pending_writes)==0);
475 if (bitmap->flags & BITMAP_WRITE_ERROR) {
476 free_buffers(page);
477 page = ERR_PTR(-EIO);
478 }
NeilBrown32a76272005-06-21 17:17:14 -0700479out:
480 if (IS_ERR(page))
481 printk(KERN_ALERT "md: bitmap read error: (%dB @ %Lu): %ld\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800482 (int)PAGE_SIZE,
483 (unsigned long long)index << PAGE_SHIFT,
NeilBrown32a76272005-06-21 17:17:14 -0700484 PTR_ERR(page));
485 return page;
486}
487
488/*
489 * bitmap file superblock operations
490 */
491
492/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700493void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700494{
495 bitmap_super_t *sb;
496 unsigned long flags;
497
498 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700499 return;
NeilBrownece5cff2009-12-14 12:49:56 +1100500 if (bitmap->mddev->bitmap_info.external)
501 return;
NeilBrown32a76272005-06-21 17:17:14 -0700502 spin_lock_irqsave(&bitmap->lock, flags);
503 if (!bitmap->sb_page) { /* no superblock */
504 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700505 return;
NeilBrown32a76272005-06-21 17:17:14 -0700506 }
NeilBrown32a76272005-06-21 17:17:14 -0700507 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800508 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700509 sb->events = cpu_to_le64(bitmap->mddev->events);
Neil Browna0da84f2008-06-28 08:31:22 +1000510 if (bitmap->mddev->events < bitmap->events_cleared) {
511 /* rocking back to read-only */
512 bitmap->events_cleared = bitmap->mddev->events;
513 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
514 }
NeilBrown43a70502009-12-14 12:49:55 +1100515 /* Just in case these have been changed via sysfs: */
516 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
517 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownea03aff2006-01-06 00:20:34 -0800518 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700519 write_page(bitmap, bitmap->sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700520}
521
522/* print out the bitmap file superblock */
523void bitmap_print_sb(struct bitmap *bitmap)
524{
525 bitmap_super_t *sb;
526
527 if (!bitmap || !bitmap->sb_page)
528 return;
NeilBrownea03aff2006-01-06 00:20:34 -0800529 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700530 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700531 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
532 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
533 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700534 *(__u32 *)(sb->uuid+0),
535 *(__u32 *)(sb->uuid+4),
536 *(__u32 *)(sb->uuid+8),
537 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700538 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700539 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700540 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700541 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700542 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
543 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
544 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
545 printk(KERN_DEBUG " sync size: %llu KB\n",
546 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700547 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
NeilBrownea03aff2006-01-06 00:20:34 -0800548 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700549}
550
551/* read the superblock from the bitmap file and initialize some bitmap fields */
552static int bitmap_read_sb(struct bitmap *bitmap)
553{
554 char *reason = NULL;
555 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700556 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700557 unsigned long long events;
558 int err = -EINVAL;
559
560 /* page 0 is the superblock, read it... */
NeilBrownf49d5e62007-01-26 00:57:03 -0800561 if (bitmap->file) {
562 loff_t isize = i_size_read(bitmap->file->f_mapping->host);
563 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
564
565 bitmap->sb_page = read_page(bitmap->file, 0, bitmap, bytes);
566 } else {
NeilBrown42a04b52009-12-14 12:49:53 +1100567 bitmap->sb_page = read_sb_page(bitmap->mddev,
568 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100569 NULL,
570 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700571 }
NeilBrown32a76272005-06-21 17:17:14 -0700572 if (IS_ERR(bitmap->sb_page)) {
573 err = PTR_ERR(bitmap->sb_page);
574 bitmap->sb_page = NULL;
575 return err;
576 }
577
NeilBrownea03aff2006-01-06 00:20:34 -0800578 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700579
NeilBrown32a76272005-06-21 17:17:14 -0700580 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100581 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700582 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown32a76272005-06-21 17:17:14 -0700583
584 /* verify that the bitmap-specific fields are valid */
585 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
586 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800587 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
588 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700589 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100590 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800591 reason = "bitmap chunksize too small";
NeilBrown32a76272005-06-21 17:17:14 -0700592 else if ((1 << ffz(~chunksize)) != chunksize)
593 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100594 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800595 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700596 else if (write_behind > COUNTER_MAX)
597 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700598 if (reason) {
599 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
600 bmname(bitmap), reason);
601 goto out;
602 }
603
604 /* keep the array size field of the bitmap superblock up to date */
605 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
606
607 if (!bitmap->mddev->persistent)
608 goto success;
609
610 /*
611 * if we have a persistent array superblock, compare the
612 * bitmap's UUID and event counter to the mddev's
613 */
614 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
615 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
616 bmname(bitmap));
617 goto out;
618 }
619 events = le64_to_cpu(sb->events);
620 if (events < bitmap->mddev->events) {
621 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
622 "-- forcing full recovery\n", bmname(bitmap), events,
623 (unsigned long long) bitmap->mddev->events);
NeilBrown4f2e6392006-10-21 10:24:09 -0700624 sb->state |= cpu_to_le32(BITMAP_STALE);
NeilBrown32a76272005-06-21 17:17:14 -0700625 }
626success:
627 /* assign fields using values from superblock */
NeilBrown42a04b52009-12-14 12:49:53 +1100628 bitmap->mddev->bitmap_info.chunksize = chunksize;
629 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
NeilBrown42a04b52009-12-14 12:49:53 +1100630 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
NeilBrown4f2e6392006-10-21 10:24:09 -0700631 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800632 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
633 bitmap->flags |= BITMAP_HOSTENDIAN;
NeilBrown32a76272005-06-21 17:17:14 -0700634 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
NeilBrown4f2e6392006-10-21 10:24:09 -0700635 if (sb->state & cpu_to_le32(BITMAP_STALE))
NeilBrown6a079972005-09-09 16:23:44 -0700636 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown32a76272005-06-21 17:17:14 -0700637 err = 0;
638out:
NeilBrownea03aff2006-01-06 00:20:34 -0800639 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700640 if (err)
641 bitmap_print_sb(bitmap);
642 return err;
643}
644
645enum bitmap_mask_op {
646 MASK_SET,
647 MASK_UNSET
648};
649
NeilBrown4ad13662007-07-17 04:06:13 -0700650/* record the state of the bitmap in the superblock. Return the old value */
651static int bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
652 enum bitmap_mask_op op)
NeilBrown32a76272005-06-21 17:17:14 -0700653{
654 bitmap_super_t *sb;
655 unsigned long flags;
NeilBrown4ad13662007-07-17 04:06:13 -0700656 int old;
NeilBrown32a76272005-06-21 17:17:14 -0700657
658 spin_lock_irqsave(&bitmap->lock, flags);
Adrian Bunk7e317652006-03-25 03:07:51 -0800659 if (!bitmap->sb_page) { /* can't set the state */
NeilBrown32a76272005-06-21 17:17:14 -0700660 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700661 return 0;
NeilBrown32a76272005-06-21 17:17:14 -0700662 }
NeilBrown32a76272005-06-21 17:17:14 -0700663 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800664 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700665 old = le32_to_cpu(sb->state) & bits;
NeilBrown32a76272005-06-21 17:17:14 -0700666 switch (op) {
NeilBrown4f2e6392006-10-21 10:24:09 -0700667 case MASK_SET: sb->state |= cpu_to_le32(bits);
NeilBrown32a76272005-06-21 17:17:14 -0700668 break;
NeilBrown4f2e6392006-10-21 10:24:09 -0700669 case MASK_UNSET: sb->state &= cpu_to_le32(~bits);
NeilBrown32a76272005-06-21 17:17:14 -0700670 break;
671 default: BUG();
672 }
NeilBrownea03aff2006-01-06 00:20:34 -0800673 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700674 return old;
NeilBrown32a76272005-06-21 17:17:14 -0700675}
676
677/*
678 * general bitmap file operations
679 */
680
NeilBrownece5cff2009-12-14 12:49:56 +1100681/*
682 * on-disk bitmap:
683 *
684 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
685 * file a page at a time. There's a superblock at the start of the file.
686 */
NeilBrown32a76272005-06-21 17:17:14 -0700687/* calculate the index of the page that contains this bit */
NeilBrownece5cff2009-12-14 12:49:56 +1100688static inline unsigned long file_page_index(struct bitmap *bitmap, unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700689{
NeilBrownece5cff2009-12-14 12:49:56 +1100690 if (!bitmap->mddev->bitmap_info.external)
691 chunk += sizeof(bitmap_super_t) << 3;
692 return chunk >> PAGE_BIT_SHIFT;
NeilBrown32a76272005-06-21 17:17:14 -0700693}
694
695/* calculate the (bit) offset of this bit within a page */
NeilBrownece5cff2009-12-14 12:49:56 +1100696static inline unsigned long file_page_offset(struct bitmap *bitmap, unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700697{
NeilBrownece5cff2009-12-14 12:49:56 +1100698 if (!bitmap->mddev->bitmap_info.external)
699 chunk += sizeof(bitmap_super_t) << 3;
700 return chunk & (PAGE_BITS - 1);
NeilBrown32a76272005-06-21 17:17:14 -0700701}
702
703/*
704 * return a pointer to the page in the filemap that contains the given bit
705 *
706 * this lookup is complicated by the fact that the bitmap sb might be exactly
707 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
708 * 0 or page 1
709 */
710static inline struct page *filemap_get_page(struct bitmap *bitmap,
711 unsigned long chunk)
712{
NeilBrownece5cff2009-12-14 12:49:56 +1100713 if (file_page_index(bitmap, chunk) >= bitmap->file_pages) return NULL;
714 return bitmap->filemap[file_page_index(bitmap, chunk)
715 - file_page_index(bitmap, 0)];
NeilBrown32a76272005-06-21 17:17:14 -0700716}
717
718
719static void bitmap_file_unmap(struct bitmap *bitmap)
720{
721 struct page **map, *sb_page;
722 unsigned long *attr;
723 int pages;
724 unsigned long flags;
725
726 spin_lock_irqsave(&bitmap->lock, flags);
727 map = bitmap->filemap;
728 bitmap->filemap = NULL;
729 attr = bitmap->filemap_attr;
730 bitmap->filemap_attr = NULL;
731 pages = bitmap->file_pages;
732 bitmap->file_pages = 0;
733 sb_page = bitmap->sb_page;
734 bitmap->sb_page = NULL;
735 spin_unlock_irqrestore(&bitmap->lock, flags);
736
737 while (pages--)
NeilBrownece5cff2009-12-14 12:49:56 +1100738 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700739 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700740 kfree(map);
741 kfree(attr);
742
NeilBrownd785a062006-06-26 00:27:48 -0700743 if (sb_page)
744 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700745}
746
747static void bitmap_file_put(struct bitmap *bitmap)
748{
749 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700750 unsigned long flags;
751
752 spin_lock_irqsave(&bitmap->lock, flags);
753 file = bitmap->file;
754 bitmap->file = NULL;
755 spin_unlock_irqrestore(&bitmap->lock, flags);
756
NeilBrownd785a062006-06-26 00:27:48 -0700757 if (file)
758 wait_event(bitmap->write_wait,
759 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700760 bitmap_file_unmap(bitmap);
761
NeilBrownd785a062006-06-26 00:27:48 -0700762 if (file) {
Josef Sipekc649bb92006-12-08 02:37:19 -0800763 struct inode *inode = file->f_path.dentry->d_inode;
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800764 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700765 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700766 }
NeilBrown32a76272005-06-21 17:17:14 -0700767}
768
769
770/*
771 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
772 * then it is no longer reliable, so we stop using it and we mark the file
773 * as failed in the superblock
774 */
775static void bitmap_file_kick(struct bitmap *bitmap)
776{
777 char *path, *ptr = NULL;
778
NeilBrown4ad13662007-07-17 04:06:13 -0700779 if (bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET) == 0) {
780 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700781
NeilBrown4ad13662007-07-17 04:06:13 -0700782 if (bitmap->file) {
783 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
784 if (path)
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700785 ptr = d_path(&bitmap->file->f_path, path,
786 PAGE_SIZE);
787
NeilBrown32a76272005-06-21 17:17:14 -0700788
NeilBrown4ad13662007-07-17 04:06:13 -0700789 printk(KERN_ALERT
790 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700791 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700792
NeilBrown4ad13662007-07-17 04:06:13 -0700793 kfree(path);
794 } else
795 printk(KERN_ALERT
796 "%s: disabling internal bitmap due to errors\n",
797 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700798 }
NeilBrown32a76272005-06-21 17:17:14 -0700799
800 bitmap_file_put(bitmap);
801
802 return;
803}
804
805enum bitmap_page_attr {
NeilBrowne16b68b2006-06-26 00:27:45 -0700806 BITMAP_PAGE_DIRTY = 0, // there are set bits that need to be synced
807 BITMAP_PAGE_CLEAN = 1, // there are bits that might need to be cleared
808 BITMAP_PAGE_NEEDWRITE=2, // there are cleared bits that need to be synced
NeilBrown32a76272005-06-21 17:17:14 -0700809};
810
811static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
812 enum bitmap_page_attr attr)
813{
NeilBrowne16b68b2006-06-26 00:27:45 -0700814 __set_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700815}
816
817static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
818 enum bitmap_page_attr attr)
819{
NeilBrowne16b68b2006-06-26 00:27:45 -0700820 __clear_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700821}
822
NeilBrownec7a3192006-06-26 00:27:45 -0700823static inline unsigned long test_page_attr(struct bitmap *bitmap, struct page *page,
824 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700825{
NeilBrowne16b68b2006-06-26 00:27:45 -0700826 return test_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700827}
828
829/*
830 * bitmap_file_set_bit -- called before performing a write to the md device
831 * to set (and eventually sync) a particular bit in the bitmap file
832 *
833 * we set the bit immediately, then we record the page number so that
834 * when an unplug occurs, we can flush the dirty pages out to disk
835 */
836static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
837{
838 unsigned long bit;
839 struct page *page;
840 void *kaddr;
841 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
842
NeilBrowna654b9d82005-06-21 17:17:27 -0700843 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700844 return;
845 }
846
847 page = filemap_get_page(bitmap, chunk);
Paul Clements9b1d1da2006-10-03 01:15:49 -0700848 if (!page) return;
NeilBrownece5cff2009-12-14 12:49:56 +1100849 bit = file_page_offset(bitmap, chunk);
NeilBrown32a76272005-06-21 17:17:14 -0700850
NeilBrown32a76272005-06-21 17:17:14 -0700851 /* set the bit */
852 kaddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -0800853 if (bitmap->flags & BITMAP_HOSTENDIAN)
854 set_bit(bit, kaddr);
855 else
856 ext2_set_bit(bit, kaddr);
NeilBrown32a76272005-06-21 17:17:14 -0700857 kunmap_atomic(kaddr, KM_USER0);
858 PRINTK("set file bit %lu page %lu\n", bit, page->index);
859
860 /* record page number so it gets flushed to disk when unplug occurs */
861 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
862
863}
864
865/* this gets called when the md device is ready to unplug its underlying
866 * (slave) device queues -- before we let any writes go down, we need to
867 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700868void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700869{
NeilBrownec7a3192006-06-26 00:27:45 -0700870 unsigned long i, flags;
871 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700872 struct page *page;
873 int wait = 0;
874
875 if (!bitmap)
NeilBrown4ad13662007-07-17 04:06:13 -0700876 return;
NeilBrown32a76272005-06-21 17:17:14 -0700877
878 /* look at each page to see if there are any set bits that need to be
879 * flushed out to disk */
880 for (i = 0; i < bitmap->file_pages; i++) {
881 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -0700882 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700883 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700884 return;
NeilBrown32a76272005-06-21 17:17:14 -0700885 }
886 page = bitmap->filemap[i];
NeilBrownec7a3192006-06-26 00:27:45 -0700887 dirty = test_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
888 need_write = test_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -0700889 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
890 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrownec7a3192006-06-26 00:27:45 -0700891 if (dirty)
NeilBrown32a76272005-06-21 17:17:14 -0700892 wait = 1;
893 spin_unlock_irqrestore(&bitmap->lock, flags);
894
NeilBrownd785a062006-06-26 00:27:48 -0700895 if (dirty | need_write)
NeilBrown4ad13662007-07-17 04:06:13 -0700896 write_page(bitmap, page, 0);
NeilBrown32a76272005-06-21 17:17:14 -0700897 }
898 if (wait) { /* if any writes were performed, we need to wait on them */
NeilBrown0b79ccf2006-06-26 00:27:44 -0700899 if (bitmap->file)
NeilBrownd785a062006-06-26 00:27:48 -0700900 wait_event(bitmap->write_wait,
901 atomic_read(&bitmap->pending_writes)==0);
NeilBrown0b79ccf2006-06-26 00:27:44 -0700902 else
NeilBrowna9701a32005-11-08 21:39:34 -0800903 md_super_wait(bitmap->mddev);
NeilBrown32a76272005-06-21 17:17:14 -0700904 }
NeilBrownd785a062006-06-26 00:27:48 -0700905 if (bitmap->flags & BITMAP_WRITE_ERROR)
906 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700907}
908
NeilBrown6a079972005-09-09 16:23:44 -0700909static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700910/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
911 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
912 * memory mapping of the bitmap file
913 * Special cases:
914 * if there's no bitmap file, or if the bitmap file had been
915 * previously kicked from the array, we mark all the bits as
916 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700917 *
918 * We ignore all bits for sectors that end earlier than 'start'.
919 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700920 */
NeilBrown6a079972005-09-09 16:23:44 -0700921static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700922{
923 unsigned long i, chunks, index, oldindex, bit;
924 struct page *page = NULL, *oldpage = NULL;
925 unsigned long num_pages, bit_cnt = 0;
926 struct file *file;
NeilBrownd785a062006-06-26 00:27:48 -0700927 unsigned long bytes, offset;
NeilBrown32a76272005-06-21 17:17:14 -0700928 int outofdate;
929 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800930 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -0700931
932 chunks = bitmap->chunks;
933 file = bitmap->file;
934
NeilBrown42a04b52009-12-14 12:49:53 +1100935 BUG_ON(!file && !bitmap->mddev->bitmap_info.offset);
NeilBrown32a76272005-06-21 17:17:14 -0700936
Olaf Hering44456d32005-07-27 11:45:17 -0700937#ifdef INJECT_FAULTS_3
NeilBrown32a76272005-06-21 17:17:14 -0700938 outofdate = 1;
939#else
940 outofdate = bitmap->flags & BITMAP_STALE;
941#endif
942 if (outofdate)
943 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
944 "recovery\n", bmname(bitmap));
945
946 bytes = (chunks + 7) / 8;
NeilBrownece5cff2009-12-14 12:49:56 +1100947 if (!bitmap->mddev->bitmap_info.external)
948 bytes += sizeof(bitmap_super_t);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700949
NeilBrownece5cff2009-12-14 12:49:56 +1100950
951 num_pages = (bytes + PAGE_SIZE - 1) / PAGE_SIZE;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700952
NeilBrownece5cff2009-12-14 12:49:56 +1100953 if (file && i_size_read(file->f_mapping->host) < bytes) {
NeilBrown32a76272005-06-21 17:17:14 -0700954 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
955 bmname(bitmap),
956 (unsigned long) i_size_read(file->f_mapping->host),
NeilBrownece5cff2009-12-14 12:49:56 +1100957 bytes);
NeilBrown4ad13662007-07-17 04:06:13 -0700958 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700959 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700960
961 ret = -ENOMEM;
962
NeilBrown32a76272005-06-21 17:17:14 -0700963 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700964 if (!bitmap->filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700965 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700966
NeilBrowne16b68b2006-06-26 00:27:45 -0700967 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
968 bitmap->filemap_attr = kzalloc(
Neil Brown505fa2c2007-04-11 23:28:44 -0700969 roundup( DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
NeilBrowne16b68b2006-06-26 00:27:45 -0700970 GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700971 if (!bitmap->filemap_attr)
NeilBrown4ad13662007-07-17 04:06:13 -0700972 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700973
NeilBrown32a76272005-06-21 17:17:14 -0700974 oldindex = ~0L;
975
976 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -0800977 int b;
NeilBrownece5cff2009-12-14 12:49:56 +1100978 index = file_page_index(bitmap, i);
979 bit = file_page_offset(bitmap, i);
NeilBrown32a76272005-06-21 17:17:14 -0700980 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -0700981 int count;
NeilBrown32a76272005-06-21 17:17:14 -0700982 /* unmap the old page, we're done with it */
NeilBrownd785a062006-06-26 00:27:48 -0700983 if (index == num_pages-1)
NeilBrownece5cff2009-12-14 12:49:56 +1100984 count = bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -0700985 else
986 count = PAGE_SIZE;
NeilBrownece5cff2009-12-14 12:49:56 +1100987 if (index == 0 && bitmap->sb_page) {
NeilBrown32a76272005-06-21 17:17:14 -0700988 /*
989 * if we're here then the superblock page
990 * contains some bits (PAGE_SIZE != sizeof sb)
991 * we've already read it in, so just use it
992 */
993 page = bitmap->sb_page;
994 offset = sizeof(bitmap_super_t);
NeilBrown53845272009-01-09 08:31:05 +1100995 if (!file)
996 read_sb_page(bitmap->mddev,
NeilBrown42a04b52009-12-14 12:49:53 +1100997 bitmap->mddev->bitmap_info.offset,
NeilBrown53845272009-01-09 08:31:05 +1100998 page,
999 index, count);
NeilBrowna654b9d82005-06-21 17:17:27 -07001000 } else if (file) {
NeilBrownd785a062006-06-26 00:27:48 -07001001 page = read_page(file, index, bitmap, count);
NeilBrowna654b9d82005-06-21 17:17:27 -07001002 offset = 0;
1003 } else {
NeilBrown42a04b52009-12-14 12:49:53 +11001004 page = read_sb_page(bitmap->mddev,
1005 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +11001006 NULL,
1007 index, count);
NeilBrown32a76272005-06-21 17:17:14 -07001008 offset = 0;
1009 }
NeilBrowna654b9d82005-06-21 17:17:27 -07001010 if (IS_ERR(page)) { /* read error */
1011 ret = PTR_ERR(page);
NeilBrown4ad13662007-07-17 04:06:13 -07001012 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001013 }
1014
NeilBrown32a76272005-06-21 17:17:14 -07001015 oldindex = index;
1016 oldpage = page;
NeilBrown32a76272005-06-21 17:17:14 -07001017
NeilBrownb74fd282009-05-07 12:47:19 +10001018 bitmap->filemap[bitmap->file_pages++] = page;
1019 bitmap->last_page_size = count;
1020
NeilBrown32a76272005-06-21 17:17:14 -07001021 if (outofdate) {
1022 /*
1023 * if bitmap is out of date, dirty the
1024 * whole page and write it out
1025 */
NeilBrownea03aff2006-01-06 00:20:34 -08001026 paddr = kmap_atomic(page, KM_USER0);
1027 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001028 PAGE_SIZE - offset);
NeilBrownea03aff2006-01-06 00:20:34 -08001029 kunmap_atomic(paddr, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -07001030 write_page(bitmap, page, 1);
1031
1032 ret = -EIO;
NeilBrownb74fd282009-05-07 12:47:19 +10001033 if (bitmap->flags & BITMAP_WRITE_ERROR)
NeilBrown4ad13662007-07-17 04:06:13 -07001034 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001035 }
NeilBrown32a76272005-06-21 17:17:14 -07001036 }
NeilBrownea03aff2006-01-06 00:20:34 -08001037 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001038 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001039 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001040 else
NeilBrownea03aff2006-01-06 00:20:34 -08001041 b = ext2_test_bit(bit, paddr);
1042 kunmap_atomic(paddr, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001043 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001044 /* if the disk bit is set, set the memory bit */
NeilBrowndb305e52009-05-07 12:49:06 +10001045 int needed = ((sector_t)(i+1) << (CHUNK_BLOCK_SHIFT(bitmap))
1046 >= start);
1047 bitmap_set_memory_bits(bitmap,
1048 (sector_t)i << CHUNK_BLOCK_SHIFT(bitmap),
1049 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001050 bit_cnt++;
NeilBrown6a079972005-09-09 16:23:44 -07001051 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -07001052 }
NeilBrown32a76272005-06-21 17:17:14 -07001053 }
1054
1055 /* everything went OK */
1056 ret = 0;
1057 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_UNSET);
1058
NeilBrown32a76272005-06-21 17:17:14 -07001059 if (bit_cnt) { /* Kick recovery if any bits were set */
1060 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
1061 md_wakeup_thread(bitmap->mddev->thread);
1062 }
1063
NeilBrown32a76272005-06-21 17:17:14 -07001064 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrown4ad13662007-07-17 04:06:13 -07001065 "read %lu/%lu pages, set %lu bits\n",
1066 bmname(bitmap), bitmap->file_pages, num_pages, bit_cnt);
NeilBrown32a76272005-06-21 17:17:14 -07001067
NeilBrown4ad13662007-07-17 04:06:13 -07001068 return 0;
1069
1070 err:
1071 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1072 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001073 return ret;
1074}
1075
NeilBrowna654b9d82005-06-21 17:17:27 -07001076void bitmap_write_all(struct bitmap *bitmap)
1077{
1078 /* We don't actually write all bitmap blocks here,
1079 * just flag them as needing to be written
1080 */
NeilBrownec7a3192006-06-26 00:27:45 -07001081 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001082
NeilBrownec7a3192006-06-26 00:27:45 -07001083 for (i=0; i < bitmap->file_pages; i++)
1084 set_page_attr(bitmap, bitmap->filemap[i],
1085 BITMAP_PAGE_NEEDWRITE);
NeilBrowna654b9d82005-06-21 17:17:27 -07001086}
1087
NeilBrown32a76272005-06-21 17:17:14 -07001088
1089static void bitmap_count_page(struct bitmap *bitmap, sector_t offset, int inc)
1090{
1091 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1092 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1093 bitmap->bp[page].count += inc;
1094/*
1095 if (page == 0) printk("count page 0, offset %llu: %d gives %d\n",
1096 (unsigned long long)offset, inc, bitmap->bp[page].count);
1097*/
1098 bitmap_checkfree(bitmap, page);
1099}
1100static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1101 sector_t offset, int *blocks,
1102 int create);
1103
1104/*
1105 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1106 * out to disk
1107 */
1108
NeilBrownaa5cbd12009-12-14 12:49:46 +11001109void bitmap_daemon_work(mddev_t *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001110{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001111 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001112 unsigned long j;
NeilBrown32a76272005-06-21 17:17:14 -07001113 unsigned long flags;
1114 struct page *page = NULL, *lastpage = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001115 int blocks;
NeilBrownea03aff2006-01-06 00:20:34 -08001116 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -07001117
NeilBrownaa5cbd12009-12-14 12:49:46 +11001118 /* Use a mutex to guard daemon_work against
1119 * bitmap_destroy.
1120 */
NeilBrownc3d97142009-12-14 12:49:52 +11001121 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001122 bitmap = mddev->bitmap;
1123 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001124 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001125 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001126 }
NeilBrown42a04b52009-12-14 12:49:53 +11001127 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown1b04be92009-12-14 12:49:53 +11001128 + bitmap->mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001129 goto done;
1130
NeilBrown32a76272005-06-21 17:17:14 -07001131 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001132 if (bitmap->allclean) {
1133 bitmap->mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001134 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001135 }
1136 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001137
NeilBrownbe512692009-05-26 09:41:17 +10001138 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001139 for (j = 0; j < bitmap->chunks; j++) {
1140 bitmap_counter_t *bmc;
NeilBrownbe512692009-05-26 09:41:17 +10001141 if (!bitmap->filemap)
NeilBrown32a76272005-06-21 17:17:14 -07001142 /* error or shutdown */
NeilBrown32a76272005-06-21 17:17:14 -07001143 break;
NeilBrown32a76272005-06-21 17:17:14 -07001144
1145 page = filemap_get_page(bitmap, j);
NeilBrown32a76272005-06-21 17:17:14 -07001146
1147 if (page != lastpage) {
NeilBrownaa3163f2005-06-21 17:17:22 -07001148 /* skip this page unless it's marked as needing cleaning */
NeilBrownec7a3192006-06-26 00:27:45 -07001149 if (!test_page_attr(bitmap, page, BITMAP_PAGE_CLEAN)) {
1150 int need_write = test_page_attr(bitmap, page,
1151 BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001152 if (need_write)
NeilBrownaa3163f2005-06-21 17:17:22 -07001153 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001154
NeilBrownaa3163f2005-06-21 17:17:22 -07001155 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001156 if (need_write) {
NeilBrown4ad13662007-07-17 04:06:13 -07001157 write_page(bitmap, page, 0);
NeilBrown8311c292008-03-04 14:29:30 -08001158 bitmap->allclean = 0;
1159 }
NeilBrownbe512692009-05-26 09:41:17 +10001160 spin_lock_irqsave(&bitmap->lock, flags);
1161 j |= (PAGE_BITS - 1);
NeilBrownaa3163f2005-06-21 17:17:22 -07001162 continue;
1163 }
1164
NeilBrown32a76272005-06-21 17:17:14 -07001165 /* grab the new page, sync and release the old */
NeilBrown32a76272005-06-21 17:17:14 -07001166 if (lastpage != NULL) {
NeilBrownec7a3192006-06-26 00:27:45 -07001167 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001168 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1169 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001170 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001171 } else {
1172 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1173 spin_unlock_irqrestore(&bitmap->lock, flags);
1174 }
NeilBrown32a76272005-06-21 17:17:14 -07001175 } else
1176 spin_unlock_irqrestore(&bitmap->lock, flags);
1177 lastpage = page;
Neil Browna0da84f2008-06-28 08:31:22 +10001178
1179 /* We are possibly going to clear some bits, so make
1180 * sure that events_cleared is up-to-date.
1181 */
NeilBrownece5cff2009-12-14 12:49:56 +11001182 if (bitmap->need_sync &&
1183 bitmap->mddev->bitmap_info.external == 0) {
Neil Browna0da84f2008-06-28 08:31:22 +10001184 bitmap_super_t *sb;
1185 bitmap->need_sync = 0;
1186 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
1187 sb->events_cleared =
1188 cpu_to_le64(bitmap->events_cleared);
1189 kunmap_atomic(sb, KM_USER0);
1190 write_page(bitmap, bitmap->sb_page, 1);
1191 }
NeilBrown32a76272005-06-21 17:17:14 -07001192 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownece5cff2009-12-14 12:49:56 +11001193 if (!bitmap->need_sync)
1194 clear_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -07001195 }
NeilBrowndb305e52009-05-07 12:49:06 +10001196 bmc = bitmap_get_counter(bitmap,
1197 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
1198 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001199 if (bmc) {
1200/*
1201 if (j < 100) printk("bitmap: j=%lu, *bmc = 0x%x\n", j, *bmc);
1202*/
NeilBrown8311c292008-03-04 14:29:30 -08001203 if (*bmc)
1204 bitmap->allclean = 0;
1205
NeilBrown32a76272005-06-21 17:17:14 -07001206 if (*bmc == 2) {
1207 *bmc=1; /* maybe clear the bit next time */
1208 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrownece5cff2009-12-14 12:49:56 +11001209 } else if (*bmc == 1 && !bitmap->need_sync) {
NeilBrown32a76272005-06-21 17:17:14 -07001210 /* we can clear the bit */
1211 *bmc = 0;
NeilBrowndb305e52009-05-07 12:49:06 +10001212 bitmap_count_page(bitmap,
1213 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
NeilBrown32a76272005-06-21 17:17:14 -07001214 -1);
1215
1216 /* clear the bit */
NeilBrownea03aff2006-01-06 00:20:34 -08001217 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001218 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownece5cff2009-12-14 12:49:56 +11001219 clear_bit(file_page_offset(bitmap, j),
1220 paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001221 else
NeilBrownece5cff2009-12-14 12:49:56 +11001222 ext2_clear_bit(file_page_offset(bitmap, j),
1223 paddr);
NeilBrownea03aff2006-01-06 00:20:34 -08001224 kunmap_atomic(paddr, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -07001225 }
NeilBrownbe512692009-05-26 09:41:17 +10001226 } else
1227 j |= PAGE_COUNTER_MASK;
NeilBrown32a76272005-06-21 17:17:14 -07001228 }
NeilBrownbe512692009-05-26 09:41:17 +10001229 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001230
1231 /* now sync the final page */
1232 if (lastpage != NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001233 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownec7a3192006-06-26 00:27:45 -07001234 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001235 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1236 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001237 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001238 } else {
1239 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1240 spin_unlock_irqrestore(&bitmap->lock, flags);
1241 }
NeilBrown32a76272005-06-21 17:17:14 -07001242 }
1243
NeilBrown7be3dfe2008-03-10 11:43:48 -07001244 done:
NeilBrown8311c292008-03-04 14:29:30 -08001245 if (bitmap->allclean == 0)
NeilBrown42a04b52009-12-14 12:49:53 +11001246 bitmap->mddev->thread->timeout =
NeilBrown1b04be92009-12-14 12:49:53 +11001247 bitmap->mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001248 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001249}
1250
NeilBrown32a76272005-06-21 17:17:14 -07001251static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1252 sector_t offset, int *blocks,
1253 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001254__releases(bitmap->lock)
1255__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001256{
1257 /* If 'create', we might release the lock and reclaim it.
1258 * The lock must have been taken with interrupts enabled.
1259 * If !create, we don't release the lock.
1260 */
1261 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1262 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1263 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1264 sector_t csize;
1265
1266 if (bitmap_checkpage(bitmap, page, create) < 0) {
1267 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1268 *blocks = csize - (offset & (csize- 1));
1269 return NULL;
1270 }
1271 /* now locked ... */
1272
1273 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1274 /* should we use the first or second counter field
1275 * of the hijacked pointer? */
1276 int hi = (pageoff > PAGE_COUNTER_MASK);
1277 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1278 PAGE_COUNTER_SHIFT - 1);
1279 *blocks = csize - (offset & (csize- 1));
1280 return &((bitmap_counter_t *)
1281 &bitmap->bp[page].map)[hi];
1282 } else { /* page is allocated */
1283 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1284 *blocks = csize - (offset & (csize- 1));
1285 return (bitmap_counter_t *)
1286 &(bitmap->bp[page].map[pageoff]);
1287 }
1288}
1289
NeilBrown4b6d2872005-09-09 16:23:47 -07001290int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001291{
1292 if (!bitmap) return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001293
1294 if (behind) {
1295 atomic_inc(&bitmap->behind_writes);
1296 PRINTK(KERN_DEBUG "inc write-behind count %d/%d\n",
1297 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1298 }
1299
NeilBrown32a76272005-06-21 17:17:14 -07001300 while (sectors) {
1301 int blocks;
1302 bitmap_counter_t *bmc;
1303
1304 spin_lock_irq(&bitmap->lock);
1305 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1306 if (!bmc) {
1307 spin_unlock_irq(&bitmap->lock);
1308 return 0;
1309 }
1310
Neil Brownda6e1a32007-02-08 14:20:37 -08001311 if (unlikely((*bmc & COUNTER_MAX) == COUNTER_MAX)) {
1312 DEFINE_WAIT(__wait);
1313 /* note that it is safe to do the prepare_to_wait
1314 * after the test as long as we do it before dropping
1315 * the spinlock.
1316 */
1317 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1318 TASK_UNINTERRUPTIBLE);
1319 spin_unlock_irq(&bitmap->lock);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05001320 blk_unplug(bitmap->mddev->queue);
Neil Brownda6e1a32007-02-08 14:20:37 -08001321 schedule();
1322 finish_wait(&bitmap->overflow_wait, &__wait);
1323 continue;
1324 }
1325
NeilBrown32a76272005-06-21 17:17:14 -07001326 switch(*bmc) {
1327 case 0:
1328 bitmap_file_set_bit(bitmap, offset);
1329 bitmap_count_page(bitmap,offset, 1);
Jens Axboe93769f52008-08-01 20:32:31 +02001330 blk_plug_device_unlocked(bitmap->mddev->queue);
NeilBrown32a76272005-06-21 17:17:14 -07001331 /* fall through */
1332 case 1:
1333 *bmc = 2;
1334 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001335
NeilBrown32a76272005-06-21 17:17:14 -07001336 (*bmc)++;
1337
1338 spin_unlock_irq(&bitmap->lock);
1339
1340 offset += blocks;
1341 if (sectors > blocks)
1342 sectors -= blocks;
1343 else sectors = 0;
1344 }
NeilBrown8311c292008-03-04 14:29:30 -08001345 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001346 return 0;
1347}
1348
1349void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001350 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001351{
1352 if (!bitmap) return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001353 if (behind) {
1354 atomic_dec(&bitmap->behind_writes);
1355 PRINTK(KERN_DEBUG "dec write-behind count %d/%d\n",
1356 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1357 }
NeilBrownd0a4bb42009-03-31 14:27:02 +11001358 if (bitmap->mddev->degraded)
1359 /* Never clear bits or update events_cleared when degraded */
1360 success = 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001361
NeilBrown32a76272005-06-21 17:17:14 -07001362 while (sectors) {
1363 int blocks;
1364 unsigned long flags;
1365 bitmap_counter_t *bmc;
1366
1367 spin_lock_irqsave(&bitmap->lock, flags);
1368 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1369 if (!bmc) {
1370 spin_unlock_irqrestore(&bitmap->lock, flags);
1371 return;
1372 }
1373
Neil Browna0da84f2008-06-28 08:31:22 +10001374 if (success &&
1375 bitmap->events_cleared < bitmap->mddev->events) {
1376 bitmap->events_cleared = bitmap->mddev->events;
1377 bitmap->need_sync = 1;
NeilBrownece5cff2009-12-14 12:49:56 +11001378 sysfs_notify_dirent(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001379 }
1380
NeilBrown32a76272005-06-21 17:17:14 -07001381 if (!success && ! (*bmc & NEEDED_MASK))
1382 *bmc |= NEEDED_MASK;
1383
Neil Brownda6e1a32007-02-08 14:20:37 -08001384 if ((*bmc & COUNTER_MAX) == COUNTER_MAX)
1385 wake_up(&bitmap->overflow_wait);
1386
NeilBrown32a76272005-06-21 17:17:14 -07001387 (*bmc)--;
1388 if (*bmc <= 2) {
1389 set_page_attr(bitmap,
1390 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1391 BITMAP_PAGE_CLEAN);
1392 }
1393 spin_unlock_irqrestore(&bitmap->lock, flags);
1394 offset += blocks;
1395 if (sectors > blocks)
1396 sectors -= blocks;
1397 else sectors = 0;
1398 }
1399}
1400
NeilBrown1187cf02009-03-31 14:27:02 +11001401static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1402 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001403{
1404 bitmap_counter_t *bmc;
1405 int rv;
1406 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1407 *blocks = 1024;
1408 return 1; /* always resync if no bitmap */
1409 }
1410 spin_lock_irq(&bitmap->lock);
1411 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1412 rv = 0;
1413 if (bmc) {
1414 /* locked */
1415 if (RESYNC(*bmc))
1416 rv = 1;
1417 else if (NEEDED(*bmc)) {
1418 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001419 if (!degraded) { /* don't set/clear bits if degraded */
1420 *bmc |= RESYNC_MASK;
1421 *bmc &= ~NEEDED_MASK;
1422 }
NeilBrown32a76272005-06-21 17:17:14 -07001423 }
1424 }
1425 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001426 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001427 return rv;
1428}
1429
NeilBrown1187cf02009-03-31 14:27:02 +11001430int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1431 int degraded)
1432{
1433 /* bitmap_start_sync must always report on multiples of whole
1434 * pages, otherwise resync (which is very PAGE_SIZE based) will
1435 * get confused.
1436 * So call __bitmap_start_sync repeatedly (if needed) until
1437 * At least PAGE_SIZE>>9 blocks are covered.
1438 * Return the 'or' of the result.
1439 */
1440 int rv = 0;
1441 int blocks1;
1442
1443 *blocks = 0;
1444 while (*blocks < (PAGE_SIZE>>9)) {
1445 rv |= __bitmap_start_sync(bitmap, offset,
1446 &blocks1, degraded);
1447 offset += blocks1;
1448 *blocks += blocks1;
1449 }
1450 return rv;
1451}
1452
NeilBrown32a76272005-06-21 17:17:14 -07001453void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, int *blocks, int aborted)
1454{
1455 bitmap_counter_t *bmc;
1456 unsigned long flags;
1457/*
1458 if (offset == 0) printk("bitmap_end_sync 0 (%d)\n", aborted);
1459*/ if (bitmap == NULL) {
1460 *blocks = 1024;
1461 return;
1462 }
1463 spin_lock_irqsave(&bitmap->lock, flags);
1464 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1465 if (bmc == NULL)
1466 goto unlock;
1467 /* locked */
1468/*
1469 if (offset == 0) printk("bitmap_end sync found 0x%x, blocks %d\n", *bmc, *blocks);
1470*/
1471 if (RESYNC(*bmc)) {
1472 *bmc &= ~RESYNC_MASK;
1473
1474 if (!NEEDED(*bmc) && aborted)
1475 *bmc |= NEEDED_MASK;
1476 else {
1477 if (*bmc <= 2) {
1478 set_page_attr(bitmap,
1479 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1480 BITMAP_PAGE_CLEAN);
1481 }
1482 }
1483 }
1484 unlock:
1485 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001486 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001487}
1488
1489void bitmap_close_sync(struct bitmap *bitmap)
1490{
1491 /* Sync has finished, and any bitmap chunks that weren't synced
1492 * properly have been aborted. It remains to us to clear the
1493 * RESYNC bit wherever it is still on
1494 */
1495 sector_t sector = 0;
1496 int blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001497 if (!bitmap)
1498 return;
NeilBrown32a76272005-06-21 17:17:14 -07001499 while (sector < bitmap->mddev->resync_max_sectors) {
1500 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001501 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001502 }
1503}
1504
NeilBrownb47490c2008-02-06 01:39:50 -08001505void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1506{
1507 sector_t s = 0;
1508 int blocks;
1509
1510 if (!bitmap)
1511 return;
1512 if (sector == 0) {
1513 bitmap->last_end_sync = jiffies;
1514 return;
1515 }
1516 if (time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001517 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001518 return;
1519 wait_event(bitmap->mddev->recovery_wait,
1520 atomic_read(&bitmap->mddev->recovery_active) == 0);
1521
NeilBrown97e4f422009-03-31 14:33:13 +11001522 bitmap->mddev->curr_resync_completed = bitmap->mddev->curr_resync;
1523 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrownb47490c2008-02-06 01:39:50 -08001524 sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
1525 s = 0;
1526 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1527 bitmap_end_sync(bitmap, s, &blocks, 0);
1528 s += blocks;
1529 }
1530 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001531 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001532}
1533
NeilBrown6a079972005-09-09 16:23:44 -07001534static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001535{
1536 /* For each chunk covered by any of these sectors, set the
NeilBrown193f1c92005-08-04 12:53:33 -07001537 * counter to 1 and set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001538 * be 0 at this point
1539 */
NeilBrown193f1c92005-08-04 12:53:33 -07001540
1541 int secs;
1542 bitmap_counter_t *bmc;
1543 spin_lock_irq(&bitmap->lock);
1544 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1545 if (!bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001546 spin_unlock_irq(&bitmap->lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001547 return;
NeilBrown32a76272005-06-21 17:17:14 -07001548 }
NeilBrown193f1c92005-08-04 12:53:33 -07001549 if (! *bmc) {
1550 struct page *page;
NeilBrown6a079972005-09-09 16:23:44 -07001551 *bmc = 1 | (needed?NEEDED_MASK:0);
NeilBrown193f1c92005-08-04 12:53:33 -07001552 bitmap_count_page(bitmap, offset, 1);
1553 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
1554 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1555 }
1556 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001557 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001558}
1559
Paul Clements9b1d1da2006-10-03 01:15:49 -07001560/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1561void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1562{
1563 unsigned long chunk;
1564
1565 for (chunk = s; chunk <= e; chunk++) {
NeilBrowndb305e52009-05-07 12:49:06 +10001566 sector_t sec = (sector_t)chunk << CHUNK_BLOCK_SHIFT(bitmap);
Paul Clements9b1d1da2006-10-03 01:15:49 -07001567 bitmap_set_memory_bits(bitmap, sec, 1);
1568 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001569 if (sec < bitmap->mddev->recovery_cp)
1570 /* We are asserting that the array is dirty,
1571 * so move the recovery_cp address back so
1572 * that it is obvious that it is dirty
1573 */
1574 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001575 }
1576}
1577
NeilBrown32a76272005-06-21 17:17:14 -07001578/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001579 * flush out any pending updates
1580 */
1581void bitmap_flush(mddev_t *mddev)
1582{
1583 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001584 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001585
1586 if (!bitmap) /* there was no bitmap */
1587 return;
1588
1589 /* run the daemon_work three time to ensure everything is flushed
1590 * that can be
1591 */
NeilBrown1b04be92009-12-14 12:49:53 +11001592 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001593 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001594 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001595 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001596 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001597 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001598 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001599 bitmap_update_sb(bitmap);
1600}
1601
1602/*
NeilBrown32a76272005-06-21 17:17:14 -07001603 * free memory that was allocated
1604 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001605static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001606{
1607 unsigned long k, pages;
1608 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001609
1610 if (!bitmap) /* there was no bitmap */
1611 return;
1612
NeilBrown32a76272005-06-21 17:17:14 -07001613 /* release the bitmap file and kill the daemon */
1614 bitmap_file_put(bitmap);
1615
1616 bp = bitmap->bp;
1617 pages = bitmap->pages;
1618
1619 /* free all allocated memory */
1620
NeilBrown32a76272005-06-21 17:17:14 -07001621 if (bp) /* deallocate the page memory */
1622 for (k = 0; k < pages; k++)
1623 if (bp[k].map && !bp[k].hijacked)
1624 kfree(bp[k].map);
1625 kfree(bp);
1626 kfree(bitmap);
1627}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001628
NeilBrown3178b0d2005-09-09 16:23:50 -07001629void bitmap_destroy(mddev_t *mddev)
1630{
1631 struct bitmap *bitmap = mddev->bitmap;
1632
1633 if (!bitmap) /* there was no bitmap */
1634 return;
1635
NeilBrownc3d97142009-12-14 12:49:52 +11001636 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown3178b0d2005-09-09 16:23:50 -07001637 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrownc3d97142009-12-14 12:49:52 +11001638 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001639 if (mddev->thread)
1640 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001641
NeilBrownece5cff2009-12-14 12:49:56 +11001642 if (bitmap->sysfs_can_clear)
1643 sysfs_put(bitmap->sysfs_can_clear);
1644
NeilBrown3178b0d2005-09-09 16:23:50 -07001645 bitmap_free(bitmap);
1646}
NeilBrown32a76272005-06-21 17:17:14 -07001647
1648/*
1649 * initialize the bitmap structure
1650 * if this returns an error, bitmap_destroy must be called to do clean up
1651 */
1652int bitmap_create(mddev_t *mddev)
1653{
1654 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001655 sector_t blocks = mddev->resync_max_sectors;
NeilBrown32a76272005-06-21 17:17:14 -07001656 unsigned long chunks;
1657 unsigned long pages;
NeilBrownc3d97142009-12-14 12:49:52 +11001658 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001659 int err;
NeilBrown6a079972005-09-09 16:23:44 -07001660 sector_t start;
NeilBrownece5cff2009-12-14 12:49:56 +11001661 struct sysfs_dirent *bm;
NeilBrown32a76272005-06-21 17:17:14 -07001662
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001663 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001664
NeilBrownc3d97142009-12-14 12:49:52 +11001665 if (!file && !mddev->bitmap_info.offset) /* bitmap disabled, nothing to do */
NeilBrown32a76272005-06-21 17:17:14 -07001666 return 0;
1667
NeilBrownc3d97142009-12-14 12:49:52 +11001668 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001669
NeilBrown9ffae0c2006-01-06 00:20:32 -08001670 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001671 if (!bitmap)
1672 return -ENOMEM;
1673
NeilBrown32a76272005-06-21 17:17:14 -07001674 spin_lock_init(&bitmap->lock);
NeilBrownce25c312006-06-26 00:27:49 -07001675 atomic_set(&bitmap->pending_writes, 0);
1676 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001677 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001678
NeilBrown32a76272005-06-21 17:17:14 -07001679 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001680
NeilBrownece5cff2009-12-14 12:49:56 +11001681 bm = sysfs_get_dirent(mddev->kobj.sd, "bitmap");
1682 if (bm) {
1683 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, "can_clear");
1684 sysfs_put(bm);
1685 } else
1686 bitmap->sysfs_can_clear = NULL;
1687
NeilBrown32a76272005-06-21 17:17:14 -07001688 bitmap->file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001689 if (file) {
1690 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001691 /* As future accesses to this file will use bmap,
1692 * and bypass the page cache, we must sync the file
1693 * first.
1694 */
1695 vfs_fsync(file, file->f_dentry, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001696 }
NeilBrown42a04b52009-12-14 12:49:53 +11001697 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
NeilBrownece5cff2009-12-14 12:49:56 +11001698 if (!mddev->bitmap_info.external)
1699 err = bitmap_read_sb(bitmap);
1700 else {
1701 err = 0;
1702 if (mddev->bitmap_info.chunksize == 0 ||
1703 mddev->bitmap_info.daemon_sleep == 0)
1704 /* chunksize and time_base need to be
1705 * set first. */
1706 err = -EINVAL;
1707 }
NeilBrown32a76272005-06-21 17:17:14 -07001708 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001709 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001710
NeilBrown624ce4f2009-12-14 12:49:56 +11001711 bitmap->daemon_lastrun = jiffies;
NeilBrown42a04b52009-12-14 12:49:53 +11001712 bitmap->chunkshift = ffz(~mddev->bitmap_info.chunksize);
NeilBrown32a76272005-06-21 17:17:14 -07001713
1714 /* now that chunksize and chunkshift are set, we can use these macros */
NeilBrown1f593902009-04-20 11:50:24 +10001715 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) >>
1716 CHUNK_BLOCK_SHIFT(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -07001717 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
1718
1719 BUG_ON(!pages);
1720
1721 bitmap->chunks = chunks;
1722 bitmap->pages = pages;
1723 bitmap->missing_pages = pages;
1724 bitmap->counter_bits = COUNTER_BITS;
1725
1726 bitmap->syncchunk = ~0UL;
1727
Olaf Hering44456d32005-07-27 11:45:17 -07001728#ifdef INJECT_FATAL_FAULT_1
NeilBrown32a76272005-06-21 17:17:14 -07001729 bitmap->bp = NULL;
1730#else
NeilBrown9ffae0c2006-01-06 00:20:32 -08001731 bitmap->bp = kzalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001732#endif
NeilBrown3178b0d2005-09-09 16:23:50 -07001733 err = -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -07001734 if (!bitmap->bp)
NeilBrown3178b0d2005-09-09 16:23:50 -07001735 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001736
NeilBrown32a76272005-06-21 17:17:14 -07001737 /* now that we have some pages available, initialize the in-memory
1738 * bitmap from the on-disk bitmap */
NeilBrown6a079972005-09-09 16:23:44 -07001739 start = 0;
1740 if (mddev->degraded == 0
1741 || bitmap->events_cleared == mddev->events)
1742 /* no need to keep dirty bits to optimise a re-add of a missing device */
1743 start = mddev->recovery_cp;
1744 err = bitmap_init_from_disk(bitmap, start);
NeilBrown193f1c92005-08-04 12:53:33 -07001745
NeilBrown32a76272005-06-21 17:17:14 -07001746 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001747 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001748
1749 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1750 pages, bmname(bitmap));
1751
NeilBrown3178b0d2005-09-09 16:23:50 -07001752 mddev->bitmap = bitmap;
1753
NeilBrown1b04be92009-12-14 12:49:53 +11001754 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001755 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001756
NeilBrown4ad13662007-07-17 04:06:13 -07001757 bitmap_update_sb(bitmap);
1758
1759 return (bitmap->flags & BITMAP_WRITE_ERROR) ? -EIO : 0;
NeilBrown3178b0d2005-09-09 16:23:50 -07001760
1761 error:
1762 bitmap_free(bitmap);
1763 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001764}
1765
NeilBrown43a70502009-12-14 12:49:55 +11001766static ssize_t
1767location_show(mddev_t *mddev, char *page)
1768{
1769 ssize_t len;
1770 if (mddev->bitmap_info.file) {
1771 len = sprintf(page, "file");
1772 } else if (mddev->bitmap_info.offset) {
1773 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
1774 } else
1775 len = sprintf(page, "none");
1776 len += sprintf(page+len, "\n");
1777 return len;
1778}
1779
1780static ssize_t
1781location_store(mddev_t *mddev, const char *buf, size_t len)
1782{
1783
1784 if (mddev->pers) {
1785 if (!mddev->pers->quiesce)
1786 return -EBUSY;
1787 if (mddev->recovery || mddev->sync_thread)
1788 return -EBUSY;
1789 }
1790
1791 if (mddev->bitmap || mddev->bitmap_info.file ||
1792 mddev->bitmap_info.offset) {
1793 /* bitmap already configured. Only option is to clear it */
1794 if (strncmp(buf, "none", 4) != 0)
1795 return -EBUSY;
1796 if (mddev->pers) {
1797 mddev->pers->quiesce(mddev, 1);
1798 bitmap_destroy(mddev);
1799 mddev->pers->quiesce(mddev, 0);
1800 }
1801 mddev->bitmap_info.offset = 0;
1802 if (mddev->bitmap_info.file) {
1803 struct file *f = mddev->bitmap_info.file;
1804 mddev->bitmap_info.file = NULL;
1805 restore_bitmap_write_access(f);
1806 fput(f);
1807 }
1808 } else {
1809 /* No bitmap, OK to set a location */
1810 long long offset;
1811 if (strncmp(buf, "none", 4) == 0)
1812 /* nothing to be done */;
1813 else if (strncmp(buf, "file:", 5) == 0) {
1814 /* Not supported yet */
1815 return -EINVAL;
1816 } else {
1817 int rv;
1818 if (buf[0] == '+')
1819 rv = strict_strtoll(buf+1, 10, &offset);
1820 else
1821 rv = strict_strtoll(buf, 10, &offset);
1822 if (rv)
1823 return rv;
1824 if (offset == 0)
1825 return -EINVAL;
NeilBrownece5cff2009-12-14 12:49:56 +11001826 if (mddev->bitmap_info.external == 0 &&
1827 mddev->major_version == 0 &&
NeilBrown43a70502009-12-14 12:49:55 +11001828 offset != mddev->bitmap_info.default_offset)
1829 return -EINVAL;
1830 mddev->bitmap_info.offset = offset;
1831 if (mddev->pers) {
1832 mddev->pers->quiesce(mddev, 1);
1833 rv = bitmap_create(mddev);
1834 if (rv) {
1835 bitmap_destroy(mddev);
1836 mddev->bitmap_info.offset = 0;
1837 }
1838 mddev->pers->quiesce(mddev, 0);
1839 if (rv)
1840 return rv;
1841 }
1842 }
1843 }
1844 if (!mddev->external) {
1845 /* Ensure new bitmap info is stored in
1846 * metadata promptly.
1847 */
1848 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1849 md_wakeup_thread(mddev->thread);
1850 }
1851 return len;
1852}
1853
1854static struct md_sysfs_entry bitmap_location =
1855__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
1856
1857static ssize_t
1858timeout_show(mddev_t *mddev, char *page)
1859{
1860 ssize_t len;
1861 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
1862 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
1863
1864 len = sprintf(page, "%lu", secs);
1865 if (jifs)
1866 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
1867 len += sprintf(page+len, "\n");
1868 return len;
1869}
1870
1871static ssize_t
1872timeout_store(mddev_t *mddev, const char *buf, size_t len)
1873{
1874 /* timeout can be set at any time */
1875 unsigned long timeout;
1876 int rv = strict_strtoul_scaled(buf, &timeout, 4);
1877 if (rv)
1878 return rv;
1879
1880 /* just to make sure we don't overflow... */
1881 if (timeout >= LONG_MAX / HZ)
1882 return -EINVAL;
1883
1884 timeout = timeout * HZ / 10000;
1885
1886 if (timeout >= MAX_SCHEDULE_TIMEOUT)
1887 timeout = MAX_SCHEDULE_TIMEOUT-1;
1888 if (timeout < 1)
1889 timeout = 1;
1890 mddev->bitmap_info.daemon_sleep = timeout;
1891 if (mddev->thread) {
1892 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
1893 * the bitmap is all clean and we don't need to
1894 * adjust the timeout right now
1895 */
1896 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
1897 mddev->thread->timeout = timeout;
1898 md_wakeup_thread(mddev->thread);
1899 }
1900 }
1901 return len;
1902}
1903
1904static struct md_sysfs_entry bitmap_timeout =
1905__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
1906
1907static ssize_t
1908backlog_show(mddev_t *mddev, char *page)
1909{
1910 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
1911}
1912
1913static ssize_t
1914backlog_store(mddev_t *mddev, const char *buf, size_t len)
1915{
1916 unsigned long backlog;
1917 int rv = strict_strtoul(buf, 10, &backlog);
1918 if (rv)
1919 return rv;
1920 if (backlog > COUNTER_MAX)
1921 return -EINVAL;
1922 mddev->bitmap_info.max_write_behind = backlog;
1923 return len;
1924}
1925
1926static struct md_sysfs_entry bitmap_backlog =
1927__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
1928
1929static ssize_t
1930chunksize_show(mddev_t *mddev, char *page)
1931{
1932 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
1933}
1934
1935static ssize_t
1936chunksize_store(mddev_t *mddev, const char *buf, size_t len)
1937{
1938 /* Can only be changed when no bitmap is active */
1939 int rv;
1940 unsigned long csize;
1941 if (mddev->bitmap)
1942 return -EBUSY;
1943 rv = strict_strtoul(buf, 10, &csize);
1944 if (rv)
1945 return rv;
1946 if (csize < 512 ||
1947 !is_power_of_2(csize))
1948 return -EINVAL;
1949 mddev->bitmap_info.chunksize = csize;
1950 return len;
1951}
1952
1953static struct md_sysfs_entry bitmap_chunksize =
1954__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
1955
NeilBrownece5cff2009-12-14 12:49:56 +11001956static ssize_t metadata_show(mddev_t *mddev, char *page)
1957{
1958 return sprintf(page, "%s\n", (mddev->bitmap_info.external
1959 ? "external" : "internal"));
1960}
1961
1962static ssize_t metadata_store(mddev_t *mddev, const char *buf, size_t len)
1963{
1964 if (mddev->bitmap ||
1965 mddev->bitmap_info.file ||
1966 mddev->bitmap_info.offset)
1967 return -EBUSY;
1968 if (strncmp(buf, "external", 8) == 0)
1969 mddev->bitmap_info.external = 1;
1970 else if (strncmp(buf, "internal", 8) == 0)
1971 mddev->bitmap_info.external = 0;
1972 else
1973 return -EINVAL;
1974 return len;
1975}
1976
1977static struct md_sysfs_entry bitmap_metadata =
1978__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
1979
1980static ssize_t can_clear_show(mddev_t *mddev, char *page)
1981{
1982 int len;
1983 if (mddev->bitmap)
1984 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
1985 "false" : "true"));
1986 else
1987 len = sprintf(page, "\n");
1988 return len;
1989}
1990
1991static ssize_t can_clear_store(mddev_t *mddev, const char *buf, size_t len)
1992{
1993 if (mddev->bitmap == NULL)
1994 return -ENOENT;
1995 if (strncmp(buf, "false", 5) == 0)
1996 mddev->bitmap->need_sync = 1;
1997 else if (strncmp(buf, "true", 4) == 0) {
1998 if (mddev->degraded)
1999 return -EBUSY;
2000 mddev->bitmap->need_sync = 0;
2001 } else
2002 return -EINVAL;
2003 return len;
2004}
2005
2006static struct md_sysfs_entry bitmap_can_clear =
2007__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2008
NeilBrown43a70502009-12-14 12:49:55 +11002009static struct attribute *md_bitmap_attrs[] = {
2010 &bitmap_location.attr,
2011 &bitmap_timeout.attr,
2012 &bitmap_backlog.attr,
2013 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002014 &bitmap_metadata.attr,
2015 &bitmap_can_clear.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002016 NULL
2017};
2018struct attribute_group md_bitmap_group = {
2019 .name = "bitmap",
2020 .attrs = md_bitmap_attrs,
2021};
2022
2023
NeilBrown32a76272005-06-21 17:17:14 -07002024/* the bitmap API -- for raid personalities */
2025EXPORT_SYMBOL(bitmap_startwrite);
2026EXPORT_SYMBOL(bitmap_endwrite);
2027EXPORT_SYMBOL(bitmap_start_sync);
2028EXPORT_SYMBOL(bitmap_end_sync);
2029EXPORT_SYMBOL(bitmap_unplug);
2030EXPORT_SYMBOL(bitmap_close_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08002031EXPORT_SYMBOL(bitmap_cond_end_sync);