blob: 24fff75b21912407c613d8d95cb9fe161daed519 [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;
NeilBrown32a76272005-06-21 17:17:14 -0700500 spin_lock_irqsave(&bitmap->lock, flags);
501 if (!bitmap->sb_page) { /* no superblock */
502 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700503 return;
NeilBrown32a76272005-06-21 17:17:14 -0700504 }
NeilBrown32a76272005-06-21 17:17:14 -0700505 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800506 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700507 sb->events = cpu_to_le64(bitmap->mddev->events);
Neil Browna0da84f2008-06-28 08:31:22 +1000508 if (bitmap->mddev->events < bitmap->events_cleared) {
509 /* rocking back to read-only */
510 bitmap->events_cleared = bitmap->mddev->events;
511 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
512 }
NeilBrown43a70502009-12-14 12:49:55 +1100513 /* Just in case these have been changed via sysfs: */
514 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
515 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownea03aff2006-01-06 00:20:34 -0800516 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700517 write_page(bitmap, bitmap->sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700518}
519
520/* print out the bitmap file superblock */
521void bitmap_print_sb(struct bitmap *bitmap)
522{
523 bitmap_super_t *sb;
524
525 if (!bitmap || !bitmap->sb_page)
526 return;
NeilBrownea03aff2006-01-06 00:20:34 -0800527 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700528 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700529 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
530 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
531 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700532 *(__u32 *)(sb->uuid+0),
533 *(__u32 *)(sb->uuid+4),
534 *(__u32 *)(sb->uuid+8),
535 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700536 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700537 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700538 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700539 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700540 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
541 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
542 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
543 printk(KERN_DEBUG " sync size: %llu KB\n",
544 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700545 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
NeilBrownea03aff2006-01-06 00:20:34 -0800546 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700547}
548
549/* read the superblock from the bitmap file and initialize some bitmap fields */
550static int bitmap_read_sb(struct bitmap *bitmap)
551{
552 char *reason = NULL;
553 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700554 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700555 unsigned long long events;
556 int err = -EINVAL;
557
558 /* page 0 is the superblock, read it... */
NeilBrownf49d5e62007-01-26 00:57:03 -0800559 if (bitmap->file) {
560 loff_t isize = i_size_read(bitmap->file->f_mapping->host);
561 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
562
563 bitmap->sb_page = read_page(bitmap->file, 0, bitmap, bytes);
564 } else {
NeilBrown42a04b52009-12-14 12:49:53 +1100565 bitmap->sb_page = read_sb_page(bitmap->mddev,
566 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100567 NULL,
568 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700569 }
NeilBrown32a76272005-06-21 17:17:14 -0700570 if (IS_ERR(bitmap->sb_page)) {
571 err = PTR_ERR(bitmap->sb_page);
572 bitmap->sb_page = NULL;
573 return err;
574 }
575
NeilBrownea03aff2006-01-06 00:20:34 -0800576 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700577
NeilBrown32a76272005-06-21 17:17:14 -0700578 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100579 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700580 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown32a76272005-06-21 17:17:14 -0700581
582 /* verify that the bitmap-specific fields are valid */
583 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
584 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800585 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
586 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700587 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100588 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800589 reason = "bitmap chunksize too small";
NeilBrown32a76272005-06-21 17:17:14 -0700590 else if ((1 << ffz(~chunksize)) != chunksize)
591 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100592 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800593 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700594 else if (write_behind > COUNTER_MAX)
595 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700596 if (reason) {
597 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
598 bmname(bitmap), reason);
599 goto out;
600 }
601
602 /* keep the array size field of the bitmap superblock up to date */
603 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
604
605 if (!bitmap->mddev->persistent)
606 goto success;
607
608 /*
609 * if we have a persistent array superblock, compare the
610 * bitmap's UUID and event counter to the mddev's
611 */
612 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
613 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
614 bmname(bitmap));
615 goto out;
616 }
617 events = le64_to_cpu(sb->events);
618 if (events < bitmap->mddev->events) {
619 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
620 "-- forcing full recovery\n", bmname(bitmap), events,
621 (unsigned long long) bitmap->mddev->events);
NeilBrown4f2e6392006-10-21 10:24:09 -0700622 sb->state |= cpu_to_le32(BITMAP_STALE);
NeilBrown32a76272005-06-21 17:17:14 -0700623 }
624success:
625 /* assign fields using values from superblock */
NeilBrown42a04b52009-12-14 12:49:53 +1100626 bitmap->mddev->bitmap_info.chunksize = chunksize;
627 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
NeilBrown585f0dd2005-09-09 16:23:49 -0700628 bitmap->daemon_lastrun = jiffies;
NeilBrown42a04b52009-12-14 12:49:53 +1100629 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
NeilBrown4f2e6392006-10-21 10:24:09 -0700630 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800631 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
632 bitmap->flags |= BITMAP_HOSTENDIAN;
NeilBrown32a76272005-06-21 17:17:14 -0700633 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
NeilBrown4f2e6392006-10-21 10:24:09 -0700634 if (sb->state & cpu_to_le32(BITMAP_STALE))
NeilBrown6a079972005-09-09 16:23:44 -0700635 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown32a76272005-06-21 17:17:14 -0700636 err = 0;
637out:
NeilBrownea03aff2006-01-06 00:20:34 -0800638 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700639 if (err)
640 bitmap_print_sb(bitmap);
641 return err;
642}
643
644enum bitmap_mask_op {
645 MASK_SET,
646 MASK_UNSET
647};
648
NeilBrown4ad13662007-07-17 04:06:13 -0700649/* record the state of the bitmap in the superblock. Return the old value */
650static int bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
651 enum bitmap_mask_op op)
NeilBrown32a76272005-06-21 17:17:14 -0700652{
653 bitmap_super_t *sb;
654 unsigned long flags;
NeilBrown4ad13662007-07-17 04:06:13 -0700655 int old;
NeilBrown32a76272005-06-21 17:17:14 -0700656
657 spin_lock_irqsave(&bitmap->lock, flags);
Adrian Bunk7e317652006-03-25 03:07:51 -0800658 if (!bitmap->sb_page) { /* can't set the state */
NeilBrown32a76272005-06-21 17:17:14 -0700659 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700660 return 0;
NeilBrown32a76272005-06-21 17:17:14 -0700661 }
NeilBrown32a76272005-06-21 17:17:14 -0700662 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800663 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700664 old = le32_to_cpu(sb->state) & bits;
NeilBrown32a76272005-06-21 17:17:14 -0700665 switch (op) {
NeilBrown4f2e6392006-10-21 10:24:09 -0700666 case MASK_SET: sb->state |= cpu_to_le32(bits);
NeilBrown32a76272005-06-21 17:17:14 -0700667 break;
NeilBrown4f2e6392006-10-21 10:24:09 -0700668 case MASK_UNSET: sb->state &= cpu_to_le32(~bits);
NeilBrown32a76272005-06-21 17:17:14 -0700669 break;
670 default: BUG();
671 }
NeilBrownea03aff2006-01-06 00:20:34 -0800672 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700673 return old;
NeilBrown32a76272005-06-21 17:17:14 -0700674}
675
676/*
677 * general bitmap file operations
678 */
679
680/* calculate the index of the page that contains this bit */
681static inline unsigned long file_page_index(unsigned long chunk)
682{
683 return CHUNK_BIT_OFFSET(chunk) >> PAGE_BIT_SHIFT;
684}
685
686/* calculate the (bit) offset of this bit within a page */
687static inline unsigned long file_page_offset(unsigned long chunk)
688{
689 return CHUNK_BIT_OFFSET(chunk) & (PAGE_BITS - 1);
690}
691
692/*
693 * return a pointer to the page in the filemap that contains the given bit
694 *
695 * this lookup is complicated by the fact that the bitmap sb might be exactly
696 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
697 * 0 or page 1
698 */
699static inline struct page *filemap_get_page(struct bitmap *bitmap,
700 unsigned long chunk)
701{
Paul Clements9b1d1da2006-10-03 01:15:49 -0700702 if (file_page_index(chunk) >= bitmap->file_pages) return NULL;
NeilBrown32a76272005-06-21 17:17:14 -0700703 return bitmap->filemap[file_page_index(chunk) - file_page_index(0)];
704}
705
706
707static void bitmap_file_unmap(struct bitmap *bitmap)
708{
709 struct page **map, *sb_page;
710 unsigned long *attr;
711 int pages;
712 unsigned long flags;
713
714 spin_lock_irqsave(&bitmap->lock, flags);
715 map = bitmap->filemap;
716 bitmap->filemap = NULL;
717 attr = bitmap->filemap_attr;
718 bitmap->filemap_attr = NULL;
719 pages = bitmap->file_pages;
720 bitmap->file_pages = 0;
721 sb_page = bitmap->sb_page;
722 bitmap->sb_page = NULL;
723 spin_unlock_irqrestore(&bitmap->lock, flags);
724
725 while (pages--)
726 if (map[pages]->index != 0) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700727 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700728 kfree(map);
729 kfree(attr);
730
NeilBrownd785a062006-06-26 00:27:48 -0700731 if (sb_page)
732 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700733}
734
735static void bitmap_file_put(struct bitmap *bitmap)
736{
737 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700738 unsigned long flags;
739
740 spin_lock_irqsave(&bitmap->lock, flags);
741 file = bitmap->file;
742 bitmap->file = NULL;
743 spin_unlock_irqrestore(&bitmap->lock, flags);
744
NeilBrownd785a062006-06-26 00:27:48 -0700745 if (file)
746 wait_event(bitmap->write_wait,
747 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700748 bitmap_file_unmap(bitmap);
749
NeilBrownd785a062006-06-26 00:27:48 -0700750 if (file) {
Josef Sipekc649bb92006-12-08 02:37:19 -0800751 struct inode *inode = file->f_path.dentry->d_inode;
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800752 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700753 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700754 }
NeilBrown32a76272005-06-21 17:17:14 -0700755}
756
757
758/*
759 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
760 * then it is no longer reliable, so we stop using it and we mark the file
761 * as failed in the superblock
762 */
763static void bitmap_file_kick(struct bitmap *bitmap)
764{
765 char *path, *ptr = NULL;
766
NeilBrown4ad13662007-07-17 04:06:13 -0700767 if (bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET) == 0) {
768 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700769
NeilBrown4ad13662007-07-17 04:06:13 -0700770 if (bitmap->file) {
771 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
772 if (path)
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700773 ptr = d_path(&bitmap->file->f_path, path,
774 PAGE_SIZE);
775
NeilBrown32a76272005-06-21 17:17:14 -0700776
NeilBrown4ad13662007-07-17 04:06:13 -0700777 printk(KERN_ALERT
778 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700779 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700780
NeilBrown4ad13662007-07-17 04:06:13 -0700781 kfree(path);
782 } else
783 printk(KERN_ALERT
784 "%s: disabling internal bitmap due to errors\n",
785 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700786 }
NeilBrown32a76272005-06-21 17:17:14 -0700787
788 bitmap_file_put(bitmap);
789
790 return;
791}
792
793enum bitmap_page_attr {
NeilBrowne16b68b2006-06-26 00:27:45 -0700794 BITMAP_PAGE_DIRTY = 0, // there are set bits that need to be synced
795 BITMAP_PAGE_CLEAN = 1, // there are bits that might need to be cleared
796 BITMAP_PAGE_NEEDWRITE=2, // there are cleared bits that need to be synced
NeilBrown32a76272005-06-21 17:17:14 -0700797};
798
799static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
800 enum bitmap_page_attr attr)
801{
NeilBrowne16b68b2006-06-26 00:27:45 -0700802 __set_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700803}
804
805static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
806 enum bitmap_page_attr attr)
807{
NeilBrowne16b68b2006-06-26 00:27:45 -0700808 __clear_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700809}
810
NeilBrownec7a3192006-06-26 00:27:45 -0700811static inline unsigned long test_page_attr(struct bitmap *bitmap, struct page *page,
812 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700813{
NeilBrowne16b68b2006-06-26 00:27:45 -0700814 return test_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700815}
816
817/*
818 * bitmap_file_set_bit -- called before performing a write to the md device
819 * to set (and eventually sync) a particular bit in the bitmap file
820 *
821 * we set the bit immediately, then we record the page number so that
822 * when an unplug occurs, we can flush the dirty pages out to disk
823 */
824static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
825{
826 unsigned long bit;
827 struct page *page;
828 void *kaddr;
829 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
830
NeilBrowna654b9d82005-06-21 17:17:27 -0700831 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700832 return;
833 }
834
835 page = filemap_get_page(bitmap, chunk);
Paul Clements9b1d1da2006-10-03 01:15:49 -0700836 if (!page) return;
NeilBrown32a76272005-06-21 17:17:14 -0700837 bit = file_page_offset(chunk);
838
NeilBrown32a76272005-06-21 17:17:14 -0700839 /* set the bit */
840 kaddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -0800841 if (bitmap->flags & BITMAP_HOSTENDIAN)
842 set_bit(bit, kaddr);
843 else
844 ext2_set_bit(bit, kaddr);
NeilBrown32a76272005-06-21 17:17:14 -0700845 kunmap_atomic(kaddr, KM_USER0);
846 PRINTK("set file bit %lu page %lu\n", bit, page->index);
847
848 /* record page number so it gets flushed to disk when unplug occurs */
849 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
850
851}
852
853/* this gets called when the md device is ready to unplug its underlying
854 * (slave) device queues -- before we let any writes go down, we need to
855 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700856void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700857{
NeilBrownec7a3192006-06-26 00:27:45 -0700858 unsigned long i, flags;
859 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700860 struct page *page;
861 int wait = 0;
862
863 if (!bitmap)
NeilBrown4ad13662007-07-17 04:06:13 -0700864 return;
NeilBrown32a76272005-06-21 17:17:14 -0700865
866 /* look at each page to see if there are any set bits that need to be
867 * flushed out to disk */
868 for (i = 0; i < bitmap->file_pages; i++) {
869 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -0700870 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700871 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700872 return;
NeilBrown32a76272005-06-21 17:17:14 -0700873 }
874 page = bitmap->filemap[i];
NeilBrownec7a3192006-06-26 00:27:45 -0700875 dirty = test_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
876 need_write = test_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -0700877 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
878 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrownec7a3192006-06-26 00:27:45 -0700879 if (dirty)
NeilBrown32a76272005-06-21 17:17:14 -0700880 wait = 1;
881 spin_unlock_irqrestore(&bitmap->lock, flags);
882
NeilBrownd785a062006-06-26 00:27:48 -0700883 if (dirty | need_write)
NeilBrown4ad13662007-07-17 04:06:13 -0700884 write_page(bitmap, page, 0);
NeilBrown32a76272005-06-21 17:17:14 -0700885 }
886 if (wait) { /* if any writes were performed, we need to wait on them */
NeilBrown0b79ccf2006-06-26 00:27:44 -0700887 if (bitmap->file)
NeilBrownd785a062006-06-26 00:27:48 -0700888 wait_event(bitmap->write_wait,
889 atomic_read(&bitmap->pending_writes)==0);
NeilBrown0b79ccf2006-06-26 00:27:44 -0700890 else
NeilBrowna9701a32005-11-08 21:39:34 -0800891 md_super_wait(bitmap->mddev);
NeilBrown32a76272005-06-21 17:17:14 -0700892 }
NeilBrownd785a062006-06-26 00:27:48 -0700893 if (bitmap->flags & BITMAP_WRITE_ERROR)
894 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700895}
896
NeilBrown6a079972005-09-09 16:23:44 -0700897static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700898/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
899 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
900 * memory mapping of the bitmap file
901 * Special cases:
902 * if there's no bitmap file, or if the bitmap file had been
903 * previously kicked from the array, we mark all the bits as
904 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700905 *
906 * We ignore all bits for sectors that end earlier than 'start'.
907 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700908 */
NeilBrown6a079972005-09-09 16:23:44 -0700909static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700910{
911 unsigned long i, chunks, index, oldindex, bit;
912 struct page *page = NULL, *oldpage = NULL;
913 unsigned long num_pages, bit_cnt = 0;
914 struct file *file;
NeilBrownd785a062006-06-26 00:27:48 -0700915 unsigned long bytes, offset;
NeilBrown32a76272005-06-21 17:17:14 -0700916 int outofdate;
917 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800918 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -0700919
920 chunks = bitmap->chunks;
921 file = bitmap->file;
922
NeilBrown42a04b52009-12-14 12:49:53 +1100923 BUG_ON(!file && !bitmap->mddev->bitmap_info.offset);
NeilBrown32a76272005-06-21 17:17:14 -0700924
Olaf Hering44456d32005-07-27 11:45:17 -0700925#ifdef INJECT_FAULTS_3
NeilBrown32a76272005-06-21 17:17:14 -0700926 outofdate = 1;
927#else
928 outofdate = bitmap->flags & BITMAP_STALE;
929#endif
930 if (outofdate)
931 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
932 "recovery\n", bmname(bitmap));
933
934 bytes = (chunks + 7) / 8;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700935
NeilBrowncdbb4cc2005-06-21 17:17:18 -0700936 num_pages = (bytes + sizeof(bitmap_super_t) + PAGE_SIZE - 1) / PAGE_SIZE;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700937
NeilBrowna654b9d82005-06-21 17:17:27 -0700938 if (file && i_size_read(file->f_mapping->host) < bytes + sizeof(bitmap_super_t)) {
NeilBrown32a76272005-06-21 17:17:14 -0700939 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
940 bmname(bitmap),
941 (unsigned long) i_size_read(file->f_mapping->host),
942 bytes + sizeof(bitmap_super_t));
NeilBrown4ad13662007-07-17 04:06:13 -0700943 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700944 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700945
946 ret = -ENOMEM;
947
NeilBrown32a76272005-06-21 17:17:14 -0700948 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700949 if (!bitmap->filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700950 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700951
NeilBrowne16b68b2006-06-26 00:27:45 -0700952 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
953 bitmap->filemap_attr = kzalloc(
Neil Brown505fa2c2007-04-11 23:28:44 -0700954 roundup( DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
NeilBrowne16b68b2006-06-26 00:27:45 -0700955 GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700956 if (!bitmap->filemap_attr)
NeilBrown4ad13662007-07-17 04:06:13 -0700957 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700958
NeilBrown32a76272005-06-21 17:17:14 -0700959 oldindex = ~0L;
960
961 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -0800962 int b;
NeilBrown32a76272005-06-21 17:17:14 -0700963 index = file_page_index(i);
964 bit = file_page_offset(i);
965 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -0700966 int count;
NeilBrown32a76272005-06-21 17:17:14 -0700967 /* unmap the old page, we're done with it */
NeilBrownd785a062006-06-26 00:27:48 -0700968 if (index == num_pages-1)
NeilBrownf49d5e62007-01-26 00:57:03 -0800969 count = bytes + sizeof(bitmap_super_t)
970 - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -0700971 else
972 count = PAGE_SIZE;
NeilBrown32a76272005-06-21 17:17:14 -0700973 if (index == 0) {
974 /*
975 * if we're here then the superblock page
976 * contains some bits (PAGE_SIZE != sizeof sb)
977 * we've already read it in, so just use it
978 */
979 page = bitmap->sb_page;
980 offset = sizeof(bitmap_super_t);
NeilBrown53845272009-01-09 08:31:05 +1100981 if (!file)
982 read_sb_page(bitmap->mddev,
NeilBrown42a04b52009-12-14 12:49:53 +1100983 bitmap->mddev->bitmap_info.offset,
NeilBrown53845272009-01-09 08:31:05 +1100984 page,
985 index, count);
NeilBrowna654b9d82005-06-21 17:17:27 -0700986 } else if (file) {
NeilBrownd785a062006-06-26 00:27:48 -0700987 page = read_page(file, index, bitmap, count);
NeilBrowna654b9d82005-06-21 17:17:27 -0700988 offset = 0;
989 } else {
NeilBrown42a04b52009-12-14 12:49:53 +1100990 page = read_sb_page(bitmap->mddev,
991 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100992 NULL,
993 index, count);
NeilBrown32a76272005-06-21 17:17:14 -0700994 offset = 0;
995 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700996 if (IS_ERR(page)) { /* read error */
997 ret = PTR_ERR(page);
NeilBrown4ad13662007-07-17 04:06:13 -0700998 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -0700999 }
1000
NeilBrown32a76272005-06-21 17:17:14 -07001001 oldindex = index;
1002 oldpage = page;
NeilBrown32a76272005-06-21 17:17:14 -07001003
NeilBrownb74fd282009-05-07 12:47:19 +10001004 bitmap->filemap[bitmap->file_pages++] = page;
1005 bitmap->last_page_size = count;
1006
NeilBrown32a76272005-06-21 17:17:14 -07001007 if (outofdate) {
1008 /*
1009 * if bitmap is out of date, dirty the
1010 * whole page and write it out
1011 */
NeilBrownea03aff2006-01-06 00:20:34 -08001012 paddr = kmap_atomic(page, KM_USER0);
1013 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001014 PAGE_SIZE - offset);
NeilBrownea03aff2006-01-06 00:20:34 -08001015 kunmap_atomic(paddr, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -07001016 write_page(bitmap, page, 1);
1017
1018 ret = -EIO;
NeilBrownb74fd282009-05-07 12:47:19 +10001019 if (bitmap->flags & BITMAP_WRITE_ERROR)
NeilBrown4ad13662007-07-17 04:06:13 -07001020 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001021 }
NeilBrown32a76272005-06-21 17:17:14 -07001022 }
NeilBrownea03aff2006-01-06 00:20:34 -08001023 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001024 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001025 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001026 else
NeilBrownea03aff2006-01-06 00:20:34 -08001027 b = ext2_test_bit(bit, paddr);
1028 kunmap_atomic(paddr, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001029 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001030 /* if the disk bit is set, set the memory bit */
NeilBrowndb305e52009-05-07 12:49:06 +10001031 int needed = ((sector_t)(i+1) << (CHUNK_BLOCK_SHIFT(bitmap))
1032 >= start);
1033 bitmap_set_memory_bits(bitmap,
1034 (sector_t)i << CHUNK_BLOCK_SHIFT(bitmap),
1035 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001036 bit_cnt++;
NeilBrown6a079972005-09-09 16:23:44 -07001037 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -07001038 }
NeilBrown32a76272005-06-21 17:17:14 -07001039 }
1040
1041 /* everything went OK */
1042 ret = 0;
1043 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_UNSET);
1044
NeilBrown32a76272005-06-21 17:17:14 -07001045 if (bit_cnt) { /* Kick recovery if any bits were set */
1046 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
1047 md_wakeup_thread(bitmap->mddev->thread);
1048 }
1049
NeilBrown32a76272005-06-21 17:17:14 -07001050 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrown4ad13662007-07-17 04:06:13 -07001051 "read %lu/%lu pages, set %lu bits\n",
1052 bmname(bitmap), bitmap->file_pages, num_pages, bit_cnt);
NeilBrown32a76272005-06-21 17:17:14 -07001053
NeilBrown4ad13662007-07-17 04:06:13 -07001054 return 0;
1055
1056 err:
1057 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1058 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001059 return ret;
1060}
1061
NeilBrowna654b9d82005-06-21 17:17:27 -07001062void bitmap_write_all(struct bitmap *bitmap)
1063{
1064 /* We don't actually write all bitmap blocks here,
1065 * just flag them as needing to be written
1066 */
NeilBrownec7a3192006-06-26 00:27:45 -07001067 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001068
NeilBrownec7a3192006-06-26 00:27:45 -07001069 for (i=0; i < bitmap->file_pages; i++)
1070 set_page_attr(bitmap, bitmap->filemap[i],
1071 BITMAP_PAGE_NEEDWRITE);
NeilBrowna654b9d82005-06-21 17:17:27 -07001072}
1073
NeilBrown32a76272005-06-21 17:17:14 -07001074
1075static void bitmap_count_page(struct bitmap *bitmap, sector_t offset, int inc)
1076{
1077 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1078 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1079 bitmap->bp[page].count += inc;
1080/*
1081 if (page == 0) printk("count page 0, offset %llu: %d gives %d\n",
1082 (unsigned long long)offset, inc, bitmap->bp[page].count);
1083*/
1084 bitmap_checkfree(bitmap, page);
1085}
1086static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1087 sector_t offset, int *blocks,
1088 int create);
1089
1090/*
1091 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1092 * out to disk
1093 */
1094
NeilBrownaa5cbd12009-12-14 12:49:46 +11001095void bitmap_daemon_work(mddev_t *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001096{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001097 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001098 unsigned long j;
NeilBrown32a76272005-06-21 17:17:14 -07001099 unsigned long flags;
1100 struct page *page = NULL, *lastpage = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001101 int blocks;
NeilBrownea03aff2006-01-06 00:20:34 -08001102 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -07001103
NeilBrownaa5cbd12009-12-14 12:49:46 +11001104 /* Use a mutex to guard daemon_work against
1105 * bitmap_destroy.
1106 */
NeilBrownc3d97142009-12-14 12:49:52 +11001107 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001108 bitmap = mddev->bitmap;
1109 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001110 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001111 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001112 }
NeilBrown42a04b52009-12-14 12:49:53 +11001113 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown1b04be92009-12-14 12:49:53 +11001114 + bitmap->mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001115 goto done;
1116
NeilBrown32a76272005-06-21 17:17:14 -07001117 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001118 if (bitmap->allclean) {
1119 bitmap->mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001120 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001121 }
1122 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001123
NeilBrownbe512692009-05-26 09:41:17 +10001124 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001125 for (j = 0; j < bitmap->chunks; j++) {
1126 bitmap_counter_t *bmc;
NeilBrownbe512692009-05-26 09:41:17 +10001127 if (!bitmap->filemap)
NeilBrown32a76272005-06-21 17:17:14 -07001128 /* error or shutdown */
NeilBrown32a76272005-06-21 17:17:14 -07001129 break;
NeilBrown32a76272005-06-21 17:17:14 -07001130
1131 page = filemap_get_page(bitmap, j);
NeilBrown32a76272005-06-21 17:17:14 -07001132
1133 if (page != lastpage) {
NeilBrownaa3163f2005-06-21 17:17:22 -07001134 /* skip this page unless it's marked as needing cleaning */
NeilBrownec7a3192006-06-26 00:27:45 -07001135 if (!test_page_attr(bitmap, page, BITMAP_PAGE_CLEAN)) {
1136 int need_write = test_page_attr(bitmap, page,
1137 BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001138 if (need_write)
NeilBrownaa3163f2005-06-21 17:17:22 -07001139 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001140
NeilBrownaa3163f2005-06-21 17:17:22 -07001141 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001142 if (need_write) {
NeilBrown4ad13662007-07-17 04:06:13 -07001143 write_page(bitmap, page, 0);
NeilBrown8311c292008-03-04 14:29:30 -08001144 bitmap->allclean = 0;
1145 }
NeilBrownbe512692009-05-26 09:41:17 +10001146 spin_lock_irqsave(&bitmap->lock, flags);
1147 j |= (PAGE_BITS - 1);
NeilBrownaa3163f2005-06-21 17:17:22 -07001148 continue;
1149 }
1150
NeilBrown32a76272005-06-21 17:17:14 -07001151 /* grab the new page, sync and release the old */
NeilBrown32a76272005-06-21 17:17:14 -07001152 if (lastpage != NULL) {
NeilBrownec7a3192006-06-26 00:27:45 -07001153 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001154 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1155 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001156 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001157 } else {
1158 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1159 spin_unlock_irqrestore(&bitmap->lock, flags);
1160 }
NeilBrown32a76272005-06-21 17:17:14 -07001161 } else
1162 spin_unlock_irqrestore(&bitmap->lock, flags);
1163 lastpage = page;
Neil Browna0da84f2008-06-28 08:31:22 +10001164
1165 /* We are possibly going to clear some bits, so make
1166 * sure that events_cleared is up-to-date.
1167 */
1168 if (bitmap->need_sync) {
1169 bitmap_super_t *sb;
1170 bitmap->need_sync = 0;
1171 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
1172 sb->events_cleared =
1173 cpu_to_le64(bitmap->events_cleared);
1174 kunmap_atomic(sb, KM_USER0);
1175 write_page(bitmap, bitmap->sb_page, 1);
1176 }
NeilBrown32a76272005-06-21 17:17:14 -07001177 spin_lock_irqsave(&bitmap->lock, flags);
1178 clear_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1179 }
NeilBrowndb305e52009-05-07 12:49:06 +10001180 bmc = bitmap_get_counter(bitmap,
1181 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
1182 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001183 if (bmc) {
1184/*
1185 if (j < 100) printk("bitmap: j=%lu, *bmc = 0x%x\n", j, *bmc);
1186*/
NeilBrown8311c292008-03-04 14:29:30 -08001187 if (*bmc)
1188 bitmap->allclean = 0;
1189
NeilBrown32a76272005-06-21 17:17:14 -07001190 if (*bmc == 2) {
1191 *bmc=1; /* maybe clear the bit next time */
1192 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1193 } else if (*bmc == 1) {
1194 /* we can clear the bit */
1195 *bmc = 0;
NeilBrowndb305e52009-05-07 12:49:06 +10001196 bitmap_count_page(bitmap,
1197 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
NeilBrown32a76272005-06-21 17:17:14 -07001198 -1);
1199
1200 /* clear the bit */
NeilBrownea03aff2006-01-06 00:20:34 -08001201 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001202 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001203 clear_bit(file_page_offset(j), paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001204 else
NeilBrownea03aff2006-01-06 00:20:34 -08001205 ext2_clear_bit(file_page_offset(j), paddr);
1206 kunmap_atomic(paddr, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -07001207 }
NeilBrownbe512692009-05-26 09:41:17 +10001208 } else
1209 j |= PAGE_COUNTER_MASK;
NeilBrown32a76272005-06-21 17:17:14 -07001210 }
NeilBrownbe512692009-05-26 09:41:17 +10001211 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001212
1213 /* now sync the final page */
1214 if (lastpage != NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001215 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownec7a3192006-06-26 00:27:45 -07001216 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001217 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1218 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001219 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001220 } else {
1221 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1222 spin_unlock_irqrestore(&bitmap->lock, flags);
1223 }
NeilBrown32a76272005-06-21 17:17:14 -07001224 }
1225
NeilBrown7be3dfe2008-03-10 11:43:48 -07001226 done:
NeilBrown8311c292008-03-04 14:29:30 -08001227 if (bitmap->allclean == 0)
NeilBrown42a04b52009-12-14 12:49:53 +11001228 bitmap->mddev->thread->timeout =
NeilBrown1b04be92009-12-14 12:49:53 +11001229 bitmap->mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001230 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001231}
1232
NeilBrown32a76272005-06-21 17:17:14 -07001233static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1234 sector_t offset, int *blocks,
1235 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001236__releases(bitmap->lock)
1237__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001238{
1239 /* If 'create', we might release the lock and reclaim it.
1240 * The lock must have been taken with interrupts enabled.
1241 * If !create, we don't release the lock.
1242 */
1243 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1244 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1245 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1246 sector_t csize;
1247
1248 if (bitmap_checkpage(bitmap, page, create) < 0) {
1249 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1250 *blocks = csize - (offset & (csize- 1));
1251 return NULL;
1252 }
1253 /* now locked ... */
1254
1255 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1256 /* should we use the first or second counter field
1257 * of the hijacked pointer? */
1258 int hi = (pageoff > PAGE_COUNTER_MASK);
1259 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1260 PAGE_COUNTER_SHIFT - 1);
1261 *blocks = csize - (offset & (csize- 1));
1262 return &((bitmap_counter_t *)
1263 &bitmap->bp[page].map)[hi];
1264 } else { /* page is allocated */
1265 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1266 *blocks = csize - (offset & (csize- 1));
1267 return (bitmap_counter_t *)
1268 &(bitmap->bp[page].map[pageoff]);
1269 }
1270}
1271
NeilBrown4b6d2872005-09-09 16:23:47 -07001272int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001273{
1274 if (!bitmap) return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001275
1276 if (behind) {
1277 atomic_inc(&bitmap->behind_writes);
1278 PRINTK(KERN_DEBUG "inc write-behind count %d/%d\n",
1279 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1280 }
1281
NeilBrown32a76272005-06-21 17:17:14 -07001282 while (sectors) {
1283 int blocks;
1284 bitmap_counter_t *bmc;
1285
1286 spin_lock_irq(&bitmap->lock);
1287 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1288 if (!bmc) {
1289 spin_unlock_irq(&bitmap->lock);
1290 return 0;
1291 }
1292
Neil Brownda6e1a32007-02-08 14:20:37 -08001293 if (unlikely((*bmc & COUNTER_MAX) == COUNTER_MAX)) {
1294 DEFINE_WAIT(__wait);
1295 /* note that it is safe to do the prepare_to_wait
1296 * after the test as long as we do it before dropping
1297 * the spinlock.
1298 */
1299 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1300 TASK_UNINTERRUPTIBLE);
1301 spin_unlock_irq(&bitmap->lock);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05001302 blk_unplug(bitmap->mddev->queue);
Neil Brownda6e1a32007-02-08 14:20:37 -08001303 schedule();
1304 finish_wait(&bitmap->overflow_wait, &__wait);
1305 continue;
1306 }
1307
NeilBrown32a76272005-06-21 17:17:14 -07001308 switch(*bmc) {
1309 case 0:
1310 bitmap_file_set_bit(bitmap, offset);
1311 bitmap_count_page(bitmap,offset, 1);
Jens Axboe93769f52008-08-01 20:32:31 +02001312 blk_plug_device_unlocked(bitmap->mddev->queue);
NeilBrown32a76272005-06-21 17:17:14 -07001313 /* fall through */
1314 case 1:
1315 *bmc = 2;
1316 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001317
NeilBrown32a76272005-06-21 17:17:14 -07001318 (*bmc)++;
1319
1320 spin_unlock_irq(&bitmap->lock);
1321
1322 offset += blocks;
1323 if (sectors > blocks)
1324 sectors -= blocks;
1325 else sectors = 0;
1326 }
NeilBrown8311c292008-03-04 14:29:30 -08001327 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001328 return 0;
1329}
1330
1331void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001332 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001333{
1334 if (!bitmap) return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001335 if (behind) {
1336 atomic_dec(&bitmap->behind_writes);
1337 PRINTK(KERN_DEBUG "dec write-behind count %d/%d\n",
1338 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1339 }
NeilBrownd0a4bb42009-03-31 14:27:02 +11001340 if (bitmap->mddev->degraded)
1341 /* Never clear bits or update events_cleared when degraded */
1342 success = 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001343
NeilBrown32a76272005-06-21 17:17:14 -07001344 while (sectors) {
1345 int blocks;
1346 unsigned long flags;
1347 bitmap_counter_t *bmc;
1348
1349 spin_lock_irqsave(&bitmap->lock, flags);
1350 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1351 if (!bmc) {
1352 spin_unlock_irqrestore(&bitmap->lock, flags);
1353 return;
1354 }
1355
Neil Browna0da84f2008-06-28 08:31:22 +10001356 if (success &&
1357 bitmap->events_cleared < bitmap->mddev->events) {
1358 bitmap->events_cleared = bitmap->mddev->events;
1359 bitmap->need_sync = 1;
1360 }
1361
NeilBrown32a76272005-06-21 17:17:14 -07001362 if (!success && ! (*bmc & NEEDED_MASK))
1363 *bmc |= NEEDED_MASK;
1364
Neil Brownda6e1a32007-02-08 14:20:37 -08001365 if ((*bmc & COUNTER_MAX) == COUNTER_MAX)
1366 wake_up(&bitmap->overflow_wait);
1367
NeilBrown32a76272005-06-21 17:17:14 -07001368 (*bmc)--;
1369 if (*bmc <= 2) {
1370 set_page_attr(bitmap,
1371 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1372 BITMAP_PAGE_CLEAN);
1373 }
1374 spin_unlock_irqrestore(&bitmap->lock, flags);
1375 offset += blocks;
1376 if (sectors > blocks)
1377 sectors -= blocks;
1378 else sectors = 0;
1379 }
1380}
1381
NeilBrown1187cf02009-03-31 14:27:02 +11001382static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1383 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001384{
1385 bitmap_counter_t *bmc;
1386 int rv;
1387 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1388 *blocks = 1024;
1389 return 1; /* always resync if no bitmap */
1390 }
1391 spin_lock_irq(&bitmap->lock);
1392 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1393 rv = 0;
1394 if (bmc) {
1395 /* locked */
1396 if (RESYNC(*bmc))
1397 rv = 1;
1398 else if (NEEDED(*bmc)) {
1399 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001400 if (!degraded) { /* don't set/clear bits if degraded */
1401 *bmc |= RESYNC_MASK;
1402 *bmc &= ~NEEDED_MASK;
1403 }
NeilBrown32a76272005-06-21 17:17:14 -07001404 }
1405 }
1406 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001407 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001408 return rv;
1409}
1410
NeilBrown1187cf02009-03-31 14:27:02 +11001411int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1412 int degraded)
1413{
1414 /* bitmap_start_sync must always report on multiples of whole
1415 * pages, otherwise resync (which is very PAGE_SIZE based) will
1416 * get confused.
1417 * So call __bitmap_start_sync repeatedly (if needed) until
1418 * At least PAGE_SIZE>>9 blocks are covered.
1419 * Return the 'or' of the result.
1420 */
1421 int rv = 0;
1422 int blocks1;
1423
1424 *blocks = 0;
1425 while (*blocks < (PAGE_SIZE>>9)) {
1426 rv |= __bitmap_start_sync(bitmap, offset,
1427 &blocks1, degraded);
1428 offset += blocks1;
1429 *blocks += blocks1;
1430 }
1431 return rv;
1432}
1433
NeilBrown32a76272005-06-21 17:17:14 -07001434void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, int *blocks, int aborted)
1435{
1436 bitmap_counter_t *bmc;
1437 unsigned long flags;
1438/*
1439 if (offset == 0) printk("bitmap_end_sync 0 (%d)\n", aborted);
1440*/ if (bitmap == NULL) {
1441 *blocks = 1024;
1442 return;
1443 }
1444 spin_lock_irqsave(&bitmap->lock, flags);
1445 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1446 if (bmc == NULL)
1447 goto unlock;
1448 /* locked */
1449/*
1450 if (offset == 0) printk("bitmap_end sync found 0x%x, blocks %d\n", *bmc, *blocks);
1451*/
1452 if (RESYNC(*bmc)) {
1453 *bmc &= ~RESYNC_MASK;
1454
1455 if (!NEEDED(*bmc) && aborted)
1456 *bmc |= NEEDED_MASK;
1457 else {
1458 if (*bmc <= 2) {
1459 set_page_attr(bitmap,
1460 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1461 BITMAP_PAGE_CLEAN);
1462 }
1463 }
1464 }
1465 unlock:
1466 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001467 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001468}
1469
1470void bitmap_close_sync(struct bitmap *bitmap)
1471{
1472 /* Sync has finished, and any bitmap chunks that weren't synced
1473 * properly have been aborted. It remains to us to clear the
1474 * RESYNC bit wherever it is still on
1475 */
1476 sector_t sector = 0;
1477 int blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001478 if (!bitmap)
1479 return;
NeilBrown32a76272005-06-21 17:17:14 -07001480 while (sector < bitmap->mddev->resync_max_sectors) {
1481 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001482 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001483 }
1484}
1485
NeilBrownb47490c2008-02-06 01:39:50 -08001486void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1487{
1488 sector_t s = 0;
1489 int blocks;
1490
1491 if (!bitmap)
1492 return;
1493 if (sector == 0) {
1494 bitmap->last_end_sync = jiffies;
1495 return;
1496 }
1497 if (time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001498 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001499 return;
1500 wait_event(bitmap->mddev->recovery_wait,
1501 atomic_read(&bitmap->mddev->recovery_active) == 0);
1502
NeilBrown97e4f422009-03-31 14:33:13 +11001503 bitmap->mddev->curr_resync_completed = bitmap->mddev->curr_resync;
1504 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrownb47490c2008-02-06 01:39:50 -08001505 sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
1506 s = 0;
1507 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1508 bitmap_end_sync(bitmap, s, &blocks, 0);
1509 s += blocks;
1510 }
1511 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001512 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001513}
1514
NeilBrown6a079972005-09-09 16:23:44 -07001515static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001516{
1517 /* For each chunk covered by any of these sectors, set the
NeilBrown193f1c92005-08-04 12:53:33 -07001518 * counter to 1 and set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001519 * be 0 at this point
1520 */
NeilBrown193f1c92005-08-04 12:53:33 -07001521
1522 int secs;
1523 bitmap_counter_t *bmc;
1524 spin_lock_irq(&bitmap->lock);
1525 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1526 if (!bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001527 spin_unlock_irq(&bitmap->lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001528 return;
NeilBrown32a76272005-06-21 17:17:14 -07001529 }
NeilBrown193f1c92005-08-04 12:53:33 -07001530 if (! *bmc) {
1531 struct page *page;
NeilBrown6a079972005-09-09 16:23:44 -07001532 *bmc = 1 | (needed?NEEDED_MASK:0);
NeilBrown193f1c92005-08-04 12:53:33 -07001533 bitmap_count_page(bitmap, offset, 1);
1534 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
1535 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1536 }
1537 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001538 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001539}
1540
Paul Clements9b1d1da2006-10-03 01:15:49 -07001541/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1542void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1543{
1544 unsigned long chunk;
1545
1546 for (chunk = s; chunk <= e; chunk++) {
NeilBrowndb305e52009-05-07 12:49:06 +10001547 sector_t sec = (sector_t)chunk << CHUNK_BLOCK_SHIFT(bitmap);
Paul Clements9b1d1da2006-10-03 01:15:49 -07001548 bitmap_set_memory_bits(bitmap, sec, 1);
1549 bitmap_file_set_bit(bitmap, sec);
1550 }
1551}
1552
NeilBrown32a76272005-06-21 17:17:14 -07001553/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001554 * flush out any pending updates
1555 */
1556void bitmap_flush(mddev_t *mddev)
1557{
1558 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001559 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001560
1561 if (!bitmap) /* there was no bitmap */
1562 return;
1563
1564 /* run the daemon_work three time to ensure everything is flushed
1565 * that can be
1566 */
NeilBrown1b04be92009-12-14 12:49:53 +11001567 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001568 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001569 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001570 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001571 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001572 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001573 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001574 bitmap_update_sb(bitmap);
1575}
1576
1577/*
NeilBrown32a76272005-06-21 17:17:14 -07001578 * free memory that was allocated
1579 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001580static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001581{
1582 unsigned long k, pages;
1583 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001584
1585 if (!bitmap) /* there was no bitmap */
1586 return;
1587
NeilBrown32a76272005-06-21 17:17:14 -07001588 /* release the bitmap file and kill the daemon */
1589 bitmap_file_put(bitmap);
1590
1591 bp = bitmap->bp;
1592 pages = bitmap->pages;
1593
1594 /* free all allocated memory */
1595
NeilBrown32a76272005-06-21 17:17:14 -07001596 if (bp) /* deallocate the page memory */
1597 for (k = 0; k < pages; k++)
1598 if (bp[k].map && !bp[k].hijacked)
1599 kfree(bp[k].map);
1600 kfree(bp);
1601 kfree(bitmap);
1602}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001603
NeilBrown3178b0d2005-09-09 16:23:50 -07001604void bitmap_destroy(mddev_t *mddev)
1605{
1606 struct bitmap *bitmap = mddev->bitmap;
1607
1608 if (!bitmap) /* there was no bitmap */
1609 return;
1610
NeilBrownc3d97142009-12-14 12:49:52 +11001611 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown3178b0d2005-09-09 16:23:50 -07001612 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrownc3d97142009-12-14 12:49:52 +11001613 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001614 if (mddev->thread)
1615 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001616
1617 bitmap_free(bitmap);
1618}
NeilBrown32a76272005-06-21 17:17:14 -07001619
1620/*
1621 * initialize the bitmap structure
1622 * if this returns an error, bitmap_destroy must be called to do clean up
1623 */
1624int bitmap_create(mddev_t *mddev)
1625{
1626 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001627 sector_t blocks = mddev->resync_max_sectors;
NeilBrown32a76272005-06-21 17:17:14 -07001628 unsigned long chunks;
1629 unsigned long pages;
NeilBrownc3d97142009-12-14 12:49:52 +11001630 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001631 int err;
NeilBrown6a079972005-09-09 16:23:44 -07001632 sector_t start;
NeilBrown32a76272005-06-21 17:17:14 -07001633
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001634 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001635
NeilBrownc3d97142009-12-14 12:49:52 +11001636 if (!file && !mddev->bitmap_info.offset) /* bitmap disabled, nothing to do */
NeilBrown32a76272005-06-21 17:17:14 -07001637 return 0;
1638
NeilBrownc3d97142009-12-14 12:49:52 +11001639 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001640
NeilBrown9ffae0c2006-01-06 00:20:32 -08001641 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001642 if (!bitmap)
1643 return -ENOMEM;
1644
NeilBrown32a76272005-06-21 17:17:14 -07001645 spin_lock_init(&bitmap->lock);
NeilBrownce25c312006-06-26 00:27:49 -07001646 atomic_set(&bitmap->pending_writes, 0);
1647 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001648 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001649
NeilBrown32a76272005-06-21 17:17:14 -07001650 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001651
NeilBrown32a76272005-06-21 17:17:14 -07001652 bitmap->file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001653 if (file) {
1654 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001655 /* As future accesses to this file will use bmap,
1656 * and bypass the page cache, we must sync the file
1657 * first.
1658 */
1659 vfs_fsync(file, file->f_dentry, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001660 }
NeilBrown42a04b52009-12-14 12:49:53 +11001661 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
NeilBrown32a76272005-06-21 17:17:14 -07001662 err = bitmap_read_sb(bitmap);
1663 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001664 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001665
NeilBrown42a04b52009-12-14 12:49:53 +11001666 bitmap->chunkshift = ffz(~mddev->bitmap_info.chunksize);
NeilBrown32a76272005-06-21 17:17:14 -07001667
1668 /* now that chunksize and chunkshift are set, we can use these macros */
NeilBrown1f593902009-04-20 11:50:24 +10001669 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) >>
1670 CHUNK_BLOCK_SHIFT(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -07001671 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
1672
1673 BUG_ON(!pages);
1674
1675 bitmap->chunks = chunks;
1676 bitmap->pages = pages;
1677 bitmap->missing_pages = pages;
1678 bitmap->counter_bits = COUNTER_BITS;
1679
1680 bitmap->syncchunk = ~0UL;
1681
Olaf Hering44456d32005-07-27 11:45:17 -07001682#ifdef INJECT_FATAL_FAULT_1
NeilBrown32a76272005-06-21 17:17:14 -07001683 bitmap->bp = NULL;
1684#else
NeilBrown9ffae0c2006-01-06 00:20:32 -08001685 bitmap->bp = kzalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001686#endif
NeilBrown3178b0d2005-09-09 16:23:50 -07001687 err = -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -07001688 if (!bitmap->bp)
NeilBrown3178b0d2005-09-09 16:23:50 -07001689 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001690
NeilBrown32a76272005-06-21 17:17:14 -07001691 /* now that we have some pages available, initialize the in-memory
1692 * bitmap from the on-disk bitmap */
NeilBrown6a079972005-09-09 16:23:44 -07001693 start = 0;
1694 if (mddev->degraded == 0
1695 || bitmap->events_cleared == mddev->events)
1696 /* no need to keep dirty bits to optimise a re-add of a missing device */
1697 start = mddev->recovery_cp;
1698 err = bitmap_init_from_disk(bitmap, start);
NeilBrown193f1c92005-08-04 12:53:33 -07001699
NeilBrown32a76272005-06-21 17:17:14 -07001700 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001701 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001702
1703 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1704 pages, bmname(bitmap));
1705
NeilBrown3178b0d2005-09-09 16:23:50 -07001706 mddev->bitmap = bitmap;
1707
NeilBrown1b04be92009-12-14 12:49:53 +11001708 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001709 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001710
NeilBrown4ad13662007-07-17 04:06:13 -07001711 bitmap_update_sb(bitmap);
1712
1713 return (bitmap->flags & BITMAP_WRITE_ERROR) ? -EIO : 0;
NeilBrown3178b0d2005-09-09 16:23:50 -07001714
1715 error:
1716 bitmap_free(bitmap);
1717 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001718}
1719
NeilBrown43a70502009-12-14 12:49:55 +11001720static ssize_t
1721location_show(mddev_t *mddev, char *page)
1722{
1723 ssize_t len;
1724 if (mddev->bitmap_info.file) {
1725 len = sprintf(page, "file");
1726 } else if (mddev->bitmap_info.offset) {
1727 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
1728 } else
1729 len = sprintf(page, "none");
1730 len += sprintf(page+len, "\n");
1731 return len;
1732}
1733
1734static ssize_t
1735location_store(mddev_t *mddev, const char *buf, size_t len)
1736{
1737
1738 if (mddev->pers) {
1739 if (!mddev->pers->quiesce)
1740 return -EBUSY;
1741 if (mddev->recovery || mddev->sync_thread)
1742 return -EBUSY;
1743 }
1744
1745 if (mddev->bitmap || mddev->bitmap_info.file ||
1746 mddev->bitmap_info.offset) {
1747 /* bitmap already configured. Only option is to clear it */
1748 if (strncmp(buf, "none", 4) != 0)
1749 return -EBUSY;
1750 if (mddev->pers) {
1751 mddev->pers->quiesce(mddev, 1);
1752 bitmap_destroy(mddev);
1753 mddev->pers->quiesce(mddev, 0);
1754 }
1755 mddev->bitmap_info.offset = 0;
1756 if (mddev->bitmap_info.file) {
1757 struct file *f = mddev->bitmap_info.file;
1758 mddev->bitmap_info.file = NULL;
1759 restore_bitmap_write_access(f);
1760 fput(f);
1761 }
1762 } else {
1763 /* No bitmap, OK to set a location */
1764 long long offset;
1765 if (strncmp(buf, "none", 4) == 0)
1766 /* nothing to be done */;
1767 else if (strncmp(buf, "file:", 5) == 0) {
1768 /* Not supported yet */
1769 return -EINVAL;
1770 } else {
1771 int rv;
1772 if (buf[0] == '+')
1773 rv = strict_strtoll(buf+1, 10, &offset);
1774 else
1775 rv = strict_strtoll(buf, 10, &offset);
1776 if (rv)
1777 return rv;
1778 if (offset == 0)
1779 return -EINVAL;
1780 if (mddev->major_version == 0 &&
1781 offset != mddev->bitmap_info.default_offset)
1782 return -EINVAL;
1783 mddev->bitmap_info.offset = offset;
1784 if (mddev->pers) {
1785 mddev->pers->quiesce(mddev, 1);
1786 rv = bitmap_create(mddev);
1787 if (rv) {
1788 bitmap_destroy(mddev);
1789 mddev->bitmap_info.offset = 0;
1790 }
1791 mddev->pers->quiesce(mddev, 0);
1792 if (rv)
1793 return rv;
1794 }
1795 }
1796 }
1797 if (!mddev->external) {
1798 /* Ensure new bitmap info is stored in
1799 * metadata promptly.
1800 */
1801 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1802 md_wakeup_thread(mddev->thread);
1803 }
1804 return len;
1805}
1806
1807static struct md_sysfs_entry bitmap_location =
1808__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
1809
1810static ssize_t
1811timeout_show(mddev_t *mddev, char *page)
1812{
1813 ssize_t len;
1814 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
1815 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
1816
1817 len = sprintf(page, "%lu", secs);
1818 if (jifs)
1819 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
1820 len += sprintf(page+len, "\n");
1821 return len;
1822}
1823
1824static ssize_t
1825timeout_store(mddev_t *mddev, const char *buf, size_t len)
1826{
1827 /* timeout can be set at any time */
1828 unsigned long timeout;
1829 int rv = strict_strtoul_scaled(buf, &timeout, 4);
1830 if (rv)
1831 return rv;
1832
1833 /* just to make sure we don't overflow... */
1834 if (timeout >= LONG_MAX / HZ)
1835 return -EINVAL;
1836
1837 timeout = timeout * HZ / 10000;
1838
1839 if (timeout >= MAX_SCHEDULE_TIMEOUT)
1840 timeout = MAX_SCHEDULE_TIMEOUT-1;
1841 if (timeout < 1)
1842 timeout = 1;
1843 mddev->bitmap_info.daemon_sleep = timeout;
1844 if (mddev->thread) {
1845 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
1846 * the bitmap is all clean and we don't need to
1847 * adjust the timeout right now
1848 */
1849 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
1850 mddev->thread->timeout = timeout;
1851 md_wakeup_thread(mddev->thread);
1852 }
1853 }
1854 return len;
1855}
1856
1857static struct md_sysfs_entry bitmap_timeout =
1858__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
1859
1860static ssize_t
1861backlog_show(mddev_t *mddev, char *page)
1862{
1863 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
1864}
1865
1866static ssize_t
1867backlog_store(mddev_t *mddev, const char *buf, size_t len)
1868{
1869 unsigned long backlog;
1870 int rv = strict_strtoul(buf, 10, &backlog);
1871 if (rv)
1872 return rv;
1873 if (backlog > COUNTER_MAX)
1874 return -EINVAL;
1875 mddev->bitmap_info.max_write_behind = backlog;
1876 return len;
1877}
1878
1879static struct md_sysfs_entry bitmap_backlog =
1880__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
1881
1882static ssize_t
1883chunksize_show(mddev_t *mddev, char *page)
1884{
1885 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
1886}
1887
1888static ssize_t
1889chunksize_store(mddev_t *mddev, const char *buf, size_t len)
1890{
1891 /* Can only be changed when no bitmap is active */
1892 int rv;
1893 unsigned long csize;
1894 if (mddev->bitmap)
1895 return -EBUSY;
1896 rv = strict_strtoul(buf, 10, &csize);
1897 if (rv)
1898 return rv;
1899 if (csize < 512 ||
1900 !is_power_of_2(csize))
1901 return -EINVAL;
1902 mddev->bitmap_info.chunksize = csize;
1903 return len;
1904}
1905
1906static struct md_sysfs_entry bitmap_chunksize =
1907__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
1908
1909static struct attribute *md_bitmap_attrs[] = {
1910 &bitmap_location.attr,
1911 &bitmap_timeout.attr,
1912 &bitmap_backlog.attr,
1913 &bitmap_chunksize.attr,
1914 NULL
1915};
1916struct attribute_group md_bitmap_group = {
1917 .name = "bitmap",
1918 .attrs = md_bitmap_attrs,
1919};
1920
1921
NeilBrown32a76272005-06-21 17:17:14 -07001922/* the bitmap API -- for raid personalities */
1923EXPORT_SYMBOL(bitmap_startwrite);
1924EXPORT_SYMBOL(bitmap_endwrite);
1925EXPORT_SYMBOL(bitmap_start_sync);
1926EXPORT_SYMBOL(bitmap_end_sync);
1927EXPORT_SYMBOL(bitmap_unplug);
1928EXPORT_SYMBOL(bitmap_close_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001929EXPORT_SYMBOL(bitmap_cond_end_sync);