md/bitmap: use DIV_ROUND_UP instead of open-code
[linux-2.6-block.git] / drivers / md / bitmap.c
CommitLineData
32a7627c
N
1/*
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
32a7627c
N
10 */
11
12/*
13 * Still to do:
14 *
15 * flush after percent set rather than just time based. (maybe both).
32a7627c
N
16 */
17
bff61975 18#include <linux/blkdev.h>
32a7627c 19#include <linux/module.h>
32a7627c
N
20#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/init.h>
32a7627c
N
23#include <linux/timer.h>
24#include <linux/sched.h>
25#include <linux/list.h>
26#include <linux/file.h>
27#include <linux/mount.h>
28#include <linux/buffer_head.h>
57148964 29#include <linux/seq_file.h>
43b2e5d8 30#include "md.h"
ef740c37 31#include "bitmap.h"
32a7627c 32
ac2f40be 33static inline char *bmname(struct bitmap *bitmap)
32a7627c
N
34{
35 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
36}
37
32a7627c
N
38/*
39 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
40 *
41 * 1) check to see if this page is allocated, if it's not then try to alloc
42 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
43 * page pointer directly as a counter
44 *
45 * if we find our page, we increment the page's refcount so that it stays
46 * allocated while we're using it
47 */
40cffcc0 48static int bitmap_checkpage(struct bitmap_counts *bitmap,
ac2f40be 49 unsigned long page, int create)
ee305ace
N
50__releases(bitmap->lock)
51__acquires(bitmap->lock)
32a7627c
N
52{
53 unsigned char *mappage;
54
55 if (page >= bitmap->pages) {
1187cf0a
N
56 /* This can happen if bitmap_start_sync goes beyond
57 * End-of-device while looking for a whole page.
58 * It is harmless.
59 */
32a7627c
N
60 return -EINVAL;
61 }
62
32a7627c
N
63 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
64 return 0;
65
66 if (bitmap->bp[page].map) /* page is already allocated, just return */
67 return 0;
68
69 if (!create)
70 return -ENOENT;
71
32a7627c
N
72 /* this page has not been allocated yet */
73
ac2f40be 74 spin_unlock_irq(&bitmap->lock);
792a1d4b 75 mappage = kzalloc(PAGE_SIZE, GFP_NOIO);
ac2f40be
N
76 spin_lock_irq(&bitmap->lock);
77
78 if (mappage == NULL) {
40cffcc0 79 pr_debug("md/bitmap: map page allocation failed, hijacking\n");
32a7627c
N
80 /* failed - set the hijacked flag so that we can use the
81 * pointer as a counter */
32a7627c
N
82 if (!bitmap->bp[page].map)
83 bitmap->bp[page].hijacked = 1;
ac2f40be
N
84 } else if (bitmap->bp[page].map ||
85 bitmap->bp[page].hijacked) {
32a7627c 86 /* somebody beat us to getting the page */
792a1d4b 87 kfree(mappage);
32a7627c 88 return 0;
ac2f40be 89 } else {
32a7627c 90
ac2f40be 91 /* no page was in place and we have one, so install it */
32a7627c 92
ac2f40be
N
93 bitmap->bp[page].map = mappage;
94 bitmap->missing_pages--;
95 }
32a7627c
N
96 return 0;
97}
98
32a7627c
N
99/* if page is completely empty, put it back on the free list, or dealloc it */
100/* if page was hijacked, unmark the flag so it might get alloced next time */
101/* Note: lock should be held when calling this */
40cffcc0 102static void bitmap_checkfree(struct bitmap_counts *bitmap, unsigned long page)
32a7627c
N
103{
104 char *ptr;
105
106 if (bitmap->bp[page].count) /* page is still busy */
107 return;
108
109 /* page is no longer in use, it can be released */
110
111 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
112 bitmap->bp[page].hijacked = 0;
113 bitmap->bp[page].map = NULL;
ac2f40be
N
114 } else {
115 /* normal case, free the page */
116 ptr = bitmap->bp[page].map;
117 bitmap->bp[page].map = NULL;
118 bitmap->missing_pages++;
792a1d4b 119 kfree(ptr);
32a7627c 120 }
32a7627c
N
121}
122
32a7627c
N
123/*
124 * bitmap file handling - read and write the bitmap file and its superblock
125 */
126
32a7627c
N
127/*
128 * basic page I/O operations
129 */
130
a654b9d8 131/* IO operations when bitmap is stored near all superblocks */
27581e5a
N
132static int read_sb_page(struct mddev *mddev, loff_t offset,
133 struct page *page,
134 unsigned long index, int size)
a654b9d8
N
135{
136 /* choose a good rdev and read the page from there */
137
3cb03002 138 struct md_rdev *rdev;
a654b9d8 139 sector_t target;
a654b9d8 140
dafb20fa 141 rdev_for_each(rdev, mddev) {
b2d444d7
N
142 if (! test_bit(In_sync, &rdev->flags)
143 || test_bit(Faulty, &rdev->flags))
ab904d63
N
144 continue;
145
ccebd4c4 146 target = offset + index * (PAGE_SIZE/512);
a654b9d8 147
2b193363 148 if (sync_page_io(rdev, target,
e1defc4f 149 roundup(size, bdev_logical_block_size(rdev->bdev)),
ccebd4c4 150 page, READ, true)) {
ab904d63 151 page->index = index;
27581e5a 152 return 0;
ab904d63
N
153 }
154 }
27581e5a 155 return -EIO;
a654b9d8
N
156}
157
fd01b88c 158static struct md_rdev *next_active_rdev(struct md_rdev *rdev, struct mddev *mddev)
b2d2c4ce
N
159{
160 /* Iterate the disks of an mddev, using rcu to protect access to the
161 * linked list, and raising the refcount of devices we return to ensure
162 * they don't disappear while in use.
163 * As devices are only added or removed when raid_disk is < 0 and
164 * nr_pending is 0 and In_sync is clear, the entries we return will
165 * still be in the same position on the list when we re-enter
166 * list_for_each_continue_rcu.
167 */
168 struct list_head *pos;
169 rcu_read_lock();
170 if (rdev == NULL)
171 /* start at the beginning */
172 pos = &mddev->disks;
173 else {
174 /* release the previous rdev and start from there. */
175 rdev_dec_pending(rdev, mddev);
176 pos = &rdev->same_set;
177 }
178 list_for_each_continue_rcu(pos, &mddev->disks) {
3cb03002 179 rdev = list_entry(pos, struct md_rdev, same_set);
b2d2c4ce 180 if (rdev->raid_disk >= 0 &&
b2d2c4ce
N
181 !test_bit(Faulty, &rdev->flags)) {
182 /* this is a usable devices */
183 atomic_inc(&rdev->nr_pending);
184 rcu_read_unlock();
185 return rdev;
186 }
187 }
188 rcu_read_unlock();
189 return NULL;
190}
191
ab6085c7 192static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
a654b9d8 193{
3cb03002 194 struct md_rdev *rdev = NULL;
a6ff7e08 195 struct block_device *bdev;
fd01b88c 196 struct mddev *mddev = bitmap->mddev;
1ec885cd 197 struct bitmap_storage *store = &bitmap->storage;
a654b9d8 198
b2d2c4ce 199 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
ac2f40be
N
200 int size = PAGE_SIZE;
201 loff_t offset = mddev->bitmap_info.offset;
a6ff7e08
JB
202
203 bdev = (rdev->meta_bdev) ? rdev->meta_bdev : rdev->bdev;
204
9b1215c1
N
205 if (page->index == store->file_pages-1) {
206 int last_page_size = store->bytes & (PAGE_SIZE-1);
207 if (last_page_size == 0)
208 last_page_size = PAGE_SIZE;
209 size = roundup(last_page_size,
a6ff7e08 210 bdev_logical_block_size(bdev));
9b1215c1 211 }
ac2f40be
N
212 /* Just make sure we aren't corrupting data or
213 * metadata
214 */
215 if (mddev->external) {
216 /* Bitmap could be anywhere. */
217 if (rdev->sb_start + offset + (page->index
218 * (PAGE_SIZE/512))
219 > rdev->data_offset
220 &&
221 rdev->sb_start + offset
222 < (rdev->data_offset + mddev->dev_sectors
223 + (PAGE_SIZE/512)))
224 goto bad_alignment;
225 } else if (offset < 0) {
226 /* DATA BITMAP METADATA */
227 if (offset
228 + (long)(page->index * (PAGE_SIZE/512))
229 + size/512 > 0)
230 /* bitmap runs in to metadata */
231 goto bad_alignment;
232 if (rdev->data_offset + mddev->dev_sectors
233 > rdev->sb_start + offset)
234 /* data runs in to bitmap */
235 goto bad_alignment;
236 } else if (rdev->sb_start < rdev->data_offset) {
237 /* METADATA BITMAP DATA */
238 if (rdev->sb_start
239 + offset
240 + page->index*(PAGE_SIZE/512) + size/512
241 > rdev->data_offset)
242 /* bitmap runs in to data */
243 goto bad_alignment;
244 } else {
245 /* DATA METADATA BITMAP - no problems */
246 }
247 md_super_write(mddev, rdev,
248 rdev->sb_start + offset
249 + page->index * (PAGE_SIZE/512),
250 size,
251 page);
b2d2c4ce 252 }
a654b9d8
N
253
254 if (wait)
a9701a30 255 md_super_wait(mddev);
a654b9d8 256 return 0;
4b80991c
N
257
258 bad_alignment:
4b80991c 259 return -EINVAL;
a654b9d8
N
260}
261
4ad13663 262static void bitmap_file_kick(struct bitmap *bitmap);
32a7627c 263/*
a654b9d8 264 * write out a page to a file
32a7627c 265 */
4ad13663 266static void write_page(struct bitmap *bitmap, struct page *page, int wait)
32a7627c 267{
d785a06a 268 struct buffer_head *bh;
32a7627c 269
1ec885cd 270 if (bitmap->storage.file == NULL) {
f0d76d70
N
271 switch (write_sb_page(bitmap, page, wait)) {
272 case -EINVAL:
b405fe91 273 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
f0d76d70 274 }
4ad13663 275 } else {
a654b9d8 276
4ad13663 277 bh = page_buffers(page);
c708443c 278
4ad13663
N
279 while (bh && bh->b_blocknr) {
280 atomic_inc(&bitmap->pending_writes);
281 set_buffer_locked(bh);
282 set_buffer_mapped(bh);
721a9602 283 submit_bh(WRITE | REQ_SYNC, bh);
4ad13663
N
284 bh = bh->b_this_page;
285 }
d785a06a 286
ac2f40be 287 if (wait)
4ad13663
N
288 wait_event(bitmap->write_wait,
289 atomic_read(&bitmap->pending_writes)==0);
8a5e9cf1 290 }
b405fe91 291 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
4ad13663 292 bitmap_file_kick(bitmap);
d785a06a
N
293}
294
295static void end_bitmap_write(struct buffer_head *bh, int uptodate)
296{
297 struct bitmap *bitmap = bh->b_private;
32a7627c 298
b405fe91
N
299 if (!uptodate)
300 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
d785a06a
N
301 if (atomic_dec_and_test(&bitmap->pending_writes))
302 wake_up(&bitmap->write_wait);
303}
32a7627c 304
d785a06a
N
305/* copied from buffer.c */
306static void
307__clear_page_buffers(struct page *page)
308{
309 ClearPagePrivate(page);
310 set_page_private(page, 0);
311 page_cache_release(page);
312}
313static void free_buffers(struct page *page)
314{
27581e5a 315 struct buffer_head *bh;
77ad4bc7 316
27581e5a
N
317 if (!PagePrivate(page))
318 return;
319
320 bh = page_buffers(page);
d785a06a
N
321 while (bh) {
322 struct buffer_head *next = bh->b_this_page;
323 free_buffer_head(bh);
324 bh = next;
77ad4bc7 325 }
d785a06a
N
326 __clear_page_buffers(page);
327 put_page(page);
32a7627c
N
328}
329
d785a06a
N
330/* read a page from a file.
331 * We both read the page, and attach buffers to the page to record the
332 * address of each block (using bmap). These addresses will be used
333 * to write the block later, completely bypassing the filesystem.
334 * This usage is similar to how swap files are handled, and allows us
335 * to write to a file with no concerns of memory allocation failing.
336 */
27581e5a
N
337static int read_page(struct file *file, unsigned long index,
338 struct bitmap *bitmap,
339 unsigned long count,
340 struct page *page)
32a7627c 341{
27581e5a 342 int ret = 0;
c649bb9c 343 struct inode *inode = file->f_path.dentry->d_inode;
d785a06a
N
344 struct buffer_head *bh;
345 sector_t block;
32a7627c 346
36a4e1fe
N
347 pr_debug("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE,
348 (unsigned long long)index << PAGE_SHIFT);
32a7627c 349
d785a06a
N
350 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
351 if (!bh) {
27581e5a 352 ret = -ENOMEM;
32a7627c
N
353 goto out;
354 }
d785a06a
N
355 attach_page_buffers(page, bh);
356 block = index << (PAGE_SHIFT - inode->i_blkbits);
357 while (bh) {
358 if (count == 0)
359 bh->b_blocknr = 0;
360 else {
361 bh->b_blocknr = bmap(inode, block);
362 if (bh->b_blocknr == 0) {
363 /* Cannot use this file! */
27581e5a 364 ret = -EINVAL;
d785a06a
N
365 goto out;
366 }
367 bh->b_bdev = inode->i_sb->s_bdev;
368 if (count < (1<<inode->i_blkbits))
369 count = 0;
370 else
371 count -= (1<<inode->i_blkbits);
372
373 bh->b_end_io = end_bitmap_write;
374 bh->b_private = bitmap;
ce25c31b
N
375 atomic_inc(&bitmap->pending_writes);
376 set_buffer_locked(bh);
377 set_buffer_mapped(bh);
378 submit_bh(READ, bh);
d785a06a
N
379 }
380 block++;
381 bh = bh->b_this_page;
382 }
d785a06a 383 page->index = index;
ce25c31b
N
384
385 wait_event(bitmap->write_wait,
386 atomic_read(&bitmap->pending_writes)==0);
b405fe91 387 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
27581e5a 388 ret = -EIO;
32a7627c 389out:
27581e5a
N
390 if (ret)
391 printk(KERN_ALERT "md: bitmap read error: (%dB @ %llu): %d\n",
2d1f3b5d
N
392 (int)PAGE_SIZE,
393 (unsigned long long)index << PAGE_SHIFT,
27581e5a
N
394 ret);
395 return ret;
32a7627c
N
396}
397
398/*
399 * bitmap file superblock operations
400 */
401
402/* update the event counter and sync the superblock to disk */
4ad13663 403void bitmap_update_sb(struct bitmap *bitmap)
32a7627c
N
404{
405 bitmap_super_t *sb;
32a7627c
N
406
407 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
4ad13663 408 return;
ece5cff0
N
409 if (bitmap->mddev->bitmap_info.external)
410 return;
1ec885cd 411 if (!bitmap->storage.sb_page) /* no superblock */
4ad13663 412 return;
1ec885cd 413 sb = kmap_atomic(bitmap->storage.sb_page);
32a7627c 414 sb->events = cpu_to_le64(bitmap->mddev->events);
8258c532 415 if (bitmap->mddev->events < bitmap->events_cleared)
a0da84f3
NB
416 /* rocking back to read-only */
417 bitmap->events_cleared = bitmap->mddev->events;
8258c532
N
418 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
419 sb->state = cpu_to_le32(bitmap->flags);
43a70507
N
420 /* Just in case these have been changed via sysfs: */
421 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
422 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
b2f46e68 423 kunmap_atomic(sb);
1ec885cd 424 write_page(bitmap, bitmap->storage.sb_page, 1);
32a7627c
N
425}
426
427/* print out the bitmap file superblock */
428void bitmap_print_sb(struct bitmap *bitmap)
429{
430 bitmap_super_t *sb;
431
1ec885cd 432 if (!bitmap || !bitmap->storage.sb_page)
32a7627c 433 return;
1ec885cd 434 sb = kmap_atomic(bitmap->storage.sb_page);
32a7627c 435 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
a2cff26a
N
436 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
437 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
438 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
32a7627c
N
439 *(__u32 *)(sb->uuid+0),
440 *(__u32 *)(sb->uuid+4),
441 *(__u32 *)(sb->uuid+8),
442 *(__u32 *)(sb->uuid+12));
a2cff26a 443 printk(KERN_DEBUG " events: %llu\n",
32a7627c 444 (unsigned long long) le64_to_cpu(sb->events));
a2cff26a 445 printk(KERN_DEBUG "events cleared: %llu\n",
32a7627c 446 (unsigned long long) le64_to_cpu(sb->events_cleared));
a2cff26a
N
447 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
448 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
449 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
450 printk(KERN_DEBUG " sync size: %llu KB\n",
451 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
4b6d287f 452 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
b2f46e68 453 kunmap_atomic(sb);
32a7627c
N
454}
455
9c81075f
JB
456/*
457 * bitmap_new_disk_sb
458 * @bitmap
459 *
460 * This function is somewhat the reverse of bitmap_read_sb. bitmap_read_sb
461 * reads and verifies the on-disk bitmap superblock and populates bitmap_info.
462 * This function verifies 'bitmap_info' and populates the on-disk bitmap
463 * structure, which is to be written to disk.
464 *
465 * Returns: 0 on success, -Exxx on error
466 */
467static int bitmap_new_disk_sb(struct bitmap *bitmap)
468{
469 bitmap_super_t *sb;
470 unsigned long chunksize, daemon_sleep, write_behind;
471 int err = -EINVAL;
472
1ec885cd
N
473 bitmap->storage.sb_page = alloc_page(GFP_KERNEL);
474 if (IS_ERR(bitmap->storage.sb_page)) {
475 err = PTR_ERR(bitmap->storage.sb_page);
476 bitmap->storage.sb_page = NULL;
9c81075f
JB
477 return err;
478 }
1ec885cd 479 bitmap->storage.sb_page->index = 0;
9c81075f 480
1ec885cd 481 sb = kmap_atomic(bitmap->storage.sb_page);
9c81075f
JB
482
483 sb->magic = cpu_to_le32(BITMAP_MAGIC);
484 sb->version = cpu_to_le32(BITMAP_MAJOR_HI);
485
486 chunksize = bitmap->mddev->bitmap_info.chunksize;
487 BUG_ON(!chunksize);
488 if (!is_power_of_2(chunksize)) {
b2f46e68 489 kunmap_atomic(sb);
9c81075f
JB
490 printk(KERN_ERR "bitmap chunksize not a power of 2\n");
491 return -EINVAL;
492 }
493 sb->chunksize = cpu_to_le32(chunksize);
494
495 daemon_sleep = bitmap->mddev->bitmap_info.daemon_sleep;
496 if (!daemon_sleep ||
497 (daemon_sleep < 1) || (daemon_sleep > MAX_SCHEDULE_TIMEOUT)) {
498 printk(KERN_INFO "Choosing daemon_sleep default (5 sec)\n");
499 daemon_sleep = 5 * HZ;
500 }
501 sb->daemon_sleep = cpu_to_le32(daemon_sleep);
502 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
503
504 /*
505 * FIXME: write_behind for RAID1. If not specified, what
506 * is a good choice? We choose COUNTER_MAX / 2 arbitrarily.
507 */
508 write_behind = bitmap->mddev->bitmap_info.max_write_behind;
509 if (write_behind > COUNTER_MAX)
510 write_behind = COUNTER_MAX / 2;
511 sb->write_behind = cpu_to_le32(write_behind);
512 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
513
514 /* keep the array size field of the bitmap superblock up to date */
515 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
516
517 memcpy(sb->uuid, bitmap->mddev->uuid, 16);
518
b405fe91 519 set_bit(BITMAP_STALE, &bitmap->flags);
84e92345 520 sb->state = cpu_to_le32(bitmap->flags);
9c81075f
JB
521 bitmap->events_cleared = bitmap->mddev->events;
522 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
523
b2f46e68 524 kunmap_atomic(sb);
9c81075f
JB
525
526 return 0;
527}
528
32a7627c
N
529/* read the superblock from the bitmap file and initialize some bitmap fields */
530static int bitmap_read_sb(struct bitmap *bitmap)
531{
532 char *reason = NULL;
533 bitmap_super_t *sb;
4b6d287f 534 unsigned long chunksize, daemon_sleep, write_behind;
32a7627c
N
535 unsigned long long events;
536 int err = -EINVAL;
27581e5a 537 struct page *sb_page;
32a7627c 538
1ec885cd 539 if (!bitmap->storage.file && !bitmap->mddev->bitmap_info.offset) {
ef99bf48
N
540 chunksize = 128 * 1024 * 1024;
541 daemon_sleep = 5 * HZ;
542 write_behind = 0;
b405fe91 543 set_bit(BITMAP_STALE, &bitmap->flags);
ef99bf48
N
544 err = 0;
545 goto out_no_sb;
546 }
32a7627c 547 /* page 0 is the superblock, read it... */
27581e5a
N
548 sb_page = alloc_page(GFP_KERNEL);
549 if (!sb_page)
550 return -ENOMEM;
1ec885cd 551 bitmap->storage.sb_page = sb_page;
27581e5a 552
1ec885cd
N
553 if (bitmap->storage.file) {
554 loff_t isize = i_size_read(bitmap->storage.file->f_mapping->host);
f49d5e62
N
555 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
556
1ec885cd 557 err = read_page(bitmap->storage.file, 0,
27581e5a 558 bitmap, bytes, sb_page);
f49d5e62 559 } else {
27581e5a
N
560 err = read_sb_page(bitmap->mddev,
561 bitmap->mddev->bitmap_info.offset,
562 sb_page,
563 0, sizeof(bitmap_super_t));
a654b9d8 564 }
27581e5a 565 if (err)
32a7627c 566 return err;
32a7627c 567
27581e5a 568 sb = kmap_atomic(sb_page);
32a7627c 569
32a7627c 570 chunksize = le32_to_cpu(sb->chunksize);
1b04be96 571 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
4b6d287f 572 write_behind = le32_to_cpu(sb->write_behind);
32a7627c
N
573
574 /* verify that the bitmap-specific fields are valid */
575 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
576 reason = "bad magic";
bd926c63
N
577 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
578 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
32a7627c 579 reason = "unrecognized superblock version";
1187cf0a 580 else if (chunksize < 512)
7dd5d34c 581 reason = "bitmap chunksize too small";
d744540c 582 else if (!is_power_of_2(chunksize))
32a7627c 583 reason = "bitmap chunksize not a power of 2";
1b04be96 584 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
7dd5d34c 585 reason = "daemon sleep period out of range";
4b6d287f
N
586 else if (write_behind > COUNTER_MAX)
587 reason = "write-behind limit out of range (0 - 16383)";
32a7627c
N
588 if (reason) {
589 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
590 bmname(bitmap), reason);
591 goto out;
592 }
593
594 /* keep the array size field of the bitmap superblock up to date */
595 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
596
278c1ca2
N
597 if (bitmap->mddev->persistent) {
598 /*
599 * We have a persistent array superblock, so compare the
600 * bitmap's UUID and event counter to the mddev's
601 */
602 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
603 printk(KERN_INFO
604 "%s: bitmap superblock UUID mismatch\n",
605 bmname(bitmap));
606 goto out;
607 }
608 events = le64_to_cpu(sb->events);
609 if (events < bitmap->mddev->events) {
610 printk(KERN_INFO
611 "%s: bitmap file is out of date (%llu < %llu) "
612 "-- forcing full recovery\n",
613 bmname(bitmap), events,
614 (unsigned long long) bitmap->mddev->events);
b405fe91 615 set_bit(BITMAP_STALE, &bitmap->flags);
278c1ca2 616 }
32a7627c 617 }
278c1ca2 618
32a7627c 619 /* assign fields using values from superblock */
4f2e639a 620 bitmap->flags |= le32_to_cpu(sb->state);
bd926c63 621 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
b405fe91 622 set_bit(BITMAP_HOSTENDIAN, &bitmap->flags);
32a7627c
N
623 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
624 err = 0;
625out:
b2f46e68 626 kunmap_atomic(sb);
ef99bf48 627out_no_sb:
b405fe91 628 if (test_bit(BITMAP_STALE, &bitmap->flags))
ef99bf48
N
629 bitmap->events_cleared = bitmap->mddev->events;
630 bitmap->mddev->bitmap_info.chunksize = chunksize;
631 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
632 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
32a7627c
N
633 if (err)
634 bitmap_print_sb(bitmap);
635 return err;
636}
637
32a7627c
N
638/*
639 * general bitmap file operations
640 */
641
ece5cff0
N
642/*
643 * on-disk bitmap:
644 *
645 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
646 * file a page at a time. There's a superblock at the start of the file.
647 */
32a7627c 648/* calculate the index of the page that contains this bit */
1ec885cd
N
649static inline unsigned long file_page_index(struct bitmap_storage *store,
650 unsigned long chunk)
32a7627c 651{
1ec885cd 652 if (store->sb_page)
ece5cff0
N
653 chunk += sizeof(bitmap_super_t) << 3;
654 return chunk >> PAGE_BIT_SHIFT;
32a7627c
N
655}
656
657/* calculate the (bit) offset of this bit within a page */
1ec885cd
N
658static inline unsigned long file_page_offset(struct bitmap_storage *store,
659 unsigned long chunk)
32a7627c 660{
1ec885cd 661 if (store->sb_page)
ece5cff0
N
662 chunk += sizeof(bitmap_super_t) << 3;
663 return chunk & (PAGE_BITS - 1);
32a7627c
N
664}
665
666/*
667 * return a pointer to the page in the filemap that contains the given bit
668 *
669 * this lookup is complicated by the fact that the bitmap sb might be exactly
670 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
671 * 0 or page 1
672 */
1ec885cd 673static inline struct page *filemap_get_page(struct bitmap_storage *store,
3520fa4d 674 unsigned long chunk)
32a7627c 675{
1ec885cd 676 if (file_page_index(store, chunk) >= store->file_pages)
ac2f40be 677 return NULL;
1ec885cd
N
678 return store->filemap[file_page_index(store, chunk)
679 - file_page_index(store, 0)];
32a7627c
N
680}
681
d1244cb0
N
682static int bitmap_storage_alloc(struct bitmap_storage *store,
683 unsigned long chunks, int with_super)
684{
685 int pnum;
686 unsigned long num_pages;
687 unsigned long bytes;
688
689 bytes = DIV_ROUND_UP(chunks, 8);
690 if (with_super)
691 bytes += sizeof(bitmap_super_t);
692
693 num_pages = DIV_ROUND_UP(bytes, PAGE_SIZE);
694
695 store->filemap = kmalloc(sizeof(struct page *)
696 * num_pages, GFP_KERNEL);
697 if (!store->filemap)
698 return -ENOMEM;
699
700 if (with_super && !store->sb_page) {
701 store->sb_page = alloc_page(GFP_KERNEL);
702 if (store->sb_page == NULL)
703 return -ENOMEM;
704 store->sb_page->index = 0;
705 }
706 pnum = 0;
707 if (store->sb_page) {
708 store->filemap[0] = store->sb_page;
709 pnum = 1;
710 }
711 for ( ; pnum < num_pages; pnum++) {
712 store->filemap[pnum] = alloc_page(GFP_KERNEL);
713 if (!store->filemap[pnum]) {
714 store->file_pages = pnum;
715 return -ENOMEM;
716 }
717 store->filemap[pnum]->index = pnum;
718 }
719 store->file_pages = pnum;
720
721 /* We need 4 bits per page, rounded up to a multiple
722 * of sizeof(unsigned long) */
723 store->filemap_attr = kzalloc(
724 roundup(DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
725 GFP_KERNEL);
726 if (!store->filemap_attr)
727 return -ENOMEM;
728
729 store->bytes = bytes;
730
731 return 0;
732}
733
fae7d326 734static void bitmap_file_unmap(struct bitmap_storage *store)
32a7627c
N
735{
736 struct page **map, *sb_page;
32a7627c 737 int pages;
fae7d326 738 struct file *file;
32a7627c 739
fae7d326 740 file = store->file;
1ec885cd 741 map = store->filemap;
1ec885cd 742 pages = store->file_pages;
1ec885cd 743 sb_page = store->sb_page;
32a7627c
N
744
745 while (pages--)
ece5cff0 746 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
d785a06a 747 free_buffers(map[pages]);
32a7627c 748 kfree(map);
fae7d326 749 kfree(store->filemap_attr);
32a7627c 750
d785a06a
N
751 if (sb_page)
752 free_buffers(sb_page);
32a7627c 753
d785a06a 754 if (file) {
c649bb9c 755 struct inode *inode = file->f_path.dentry->d_inode;
fc0ecff6 756 invalidate_mapping_pages(inode->i_mapping, 0, -1);
32a7627c 757 fput(file);
d785a06a 758 }
32a7627c
N
759}
760
32a7627c
N
761/*
762 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
763 * then it is no longer reliable, so we stop using it and we mark the file
764 * as failed in the superblock
765 */
766static void bitmap_file_kick(struct bitmap *bitmap)
767{
768 char *path, *ptr = NULL;
769
b405fe91 770 if (!test_and_set_bit(BITMAP_STALE, &bitmap->flags)) {
4ad13663 771 bitmap_update_sb(bitmap);
32a7627c 772
1ec885cd 773 if (bitmap->storage.file) {
4ad13663
N
774 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
775 if (path)
1ec885cd
N
776 ptr = d_path(&bitmap->storage.file->f_path,
777 path, PAGE_SIZE);
6bcfd601 778
4ad13663
N
779 printk(KERN_ALERT
780 "%s: kicking failed bitmap file %s from array!\n",
6bcfd601 781 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
32a7627c 782
4ad13663
N
783 kfree(path);
784 } else
785 printk(KERN_ALERT
786 "%s: disabling internal bitmap due to errors\n",
787 bmname(bitmap));
a654b9d8 788 }
32a7627c
N
789}
790
791enum bitmap_page_attr {
ac2f40be 792 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
5a537df4
N
793 BITMAP_PAGE_PENDING = 1, /* there are bits that are being cleaned.
794 * i.e. counter is 1 or 2. */
ac2f40be 795 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
32a7627c
N
796};
797
d189122d
N
798static inline void set_page_attr(struct bitmap *bitmap, int pnum,
799 enum bitmap_page_attr attr)
32a7627c 800{
bdfd1140 801 set_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
32a7627c
N
802}
803
d189122d
N
804static inline void clear_page_attr(struct bitmap *bitmap, int pnum,
805 enum bitmap_page_attr attr)
32a7627c 806{
bdfd1140 807 clear_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
32a7627c
N
808}
809
bdfd1140
N
810static inline int test_page_attr(struct bitmap *bitmap, int pnum,
811 enum bitmap_page_attr attr)
32a7627c 812{
1ec885cd 813 return test_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
32a7627c
N
814}
815
bdfd1140
N
816static inline int test_and_clear_page_attr(struct bitmap *bitmap, int pnum,
817 enum bitmap_page_attr attr)
818{
819 return test_and_clear_bit((pnum<<2) + attr,
820 bitmap->storage.filemap_attr);
821}
32a7627c
N
822/*
823 * bitmap_file_set_bit -- called before performing a write to the md device
824 * to set (and eventually sync) a particular bit in the bitmap file
825 *
826 * we set the bit immediately, then we record the page number so that
827 * when an unplug occurs, we can flush the dirty pages out to disk
828 */
829static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
830{
831 unsigned long bit;
3520fa4d 832 struct page *page;
32a7627c 833 void *kaddr;
40cffcc0 834 unsigned long chunk = block >> bitmap->counts.chunkshift;
32a7627c 835
1ec885cd 836 page = filemap_get_page(&bitmap->storage, chunk);
3520fa4d
JB
837 if (!page)
838 return;
1ec885cd 839 bit = file_page_offset(&bitmap->storage, chunk);
32a7627c 840
3520fa4d 841 /* set the bit */
b2f46e68 842 kaddr = kmap_atomic(page);
b405fe91 843 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
3520fa4d
JB
844 set_bit(bit, kaddr);
845 else
63c68268 846 test_and_set_bit_le(bit, kaddr);
b2f46e68 847 kunmap_atomic(kaddr);
36a4e1fe 848 pr_debug("set file bit %lu page %lu\n", bit, page->index);
32a7627c 849 /* record page number so it gets flushed to disk when unplug occurs */
d189122d 850 set_page_attr(bitmap, page->index, BITMAP_PAGE_DIRTY);
32a7627c
N
851}
852
ef99bf48
N
853static void bitmap_file_clear_bit(struct bitmap *bitmap, sector_t block)
854{
855 unsigned long bit;
856 struct page *page;
857 void *paddr;
40cffcc0 858 unsigned long chunk = block >> bitmap->counts.chunkshift;
ef99bf48 859
1ec885cd 860 page = filemap_get_page(&bitmap->storage, chunk);
ef99bf48
N
861 if (!page)
862 return;
1ec885cd 863 bit = file_page_offset(&bitmap->storage, chunk);
ef99bf48 864 paddr = kmap_atomic(page);
b405fe91 865 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
ef99bf48
N
866 clear_bit(bit, paddr);
867 else
63c68268 868 test_and_clear_bit_le(bit, paddr);
ef99bf48 869 kunmap_atomic(paddr);
d189122d
N
870 if (!test_page_attr(bitmap, page->index, BITMAP_PAGE_NEEDWRITE)) {
871 set_page_attr(bitmap, page->index, BITMAP_PAGE_PENDING);
ef99bf48
N
872 bitmap->allclean = 0;
873 }
874}
875
32a7627c
N
876/* this gets called when the md device is ready to unplug its underlying
877 * (slave) device queues -- before we let any writes go down, we need to
878 * sync the dirty pages of the bitmap file to disk */
4ad13663 879void bitmap_unplug(struct bitmap *bitmap)
32a7627c 880{
74667123 881 unsigned long i;
ec7a3197 882 int dirty, need_write;
32a7627c
N
883 int wait = 0;
884
62f82faa
N
885 if (!bitmap || !bitmap->storage.filemap ||
886 test_bit(BITMAP_STALE, &bitmap->flags))
4ad13663 887 return;
32a7627c
N
888
889 /* look at each page to see if there are any set bits that need to be
890 * flushed out to disk */
1ec885cd 891 for (i = 0; i < bitmap->storage.file_pages; i++) {
bdfd1140 892 if (!bitmap->storage.filemap)
4ad13663 893 return;
bdfd1140
N
894 dirty = test_and_clear_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
895 need_write = test_and_clear_page_attr(bitmap, i,
896 BITMAP_PAGE_NEEDWRITE);
897 if (dirty || need_write) {
d189122d 898 clear_page_attr(bitmap, i, BITMAP_PAGE_PENDING);
bdfd1140
N
899 write_page(bitmap, bitmap->storage.filemap[i], 0);
900 }
ec7a3197 901 if (dirty)
32a7627c 902 wait = 1;
32a7627c
N
903 }
904 if (wait) { /* if any writes were performed, we need to wait on them */
1ec885cd 905 if (bitmap->storage.file)
d785a06a
N
906 wait_event(bitmap->write_wait,
907 atomic_read(&bitmap->pending_writes)==0);
0b79ccf0 908 else
a9701a30 909 md_super_wait(bitmap->mddev);
32a7627c 910 }
b405fe91 911 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
d785a06a 912 bitmap_file_kick(bitmap);
32a7627c 913}
ac2f40be 914EXPORT_SYMBOL(bitmap_unplug);
32a7627c 915
6a07997f 916static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
32a7627c
N
917/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
918 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
919 * memory mapping of the bitmap file
920 * Special cases:
921 * if there's no bitmap file, or if the bitmap file had been
922 * previously kicked from the array, we mark all the bits as
923 * 1's in order to cause a full resync.
6a07997f
N
924 *
925 * We ignore all bits for sectors that end earlier than 'start'.
926 * This is used when reading an out-of-date bitmap...
32a7627c 927 */
6a07997f 928static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
32a7627c
N
929{
930 unsigned long i, chunks, index, oldindex, bit;
27581e5a 931 struct page *page = NULL;
d1244cb0 932 unsigned long bit_cnt = 0;
32a7627c 933 struct file *file;
d1244cb0 934 unsigned long offset;
32a7627c
N
935 int outofdate;
936 int ret = -ENOSPC;
ea03aff9 937 void *paddr;
1ec885cd 938 struct bitmap_storage *store = &bitmap->storage;
32a7627c 939
40cffcc0 940 chunks = bitmap->counts.chunks;
1ec885cd 941 file = store->file;
32a7627c 942
ef99bf48
N
943 if (!file && !bitmap->mddev->bitmap_info.offset) {
944 /* No permanent bitmap - fill with '1s'. */
1ec885cd
N
945 store->filemap = NULL;
946 store->file_pages = 0;
ef99bf48
N
947 for (i = 0; i < chunks ; i++) {
948 /* if the disk bit is set, set the memory bit */
40cffcc0 949 int needed = ((sector_t)(i+1) << (bitmap->counts.chunkshift)
ef99bf48
N
950 >= start);
951 bitmap_set_memory_bits(bitmap,
40cffcc0 952 (sector_t)i << bitmap->counts.chunkshift,
ef99bf48
N
953 needed);
954 }
955 return 0;
956 }
32a7627c 957
b405fe91 958 outofdate = test_bit(BITMAP_STALE, &bitmap->flags);
32a7627c
N
959 if (outofdate)
960 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
961 "recovery\n", bmname(bitmap));
962
d1244cb0 963 if (file && i_size_read(file->f_mapping->host) < store->bytes) {
32a7627c 964 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
d1244cb0
N
965 bmname(bitmap),
966 (unsigned long) i_size_read(file->f_mapping->host),
967 store->bytes);
4ad13663 968 goto err;
32a7627c 969 }
bc7f77de 970
d1244cb0 971 oldindex = ~0L;
27581e5a 972 offset = 0;
d1244cb0 973 if (!bitmap->mddev->bitmap_info.external)
27581e5a 974 offset = sizeof(bitmap_super_t);
32a7627c
N
975
976 for (i = 0; i < chunks; i++) {
bd926c63 977 int b;
1ec885cd
N
978 index = file_page_index(&bitmap->storage, i);
979 bit = file_page_offset(&bitmap->storage, i);
32a7627c 980 if (index != oldindex) { /* this is a new page, read it in */
d785a06a 981 int count;
32a7627c 982 /* unmap the old page, we're done with it */
d1244cb0
N
983 if (index == store->file_pages-1)
984 count = store->bytes - index * PAGE_SIZE;
d785a06a
N
985 else
986 count = PAGE_SIZE;
1ec885cd 987 page = store->filemap[index];
27581e5a
N
988 if (file)
989 ret = read_page(file, index, bitmap,
990 count, page);
991 else
992 ret = read_sb_page(
993 bitmap->mddev,
994 bitmap->mddev->bitmap_info.offset,
995 page,
996 index, count);
997
998 if (ret)
4ad13663 999 goto err;
a654b9d8 1000
32a7627c 1001 oldindex = index;
32a7627c
N
1002
1003 if (outofdate) {
1004 /*
1005 * if bitmap is out of date, dirty the
ac2f40be 1006 * whole page and write it out
32a7627c 1007 */
b2f46e68 1008 paddr = kmap_atomic(page);
ea03aff9 1009 memset(paddr + offset, 0xff,
6a07997f 1010 PAGE_SIZE - offset);
b2f46e68 1011 kunmap_atomic(paddr);
4ad13663
N
1012 write_page(bitmap, page, 1);
1013
1014 ret = -EIO;
b405fe91
N
1015 if (test_bit(BITMAP_WRITE_ERROR,
1016 &bitmap->flags))
4ad13663 1017 goto err;
32a7627c 1018 }
32a7627c 1019 }
b2f46e68 1020 paddr = kmap_atomic(page);
b405fe91 1021 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
ea03aff9 1022 b = test_bit(bit, paddr);
bd926c63 1023 else
6b33aff3 1024 b = test_bit_le(bit, paddr);
b2f46e68 1025 kunmap_atomic(paddr);
bd926c63 1026 if (b) {
32a7627c 1027 /* if the disk bit is set, set the memory bit */
40cffcc0 1028 int needed = ((sector_t)(i+1) << bitmap->counts.chunkshift
db305e50
N
1029 >= start);
1030 bitmap_set_memory_bits(bitmap,
40cffcc0 1031 (sector_t)i << bitmap->counts.chunkshift,
db305e50 1032 needed);
32a7627c
N
1033 bit_cnt++;
1034 }
27581e5a 1035 offset = 0;
32a7627c
N
1036 }
1037
32a7627c 1038 printk(KERN_INFO "%s: bitmap initialized from disk: "
d1244cb0 1039 "read %lu pages, set %lu of %lu bits\n",
1ec885cd 1040 bmname(bitmap), store->file_pages,
d1244cb0 1041 bit_cnt, chunks);
4ad13663
N
1042
1043 return 0;
32a7627c 1044
4ad13663
N
1045 err:
1046 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1047 bmname(bitmap), ret);
32a7627c
N
1048 return ret;
1049}
1050
a654b9d8
N
1051void bitmap_write_all(struct bitmap *bitmap)
1052{
1053 /* We don't actually write all bitmap blocks here,
1054 * just flag them as needing to be written
1055 */
ec7a3197 1056 int i;
a654b9d8 1057
1ec885cd 1058 if (!bitmap || !bitmap->storage.filemap)
ef99bf48 1059 return;
1ec885cd 1060 if (bitmap->storage.file)
ef99bf48
N
1061 /* Only one copy, so nothing needed */
1062 return;
1063
1ec885cd 1064 for (i = 0; i < bitmap->storage.file_pages; i++)
d189122d 1065 set_page_attr(bitmap, i,
ec7a3197 1066 BITMAP_PAGE_NEEDWRITE);
2585f3ef 1067 bitmap->allclean = 0;
a654b9d8
N
1068}
1069
40cffcc0
N
1070static void bitmap_count_page(struct bitmap_counts *bitmap,
1071 sector_t offset, int inc)
32a7627c 1072{
61a0d80c 1073 sector_t chunk = offset >> bitmap->chunkshift;
32a7627c
N
1074 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1075 bitmap->bp[page].count += inc;
32a7627c
N
1076 bitmap_checkfree(bitmap, page);
1077}
bf07bb7d 1078
40cffcc0 1079static void bitmap_set_pending(struct bitmap_counts *bitmap, sector_t offset)
bf07bb7d
N
1080{
1081 sector_t chunk = offset >> bitmap->chunkshift;
1082 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1083 struct bitmap_page *bp = &bitmap->bp[page];
1084
1085 if (!bp->pending)
1086 bp->pending = 1;
1087}
1088
40cffcc0 1089static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
57dab0bd 1090 sector_t offset, sector_t *blocks,
32a7627c
N
1091 int create);
1092
1093/*
1094 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1095 * out to disk
1096 */
1097
fd01b88c 1098void bitmap_daemon_work(struct mddev *mddev)
32a7627c 1099{
aa5cbd10 1100 struct bitmap *bitmap;
aa3163f8 1101 unsigned long j;
bf07bb7d 1102 unsigned long nextpage;
57dab0bd 1103 sector_t blocks;
40cffcc0 1104 struct bitmap_counts *counts;
32a7627c 1105
aa5cbd10
N
1106 /* Use a mutex to guard daemon_work against
1107 * bitmap_destroy.
1108 */
c3d9714e 1109 mutex_lock(&mddev->bitmap_info.mutex);
aa5cbd10
N
1110 bitmap = mddev->bitmap;
1111 if (bitmap == NULL) {
c3d9714e 1112 mutex_unlock(&mddev->bitmap_info.mutex);
4ad13663 1113 return;
aa5cbd10 1114 }
42a04b50 1115 if (time_before(jiffies, bitmap->daemon_lastrun
2e61ebbc 1116 + mddev->bitmap_info.daemon_sleep))
7be3dfec
N
1117 goto done;
1118
32a7627c 1119 bitmap->daemon_lastrun = jiffies;
8311c29d 1120 if (bitmap->allclean) {
2e61ebbc 1121 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
aa5cbd10 1122 goto done;
8311c29d
N
1123 }
1124 bitmap->allclean = 1;
32a7627c 1125
bf07bb7d
N
1126 /* Any file-page which is PENDING now needs to be written.
1127 * So set NEEDWRITE now, then after we make any last-minute changes
1128 * we will write it.
1129 */
1ec885cd 1130 for (j = 0; j < bitmap->storage.file_pages; j++)
bdfd1140
N
1131 if (test_and_clear_page_attr(bitmap, j,
1132 BITMAP_PAGE_PENDING))
d189122d 1133 set_page_attr(bitmap, j,
bf07bb7d 1134 BITMAP_PAGE_NEEDWRITE);
bf07bb7d
N
1135
1136 if (bitmap->need_sync &&
1137 mddev->bitmap_info.external == 0) {
1138 /* Arrange for superblock update as well as
1139 * other changes */
1140 bitmap_super_t *sb;
1141 bitmap->need_sync = 0;
1ec885cd
N
1142 if (bitmap->storage.filemap) {
1143 sb = kmap_atomic(bitmap->storage.sb_page);
ef99bf48
N
1144 sb->events_cleared =
1145 cpu_to_le64(bitmap->events_cleared);
1146 kunmap_atomic(sb);
d189122d 1147 set_page_attr(bitmap, 0,
ef99bf48
N
1148 BITMAP_PAGE_NEEDWRITE);
1149 }
bf07bb7d
N
1150 }
1151 /* Now look at the bitmap counters and if any are '2' or '1',
1152 * decrement and handle accordingly.
1153 */
40cffcc0
N
1154 counts = &bitmap->counts;
1155 spin_lock_irq(&counts->lock);
bf07bb7d 1156 nextpage = 0;
40cffcc0 1157 for (j = 0; j < counts->chunks; j++) {
32a7627c 1158 bitmap_counter_t *bmc;
40cffcc0 1159 sector_t block = (sector_t)j << counts->chunkshift;
3520fa4d 1160
bf07bb7d
N
1161 if (j == nextpage) {
1162 nextpage += PAGE_COUNTER_RATIO;
40cffcc0 1163 if (!counts->bp[j >> PAGE_COUNTER_SHIFT].pending) {
bf07bb7d 1164 j |= PAGE_COUNTER_MASK;
aa3163f8
N
1165 continue;
1166 }
40cffcc0 1167 counts->bp[j >> PAGE_COUNTER_SHIFT].pending = 0;
32a7627c 1168 }
40cffcc0 1169 bmc = bitmap_get_counter(counts,
ef99bf48 1170 block,
db305e50 1171 &blocks, 0);
bf07bb7d
N
1172
1173 if (!bmc) {
5a537df4 1174 j |= PAGE_COUNTER_MASK;
bf07bb7d
N
1175 continue;
1176 }
1177 if (*bmc == 1 && !bitmap->need_sync) {
1178 /* We can clear the bit */
bf07bb7d 1179 *bmc = 0;
40cffcc0 1180 bitmap_count_page(counts, block, -1);
ef99bf48 1181 bitmap_file_clear_bit(bitmap, block);
bf07bb7d
N
1182 } else if (*bmc && *bmc <= 2) {
1183 *bmc = 1;
40cffcc0 1184 bitmap_set_pending(counts, block);
bf07bb7d 1185 bitmap->allclean = 0;
5a537df4 1186 }
32a7627c 1187 }
40cffcc0 1188 spin_unlock_irq(&counts->lock);
32a7627c 1189
bf07bb7d
N
1190 /* Now start writeout on any page in NEEDWRITE that isn't DIRTY.
1191 * DIRTY pages need to be written by bitmap_unplug so it can wait
1192 * for them.
1193 * If we find any DIRTY page we stop there and let bitmap_unplug
1194 * handle all the rest. This is important in the case where
1195 * the first blocking holds the superblock and it has been updated.
1196 * We mustn't write any other blocks before the superblock.
1197 */
62f82faa
N
1198 for (j = 0;
1199 j < bitmap->storage.file_pages
1200 && !test_bit(BITMAP_STALE, &bitmap->flags);
1201 j++) {
bf07bb7d 1202
d189122d 1203 if (test_page_attr(bitmap, j,
bf07bb7d
N
1204 BITMAP_PAGE_DIRTY))
1205 /* bitmap_unplug will handle the rest */
1206 break;
bdfd1140
N
1207 if (test_and_clear_page_attr(bitmap, j,
1208 BITMAP_PAGE_NEEDWRITE)) {
1ec885cd 1209 write_page(bitmap, bitmap->storage.filemap[j], 0);
32a7627c 1210 }
32a7627c
N
1211 }
1212
7be3dfec 1213 done:
8311c29d 1214 if (bitmap->allclean == 0)
2e61ebbc
N
1215 mddev->thread->timeout =
1216 mddev->bitmap_info.daemon_sleep;
c3d9714e 1217 mutex_unlock(&mddev->bitmap_info.mutex);
32a7627c
N
1218}
1219
40cffcc0 1220static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
57dab0bd 1221 sector_t offset, sector_t *blocks,
32a7627c 1222 int create)
ee305ace
N
1223__releases(bitmap->lock)
1224__acquires(bitmap->lock)
32a7627c
N
1225{
1226 /* If 'create', we might release the lock and reclaim it.
1227 * The lock must have been taken with interrupts enabled.
1228 * If !create, we don't release the lock.
1229 */
61a0d80c 1230 sector_t chunk = offset >> bitmap->chunkshift;
32a7627c
N
1231 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1232 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1233 sector_t csize;
ef425673 1234 int err;
32a7627c 1235
ef425673
N
1236 err = bitmap_checkpage(bitmap, page, create);
1237
1238 if (bitmap->bp[page].hijacked ||
1239 bitmap->bp[page].map == NULL)
61a0d80c 1240 csize = ((sector_t)1) << (bitmap->chunkshift +
ef425673
N
1241 PAGE_COUNTER_SHIFT - 1);
1242 else
61a0d80c 1243 csize = ((sector_t)1) << bitmap->chunkshift;
ef425673
N
1244 *blocks = csize - (offset & (csize - 1));
1245
1246 if (err < 0)
32a7627c 1247 return NULL;
ef425673 1248
32a7627c
N
1249 /* now locked ... */
1250
1251 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1252 /* should we use the first or second counter field
1253 * of the hijacked pointer? */
1254 int hi = (pageoff > PAGE_COUNTER_MASK);
32a7627c
N
1255 return &((bitmap_counter_t *)
1256 &bitmap->bp[page].map)[hi];
ef425673 1257 } else /* page is allocated */
32a7627c
N
1258 return (bitmap_counter_t *)
1259 &(bitmap->bp[page].map[pageoff]);
32a7627c
N
1260}
1261
4b6d287f 1262int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
32a7627c 1263{
ac2f40be
N
1264 if (!bitmap)
1265 return 0;
4b6d287f
N
1266
1267 if (behind) {
696fcd53 1268 int bw;
4b6d287f 1269 atomic_inc(&bitmap->behind_writes);
696fcd53
PC
1270 bw = atomic_read(&bitmap->behind_writes);
1271 if (bw > bitmap->behind_writes_used)
1272 bitmap->behind_writes_used = bw;
1273
36a4e1fe
N
1274 pr_debug("inc write-behind count %d/%lu\n",
1275 bw, bitmap->mddev->bitmap_info.max_write_behind);
4b6d287f
N
1276 }
1277
32a7627c 1278 while (sectors) {
57dab0bd 1279 sector_t blocks;
32a7627c
N
1280 bitmap_counter_t *bmc;
1281
40cffcc0
N
1282 spin_lock_irq(&bitmap->counts.lock);
1283 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 1);
32a7627c 1284 if (!bmc) {
40cffcc0 1285 spin_unlock_irq(&bitmap->counts.lock);
32a7627c
N
1286 return 0;
1287 }
1288
27d5ea04 1289 if (unlikely(COUNTER(*bmc) == COUNTER_MAX)) {
da6e1a32
NB
1290 DEFINE_WAIT(__wait);
1291 /* note that it is safe to do the prepare_to_wait
1292 * after the test as long as we do it before dropping
1293 * the spinlock.
1294 */
1295 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1296 TASK_UNINTERRUPTIBLE);
40cffcc0 1297 spin_unlock_irq(&bitmap->counts.lock);
7eaceacc 1298 io_schedule();
da6e1a32
NB
1299 finish_wait(&bitmap->overflow_wait, &__wait);
1300 continue;
1301 }
1302
ac2f40be 1303 switch (*bmc) {
32a7627c
N
1304 case 0:
1305 bitmap_file_set_bit(bitmap, offset);
40cffcc0 1306 bitmap_count_page(&bitmap->counts, offset, 1);
32a7627c
N
1307 /* fall through */
1308 case 1:
1309 *bmc = 2;
1310 }
da6e1a32 1311
32a7627c
N
1312 (*bmc)++;
1313
40cffcc0 1314 spin_unlock_irq(&bitmap->counts.lock);
32a7627c
N
1315
1316 offset += blocks;
1317 if (sectors > blocks)
1318 sectors -= blocks;
ac2f40be
N
1319 else
1320 sectors = 0;
32a7627c
N
1321 }
1322 return 0;
1323}
ac2f40be 1324EXPORT_SYMBOL(bitmap_startwrite);
32a7627c
N
1325
1326void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
4b6d287f 1327 int success, int behind)
32a7627c 1328{
ac2f40be
N
1329 if (!bitmap)
1330 return;
4b6d287f 1331 if (behind) {
e555190d
N
1332 if (atomic_dec_and_test(&bitmap->behind_writes))
1333 wake_up(&bitmap->behind_wait);
36a4e1fe
N
1334 pr_debug("dec write-behind count %d/%lu\n",
1335 atomic_read(&bitmap->behind_writes),
1336 bitmap->mddev->bitmap_info.max_write_behind);
4b6d287f
N
1337 }
1338
32a7627c 1339 while (sectors) {
57dab0bd 1340 sector_t blocks;
32a7627c
N
1341 unsigned long flags;
1342 bitmap_counter_t *bmc;
1343
40cffcc0
N
1344 spin_lock_irqsave(&bitmap->counts.lock, flags);
1345 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 0);
32a7627c 1346 if (!bmc) {
40cffcc0 1347 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
32a7627c
N
1348 return;
1349 }
1350
961902c0 1351 if (success && !bitmap->mddev->degraded &&
a0da84f3
NB
1352 bitmap->events_cleared < bitmap->mddev->events) {
1353 bitmap->events_cleared = bitmap->mddev->events;
1354 bitmap->need_sync = 1;
5ff5afff 1355 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
a0da84f3
NB
1356 }
1357
27d5ea04 1358 if (!success && !NEEDED(*bmc))
32a7627c
N
1359 *bmc |= NEEDED_MASK;
1360
27d5ea04 1361 if (COUNTER(*bmc) == COUNTER_MAX)
da6e1a32
NB
1362 wake_up(&bitmap->overflow_wait);
1363
32a7627c 1364 (*bmc)--;
2585f3ef 1365 if (*bmc <= 2) {
40cffcc0 1366 bitmap_set_pending(&bitmap->counts, offset);
2585f3ef
N
1367 bitmap->allclean = 0;
1368 }
40cffcc0 1369 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
32a7627c
N
1370 offset += blocks;
1371 if (sectors > blocks)
1372 sectors -= blocks;
ac2f40be
N
1373 else
1374 sectors = 0;
32a7627c
N
1375 }
1376}
ac2f40be 1377EXPORT_SYMBOL(bitmap_endwrite);
32a7627c 1378
57dab0bd 1379static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
1187cf0a 1380 int degraded)
32a7627c
N
1381{
1382 bitmap_counter_t *bmc;
1383 int rv;
1384 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1385 *blocks = 1024;
1386 return 1; /* always resync if no bitmap */
1387 }
40cffcc0
N
1388 spin_lock_irq(&bitmap->counts.lock);
1389 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
32a7627c
N
1390 rv = 0;
1391 if (bmc) {
1392 /* locked */
1393 if (RESYNC(*bmc))
1394 rv = 1;
1395 else if (NEEDED(*bmc)) {
1396 rv = 1;
6a806c51
N
1397 if (!degraded) { /* don't set/clear bits if degraded */
1398 *bmc |= RESYNC_MASK;
1399 *bmc &= ~NEEDED_MASK;
1400 }
32a7627c
N
1401 }
1402 }
40cffcc0 1403 spin_unlock_irq(&bitmap->counts.lock);
32a7627c
N
1404 return rv;
1405}
1406
57dab0bd 1407int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
1187cf0a
N
1408 int degraded)
1409{
1410 /* bitmap_start_sync must always report on multiples of whole
1411 * pages, otherwise resync (which is very PAGE_SIZE based) will
1412 * get confused.
1413 * So call __bitmap_start_sync repeatedly (if needed) until
1414 * At least PAGE_SIZE>>9 blocks are covered.
1415 * Return the 'or' of the result.
1416 */
1417 int rv = 0;
57dab0bd 1418 sector_t blocks1;
1187cf0a
N
1419
1420 *blocks = 0;
1421 while (*blocks < (PAGE_SIZE>>9)) {
1422 rv |= __bitmap_start_sync(bitmap, offset,
1423 &blocks1, degraded);
1424 offset += blocks1;
1425 *blocks += blocks1;
1426 }
1427 return rv;
1428}
ac2f40be 1429EXPORT_SYMBOL(bitmap_start_sync);
1187cf0a 1430
57dab0bd 1431void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted)
32a7627c
N
1432{
1433 bitmap_counter_t *bmc;
1434 unsigned long flags;
ac2f40be
N
1435
1436 if (bitmap == NULL) {
32a7627c
N
1437 *blocks = 1024;
1438 return;
1439 }
40cffcc0
N
1440 spin_lock_irqsave(&bitmap->counts.lock, flags);
1441 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
32a7627c
N
1442 if (bmc == NULL)
1443 goto unlock;
1444 /* locked */
32a7627c
N
1445 if (RESYNC(*bmc)) {
1446 *bmc &= ~RESYNC_MASK;
1447
1448 if (!NEEDED(*bmc) && aborted)
1449 *bmc |= NEEDED_MASK;
1450 else {
2585f3ef 1451 if (*bmc <= 2) {
40cffcc0 1452 bitmap_set_pending(&bitmap->counts, offset);
2585f3ef
N
1453 bitmap->allclean = 0;
1454 }
32a7627c
N
1455 }
1456 }
1457 unlock:
40cffcc0 1458 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
32a7627c 1459}
ac2f40be 1460EXPORT_SYMBOL(bitmap_end_sync);
32a7627c
N
1461
1462void bitmap_close_sync(struct bitmap *bitmap)
1463{
1464 /* Sync has finished, and any bitmap chunks that weren't synced
1465 * properly have been aborted. It remains to us to clear the
1466 * RESYNC bit wherever it is still on
1467 */
1468 sector_t sector = 0;
57dab0bd 1469 sector_t blocks;
b47490c9
N
1470 if (!bitmap)
1471 return;
32a7627c
N
1472 while (sector < bitmap->mddev->resync_max_sectors) {
1473 bitmap_end_sync(bitmap, sector, &blocks, 0);
b47490c9
N
1474 sector += blocks;
1475 }
1476}
ac2f40be 1477EXPORT_SYMBOL(bitmap_close_sync);
b47490c9
N
1478
1479void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1480{
1481 sector_t s = 0;
57dab0bd 1482 sector_t blocks;
b47490c9
N
1483
1484 if (!bitmap)
1485 return;
1486 if (sector == 0) {
1487 bitmap->last_end_sync = jiffies;
1488 return;
1489 }
1490 if (time_before(jiffies, (bitmap->last_end_sync
1b04be96 1491 + bitmap->mddev->bitmap_info.daemon_sleep)))
b47490c9
N
1492 return;
1493 wait_event(bitmap->mddev->recovery_wait,
1494 atomic_read(&bitmap->mddev->recovery_active) == 0);
1495
75d3da43 1496 bitmap->mddev->curr_resync_completed = sector;
070dc6dd 1497 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
40cffcc0 1498 sector &= ~((1ULL << bitmap->counts.chunkshift) - 1);
b47490c9
N
1499 s = 0;
1500 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1501 bitmap_end_sync(bitmap, s, &blocks, 0);
1502 s += blocks;
32a7627c 1503 }
b47490c9 1504 bitmap->last_end_sync = jiffies;
acb180b0 1505 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
32a7627c 1506}
ac2f40be 1507EXPORT_SYMBOL(bitmap_cond_end_sync);
32a7627c 1508
6a07997f 1509static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
32a7627c
N
1510{
1511 /* For each chunk covered by any of these sectors, set the
ef99bf48 1512 * counter to 2 and possibly set resync_needed. They should all
32a7627c
N
1513 * be 0 at this point
1514 */
193f1c93 1515
57dab0bd 1516 sector_t secs;
193f1c93 1517 bitmap_counter_t *bmc;
40cffcc0
N
1518 spin_lock_irq(&bitmap->counts.lock);
1519 bmc = bitmap_get_counter(&bitmap->counts, offset, &secs, 1);
193f1c93 1520 if (!bmc) {
40cffcc0 1521 spin_unlock_irq(&bitmap->counts.lock);
193f1c93 1522 return;
32a7627c 1523 }
ac2f40be 1524 if (!*bmc) {
915c420d 1525 *bmc = 2 | (needed ? NEEDED_MASK : 0);
40cffcc0
N
1526 bitmap_count_page(&bitmap->counts, offset, 1);
1527 bitmap_set_pending(&bitmap->counts, offset);
2585f3ef 1528 bitmap->allclean = 0;
193f1c93 1529 }
40cffcc0 1530 spin_unlock_irq(&bitmap->counts.lock);
32a7627c
N
1531}
1532
9b1d1dac
PC
1533/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1534void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1535{
1536 unsigned long chunk;
1537
1538 for (chunk = s; chunk <= e; chunk++) {
40cffcc0 1539 sector_t sec = (sector_t)chunk << bitmap->counts.chunkshift;
9b1d1dac
PC
1540 bitmap_set_memory_bits(bitmap, sec, 1);
1541 bitmap_file_set_bit(bitmap, sec);
ffa23322
N
1542 if (sec < bitmap->mddev->recovery_cp)
1543 /* We are asserting that the array is dirty,
1544 * so move the recovery_cp address back so
1545 * that it is obvious that it is dirty
1546 */
1547 bitmap->mddev->recovery_cp = sec;
9b1d1dac
PC
1548 }
1549}
1550
6b8b3e8a
N
1551/*
1552 * flush out any pending updates
1553 */
fd01b88c 1554void bitmap_flush(struct mddev *mddev)
6b8b3e8a
N
1555{
1556 struct bitmap *bitmap = mddev->bitmap;
42a04b50 1557 long sleep;
6b8b3e8a
N
1558
1559 if (!bitmap) /* there was no bitmap */
1560 return;
1561
1562 /* run the daemon_work three time to ensure everything is flushed
1563 * that can be
1564 */
1b04be96 1565 sleep = mddev->bitmap_info.daemon_sleep * 2;
42a04b50 1566 bitmap->daemon_lastrun -= sleep;
aa5cbd10 1567 bitmap_daemon_work(mddev);
42a04b50 1568 bitmap->daemon_lastrun -= sleep;
aa5cbd10 1569 bitmap_daemon_work(mddev);
42a04b50 1570 bitmap->daemon_lastrun -= sleep;
aa5cbd10 1571 bitmap_daemon_work(mddev);
6b8b3e8a
N
1572 bitmap_update_sb(bitmap);
1573}
1574
32a7627c
N
1575/*
1576 * free memory that was allocated
1577 */
3178b0db 1578static void bitmap_free(struct bitmap *bitmap)
32a7627c
N
1579{
1580 unsigned long k, pages;
1581 struct bitmap_page *bp;
32a7627c
N
1582
1583 if (!bitmap) /* there was no bitmap */
1584 return;
1585
fae7d326
N
1586 /* Shouldn't be needed - but just in case.... */
1587 wait_event(bitmap->write_wait,
1588 atomic_read(&bitmap->pending_writes) == 0);
1589
1590 /* release the bitmap file */
1591 bitmap_file_unmap(&bitmap->storage);
32a7627c 1592
40cffcc0
N
1593 bp = bitmap->counts.bp;
1594 pages = bitmap->counts.pages;
32a7627c
N
1595
1596 /* free all allocated memory */
1597
32a7627c
N
1598 if (bp) /* deallocate the page memory */
1599 for (k = 0; k < pages; k++)
1600 if (bp[k].map && !bp[k].hijacked)
1601 kfree(bp[k].map);
1602 kfree(bp);
1603 kfree(bitmap);
1604}
aa5cbd10 1605
fd01b88c 1606void bitmap_destroy(struct mddev *mddev)
3178b0db
N
1607{
1608 struct bitmap *bitmap = mddev->bitmap;
1609
1610 if (!bitmap) /* there was no bitmap */
1611 return;
1612
c3d9714e 1613 mutex_lock(&mddev->bitmap_info.mutex);
3178b0db 1614 mddev->bitmap = NULL; /* disconnect from the md device */
c3d9714e 1615 mutex_unlock(&mddev->bitmap_info.mutex);
b15c2e57
N
1616 if (mddev->thread)
1617 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
3178b0db 1618
ece5cff0
N
1619 if (bitmap->sysfs_can_clear)
1620 sysfs_put(bitmap->sysfs_can_clear);
1621
3178b0db
N
1622 bitmap_free(bitmap);
1623}
32a7627c
N
1624
1625/*
1626 * initialize the bitmap structure
1627 * if this returns an error, bitmap_destroy must be called to do clean up
1628 */
fd01b88c 1629int bitmap_create(struct mddev *mddev)
32a7627c
N
1630{
1631 struct bitmap *bitmap;
1f593903 1632 sector_t blocks = mddev->resync_max_sectors;
32a7627c
N
1633 unsigned long chunks;
1634 unsigned long pages;
c3d9714e 1635 struct file *file = mddev->bitmap_info.file;
32a7627c 1636 int err;
5ff5afff 1637 struct sysfs_dirent *bm = NULL;
32a7627c 1638
5f6e3c83 1639 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
32a7627c 1640
c3d9714e 1641 BUG_ON(file && mddev->bitmap_info.offset);
a654b9d8 1642
9ffae0cf 1643 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
32a7627c
N
1644 if (!bitmap)
1645 return -ENOMEM;
1646
40cffcc0 1647 spin_lock_init(&bitmap->counts.lock);
ce25c31b
N
1648 atomic_set(&bitmap->pending_writes, 0);
1649 init_waitqueue_head(&bitmap->write_wait);
da6e1a32 1650 init_waitqueue_head(&bitmap->overflow_wait);
e555190d 1651 init_waitqueue_head(&bitmap->behind_wait);
ce25c31b 1652
32a7627c 1653 bitmap->mddev = mddev;
32a7627c 1654
5ff5afff
N
1655 if (mddev->kobj.sd)
1656 bm = sysfs_get_dirent(mddev->kobj.sd, NULL, "bitmap");
ece5cff0 1657 if (bm) {
3ff195b0 1658 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, NULL, "can_clear");
ece5cff0
N
1659 sysfs_put(bm);
1660 } else
1661 bitmap->sysfs_can_clear = NULL;
1662
1ec885cd 1663 bitmap->storage.file = file;
ce25c31b
N
1664 if (file) {
1665 get_file(file);
ae8fa283
N
1666 /* As future accesses to this file will use bmap,
1667 * and bypass the page cache, we must sync the file
1668 * first.
1669 */
8018ab05 1670 vfs_fsync(file, 1);
ce25c31b 1671 }
42a04b50 1672 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
9c81075f
JB
1673 if (!mddev->bitmap_info.external) {
1674 /*
1675 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1676 * instructing us to create a new on-disk bitmap instance.
1677 */
1678 if (test_and_clear_bit(MD_ARRAY_FIRST_USE, &mddev->flags))
1679 err = bitmap_new_disk_sb(bitmap);
1680 else
1681 err = bitmap_read_sb(bitmap);
1682 } else {
ece5cff0
N
1683 err = 0;
1684 if (mddev->bitmap_info.chunksize == 0 ||
1685 mddev->bitmap_info.daemon_sleep == 0)
1686 /* chunksize and time_base need to be
1687 * set first. */
1688 err = -EINVAL;
1689 }
32a7627c 1690 if (err)
3178b0db 1691 goto error;
32a7627c 1692
624ce4f5 1693 bitmap->daemon_lastrun = jiffies;
40cffcc0 1694 bitmap->counts.chunkshift = (ffz(~mddev->bitmap_info.chunksize)
61a0d80c 1695 - BITMAP_BLOCK_SHIFT);
32a7627c 1696
15702d7f
N
1697 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << bitmap->counts.chunkshift);
1698 pages = DIV_ROUND_UP(chunks, PAGE_COUNTER_RATIO);
32a7627c
N
1699
1700 BUG_ON(!pages);
1701
40cffcc0
N
1702 bitmap->counts.chunks = chunks;
1703 bitmap->counts.pages = pages;
1704 bitmap->counts.missing_pages = pages;
32a7627c 1705
40cffcc0
N
1706 bitmap->counts.bp = kzalloc(pages * sizeof(*bitmap->counts.bp),
1707 GFP_KERNEL);
29d3247e 1708
3178b0db 1709 err = -ENOMEM;
40cffcc0 1710 if (!bitmap->counts.bp)
3178b0db 1711 goto error;
32a7627c 1712
bc9891a8 1713 if (file || mddev->bitmap_info.offset) {
40cffcc0 1714 err = bitmap_storage_alloc(&bitmap->storage, bitmap->counts.chunks,
bc9891a8
N
1715 !mddev->bitmap_info.external);
1716 if (err)
1717 goto error;
1718 }
69e51b44
N
1719 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1720 pages, bmname(bitmap));
1721
1722 mddev->bitmap = bitmap;
1723
1724
b405fe91 1725 return test_bit(BITMAP_WRITE_ERROR, &bitmap->flags) ? -EIO : 0;
69e51b44
N
1726
1727 error:
1728 bitmap_free(bitmap);
1729 return err;
1730}
1731
fd01b88c 1732int bitmap_load(struct mddev *mddev)
69e51b44
N
1733{
1734 int err = 0;
3520fa4d 1735 sector_t start = 0;
69e51b44
N
1736 sector_t sector = 0;
1737 struct bitmap *bitmap = mddev->bitmap;
1738
1739 if (!bitmap)
1740 goto out;
1741
1742 /* Clear out old bitmap info first: Either there is none, or we
1743 * are resuming after someone else has possibly changed things,
1744 * so we should forget old cached info.
1745 * All chunks should be clean, but some might need_sync.
1746 */
1747 while (sector < mddev->resync_max_sectors) {
57dab0bd 1748 sector_t blocks;
69e51b44
N
1749 bitmap_start_sync(bitmap, sector, &blocks, 0);
1750 sector += blocks;
1751 }
1752 bitmap_close_sync(bitmap);
1753
3520fa4d
JB
1754 if (mddev->degraded == 0
1755 || bitmap->events_cleared == mddev->events)
1756 /* no need to keep dirty bits to optimise a
1757 * re-add of a missing device */
1758 start = mddev->recovery_cp;
1759
afbaa90b 1760 mutex_lock(&mddev->bitmap_info.mutex);
3520fa4d 1761 err = bitmap_init_from_disk(bitmap, start);
afbaa90b 1762 mutex_unlock(&mddev->bitmap_info.mutex);
3520fa4d 1763
32a7627c 1764 if (err)
69e51b44 1765 goto out;
b405fe91 1766 clear_bit(BITMAP_STALE, &bitmap->flags);
ef99bf48
N
1767
1768 /* Kick recovery in case any bits were set */
1769 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
3178b0db 1770
1b04be96 1771 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
9cd30fdc 1772 md_wakeup_thread(mddev->thread);
b15c2e57 1773
4ad13663
N
1774 bitmap_update_sb(bitmap);
1775
b405fe91 1776 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
69e51b44
N
1777 err = -EIO;
1778out:
3178b0db 1779 return err;
32a7627c 1780}
69e51b44 1781EXPORT_SYMBOL_GPL(bitmap_load);
32a7627c 1782
57148964
N
1783void bitmap_status(struct seq_file *seq, struct bitmap *bitmap)
1784{
1785 unsigned long chunk_kb;
40cffcc0 1786 struct bitmap_counts *counts;
57148964
N
1787
1788 if (!bitmap)
1789 return;
1790
40cffcc0
N
1791 counts = &bitmap->counts;
1792
57148964
N
1793 chunk_kb = bitmap->mddev->bitmap_info.chunksize >> 10;
1794 seq_printf(seq, "bitmap: %lu/%lu pages [%luKB], "
1795 "%lu%s chunk",
40cffcc0
N
1796 counts->pages - counts->missing_pages,
1797 counts->pages,
1798 (counts->pages - counts->missing_pages)
57148964
N
1799 << (PAGE_SHIFT - 10),
1800 chunk_kb ? chunk_kb : bitmap->mddev->bitmap_info.chunksize,
1801 chunk_kb ? "KB" : "B");
1ec885cd 1802 if (bitmap->storage.file) {
57148964 1803 seq_printf(seq, ", file: ");
1ec885cd 1804 seq_path(seq, &bitmap->storage.file->f_path, " \t\n");
57148964
N
1805 }
1806
1807 seq_printf(seq, "\n");
57148964
N
1808}
1809
43a70507 1810static ssize_t
fd01b88c 1811location_show(struct mddev *mddev, char *page)
43a70507
N
1812{
1813 ssize_t len;
ac2f40be 1814 if (mddev->bitmap_info.file)
43a70507 1815 len = sprintf(page, "file");
ac2f40be 1816 else if (mddev->bitmap_info.offset)
43a70507 1817 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
ac2f40be 1818 else
43a70507
N
1819 len = sprintf(page, "none");
1820 len += sprintf(page+len, "\n");
1821 return len;
1822}
1823
1824static ssize_t
fd01b88c 1825location_store(struct mddev *mddev, const char *buf, size_t len)
43a70507
N
1826{
1827
1828 if (mddev->pers) {
1829 if (!mddev->pers->quiesce)
1830 return -EBUSY;
1831 if (mddev->recovery || mddev->sync_thread)
1832 return -EBUSY;
1833 }
1834
1835 if (mddev->bitmap || mddev->bitmap_info.file ||
1836 mddev->bitmap_info.offset) {
1837 /* bitmap already configured. Only option is to clear it */
1838 if (strncmp(buf, "none", 4) != 0)
1839 return -EBUSY;
1840 if (mddev->pers) {
1841 mddev->pers->quiesce(mddev, 1);
1842 bitmap_destroy(mddev);
1843 mddev->pers->quiesce(mddev, 0);
1844 }
1845 mddev->bitmap_info.offset = 0;
1846 if (mddev->bitmap_info.file) {
1847 struct file *f = mddev->bitmap_info.file;
1848 mddev->bitmap_info.file = NULL;
1849 restore_bitmap_write_access(f);
1850 fput(f);
1851 }
1852 } else {
1853 /* No bitmap, OK to set a location */
1854 long long offset;
1855 if (strncmp(buf, "none", 4) == 0)
1856 /* nothing to be done */;
1857 else if (strncmp(buf, "file:", 5) == 0) {
1858 /* Not supported yet */
1859 return -EINVAL;
1860 } else {
1861 int rv;
1862 if (buf[0] == '+')
1863 rv = strict_strtoll(buf+1, 10, &offset);
1864 else
1865 rv = strict_strtoll(buf, 10, &offset);
1866 if (rv)
1867 return rv;
1868 if (offset == 0)
1869 return -EINVAL;
ece5cff0
N
1870 if (mddev->bitmap_info.external == 0 &&
1871 mddev->major_version == 0 &&
43a70507
N
1872 offset != mddev->bitmap_info.default_offset)
1873 return -EINVAL;
1874 mddev->bitmap_info.offset = offset;
1875 if (mddev->pers) {
1876 mddev->pers->quiesce(mddev, 1);
1877 rv = bitmap_create(mddev);
4474ca42
N
1878 if (!rv)
1879 rv = bitmap_load(mddev);
43a70507
N
1880 if (rv) {
1881 bitmap_destroy(mddev);
1882 mddev->bitmap_info.offset = 0;
1883 }
1884 mddev->pers->quiesce(mddev, 0);
1885 if (rv)
1886 return rv;
1887 }
1888 }
1889 }
1890 if (!mddev->external) {
1891 /* Ensure new bitmap info is stored in
1892 * metadata promptly.
1893 */
1894 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1895 md_wakeup_thread(mddev->thread);
1896 }
1897 return len;
1898}
1899
1900static struct md_sysfs_entry bitmap_location =
1901__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
1902
6409bb05
N
1903/* 'bitmap/space' is the space available at 'location' for the
1904 * bitmap. This allows the kernel to know when it is safe to
1905 * resize the bitmap to match a resized array.
1906 */
1907static ssize_t
1908space_show(struct mddev *mddev, char *page)
1909{
1910 return sprintf(page, "%lu\n", mddev->bitmap_info.space);
1911}
1912
1913static ssize_t
1914space_store(struct mddev *mddev, const char *buf, size_t len)
1915{
1916 unsigned long sectors;
1917 int rv;
1918
1919 rv = kstrtoul(buf, 10, &sectors);
1920 if (rv)
1921 return rv;
1922
1923 if (sectors == 0)
1924 return -EINVAL;
1925
1926 if (mddev->bitmap &&
9b1215c1 1927 sectors < (mddev->bitmap->storage.bytes + 511) >> 9)
6409bb05
N
1928 return -EFBIG; /* Bitmap is too big for this small space */
1929
1930 /* could make sure it isn't too big, but that isn't really
1931 * needed - user-space should be careful.
1932 */
1933 mddev->bitmap_info.space = sectors;
1934 return len;
1935}
1936
1937static struct md_sysfs_entry bitmap_space =
1938__ATTR(space, S_IRUGO|S_IWUSR, space_show, space_store);
1939
43a70507 1940static ssize_t
fd01b88c 1941timeout_show(struct mddev *mddev, char *page)
43a70507
N
1942{
1943 ssize_t len;
1944 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
1945 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
ac2f40be 1946
43a70507
N
1947 len = sprintf(page, "%lu", secs);
1948 if (jifs)
1949 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
1950 len += sprintf(page+len, "\n");
1951 return len;
1952}
1953
1954static ssize_t
fd01b88c 1955timeout_store(struct mddev *mddev, const char *buf, size_t len)
43a70507
N
1956{
1957 /* timeout can be set at any time */
1958 unsigned long timeout;
1959 int rv = strict_strtoul_scaled(buf, &timeout, 4);
1960 if (rv)
1961 return rv;
1962
1963 /* just to make sure we don't overflow... */
1964 if (timeout >= LONG_MAX / HZ)
1965 return -EINVAL;
1966
1967 timeout = timeout * HZ / 10000;
1968
1969 if (timeout >= MAX_SCHEDULE_TIMEOUT)
1970 timeout = MAX_SCHEDULE_TIMEOUT-1;
1971 if (timeout < 1)
1972 timeout = 1;
1973 mddev->bitmap_info.daemon_sleep = timeout;
1974 if (mddev->thread) {
1975 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
1976 * the bitmap is all clean and we don't need to
1977 * adjust the timeout right now
1978 */
1979 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
1980 mddev->thread->timeout = timeout;
1981 md_wakeup_thread(mddev->thread);
1982 }
1983 }
1984 return len;
1985}
1986
1987static struct md_sysfs_entry bitmap_timeout =
1988__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
1989
1990static ssize_t
fd01b88c 1991backlog_show(struct mddev *mddev, char *page)
43a70507
N
1992{
1993 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
1994}
1995
1996static ssize_t
fd01b88c 1997backlog_store(struct mddev *mddev, const char *buf, size_t len)
43a70507
N
1998{
1999 unsigned long backlog;
2000 int rv = strict_strtoul(buf, 10, &backlog);
2001 if (rv)
2002 return rv;
2003 if (backlog > COUNTER_MAX)
2004 return -EINVAL;
2005 mddev->bitmap_info.max_write_behind = backlog;
2006 return len;
2007}
2008
2009static struct md_sysfs_entry bitmap_backlog =
2010__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
2011
2012static ssize_t
fd01b88c 2013chunksize_show(struct mddev *mddev, char *page)
43a70507
N
2014{
2015 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
2016}
2017
2018static ssize_t
fd01b88c 2019chunksize_store(struct mddev *mddev, const char *buf, size_t len)
43a70507
N
2020{
2021 /* Can only be changed when no bitmap is active */
2022 int rv;
2023 unsigned long csize;
2024 if (mddev->bitmap)
2025 return -EBUSY;
2026 rv = strict_strtoul(buf, 10, &csize);
2027 if (rv)
2028 return rv;
2029 if (csize < 512 ||
2030 !is_power_of_2(csize))
2031 return -EINVAL;
2032 mddev->bitmap_info.chunksize = csize;
2033 return len;
2034}
2035
2036static struct md_sysfs_entry bitmap_chunksize =
2037__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2038
fd01b88c 2039static ssize_t metadata_show(struct mddev *mddev, char *page)
ece5cff0
N
2040{
2041 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2042 ? "external" : "internal"));
2043}
2044
fd01b88c 2045static ssize_t metadata_store(struct mddev *mddev, const char *buf, size_t len)
ece5cff0
N
2046{
2047 if (mddev->bitmap ||
2048 mddev->bitmap_info.file ||
2049 mddev->bitmap_info.offset)
2050 return -EBUSY;
2051 if (strncmp(buf, "external", 8) == 0)
2052 mddev->bitmap_info.external = 1;
2053 else if (strncmp(buf, "internal", 8) == 0)
2054 mddev->bitmap_info.external = 0;
2055 else
2056 return -EINVAL;
2057 return len;
2058}
2059
2060static struct md_sysfs_entry bitmap_metadata =
2061__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2062
fd01b88c 2063static ssize_t can_clear_show(struct mddev *mddev, char *page)
ece5cff0
N
2064{
2065 int len;
2066 if (mddev->bitmap)
2067 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2068 "false" : "true"));
2069 else
2070 len = sprintf(page, "\n");
2071 return len;
2072}
2073
fd01b88c 2074static ssize_t can_clear_store(struct mddev *mddev, const char *buf, size_t len)
ece5cff0
N
2075{
2076 if (mddev->bitmap == NULL)
2077 return -ENOENT;
2078 if (strncmp(buf, "false", 5) == 0)
2079 mddev->bitmap->need_sync = 1;
2080 else if (strncmp(buf, "true", 4) == 0) {
2081 if (mddev->degraded)
2082 return -EBUSY;
2083 mddev->bitmap->need_sync = 0;
2084 } else
2085 return -EINVAL;
2086 return len;
2087}
2088
2089static struct md_sysfs_entry bitmap_can_clear =
2090__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2091
696fcd53 2092static ssize_t
fd01b88c 2093behind_writes_used_show(struct mddev *mddev, char *page)
696fcd53
PC
2094{
2095 if (mddev->bitmap == NULL)
2096 return sprintf(page, "0\n");
2097 return sprintf(page, "%lu\n",
2098 mddev->bitmap->behind_writes_used);
2099}
2100
2101static ssize_t
fd01b88c 2102behind_writes_used_reset(struct mddev *mddev, const char *buf, size_t len)
696fcd53
PC
2103{
2104 if (mddev->bitmap)
2105 mddev->bitmap->behind_writes_used = 0;
2106 return len;
2107}
2108
2109static struct md_sysfs_entry max_backlog_used =
2110__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2111 behind_writes_used_show, behind_writes_used_reset);
2112
43a70507
N
2113static struct attribute *md_bitmap_attrs[] = {
2114 &bitmap_location.attr,
6409bb05 2115 &bitmap_space.attr,
43a70507
N
2116 &bitmap_timeout.attr,
2117 &bitmap_backlog.attr,
2118 &bitmap_chunksize.attr,
ece5cff0
N
2119 &bitmap_metadata.attr,
2120 &bitmap_can_clear.attr,
696fcd53 2121 &max_backlog_used.attr,
43a70507
N
2122 NULL
2123};
2124struct attribute_group md_bitmap_group = {
2125 .name = "bitmap",
2126 .attrs = md_bitmap_attrs,
2127};
2128