blob: c14dacdacfac530c61370b14de5686d6b51c02a3 [file] [log] [blame]
NeilBrown32a76272005-06-21 17:17:14 -07001/*
2 * bitmap.c two-level bitmap (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
3 *
4 * bitmap_create - sets up the bitmap structure
5 * bitmap_destroy - destroys the bitmap structure
6 *
7 * additions, Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc.:
8 * - added disk storage for bitmap
9 * - changes to allow various bitmap chunk sizes
NeilBrown32a76272005-06-21 17:17:14 -070010 */
11
12/*
13 * Still to do:
14 *
15 * flush after percent set rather than just time based. (maybe both).
16 * wait if count gets too high, wake when it drops to half.
NeilBrown32a76272005-06-21 17:17:14 -070017 */
18
19#include <linux/module.h>
NeilBrown32a76272005-06-21 17:17:14 -070020#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/init.h>
NeilBrown32a76272005-06-21 17:17:14 -070023#include <linux/timer.h>
24#include <linux/sched.h>
25#include <linux/list.h>
26#include <linux/file.h>
27#include <linux/mount.h>
28#include <linux/buffer_head.h>
29#include <linux/raid/md.h>
30#include <linux/raid/bitmap.h>
31
32/* debug macros */
33
34#define DEBUG 0
35
36#if DEBUG
37/* these are for debugging purposes only! */
38
39/* define one and only one of these */
40#define INJECT_FAULTS_1 0 /* cause bitmap_alloc_page to fail always */
41#define INJECT_FAULTS_2 0 /* cause bitmap file to be kicked when first bit set*/
42#define INJECT_FAULTS_3 0 /* treat bitmap file as kicked at init time */
43#define INJECT_FAULTS_4 0 /* undef */
44#define INJECT_FAULTS_5 0 /* undef */
45#define INJECT_FAULTS_6 0
46
47/* if these are defined, the driver will fail! debug only */
48#define INJECT_FATAL_FAULT_1 0 /* fail kmalloc, causing bitmap_create to fail */
49#define INJECT_FATAL_FAULT_2 0 /* undef */
50#define INJECT_FATAL_FAULT_3 0 /* undef */
51#endif
52
53//#define DPRINTK PRINTK /* set this NULL to avoid verbose debug output */
54#define DPRINTK(x...) do { } while(0)
55
56#ifndef PRINTK
57# if DEBUG > 0
58# define PRINTK(x...) printk(KERN_DEBUG x)
59# else
60# define PRINTK(x...)
61# endif
62#endif
63
64static inline char * bmname(struct bitmap *bitmap)
65{
66 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
67}
68
NeilBrown32a76272005-06-21 17:17:14 -070069
70/*
71 * just a placeholder - calls kmalloc for bitmap pages
72 */
73static unsigned char *bitmap_alloc_page(struct bitmap *bitmap)
74{
75 unsigned char *page;
76
Olaf Hering44456d32005-07-27 11:45:17 -070077#ifdef INJECT_FAULTS_1
NeilBrown32a76272005-06-21 17:17:14 -070078 page = NULL;
79#else
80 page = kmalloc(PAGE_SIZE, GFP_NOIO);
81#endif
82 if (!page)
83 printk("%s: bitmap_alloc_page FAILED\n", bmname(bitmap));
84 else
NeilBrowna654b9d82005-06-21 17:17:27 -070085 PRINTK("%s: bitmap_alloc_page: allocated page at %p\n",
NeilBrown32a76272005-06-21 17:17:14 -070086 bmname(bitmap), page);
87 return page;
88}
89
90/*
91 * for now just a placeholder -- just calls kfree for bitmap pages
92 */
93static void bitmap_free_page(struct bitmap *bitmap, unsigned char *page)
94{
95 PRINTK("%s: bitmap_free_page: free page %p\n", bmname(bitmap), page);
96 kfree(page);
97}
98
99/*
100 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
101 *
102 * 1) check to see if this page is allocated, if it's not then try to alloc
103 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
104 * page pointer directly as a counter
105 *
106 * if we find our page, we increment the page's refcount so that it stays
107 * allocated while we're using it
108 */
109static int bitmap_checkpage(struct bitmap *bitmap, unsigned long page, int create)
110{
111 unsigned char *mappage;
112
113 if (page >= bitmap->pages) {
114 printk(KERN_ALERT
115 "%s: invalid bitmap page request: %lu (> %lu)\n",
116 bmname(bitmap), page, bitmap->pages-1);
117 return -EINVAL;
118 }
119
120
121 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
122 return 0;
123
124 if (bitmap->bp[page].map) /* page is already allocated, just return */
125 return 0;
126
127 if (!create)
128 return -ENOENT;
129
130 spin_unlock_irq(&bitmap->lock);
131
132 /* this page has not been allocated yet */
133
134 if ((mappage = bitmap_alloc_page(bitmap)) == NULL) {
135 PRINTK("%s: bitmap map page allocation failed, hijacking\n",
136 bmname(bitmap));
137 /* failed - set the hijacked flag so that we can use the
138 * pointer as a counter */
139 spin_lock_irq(&bitmap->lock);
140 if (!bitmap->bp[page].map)
141 bitmap->bp[page].hijacked = 1;
142 goto out;
143 }
144
145 /* got a page */
146
147 spin_lock_irq(&bitmap->lock);
148
149 /* recheck the page */
150
151 if (bitmap->bp[page].map || bitmap->bp[page].hijacked) {
152 /* somebody beat us to getting the page */
153 bitmap_free_page(bitmap, mappage);
154 return 0;
155 }
156
157 /* no page was in place and we have one, so install it */
158
159 memset(mappage, 0, PAGE_SIZE);
160 bitmap->bp[page].map = mappage;
161 bitmap->missing_pages--;
162out:
163 return 0;
164}
165
166
167/* if page is completely empty, put it back on the free list, or dealloc it */
168/* if page was hijacked, unmark the flag so it might get alloced next time */
169/* Note: lock should be held when calling this */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800170static void bitmap_checkfree(struct bitmap *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700171{
172 char *ptr;
173
174 if (bitmap->bp[page].count) /* page is still busy */
175 return;
176
177 /* page is no longer in use, it can be released */
178
179 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
180 bitmap->bp[page].hijacked = 0;
181 bitmap->bp[page].map = NULL;
182 return;
183 }
184
185 /* normal case, free the page */
186
187#if 0
188/* actually ... let's not. We will probably need the page again exactly when
189 * memory is tight and we are flusing to disk
190 */
191 return;
192#else
193 ptr = bitmap->bp[page].map;
194 bitmap->bp[page].map = NULL;
195 bitmap->missing_pages++;
196 bitmap_free_page(bitmap, ptr);
197 return;
198#endif
199}
200
201
202/*
203 * bitmap file handling - read and write the bitmap file and its superblock
204 */
205
206/* copy the pathname of a file to a buffer */
207char *file_path(struct file *file, char *buf, int count)
208{
NeilBrown32a76272005-06-21 17:17:14 -0700209 if (!buf)
210 return NULL;
211
Jan Blunckcf28b482008-02-14 19:38:44 -0800212 buf = d_path(&file->f_path, buf, count);
NeilBrown32a76272005-06-21 17:17:14 -0700213
214 return IS_ERR(buf) ? NULL : buf;
215}
216
217/*
218 * basic page I/O operations
219 */
220
NeilBrowna654b9d82005-06-21 17:17:27 -0700221/* IO operations when bitmap is stored near all superblocks */
222static struct page *read_sb_page(mddev_t *mddev, long offset, unsigned long index)
223{
224 /* choose a good rdev and read the page from there */
225
226 mdk_rdev_t *rdev;
227 struct list_head *tmp;
228 struct page *page = alloc_page(GFP_KERNEL);
229 sector_t target;
230
231 if (!page)
232 return ERR_PTR(-ENOMEM);
NeilBrowna654b9d82005-06-21 17:17:27 -0700233
NeilBrownd089c6a2008-02-06 01:39:59 -0800234 rdev_for_each(rdev, tmp, mddev) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800235 if (! test_bit(In_sync, &rdev->flags)
236 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700237 continue;
238
NeilBrowna654b9d82005-06-21 17:17:27 -0700239 target = (rdev->sb_offset << 1) + offset + index * (PAGE_SIZE/512);
240
NeilBrownab904d62005-09-09 16:23:52 -0700241 if (sync_page_io(rdev->bdev, target, PAGE_SIZE, page, READ)) {
242 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700243 attach_page_buffers(page, NULL); /* so that free_buffer will
244 * quietly no-op */
NeilBrownab904d62005-09-09 16:23:52 -0700245 return page;
246 }
247 }
248 return ERR_PTR(-EIO);
NeilBrowna654b9d82005-06-21 17:17:27 -0700249
NeilBrowna654b9d82005-06-21 17:17:27 -0700250}
251
NeilBrownab6085c2007-05-23 13:58:10 -0700252static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700253{
254 mdk_rdev_t *rdev;
255 struct list_head *tmp;
NeilBrownab6085c2007-05-23 13:58:10 -0700256 mddev_t *mddev = bitmap->mddev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700257
NeilBrownd089c6a2008-02-06 01:39:59 -0800258 rdev_for_each(rdev, tmp, mddev)
NeilBrownb2d444d2005-11-08 21:39:31 -0800259 if (test_bit(In_sync, &rdev->flags)
NeilBrownab6085c2007-05-23 13:58:10 -0700260 && !test_bit(Faulty, &rdev->flags)) {
261 int size = PAGE_SIZE;
262 if (page->index == bitmap->file_pages-1)
263 size = roundup(bitmap->last_page_size,
264 bdev_hardsect_size(rdev->bdev));
NeilBrownf0d76d72007-07-17 04:06:12 -0700265 /* Just make sure we aren't corrupting data or
266 * metadata
267 */
268 if (bitmap->offset < 0) {
269 /* DATA BITMAP METADATA */
270 if (bitmap->offset
NeilBrown85bfb4d2007-10-22 20:45:11 -0700271 + (long)(page->index * (PAGE_SIZE/512))
NeilBrownf0d76d72007-07-17 04:06:12 -0700272 + size/512 > 0)
273 /* bitmap runs in to metadata */
274 return -EINVAL;
275 if (rdev->data_offset + mddev->size*2
276 > rdev->sb_offset*2 + bitmap->offset)
277 /* data runs in to bitmap */
278 return -EINVAL;
279 } else if (rdev->sb_offset*2 < rdev->data_offset) {
280 /* METADATA BITMAP DATA */
281 if (rdev->sb_offset*2
282 + bitmap->offset
283 + page->index*(PAGE_SIZE/512) + size/512
284 > rdev->data_offset)
285 /* bitmap runs in to data */
286 return -EINVAL;
287 } else {
288 /* DATA METADATA BITMAP - no problems */
289 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700290 md_super_write(mddev, rdev,
NeilBrownab6085c2007-05-23 13:58:10 -0700291 (rdev->sb_offset<<1) + bitmap->offset
NeilBrowna654b9d82005-06-21 17:17:27 -0700292 + page->index * (PAGE_SIZE/512),
NeilBrownab6085c2007-05-23 13:58:10 -0700293 size,
NeilBrowna654b9d82005-06-21 17:17:27 -0700294 page);
NeilBrownab6085c2007-05-23 13:58:10 -0700295 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700296
297 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800298 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700299 return 0;
300}
301
NeilBrown4ad13662007-07-17 04:06:13 -0700302static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700303/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700304 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700305 */
NeilBrown4ad13662007-07-17 04:06:13 -0700306static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700307{
NeilBrownd785a062006-06-26 00:27:48 -0700308 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700309
NeilBrownf0d76d72007-07-17 04:06:12 -0700310 if (bitmap->file == NULL) {
311 switch (write_sb_page(bitmap, page, wait)) {
312 case -EINVAL:
313 bitmap->flags |= BITMAP_WRITE_ERROR;
NeilBrownf0d76d72007-07-17 04:06:12 -0700314 }
NeilBrown4ad13662007-07-17 04:06:13 -0700315 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700316
NeilBrown4ad13662007-07-17 04:06:13 -0700317 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800318
NeilBrown4ad13662007-07-17 04:06:13 -0700319 while (bh && bh->b_blocknr) {
320 atomic_inc(&bitmap->pending_writes);
321 set_buffer_locked(bh);
322 set_buffer_mapped(bh);
323 submit_bh(WRITE, bh);
324 bh = bh->b_this_page;
325 }
NeilBrown32a76272005-06-21 17:17:14 -0700326
NeilBrown4ad13662007-07-17 04:06:13 -0700327 if (wait) {
328 wait_event(bitmap->write_wait,
329 atomic_read(&bitmap->pending_writes)==0);
330 }
NeilBrown32a76272005-06-21 17:17:14 -0700331 }
NeilBrown4ad13662007-07-17 04:06:13 -0700332 if (bitmap->flags & BITMAP_WRITE_ERROR)
333 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700334}
335
NeilBrownd785a062006-06-26 00:27:48 -0700336static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700337{
NeilBrownd785a062006-06-26 00:27:48 -0700338 struct bitmap *bitmap = bh->b_private;
339 unsigned long flags;
340
341 if (!uptodate) {
342 spin_lock_irqsave(&bitmap->lock, flags);
343 bitmap->flags |= BITMAP_WRITE_ERROR;
344 spin_unlock_irqrestore(&bitmap->lock, flags);
345 }
346 if (atomic_dec_and_test(&bitmap->pending_writes))
347 wake_up(&bitmap->write_wait);
348}
349
350/* copied from buffer.c */
351static void
352__clear_page_buffers(struct page *page)
353{
354 ClearPagePrivate(page);
355 set_page_private(page, 0);
356 page_cache_release(page);
357}
358static void free_buffers(struct page *page)
359{
360 struct buffer_head *bh = page_buffers(page);
361
362 while (bh) {
363 struct buffer_head *next = bh->b_this_page;
364 free_buffer_head(bh);
365 bh = next;
366 }
367 __clear_page_buffers(page);
368 put_page(page);
369}
370
371/* read a page from a file.
372 * We both read the page, and attach buffers to the page to record the
373 * address of each block (using bmap). These addresses will be used
374 * to write the block later, completely bypassing the filesystem.
375 * This usage is similar to how swap files are handled, and allows us
376 * to write to a file with no concerns of memory allocation failing.
377 */
378static struct page *read_page(struct file *file, unsigned long index,
379 struct bitmap *bitmap,
380 unsigned long count)
381{
NeilBrown32a76272005-06-21 17:17:14 -0700382 struct page *page = NULL;
Josef Sipekc649bb92006-12-08 02:37:19 -0800383 struct inode *inode = file->f_path.dentry->d_inode;
NeilBrownd785a062006-06-26 00:27:48 -0700384 struct buffer_head *bh;
385 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700386
NeilBrown2d1f3b52006-01-06 00:20:31 -0800387 PRINTK("read bitmap file (%dB @ %Lu)\n", (int)PAGE_SIZE,
388 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700389
NeilBrownd785a062006-06-26 00:27:48 -0700390 page = alloc_page(GFP_KERNEL);
391 if (!page)
392 page = ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -0700393 if (IS_ERR(page))
394 goto out;
NeilBrownd785a062006-06-26 00:27:48 -0700395
NeilBrownd785a062006-06-26 00:27:48 -0700396 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
397 if (!bh) {
398 put_page(page);
399 page = ERR_PTR(-ENOMEM);
400 goto out;
401 }
402 attach_page_buffers(page, bh);
403 block = index << (PAGE_SHIFT - inode->i_blkbits);
404 while (bh) {
405 if (count == 0)
406 bh->b_blocknr = 0;
407 else {
408 bh->b_blocknr = bmap(inode, block);
409 if (bh->b_blocknr == 0) {
410 /* Cannot use this file! */
411 free_buffers(page);
412 page = ERR_PTR(-EINVAL);
413 goto out;
414 }
415 bh->b_bdev = inode->i_sb->s_bdev;
416 if (count < (1<<inode->i_blkbits))
417 count = 0;
418 else
419 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700420
NeilBrownd785a062006-06-26 00:27:48 -0700421 bh->b_end_io = end_bitmap_write;
422 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700423 atomic_inc(&bitmap->pending_writes);
424 set_buffer_locked(bh);
425 set_buffer_mapped(bh);
426 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700427 }
428 block++;
429 bh = bh->b_this_page;
430 }
NeilBrownd785a062006-06-26 00:27:48 -0700431 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700432
433 wait_event(bitmap->write_wait,
434 atomic_read(&bitmap->pending_writes)==0);
435 if (bitmap->flags & BITMAP_WRITE_ERROR) {
436 free_buffers(page);
437 page = ERR_PTR(-EIO);
438 }
NeilBrown32a76272005-06-21 17:17:14 -0700439out:
440 if (IS_ERR(page))
441 printk(KERN_ALERT "md: bitmap read error: (%dB @ %Lu): %ld\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800442 (int)PAGE_SIZE,
443 (unsigned long long)index << PAGE_SHIFT,
NeilBrown32a76272005-06-21 17:17:14 -0700444 PTR_ERR(page));
445 return page;
446}
447
448/*
449 * bitmap file superblock operations
450 */
451
452/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700453void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700454{
455 bitmap_super_t *sb;
456 unsigned long flags;
457
458 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700459 return;
NeilBrown32a76272005-06-21 17:17:14 -0700460 spin_lock_irqsave(&bitmap->lock, flags);
461 if (!bitmap->sb_page) { /* no superblock */
462 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700463 return;
NeilBrown32a76272005-06-21 17:17:14 -0700464 }
NeilBrown32a76272005-06-21 17:17:14 -0700465 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800466 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700467 sb->events = cpu_to_le64(bitmap->mddev->events);
468 if (!bitmap->mddev->degraded)
469 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
NeilBrownea03aff2006-01-06 00:20:34 -0800470 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700471 write_page(bitmap, bitmap->sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700472}
473
474/* print out the bitmap file superblock */
475void bitmap_print_sb(struct bitmap *bitmap)
476{
477 bitmap_super_t *sb;
478
479 if (!bitmap || !bitmap->sb_page)
480 return;
NeilBrownea03aff2006-01-06 00:20:34 -0800481 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700482 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700483 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
484 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
485 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700486 *(__u32 *)(sb->uuid+0),
487 *(__u32 *)(sb->uuid+4),
488 *(__u32 *)(sb->uuid+8),
489 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700490 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700491 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700492 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700493 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700494 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
495 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
496 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
497 printk(KERN_DEBUG " sync size: %llu KB\n",
498 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700499 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
NeilBrownea03aff2006-01-06 00:20:34 -0800500 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700501}
502
503/* read the superblock from the bitmap file and initialize some bitmap fields */
504static int bitmap_read_sb(struct bitmap *bitmap)
505{
506 char *reason = NULL;
507 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700508 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700509 unsigned long long events;
510 int err = -EINVAL;
511
512 /* page 0 is the superblock, read it... */
NeilBrownf49d5e62007-01-26 00:57:03 -0800513 if (bitmap->file) {
514 loff_t isize = i_size_read(bitmap->file->f_mapping->host);
515 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
516
517 bitmap->sb_page = read_page(bitmap->file, 0, bitmap, bytes);
518 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700519 bitmap->sb_page = read_sb_page(bitmap->mddev, bitmap->offset, 0);
NeilBrowna654b9d82005-06-21 17:17:27 -0700520 }
NeilBrown32a76272005-06-21 17:17:14 -0700521 if (IS_ERR(bitmap->sb_page)) {
522 err = PTR_ERR(bitmap->sb_page);
523 bitmap->sb_page = NULL;
524 return err;
525 }
526
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
NeilBrown32a76272005-06-21 17:17:14 -0700529 chunksize = le32_to_cpu(sb->chunksize);
530 daemon_sleep = le32_to_cpu(sb->daemon_sleep);
NeilBrown4b6d2872005-09-09 16:23:47 -0700531 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown32a76272005-06-21 17:17:14 -0700532
533 /* verify that the bitmap-specific fields are valid */
534 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
535 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800536 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
537 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700538 reason = "unrecognized superblock version";
NeilBrown7dd5d342006-01-06 00:20:39 -0800539 else if (chunksize < PAGE_SIZE)
540 reason = "bitmap chunksize too small";
NeilBrown32a76272005-06-21 17:17:14 -0700541 else if ((1 << ffz(~chunksize)) != chunksize)
542 reason = "bitmap chunksize not a power of 2";
NeilBrown7dd5d342006-01-06 00:20:39 -0800543 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT / HZ)
544 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700545 else if (write_behind > COUNTER_MAX)
546 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700547 if (reason) {
548 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
549 bmname(bitmap), reason);
550 goto out;
551 }
552
553 /* keep the array size field of the bitmap superblock up to date */
554 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
555
556 if (!bitmap->mddev->persistent)
557 goto success;
558
559 /*
560 * if we have a persistent array superblock, compare the
561 * bitmap's UUID and event counter to the mddev's
562 */
563 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
564 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
565 bmname(bitmap));
566 goto out;
567 }
568 events = le64_to_cpu(sb->events);
569 if (events < bitmap->mddev->events) {
570 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
571 "-- forcing full recovery\n", bmname(bitmap), events,
572 (unsigned long long) bitmap->mddev->events);
NeilBrown4f2e6392006-10-21 10:24:09 -0700573 sb->state |= cpu_to_le32(BITMAP_STALE);
NeilBrown32a76272005-06-21 17:17:14 -0700574 }
575success:
576 /* assign fields using values from superblock */
577 bitmap->chunksize = chunksize;
578 bitmap->daemon_sleep = daemon_sleep;
NeilBrown585f0dd2005-09-09 16:23:49 -0700579 bitmap->daemon_lastrun = jiffies;
NeilBrown4b6d2872005-09-09 16:23:47 -0700580 bitmap->max_write_behind = write_behind;
NeilBrown4f2e6392006-10-21 10:24:09 -0700581 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800582 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
583 bitmap->flags |= BITMAP_HOSTENDIAN;
NeilBrown32a76272005-06-21 17:17:14 -0700584 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
NeilBrown4f2e6392006-10-21 10:24:09 -0700585 if (sb->state & cpu_to_le32(BITMAP_STALE))
NeilBrown6a079972005-09-09 16:23:44 -0700586 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown32a76272005-06-21 17:17:14 -0700587 err = 0;
588out:
NeilBrownea03aff2006-01-06 00:20:34 -0800589 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700590 if (err)
591 bitmap_print_sb(bitmap);
592 return err;
593}
594
595enum bitmap_mask_op {
596 MASK_SET,
597 MASK_UNSET
598};
599
NeilBrown4ad13662007-07-17 04:06:13 -0700600/* record the state of the bitmap in the superblock. Return the old value */
601static int bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
602 enum bitmap_mask_op op)
NeilBrown32a76272005-06-21 17:17:14 -0700603{
604 bitmap_super_t *sb;
605 unsigned long flags;
NeilBrown4ad13662007-07-17 04:06:13 -0700606 int old;
NeilBrown32a76272005-06-21 17:17:14 -0700607
608 spin_lock_irqsave(&bitmap->lock, flags);
Adrian Bunk7e317652006-03-25 03:07:51 -0800609 if (!bitmap->sb_page) { /* can't set the state */
NeilBrown32a76272005-06-21 17:17:14 -0700610 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700611 return 0;
NeilBrown32a76272005-06-21 17:17:14 -0700612 }
NeilBrown32a76272005-06-21 17:17:14 -0700613 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrownea03aff2006-01-06 00:20:34 -0800614 sb = (bitmap_super_t *)kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700615 old = le32_to_cpu(sb->state) & bits;
NeilBrown32a76272005-06-21 17:17:14 -0700616 switch (op) {
NeilBrown4f2e6392006-10-21 10:24:09 -0700617 case MASK_SET: sb->state |= cpu_to_le32(bits);
NeilBrown32a76272005-06-21 17:17:14 -0700618 break;
NeilBrown4f2e6392006-10-21 10:24:09 -0700619 case MASK_UNSET: sb->state &= cpu_to_le32(~bits);
NeilBrown32a76272005-06-21 17:17:14 -0700620 break;
621 default: BUG();
622 }
NeilBrownea03aff2006-01-06 00:20:34 -0800623 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700624 return old;
NeilBrown32a76272005-06-21 17:17:14 -0700625}
626
627/*
628 * general bitmap file operations
629 */
630
631/* calculate the index of the page that contains this bit */
632static inline unsigned long file_page_index(unsigned long chunk)
633{
634 return CHUNK_BIT_OFFSET(chunk) >> PAGE_BIT_SHIFT;
635}
636
637/* calculate the (bit) offset of this bit within a page */
638static inline unsigned long file_page_offset(unsigned long chunk)
639{
640 return CHUNK_BIT_OFFSET(chunk) & (PAGE_BITS - 1);
641}
642
643/*
644 * return a pointer to the page in the filemap that contains the given bit
645 *
646 * this lookup is complicated by the fact that the bitmap sb might be exactly
647 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
648 * 0 or page 1
649 */
650static inline struct page *filemap_get_page(struct bitmap *bitmap,
651 unsigned long chunk)
652{
Paul Clements9b1d1da2006-10-03 01:15:49 -0700653 if (file_page_index(chunk) >= bitmap->file_pages) return NULL;
NeilBrown32a76272005-06-21 17:17:14 -0700654 return bitmap->filemap[file_page_index(chunk) - file_page_index(0)];
655}
656
657
658static void bitmap_file_unmap(struct bitmap *bitmap)
659{
660 struct page **map, *sb_page;
661 unsigned long *attr;
662 int pages;
663 unsigned long flags;
664
665 spin_lock_irqsave(&bitmap->lock, flags);
666 map = bitmap->filemap;
667 bitmap->filemap = NULL;
668 attr = bitmap->filemap_attr;
669 bitmap->filemap_attr = NULL;
670 pages = bitmap->file_pages;
671 bitmap->file_pages = 0;
672 sb_page = bitmap->sb_page;
673 bitmap->sb_page = NULL;
674 spin_unlock_irqrestore(&bitmap->lock, flags);
675
676 while (pages--)
677 if (map[pages]->index != 0) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700678 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700679 kfree(map);
680 kfree(attr);
681
NeilBrownd785a062006-06-26 00:27:48 -0700682 if (sb_page)
683 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700684}
685
686static void bitmap_file_put(struct bitmap *bitmap)
687{
688 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700689 unsigned long flags;
690
691 spin_lock_irqsave(&bitmap->lock, flags);
692 file = bitmap->file;
693 bitmap->file = NULL;
694 spin_unlock_irqrestore(&bitmap->lock, flags);
695
NeilBrownd785a062006-06-26 00:27:48 -0700696 if (file)
697 wait_event(bitmap->write_wait,
698 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700699 bitmap_file_unmap(bitmap);
700
NeilBrownd785a062006-06-26 00:27:48 -0700701 if (file) {
Josef Sipekc649bb92006-12-08 02:37:19 -0800702 struct inode *inode = file->f_path.dentry->d_inode;
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800703 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700704 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700705 }
NeilBrown32a76272005-06-21 17:17:14 -0700706}
707
708
709/*
710 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
711 * then it is no longer reliable, so we stop using it and we mark the file
712 * as failed in the superblock
713 */
714static void bitmap_file_kick(struct bitmap *bitmap)
715{
716 char *path, *ptr = NULL;
717
NeilBrown4ad13662007-07-17 04:06:13 -0700718 if (bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET) == 0) {
719 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700720
NeilBrown4ad13662007-07-17 04:06:13 -0700721 if (bitmap->file) {
722 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
723 if (path)
724 ptr = file_path(bitmap->file, path, PAGE_SIZE);
NeilBrown32a76272005-06-21 17:17:14 -0700725
NeilBrown4ad13662007-07-17 04:06:13 -0700726 printk(KERN_ALERT
727 "%s: kicking failed bitmap file %s from array!\n",
728 bmname(bitmap), ptr ? ptr : "");
NeilBrown32a76272005-06-21 17:17:14 -0700729
NeilBrown4ad13662007-07-17 04:06:13 -0700730 kfree(path);
731 } else
732 printk(KERN_ALERT
733 "%s: disabling internal bitmap due to errors\n",
734 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700735 }
NeilBrown32a76272005-06-21 17:17:14 -0700736
737 bitmap_file_put(bitmap);
738
739 return;
740}
741
742enum bitmap_page_attr {
NeilBrowne16b68b2006-06-26 00:27:45 -0700743 BITMAP_PAGE_DIRTY = 0, // there are set bits that need to be synced
744 BITMAP_PAGE_CLEAN = 1, // there are bits that might need to be cleared
745 BITMAP_PAGE_NEEDWRITE=2, // there are cleared bits that need to be synced
NeilBrown32a76272005-06-21 17:17:14 -0700746};
747
748static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
749 enum bitmap_page_attr attr)
750{
NeilBrowne16b68b2006-06-26 00:27:45 -0700751 __set_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700752}
753
754static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
755 enum bitmap_page_attr attr)
756{
NeilBrowne16b68b2006-06-26 00:27:45 -0700757 __clear_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700758}
759
NeilBrownec7a3192006-06-26 00:27:45 -0700760static inline unsigned long test_page_attr(struct bitmap *bitmap, struct page *page,
761 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700762{
NeilBrowne16b68b2006-06-26 00:27:45 -0700763 return test_bit((page->index<<2) + attr, bitmap->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700764}
765
766/*
767 * bitmap_file_set_bit -- called before performing a write to the md device
768 * to set (and eventually sync) a particular bit in the bitmap file
769 *
770 * we set the bit immediately, then we record the page number so that
771 * when an unplug occurs, we can flush the dirty pages out to disk
772 */
773static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
774{
775 unsigned long bit;
776 struct page *page;
777 void *kaddr;
778 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
779
NeilBrowna654b9d82005-06-21 17:17:27 -0700780 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700781 return;
782 }
783
784 page = filemap_get_page(bitmap, chunk);
Paul Clements9b1d1da2006-10-03 01:15:49 -0700785 if (!page) return;
NeilBrown32a76272005-06-21 17:17:14 -0700786 bit = file_page_offset(chunk);
787
NeilBrown32a76272005-06-21 17:17:14 -0700788 /* set the bit */
789 kaddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -0800790 if (bitmap->flags & BITMAP_HOSTENDIAN)
791 set_bit(bit, kaddr);
792 else
793 ext2_set_bit(bit, kaddr);
NeilBrown32a76272005-06-21 17:17:14 -0700794 kunmap_atomic(kaddr, KM_USER0);
795 PRINTK("set file bit %lu page %lu\n", bit, page->index);
796
797 /* record page number so it gets flushed to disk when unplug occurs */
798 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
799
800}
801
802/* this gets called when the md device is ready to unplug its underlying
803 * (slave) device queues -- before we let any writes go down, we need to
804 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700805void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700806{
NeilBrownec7a3192006-06-26 00:27:45 -0700807 unsigned long i, flags;
808 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700809 struct page *page;
810 int wait = 0;
811
812 if (!bitmap)
NeilBrown4ad13662007-07-17 04:06:13 -0700813 return;
NeilBrown32a76272005-06-21 17:17:14 -0700814
815 /* look at each page to see if there are any set bits that need to be
816 * flushed out to disk */
817 for (i = 0; i < bitmap->file_pages; i++) {
818 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -0700819 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700820 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700821 return;
NeilBrown32a76272005-06-21 17:17:14 -0700822 }
823 page = bitmap->filemap[i];
NeilBrownec7a3192006-06-26 00:27:45 -0700824 dirty = test_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
825 need_write = test_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -0700826 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
827 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrownec7a3192006-06-26 00:27:45 -0700828 if (dirty)
NeilBrown32a76272005-06-21 17:17:14 -0700829 wait = 1;
830 spin_unlock_irqrestore(&bitmap->lock, flags);
831
NeilBrownd785a062006-06-26 00:27:48 -0700832 if (dirty | need_write)
NeilBrown4ad13662007-07-17 04:06:13 -0700833 write_page(bitmap, page, 0);
NeilBrown32a76272005-06-21 17:17:14 -0700834 }
835 if (wait) { /* if any writes were performed, we need to wait on them */
NeilBrown0b79ccf2006-06-26 00:27:44 -0700836 if (bitmap->file)
NeilBrownd785a062006-06-26 00:27:48 -0700837 wait_event(bitmap->write_wait,
838 atomic_read(&bitmap->pending_writes)==0);
NeilBrown0b79ccf2006-06-26 00:27:44 -0700839 else
NeilBrowna9701a32005-11-08 21:39:34 -0800840 md_super_wait(bitmap->mddev);
NeilBrown32a76272005-06-21 17:17:14 -0700841 }
NeilBrownd785a062006-06-26 00:27:48 -0700842 if (bitmap->flags & BITMAP_WRITE_ERROR)
843 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700844}
845
NeilBrown6a079972005-09-09 16:23:44 -0700846static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700847/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
848 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
849 * memory mapping of the bitmap file
850 * Special cases:
851 * if there's no bitmap file, or if the bitmap file had been
852 * previously kicked from the array, we mark all the bits as
853 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700854 *
855 * We ignore all bits for sectors that end earlier than 'start'.
856 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700857 */
NeilBrown6a079972005-09-09 16:23:44 -0700858static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700859{
860 unsigned long i, chunks, index, oldindex, bit;
861 struct page *page = NULL, *oldpage = NULL;
862 unsigned long num_pages, bit_cnt = 0;
863 struct file *file;
NeilBrownd785a062006-06-26 00:27:48 -0700864 unsigned long bytes, offset;
NeilBrown32a76272005-06-21 17:17:14 -0700865 int outofdate;
866 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800867 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -0700868
869 chunks = bitmap->chunks;
870 file = bitmap->file;
871
NeilBrowna654b9d82005-06-21 17:17:27 -0700872 BUG_ON(!file && !bitmap->offset);
NeilBrown32a76272005-06-21 17:17:14 -0700873
Olaf Hering44456d32005-07-27 11:45:17 -0700874#ifdef INJECT_FAULTS_3
NeilBrown32a76272005-06-21 17:17:14 -0700875 outofdate = 1;
876#else
877 outofdate = bitmap->flags & BITMAP_STALE;
878#endif
879 if (outofdate)
880 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
881 "recovery\n", bmname(bitmap));
882
883 bytes = (chunks + 7) / 8;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700884
NeilBrowncdbb4cc2005-06-21 17:17:18 -0700885 num_pages = (bytes + sizeof(bitmap_super_t) + PAGE_SIZE - 1) / PAGE_SIZE;
NeilBrownbc7f77d2005-06-21 17:17:17 -0700886
NeilBrowna654b9d82005-06-21 17:17:27 -0700887 if (file && i_size_read(file->f_mapping->host) < bytes + sizeof(bitmap_super_t)) {
NeilBrown32a76272005-06-21 17:17:14 -0700888 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
889 bmname(bitmap),
890 (unsigned long) i_size_read(file->f_mapping->host),
891 bytes + sizeof(bitmap_super_t));
NeilBrown4ad13662007-07-17 04:06:13 -0700892 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700893 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700894
895 ret = -ENOMEM;
896
NeilBrown32a76272005-06-21 17:17:14 -0700897 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700898 if (!bitmap->filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700899 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700900
NeilBrowne16b68b2006-06-26 00:27:45 -0700901 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
902 bitmap->filemap_attr = kzalloc(
Neil Brown505fa2c2007-04-11 23:28:44 -0700903 roundup( DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
NeilBrowne16b68b2006-06-26 00:27:45 -0700904 GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700905 if (!bitmap->filemap_attr)
NeilBrown4ad13662007-07-17 04:06:13 -0700906 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700907
NeilBrown32a76272005-06-21 17:17:14 -0700908 oldindex = ~0L;
909
910 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -0800911 int b;
NeilBrown32a76272005-06-21 17:17:14 -0700912 index = file_page_index(i);
913 bit = file_page_offset(i);
914 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -0700915 int count;
NeilBrown32a76272005-06-21 17:17:14 -0700916 /* unmap the old page, we're done with it */
NeilBrownd785a062006-06-26 00:27:48 -0700917 if (index == num_pages-1)
NeilBrownf49d5e62007-01-26 00:57:03 -0800918 count = bytes + sizeof(bitmap_super_t)
919 - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -0700920 else
921 count = PAGE_SIZE;
NeilBrown32a76272005-06-21 17:17:14 -0700922 if (index == 0) {
923 /*
924 * if we're here then the superblock page
925 * contains some bits (PAGE_SIZE != sizeof sb)
926 * we've already read it in, so just use it
927 */
928 page = bitmap->sb_page;
929 offset = sizeof(bitmap_super_t);
NeilBrowna654b9d82005-06-21 17:17:27 -0700930 } else if (file) {
NeilBrownd785a062006-06-26 00:27:48 -0700931 page = read_page(file, index, bitmap, count);
NeilBrowna654b9d82005-06-21 17:17:27 -0700932 offset = 0;
933 } else {
934 page = read_sb_page(bitmap->mddev, bitmap->offset, index);
NeilBrown32a76272005-06-21 17:17:14 -0700935 offset = 0;
936 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700937 if (IS_ERR(page)) { /* read error */
938 ret = PTR_ERR(page);
NeilBrown4ad13662007-07-17 04:06:13 -0700939 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -0700940 }
941
NeilBrown32a76272005-06-21 17:17:14 -0700942 oldindex = index;
943 oldpage = page;
NeilBrown32a76272005-06-21 17:17:14 -0700944
945 if (outofdate) {
946 /*
947 * if bitmap is out of date, dirty the
948 * whole page and write it out
949 */
NeilBrownea03aff2006-01-06 00:20:34 -0800950 paddr = kmap_atomic(page, KM_USER0);
951 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -0700952 PAGE_SIZE - offset);
NeilBrownea03aff2006-01-06 00:20:34 -0800953 kunmap_atomic(paddr, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700954 write_page(bitmap, page, 1);
955
956 ret = -EIO;
957 if (bitmap->flags & BITMAP_WRITE_ERROR) {
NeilBrown32a76272005-06-21 17:17:14 -0700958 /* release, page not in filemap yet */
NeilBrown2d1f3b52006-01-06 00:20:31 -0800959 put_page(page);
NeilBrown4ad13662007-07-17 04:06:13 -0700960 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700961 }
962 }
963
964 bitmap->filemap[bitmap->file_pages++] = page;
NeilBrownab6085c2007-05-23 13:58:10 -0700965 bitmap->last_page_size = count;
NeilBrown32a76272005-06-21 17:17:14 -0700966 }
NeilBrownea03aff2006-01-06 00:20:34 -0800967 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -0800968 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -0800969 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -0800970 else
NeilBrownea03aff2006-01-06 00:20:34 -0800971 b = ext2_test_bit(bit, paddr);
972 kunmap_atomic(paddr, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -0800973 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -0700974 /* if the disk bit is set, set the memory bit */
NeilBrown6a079972005-09-09 16:23:44 -0700975 bitmap_set_memory_bits(bitmap, i << CHUNK_BLOCK_SHIFT(bitmap),
976 ((i+1) << (CHUNK_BLOCK_SHIFT(bitmap)) >= start)
977 );
NeilBrown32a76272005-06-21 17:17:14 -0700978 bit_cnt++;
NeilBrown6a079972005-09-09 16:23:44 -0700979 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -0700980 }
NeilBrown32a76272005-06-21 17:17:14 -0700981 }
982
983 /* everything went OK */
984 ret = 0;
985 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_UNSET);
986
NeilBrown32a76272005-06-21 17:17:14 -0700987 if (bit_cnt) { /* Kick recovery if any bits were set */
988 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
989 md_wakeup_thread(bitmap->mddev->thread);
990 }
991
NeilBrown32a76272005-06-21 17:17:14 -0700992 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrown4ad13662007-07-17 04:06:13 -0700993 "read %lu/%lu pages, set %lu bits\n",
994 bmname(bitmap), bitmap->file_pages, num_pages, bit_cnt);
NeilBrown32a76272005-06-21 17:17:14 -0700995
NeilBrown4ad13662007-07-17 04:06:13 -0700996 return 0;
997
998 err:
999 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1000 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001001 return ret;
1002}
1003
NeilBrowna654b9d82005-06-21 17:17:27 -07001004void bitmap_write_all(struct bitmap *bitmap)
1005{
1006 /* We don't actually write all bitmap blocks here,
1007 * just flag them as needing to be written
1008 */
NeilBrownec7a3192006-06-26 00:27:45 -07001009 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001010
NeilBrownec7a3192006-06-26 00:27:45 -07001011 for (i=0; i < bitmap->file_pages; i++)
1012 set_page_attr(bitmap, bitmap->filemap[i],
1013 BITMAP_PAGE_NEEDWRITE);
NeilBrowna654b9d82005-06-21 17:17:27 -07001014}
1015
NeilBrown32a76272005-06-21 17:17:14 -07001016
1017static void bitmap_count_page(struct bitmap *bitmap, sector_t offset, int inc)
1018{
1019 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1020 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1021 bitmap->bp[page].count += inc;
1022/*
1023 if (page == 0) printk("count page 0, offset %llu: %d gives %d\n",
1024 (unsigned long long)offset, inc, bitmap->bp[page].count);
1025*/
1026 bitmap_checkfree(bitmap, page);
1027}
1028static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1029 sector_t offset, int *blocks,
1030 int create);
1031
1032/*
1033 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1034 * out to disk
1035 */
1036
NeilBrown4ad13662007-07-17 04:06:13 -07001037void bitmap_daemon_work(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001038{
NeilBrownaa3163f2005-06-21 17:17:22 -07001039 unsigned long j;
NeilBrown32a76272005-06-21 17:17:14 -07001040 unsigned long flags;
1041 struct page *page = NULL, *lastpage = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001042 int blocks;
NeilBrownea03aff2006-01-06 00:20:34 -08001043 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -07001044
1045 if (bitmap == NULL)
NeilBrown4ad13662007-07-17 04:06:13 -07001046 return;
NeilBrown32a76272005-06-21 17:17:14 -07001047 if (time_before(jiffies, bitmap->daemon_lastrun + bitmap->daemon_sleep*HZ))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001048 goto done;
1049
NeilBrown32a76272005-06-21 17:17:14 -07001050 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001051 if (bitmap->allclean) {
1052 bitmap->mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
1053 return;
1054 }
1055 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001056
1057 for (j = 0; j < bitmap->chunks; j++) {
1058 bitmap_counter_t *bmc;
1059 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -07001060 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -07001061 /* error or shutdown */
1062 spin_unlock_irqrestore(&bitmap->lock, flags);
1063 break;
1064 }
1065
1066 page = filemap_get_page(bitmap, j);
NeilBrown32a76272005-06-21 17:17:14 -07001067
1068 if (page != lastpage) {
NeilBrownaa3163f2005-06-21 17:17:22 -07001069 /* skip this page unless it's marked as needing cleaning */
NeilBrownec7a3192006-06-26 00:27:45 -07001070 if (!test_page_attr(bitmap, page, BITMAP_PAGE_CLEAN)) {
1071 int need_write = test_page_attr(bitmap, page,
1072 BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001073 if (need_write)
NeilBrownaa3163f2005-06-21 17:17:22 -07001074 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001075
NeilBrownaa3163f2005-06-21 17:17:22 -07001076 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001077 if (need_write) {
NeilBrown4ad13662007-07-17 04:06:13 -07001078 write_page(bitmap, page, 0);
NeilBrown8311c292008-03-04 14:29:30 -08001079 bitmap->allclean = 0;
1080 }
NeilBrownaa3163f2005-06-21 17:17:22 -07001081 continue;
1082 }
1083
NeilBrown32a76272005-06-21 17:17:14 -07001084 /* grab the new page, sync and release the old */
NeilBrown32a76272005-06-21 17:17:14 -07001085 if (lastpage != NULL) {
NeilBrownec7a3192006-06-26 00:27:45 -07001086 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001087 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1088 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001089 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001090 } else {
1091 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1092 spin_unlock_irqrestore(&bitmap->lock, flags);
1093 }
NeilBrown32a76272005-06-21 17:17:14 -07001094 } else
1095 spin_unlock_irqrestore(&bitmap->lock, flags);
1096 lastpage = page;
NeilBrown32a76272005-06-21 17:17:14 -07001097/*
1098 printk("bitmap clean at page %lu\n", j);
1099*/
1100 spin_lock_irqsave(&bitmap->lock, flags);
1101 clear_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1102 }
1103 bmc = bitmap_get_counter(bitmap, j << CHUNK_BLOCK_SHIFT(bitmap),
1104 &blocks, 0);
1105 if (bmc) {
1106/*
1107 if (j < 100) printk("bitmap: j=%lu, *bmc = 0x%x\n", j, *bmc);
1108*/
NeilBrown8311c292008-03-04 14:29:30 -08001109 if (*bmc)
1110 bitmap->allclean = 0;
1111
NeilBrown32a76272005-06-21 17:17:14 -07001112 if (*bmc == 2) {
1113 *bmc=1; /* maybe clear the bit next time */
1114 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1115 } else if (*bmc == 1) {
1116 /* we can clear the bit */
1117 *bmc = 0;
1118 bitmap_count_page(bitmap, j << CHUNK_BLOCK_SHIFT(bitmap),
1119 -1);
1120
1121 /* clear the bit */
NeilBrownea03aff2006-01-06 00:20:34 -08001122 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001123 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001124 clear_bit(file_page_offset(j), paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001125 else
NeilBrownea03aff2006-01-06 00:20:34 -08001126 ext2_clear_bit(file_page_offset(j), paddr);
1127 kunmap_atomic(paddr, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -07001128 }
1129 }
1130 spin_unlock_irqrestore(&bitmap->lock, flags);
1131 }
1132
1133 /* now sync the final page */
1134 if (lastpage != NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001135 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownec7a3192006-06-26 00:27:45 -07001136 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001137 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1138 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001139 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001140 } else {
1141 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1142 spin_unlock_irqrestore(&bitmap->lock, flags);
1143 }
NeilBrown32a76272005-06-21 17:17:14 -07001144 }
1145
NeilBrown7be3dfe2008-03-10 11:43:48 -07001146 done:
NeilBrown8311c292008-03-04 14:29:30 -08001147 if (bitmap->allclean == 0)
1148 bitmap->mddev->thread->timeout = bitmap->daemon_sleep * HZ;
NeilBrown32a76272005-06-21 17:17:14 -07001149}
1150
NeilBrown32a76272005-06-21 17:17:14 -07001151static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1152 sector_t offset, int *blocks,
1153 int create)
1154{
1155 /* If 'create', we might release the lock and reclaim it.
1156 * The lock must have been taken with interrupts enabled.
1157 * If !create, we don't release the lock.
1158 */
1159 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1160 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1161 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1162 sector_t csize;
1163
1164 if (bitmap_checkpage(bitmap, page, create) < 0) {
1165 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1166 *blocks = csize - (offset & (csize- 1));
1167 return NULL;
1168 }
1169 /* now locked ... */
1170
1171 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1172 /* should we use the first or second counter field
1173 * of the hijacked pointer? */
1174 int hi = (pageoff > PAGE_COUNTER_MASK);
1175 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1176 PAGE_COUNTER_SHIFT - 1);
1177 *blocks = csize - (offset & (csize- 1));
1178 return &((bitmap_counter_t *)
1179 &bitmap->bp[page].map)[hi];
1180 } else { /* page is allocated */
1181 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1182 *blocks = csize - (offset & (csize- 1));
1183 return (bitmap_counter_t *)
1184 &(bitmap->bp[page].map[pageoff]);
1185 }
1186}
1187
NeilBrown4b6d2872005-09-09 16:23:47 -07001188int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001189{
1190 if (!bitmap) return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001191
1192 if (behind) {
1193 atomic_inc(&bitmap->behind_writes);
1194 PRINTK(KERN_DEBUG "inc write-behind count %d/%d\n",
1195 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1196 }
1197
NeilBrown32a76272005-06-21 17:17:14 -07001198 while (sectors) {
1199 int blocks;
1200 bitmap_counter_t *bmc;
1201
1202 spin_lock_irq(&bitmap->lock);
1203 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1204 if (!bmc) {
1205 spin_unlock_irq(&bitmap->lock);
1206 return 0;
1207 }
1208
Neil Brownda6e1a32007-02-08 14:20:37 -08001209 if (unlikely((*bmc & COUNTER_MAX) == COUNTER_MAX)) {
1210 DEFINE_WAIT(__wait);
1211 /* note that it is safe to do the prepare_to_wait
1212 * after the test as long as we do it before dropping
1213 * the spinlock.
1214 */
1215 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1216 TASK_UNINTERRUPTIBLE);
1217 spin_unlock_irq(&bitmap->lock);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05001218 blk_unplug(bitmap->mddev->queue);
Neil Brownda6e1a32007-02-08 14:20:37 -08001219 schedule();
1220 finish_wait(&bitmap->overflow_wait, &__wait);
1221 continue;
1222 }
1223
NeilBrown32a76272005-06-21 17:17:14 -07001224 switch(*bmc) {
1225 case 0:
1226 bitmap_file_set_bit(bitmap, offset);
1227 bitmap_count_page(bitmap,offset, 1);
1228 blk_plug_device(bitmap->mddev->queue);
1229 /* fall through */
1230 case 1:
1231 *bmc = 2;
1232 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001233
NeilBrown32a76272005-06-21 17:17:14 -07001234 (*bmc)++;
1235
1236 spin_unlock_irq(&bitmap->lock);
1237
1238 offset += blocks;
1239 if (sectors > blocks)
1240 sectors -= blocks;
1241 else sectors = 0;
1242 }
NeilBrown8311c292008-03-04 14:29:30 -08001243 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001244 return 0;
1245}
1246
1247void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001248 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001249{
1250 if (!bitmap) return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001251 if (behind) {
1252 atomic_dec(&bitmap->behind_writes);
1253 PRINTK(KERN_DEBUG "dec write-behind count %d/%d\n",
1254 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1255 }
1256
NeilBrown32a76272005-06-21 17:17:14 -07001257 while (sectors) {
1258 int blocks;
1259 unsigned long flags;
1260 bitmap_counter_t *bmc;
1261
1262 spin_lock_irqsave(&bitmap->lock, flags);
1263 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1264 if (!bmc) {
1265 spin_unlock_irqrestore(&bitmap->lock, flags);
1266 return;
1267 }
1268
1269 if (!success && ! (*bmc & NEEDED_MASK))
1270 *bmc |= NEEDED_MASK;
1271
Neil Brownda6e1a32007-02-08 14:20:37 -08001272 if ((*bmc & COUNTER_MAX) == COUNTER_MAX)
1273 wake_up(&bitmap->overflow_wait);
1274
NeilBrown32a76272005-06-21 17:17:14 -07001275 (*bmc)--;
1276 if (*bmc <= 2) {
1277 set_page_attr(bitmap,
1278 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1279 BITMAP_PAGE_CLEAN);
1280 }
1281 spin_unlock_irqrestore(&bitmap->lock, flags);
1282 offset += blocks;
1283 if (sectors > blocks)
1284 sectors -= blocks;
1285 else sectors = 0;
1286 }
1287}
1288
NeilBrown6a806c52005-07-15 03:56:35 -07001289int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1290 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001291{
1292 bitmap_counter_t *bmc;
1293 int rv;
1294 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1295 *blocks = 1024;
1296 return 1; /* always resync if no bitmap */
1297 }
1298 spin_lock_irq(&bitmap->lock);
1299 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1300 rv = 0;
1301 if (bmc) {
1302 /* locked */
1303 if (RESYNC(*bmc))
1304 rv = 1;
1305 else if (NEEDED(*bmc)) {
1306 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001307 if (!degraded) { /* don't set/clear bits if degraded */
1308 *bmc |= RESYNC_MASK;
1309 *bmc &= ~NEEDED_MASK;
1310 }
NeilBrown32a76272005-06-21 17:17:14 -07001311 }
1312 }
1313 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001314 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001315 return rv;
1316}
1317
1318void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, int *blocks, int aborted)
1319{
1320 bitmap_counter_t *bmc;
1321 unsigned long flags;
1322/*
1323 if (offset == 0) printk("bitmap_end_sync 0 (%d)\n", aborted);
1324*/ if (bitmap == NULL) {
1325 *blocks = 1024;
1326 return;
1327 }
1328 spin_lock_irqsave(&bitmap->lock, flags);
1329 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1330 if (bmc == NULL)
1331 goto unlock;
1332 /* locked */
1333/*
1334 if (offset == 0) printk("bitmap_end sync found 0x%x, blocks %d\n", *bmc, *blocks);
1335*/
1336 if (RESYNC(*bmc)) {
1337 *bmc &= ~RESYNC_MASK;
1338
1339 if (!NEEDED(*bmc) && aborted)
1340 *bmc |= NEEDED_MASK;
1341 else {
1342 if (*bmc <= 2) {
1343 set_page_attr(bitmap,
1344 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1345 BITMAP_PAGE_CLEAN);
1346 }
1347 }
1348 }
1349 unlock:
1350 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001351 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001352}
1353
1354void bitmap_close_sync(struct bitmap *bitmap)
1355{
1356 /* Sync has finished, and any bitmap chunks that weren't synced
1357 * properly have been aborted. It remains to us to clear the
1358 * RESYNC bit wherever it is still on
1359 */
1360 sector_t sector = 0;
1361 int blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001362 if (!bitmap)
1363 return;
NeilBrown32a76272005-06-21 17:17:14 -07001364 while (sector < bitmap->mddev->resync_max_sectors) {
1365 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001366 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001367 }
1368}
1369
NeilBrownb47490c2008-02-06 01:39:50 -08001370void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1371{
1372 sector_t s = 0;
1373 int blocks;
1374
1375 if (!bitmap)
1376 return;
1377 if (sector == 0) {
1378 bitmap->last_end_sync = jiffies;
1379 return;
1380 }
1381 if (time_before(jiffies, (bitmap->last_end_sync
1382 + bitmap->daemon_sleep * HZ)))
1383 return;
1384 wait_event(bitmap->mddev->recovery_wait,
1385 atomic_read(&bitmap->mddev->recovery_active) == 0);
1386
1387 sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
1388 s = 0;
1389 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1390 bitmap_end_sync(bitmap, s, &blocks, 0);
1391 s += blocks;
1392 }
1393 bitmap->last_end_sync = jiffies;
1394}
1395
NeilBrown6a079972005-09-09 16:23:44 -07001396static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001397{
1398 /* For each chunk covered by any of these sectors, set the
NeilBrown193f1c92005-08-04 12:53:33 -07001399 * counter to 1 and set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001400 * be 0 at this point
1401 */
NeilBrown193f1c92005-08-04 12:53:33 -07001402
1403 int secs;
1404 bitmap_counter_t *bmc;
1405 spin_lock_irq(&bitmap->lock);
1406 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1407 if (!bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001408 spin_unlock_irq(&bitmap->lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001409 return;
NeilBrown32a76272005-06-21 17:17:14 -07001410 }
NeilBrown193f1c92005-08-04 12:53:33 -07001411 if (! *bmc) {
1412 struct page *page;
NeilBrown6a079972005-09-09 16:23:44 -07001413 *bmc = 1 | (needed?NEEDED_MASK:0);
NeilBrown193f1c92005-08-04 12:53:33 -07001414 bitmap_count_page(bitmap, offset, 1);
1415 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
1416 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1417 }
1418 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001419 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001420}
1421
Paul Clements9b1d1da2006-10-03 01:15:49 -07001422/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1423void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1424{
1425 unsigned long chunk;
1426
1427 for (chunk = s; chunk <= e; chunk++) {
1428 sector_t sec = chunk << CHUNK_BLOCK_SHIFT(bitmap);
1429 bitmap_set_memory_bits(bitmap, sec, 1);
1430 bitmap_file_set_bit(bitmap, sec);
1431 }
1432}
1433
NeilBrown32a76272005-06-21 17:17:14 -07001434/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001435 * flush out any pending updates
1436 */
1437void bitmap_flush(mddev_t *mddev)
1438{
1439 struct bitmap *bitmap = mddev->bitmap;
1440 int sleep;
1441
1442 if (!bitmap) /* there was no bitmap */
1443 return;
1444
1445 /* run the daemon_work three time to ensure everything is flushed
1446 * that can be
1447 */
1448 sleep = bitmap->daemon_sleep;
1449 bitmap->daemon_sleep = 0;
1450 bitmap_daemon_work(bitmap);
1451 bitmap_daemon_work(bitmap);
1452 bitmap_daemon_work(bitmap);
1453 bitmap->daemon_sleep = sleep;
1454 bitmap_update_sb(bitmap);
1455}
1456
1457/*
NeilBrown32a76272005-06-21 17:17:14 -07001458 * free memory that was allocated
1459 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001460static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001461{
1462 unsigned long k, pages;
1463 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001464
1465 if (!bitmap) /* there was no bitmap */
1466 return;
1467
NeilBrown32a76272005-06-21 17:17:14 -07001468 /* release the bitmap file and kill the daemon */
1469 bitmap_file_put(bitmap);
1470
1471 bp = bitmap->bp;
1472 pages = bitmap->pages;
1473
1474 /* free all allocated memory */
1475
NeilBrown32a76272005-06-21 17:17:14 -07001476 if (bp) /* deallocate the page memory */
1477 for (k = 0; k < pages; k++)
1478 if (bp[k].map && !bp[k].hijacked)
1479 kfree(bp[k].map);
1480 kfree(bp);
1481 kfree(bitmap);
1482}
NeilBrown3178b0d2005-09-09 16:23:50 -07001483void bitmap_destroy(mddev_t *mddev)
1484{
1485 struct bitmap *bitmap = mddev->bitmap;
1486
1487 if (!bitmap) /* there was no bitmap */
1488 return;
1489
1490 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrownb15c2e52006-01-06 00:20:16 -08001491 if (mddev->thread)
1492 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001493
1494 bitmap_free(bitmap);
1495}
NeilBrown32a76272005-06-21 17:17:14 -07001496
1497/*
1498 * initialize the bitmap structure
1499 * if this returns an error, bitmap_destroy must be called to do clean up
1500 */
1501int bitmap_create(mddev_t *mddev)
1502{
1503 struct bitmap *bitmap;
1504 unsigned long blocks = mddev->resync_max_sectors;
1505 unsigned long chunks;
1506 unsigned long pages;
1507 struct file *file = mddev->bitmap_file;
1508 int err;
NeilBrown6a079972005-09-09 16:23:44 -07001509 sector_t start;
NeilBrown32a76272005-06-21 17:17:14 -07001510
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001511 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001512
NeilBrowna654b9d82005-06-21 17:17:27 -07001513 if (!file && !mddev->bitmap_offset) /* bitmap disabled, nothing to do */
NeilBrown32a76272005-06-21 17:17:14 -07001514 return 0;
1515
NeilBrowna654b9d82005-06-21 17:17:27 -07001516 BUG_ON(file && mddev->bitmap_offset);
1517
NeilBrown9ffae0c2006-01-06 00:20:32 -08001518 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001519 if (!bitmap)
1520 return -ENOMEM;
1521
NeilBrown32a76272005-06-21 17:17:14 -07001522 spin_lock_init(&bitmap->lock);
NeilBrownce25c312006-06-26 00:27:49 -07001523 atomic_set(&bitmap->pending_writes, 0);
1524 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001525 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001526
NeilBrown32a76272005-06-21 17:17:14 -07001527 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001528
NeilBrown32a76272005-06-21 17:17:14 -07001529 bitmap->file = file;
NeilBrowna654b9d82005-06-21 17:17:27 -07001530 bitmap->offset = mddev->bitmap_offset;
NeilBrownce25c312006-06-26 00:27:49 -07001531 if (file) {
1532 get_file(file);
Mark Fashehef51c972007-05-08 00:27:10 -07001533 do_sync_mapping_range(file->f_mapping, 0, LLONG_MAX,
1534 SYNC_FILE_RANGE_WAIT_BEFORE |
1535 SYNC_FILE_RANGE_WRITE |
1536 SYNC_FILE_RANGE_WAIT_AFTER);
NeilBrownce25c312006-06-26 00:27:49 -07001537 }
NeilBrown32a76272005-06-21 17:17:14 -07001538 /* read superblock from bitmap file (this sets bitmap->chunksize) */
1539 err = bitmap_read_sb(bitmap);
1540 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001541 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001542
Paul Clementsa638b2d2006-10-03 01:16:01 -07001543 bitmap->chunkshift = ffz(~bitmap->chunksize);
NeilBrown32a76272005-06-21 17:17:14 -07001544
1545 /* now that chunksize and chunkshift are set, we can use these macros */
1546 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) /
1547 CHUNK_BLOCK_RATIO(bitmap);
1548 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
1549
1550 BUG_ON(!pages);
1551
1552 bitmap->chunks = chunks;
1553 bitmap->pages = pages;
1554 bitmap->missing_pages = pages;
1555 bitmap->counter_bits = COUNTER_BITS;
1556
1557 bitmap->syncchunk = ~0UL;
1558
Olaf Hering44456d32005-07-27 11:45:17 -07001559#ifdef INJECT_FATAL_FAULT_1
NeilBrown32a76272005-06-21 17:17:14 -07001560 bitmap->bp = NULL;
1561#else
NeilBrown9ffae0c2006-01-06 00:20:32 -08001562 bitmap->bp = kzalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001563#endif
NeilBrown3178b0d2005-09-09 16:23:50 -07001564 err = -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -07001565 if (!bitmap->bp)
NeilBrown3178b0d2005-09-09 16:23:50 -07001566 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001567
NeilBrown32a76272005-06-21 17:17:14 -07001568 /* now that we have some pages available, initialize the in-memory
1569 * bitmap from the on-disk bitmap */
NeilBrown6a079972005-09-09 16:23:44 -07001570 start = 0;
1571 if (mddev->degraded == 0
1572 || bitmap->events_cleared == mddev->events)
1573 /* no need to keep dirty bits to optimise a re-add of a missing device */
1574 start = mddev->recovery_cp;
1575 err = bitmap_init_from_disk(bitmap, start);
NeilBrown193f1c92005-08-04 12:53:33 -07001576
NeilBrown32a76272005-06-21 17:17:14 -07001577 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001578 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001579
1580 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1581 pages, bmname(bitmap));
1582
NeilBrown3178b0d2005-09-09 16:23:50 -07001583 mddev->bitmap = bitmap;
1584
NeilBrownb15c2e52006-01-06 00:20:16 -08001585 mddev->thread->timeout = bitmap->daemon_sleep * HZ;
1586
NeilBrown4ad13662007-07-17 04:06:13 -07001587 bitmap_update_sb(bitmap);
1588
1589 return (bitmap->flags & BITMAP_WRITE_ERROR) ? -EIO : 0;
NeilBrown3178b0d2005-09-09 16:23:50 -07001590
1591 error:
1592 bitmap_free(bitmap);
1593 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001594}
1595
1596/* the bitmap API -- for raid personalities */
1597EXPORT_SYMBOL(bitmap_startwrite);
1598EXPORT_SYMBOL(bitmap_endwrite);
1599EXPORT_SYMBOL(bitmap_start_sync);
1600EXPORT_SYMBOL(bitmap_end_sync);
1601EXPORT_SYMBOL(bitmap_unplug);
1602EXPORT_SYMBOL(bitmap_close_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001603EXPORT_SYMBOL(bitmap_cond_end_sync);