blob: 1ba1e122e948931bf16a504ebe662e16e1404a8f [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).
NeilBrown32a76272005-06-21 17:17:14 -070016 */
17
NeilBrownbff61972009-03-31 14:33:13 +110018#include <linux/blkdev.h>
NeilBrown32a76272005-06-21 17:17:14 -070019#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>
NeilBrown43b2e5d2009-03-31 14:33:13 +110029#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110030#include "bitmap.h"
NeilBrown32a76272005-06-21 17:17:14 -070031
NeilBrowne384e582010-06-01 19:37:34 +100032#include <linux/dm-dirty-log.h>
NeilBrown32a76272005-06-21 17:17:14 -070033/* debug macros */
34
35#define DEBUG 0
36
37#if DEBUG
38/* these are for debugging purposes only! */
39
40/* define one and only one of these */
41#define INJECT_FAULTS_1 0 /* cause bitmap_alloc_page to fail always */
42#define INJECT_FAULTS_2 0 /* cause bitmap file to be kicked when first bit set*/
43#define INJECT_FAULTS_3 0 /* treat bitmap file as kicked at init time */
44#define INJECT_FAULTS_4 0 /* undef */
45#define INJECT_FAULTS_5 0 /* undef */
46#define INJECT_FAULTS_6 0
47
48/* if these are defined, the driver will fail! debug only */
49#define INJECT_FATAL_FAULT_1 0 /* fail kmalloc, causing bitmap_create to fail */
50#define INJECT_FATAL_FAULT_2 0 /* undef */
51#define INJECT_FATAL_FAULT_3 0 /* undef */
52#endif
53
NeilBrown32a76272005-06-21 17:17:14 -070054#ifndef PRINTK
55# if DEBUG > 0
56# define PRINTK(x...) printk(KERN_DEBUG x)
57# else
58# define PRINTK(x...)
59# endif
60#endif
61
NeilBrownac2f40b2010-06-01 19:37:31 +100062static inline char *bmname(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -070063{
64 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
65}
66
NeilBrown32a76272005-06-21 17:17:14 -070067/*
68 * just a placeholder - calls kmalloc for bitmap pages
69 */
70static unsigned char *bitmap_alloc_page(struct bitmap *bitmap)
71{
72 unsigned char *page;
73
Olaf Hering44456d32005-07-27 11:45:17 -070074#ifdef INJECT_FAULTS_1
NeilBrown32a76272005-06-21 17:17:14 -070075 page = NULL;
76#else
NeilBrownac2f40b2010-06-01 19:37:31 +100077 page = kzalloc(PAGE_SIZE, GFP_NOIO);
NeilBrown32a76272005-06-21 17:17:14 -070078#endif
79 if (!page)
80 printk("%s: bitmap_alloc_page FAILED\n", bmname(bitmap));
81 else
NeilBrowna654b9d82005-06-21 17:17:27 -070082 PRINTK("%s: bitmap_alloc_page: allocated page at %p\n",
NeilBrown32a76272005-06-21 17:17:14 -070083 bmname(bitmap), page);
84 return page;
85}
86
87/*
88 * for now just a placeholder -- just calls kfree for bitmap pages
89 */
90static void bitmap_free_page(struct bitmap *bitmap, unsigned char *page)
91{
92 PRINTK("%s: bitmap_free_page: free page %p\n", bmname(bitmap), page);
93 kfree(page);
94}
95
96/*
97 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
98 *
99 * 1) check to see if this page is allocated, if it's not then try to alloc
100 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
101 * page pointer directly as a counter
102 *
103 * if we find our page, we increment the page's refcount so that it stays
104 * allocated while we're using it
105 */
NeilBrownac2f40b2010-06-01 19:37:31 +1000106static int bitmap_checkpage(struct bitmap *bitmap,
107 unsigned long page, int create)
NeilBrownee305ac2009-09-23 18:06:44 +1000108__releases(bitmap->lock)
109__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -0700110{
111 unsigned char *mappage;
112
113 if (page >= bitmap->pages) {
NeilBrown1187cf02009-03-31 14:27:02 +1100114 /* This can happen if bitmap_start_sync goes beyond
115 * End-of-device while looking for a whole page.
116 * It is harmless.
117 */
NeilBrown32a76272005-06-21 17:17:14 -0700118 return -EINVAL;
119 }
120
NeilBrown32a76272005-06-21 17:17:14 -0700121 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
NeilBrown32a76272005-06-21 17:17:14 -0700130 /* this page has not been allocated yet */
131
NeilBrownac2f40b2010-06-01 19:37:31 +1000132 spin_unlock_irq(&bitmap->lock);
133 mappage = bitmap_alloc_page(bitmap);
134 spin_lock_irq(&bitmap->lock);
135
136 if (mappage == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -0700137 PRINTK("%s: bitmap map page allocation failed, hijacking\n",
138 bmname(bitmap));
139 /* failed - set the hijacked flag so that we can use the
140 * pointer as a counter */
NeilBrown32a76272005-06-21 17:17:14 -0700141 if (!bitmap->bp[page].map)
142 bitmap->bp[page].hijacked = 1;
NeilBrownac2f40b2010-06-01 19:37:31 +1000143 } else if (bitmap->bp[page].map ||
144 bitmap->bp[page].hijacked) {
NeilBrown32a76272005-06-21 17:17:14 -0700145 /* somebody beat us to getting the page */
146 bitmap_free_page(bitmap, mappage);
147 return 0;
NeilBrownac2f40b2010-06-01 19:37:31 +1000148 } else {
149
150 /* no page was in place and we have one, so install it */
151
152 bitmap->bp[page].map = mappage;
153 bitmap->missing_pages--;
NeilBrown32a76272005-06-21 17:17:14 -0700154 }
NeilBrown32a76272005-06-21 17:17:14 -0700155 return 0;
156}
157
NeilBrown32a76272005-06-21 17:17:14 -0700158/* if page is completely empty, put it back on the free list, or dealloc it */
159/* if page was hijacked, unmark the flag so it might get alloced next time */
160/* Note: lock should be held when calling this */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800161static void bitmap_checkfree(struct bitmap *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700162{
163 char *ptr;
164
165 if (bitmap->bp[page].count) /* page is still busy */
166 return;
167
168 /* page is no longer in use, it can be released */
169
170 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
171 bitmap->bp[page].hijacked = 0;
172 bitmap->bp[page].map = NULL;
NeilBrownac2f40b2010-06-01 19:37:31 +1000173 } else {
174 /* normal case, free the page */
175 ptr = bitmap->bp[page].map;
176 bitmap->bp[page].map = NULL;
177 bitmap->missing_pages++;
178 bitmap_free_page(bitmap, ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700179 }
NeilBrown32a76272005-06-21 17:17:14 -0700180}
181
NeilBrown32a76272005-06-21 17:17:14 -0700182/*
183 * bitmap file handling - read and write the bitmap file and its superblock
184 */
185
NeilBrown32a76272005-06-21 17:17:14 -0700186/*
187 * basic page I/O operations
188 */
189
NeilBrowna654b9d82005-06-21 17:17:27 -0700190/* IO operations when bitmap is stored near all superblocks */
NeilBrownf6af9492009-12-14 12:49:54 +1100191static struct page *read_sb_page(mddev_t *mddev, loff_t offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100192 struct page *page,
193 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700194{
195 /* choose a good rdev and read the page from there */
196
197 mdk_rdev_t *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700198 sector_t target;
NeilBrownac2f40b2010-06-01 19:37:31 +1000199 int did_alloc = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -0700200
NeilBrownac2f40b2010-06-01 19:37:31 +1000201 if (!page) {
NeilBrowna2ed9612008-12-19 16:25:01 +1100202 page = alloc_page(GFP_KERNEL);
NeilBrownac2f40b2010-06-01 19:37:31 +1000203 if (!page)
204 return ERR_PTR(-ENOMEM);
205 did_alloc = 1;
206 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700207
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100208 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800209 if (! test_bit(In_sync, &rdev->flags)
210 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700211 continue;
212
Andre Noll0f420352008-07-11 22:02:23 +1000213 target = rdev->sb_start + offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700214
NeilBrowna2ed9612008-12-19 16:25:01 +1100215 if (sync_page_io(rdev->bdev, target,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400216 roundup(size, bdev_logical_block_size(rdev->bdev)),
NeilBrowna2ed9612008-12-19 16:25:01 +1100217 page, READ)) {
NeilBrownab904d62005-09-09 16:23:52 -0700218 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700219 attach_page_buffers(page, NULL); /* so that free_buffer will
220 * quietly no-op */
NeilBrownab904d62005-09-09 16:23:52 -0700221 return page;
222 }
223 }
NeilBrownac2f40b2010-06-01 19:37:31 +1000224 if (did_alloc)
225 put_page(page);
NeilBrownab904d62005-09-09 16:23:52 -0700226 return ERR_PTR(-EIO);
NeilBrowna654b9d82005-06-21 17:17:27 -0700227
NeilBrowna654b9d82005-06-21 17:17:27 -0700228}
229
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000230static mdk_rdev_t *next_active_rdev(mdk_rdev_t *rdev, mddev_t *mddev)
231{
232 /* Iterate the disks of an mddev, using rcu to protect access to the
233 * linked list, and raising the refcount of devices we return to ensure
234 * they don't disappear while in use.
235 * As devices are only added or removed when raid_disk is < 0 and
236 * nr_pending is 0 and In_sync is clear, the entries we return will
237 * still be in the same position on the list when we re-enter
238 * list_for_each_continue_rcu.
239 */
240 struct list_head *pos;
241 rcu_read_lock();
242 if (rdev == NULL)
243 /* start at the beginning */
244 pos = &mddev->disks;
245 else {
246 /* release the previous rdev and start from there. */
247 rdev_dec_pending(rdev, mddev);
248 pos = &rdev->same_set;
249 }
250 list_for_each_continue_rcu(pos, &mddev->disks) {
251 rdev = list_entry(pos, mdk_rdev_t, same_set);
252 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000253 !test_bit(Faulty, &rdev->flags)) {
254 /* this is a usable devices */
255 atomic_inc(&rdev->nr_pending);
256 rcu_read_unlock();
257 return rdev;
258 }
259 }
260 rcu_read_unlock();
261 return NULL;
262}
263
NeilBrownab6085c2007-05-23 13:58:10 -0700264static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700265{
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000266 mdk_rdev_t *rdev = NULL;
NeilBrownab6085c2007-05-23 13:58:10 -0700267 mddev_t *mddev = bitmap->mddev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700268
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000269 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000270 int size = PAGE_SIZE;
271 loff_t offset = mddev->bitmap_info.offset;
272 if (page->index == bitmap->file_pages-1)
273 size = roundup(bitmap->last_page_size,
274 bdev_logical_block_size(rdev->bdev));
275 /* Just make sure we aren't corrupting data or
276 * metadata
277 */
278 if (mddev->external) {
279 /* Bitmap could be anywhere. */
280 if (rdev->sb_start + offset + (page->index
281 * (PAGE_SIZE/512))
282 > rdev->data_offset
283 &&
284 rdev->sb_start + offset
285 < (rdev->data_offset + mddev->dev_sectors
286 + (PAGE_SIZE/512)))
287 goto bad_alignment;
288 } else if (offset < 0) {
289 /* DATA BITMAP METADATA */
290 if (offset
291 + (long)(page->index * (PAGE_SIZE/512))
292 + size/512 > 0)
293 /* bitmap runs in to metadata */
294 goto bad_alignment;
295 if (rdev->data_offset + mddev->dev_sectors
296 > rdev->sb_start + offset)
297 /* data runs in to bitmap */
298 goto bad_alignment;
299 } else if (rdev->sb_start < rdev->data_offset) {
300 /* METADATA BITMAP DATA */
301 if (rdev->sb_start
302 + offset
303 + page->index*(PAGE_SIZE/512) + size/512
304 > rdev->data_offset)
305 /* bitmap runs in to data */
306 goto bad_alignment;
307 } else {
308 /* DATA METADATA BITMAP - no problems */
309 }
310 md_super_write(mddev, rdev,
311 rdev->sb_start + offset
312 + page->index * (PAGE_SIZE/512),
313 size,
314 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000315 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700316
317 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800318 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700319 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000320
321 bad_alignment:
NeilBrown4b809912008-07-21 17:05:25 +1000322 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700323}
324
NeilBrown4ad13662007-07-17 04:06:13 -0700325static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700326/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700327 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700328 */
NeilBrown4ad13662007-07-17 04:06:13 -0700329static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700330{
NeilBrownd785a062006-06-26 00:27:48 -0700331 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700332
NeilBrownf0d76d72007-07-17 04:06:12 -0700333 if (bitmap->file == NULL) {
334 switch (write_sb_page(bitmap, page, wait)) {
335 case -EINVAL:
336 bitmap->flags |= BITMAP_WRITE_ERROR;
NeilBrownf0d76d72007-07-17 04:06:12 -0700337 }
NeilBrown4ad13662007-07-17 04:06:13 -0700338 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700339
NeilBrown4ad13662007-07-17 04:06:13 -0700340 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800341
NeilBrown4ad13662007-07-17 04:06:13 -0700342 while (bh && bh->b_blocknr) {
343 atomic_inc(&bitmap->pending_writes);
344 set_buffer_locked(bh);
345 set_buffer_mapped(bh);
346 submit_bh(WRITE, bh);
347 bh = bh->b_this_page;
348 }
NeilBrown32a76272005-06-21 17:17:14 -0700349
NeilBrownac2f40b2010-06-01 19:37:31 +1000350 if (wait)
NeilBrown4ad13662007-07-17 04:06:13 -0700351 wait_event(bitmap->write_wait,
352 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700353 }
NeilBrown4ad13662007-07-17 04:06:13 -0700354 if (bitmap->flags & BITMAP_WRITE_ERROR)
355 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700356}
357
NeilBrownd785a062006-06-26 00:27:48 -0700358static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700359{
NeilBrownd785a062006-06-26 00:27:48 -0700360 struct bitmap *bitmap = bh->b_private;
361 unsigned long flags;
362
363 if (!uptodate) {
364 spin_lock_irqsave(&bitmap->lock, flags);
365 bitmap->flags |= BITMAP_WRITE_ERROR;
366 spin_unlock_irqrestore(&bitmap->lock, flags);
367 }
368 if (atomic_dec_and_test(&bitmap->pending_writes))
369 wake_up(&bitmap->write_wait);
370}
371
372/* copied from buffer.c */
373static void
374__clear_page_buffers(struct page *page)
375{
376 ClearPagePrivate(page);
377 set_page_private(page, 0);
378 page_cache_release(page);
379}
380static void free_buffers(struct page *page)
381{
382 struct buffer_head *bh = page_buffers(page);
383
384 while (bh) {
385 struct buffer_head *next = bh->b_this_page;
386 free_buffer_head(bh);
387 bh = next;
388 }
389 __clear_page_buffers(page);
390 put_page(page);
391}
392
393/* read a page from a file.
394 * We both read the page, and attach buffers to the page to record the
395 * address of each block (using bmap). These addresses will be used
396 * to write the block later, completely bypassing the filesystem.
397 * This usage is similar to how swap files are handled, and allows us
398 * to write to a file with no concerns of memory allocation failing.
399 */
400static struct page *read_page(struct file *file, unsigned long index,
401 struct bitmap *bitmap,
402 unsigned long count)
403{
NeilBrown32a76272005-06-21 17:17:14 -0700404 struct page *page = NULL;
Josef Sipekc649bb92006-12-08 02:37:19 -0800405 struct inode *inode = file->f_path.dentry->d_inode;
NeilBrownd785a062006-06-26 00:27:48 -0700406 struct buffer_head *bh;
407 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700408
NeilBrownac2f40b2010-06-01 19:37:31 +1000409 PRINTK("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE,
NeilBrown2d1f3b52006-01-06 00:20:31 -0800410 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700411
NeilBrownd785a062006-06-26 00:27:48 -0700412 page = alloc_page(GFP_KERNEL);
413 if (!page)
414 page = ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -0700415 if (IS_ERR(page))
416 goto out;
NeilBrownd785a062006-06-26 00:27:48 -0700417
NeilBrownd785a062006-06-26 00:27:48 -0700418 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
419 if (!bh) {
420 put_page(page);
421 page = ERR_PTR(-ENOMEM);
422 goto out;
423 }
424 attach_page_buffers(page, bh);
425 block = index << (PAGE_SHIFT - inode->i_blkbits);
426 while (bh) {
427 if (count == 0)
428 bh->b_blocknr = 0;
429 else {
430 bh->b_blocknr = bmap(inode, block);
431 if (bh->b_blocknr == 0) {
432 /* Cannot use this file! */
433 free_buffers(page);
434 page = ERR_PTR(-EINVAL);
435 goto out;
436 }
437 bh->b_bdev = inode->i_sb->s_bdev;
438 if (count < (1<<inode->i_blkbits))
439 count = 0;
440 else
441 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700442
NeilBrownd785a062006-06-26 00:27:48 -0700443 bh->b_end_io = end_bitmap_write;
444 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700445 atomic_inc(&bitmap->pending_writes);
446 set_buffer_locked(bh);
447 set_buffer_mapped(bh);
448 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700449 }
450 block++;
451 bh = bh->b_this_page;
452 }
NeilBrownd785a062006-06-26 00:27:48 -0700453 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700454
455 wait_event(bitmap->write_wait,
456 atomic_read(&bitmap->pending_writes)==0);
457 if (bitmap->flags & BITMAP_WRITE_ERROR) {
458 free_buffers(page);
459 page = ERR_PTR(-EIO);
460 }
NeilBrown32a76272005-06-21 17:17:14 -0700461out:
462 if (IS_ERR(page))
NeilBrownac2f40b2010-06-01 19:37:31 +1000463 printk(KERN_ALERT "md: bitmap read error: (%dB @ %llu): %ld\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800464 (int)PAGE_SIZE,
465 (unsigned long long)index << PAGE_SHIFT,
NeilBrown32a76272005-06-21 17:17:14 -0700466 PTR_ERR(page));
467 return page;
468}
469
470/*
471 * bitmap file superblock operations
472 */
473
474/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700475void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700476{
477 bitmap_super_t *sb;
478 unsigned long flags;
479
480 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700481 return;
NeilBrownece5cff2009-12-14 12:49:56 +1100482 if (bitmap->mddev->bitmap_info.external)
483 return;
NeilBrown32a76272005-06-21 17:17:14 -0700484 spin_lock_irqsave(&bitmap->lock, flags);
485 if (!bitmap->sb_page) { /* no superblock */
486 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700487 return;
NeilBrown32a76272005-06-21 17:17:14 -0700488 }
NeilBrown32a76272005-06-21 17:17:14 -0700489 spin_unlock_irqrestore(&bitmap->lock, flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100490 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700491 sb->events = cpu_to_le64(bitmap->mddev->events);
Neil Browna0da84f2008-06-28 08:31:22 +1000492 if (bitmap->mddev->events < bitmap->events_cleared) {
493 /* rocking back to read-only */
494 bitmap->events_cleared = bitmap->mddev->events;
495 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
496 }
NeilBrown43a70502009-12-14 12:49:55 +1100497 /* Just in case these have been changed via sysfs: */
498 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
499 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownea03aff2006-01-06 00:20:34 -0800500 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700501 write_page(bitmap, bitmap->sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700502}
503
504/* print out the bitmap file superblock */
505void bitmap_print_sb(struct bitmap *bitmap)
506{
507 bitmap_super_t *sb;
508
509 if (!bitmap || !bitmap->sb_page)
510 return;
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100511 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700512 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700513 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
514 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
515 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700516 *(__u32 *)(sb->uuid+0),
517 *(__u32 *)(sb->uuid+4),
518 *(__u32 *)(sb->uuid+8),
519 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700520 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700521 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700522 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700523 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700524 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
525 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
526 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
527 printk(KERN_DEBUG " sync size: %llu KB\n",
528 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700529 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
NeilBrownea03aff2006-01-06 00:20:34 -0800530 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700531}
532
533/* read the superblock from the bitmap file and initialize some bitmap fields */
534static int bitmap_read_sb(struct bitmap *bitmap)
535{
536 char *reason = NULL;
537 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700538 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700539 unsigned long long events;
540 int err = -EINVAL;
541
542 /* page 0 is the superblock, read it... */
NeilBrownf49d5e62007-01-26 00:57:03 -0800543 if (bitmap->file) {
544 loff_t isize = i_size_read(bitmap->file->f_mapping->host);
545 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
546
547 bitmap->sb_page = read_page(bitmap->file, 0, bitmap, bytes);
548 } else {
NeilBrown42a04b52009-12-14 12:49:53 +1100549 bitmap->sb_page = read_sb_page(bitmap->mddev,
550 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +1100551 NULL,
552 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700553 }
NeilBrown32a76272005-06-21 17:17:14 -0700554 if (IS_ERR(bitmap->sb_page)) {
555 err = PTR_ERR(bitmap->sb_page);
556 bitmap->sb_page = NULL;
557 return err;
558 }
559
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100560 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700561
NeilBrown32a76272005-06-21 17:17:14 -0700562 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100563 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700564 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown32a76272005-06-21 17:17:14 -0700565
566 /* verify that the bitmap-specific fields are valid */
567 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
568 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800569 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
570 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700571 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100572 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800573 reason = "bitmap chunksize too small";
NeilBrown32a76272005-06-21 17:17:14 -0700574 else if ((1 << ffz(~chunksize)) != chunksize)
575 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100576 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800577 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700578 else if (write_behind > COUNTER_MAX)
579 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700580 if (reason) {
581 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
582 bmname(bitmap), reason);
583 goto out;
584 }
585
586 /* keep the array size field of the bitmap superblock up to date */
587 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
588
589 if (!bitmap->mddev->persistent)
590 goto success;
591
592 /*
593 * if we have a persistent array superblock, compare the
594 * bitmap's UUID and event counter to the mddev's
595 */
596 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
597 printk(KERN_INFO "%s: bitmap superblock UUID mismatch\n",
598 bmname(bitmap));
599 goto out;
600 }
601 events = le64_to_cpu(sb->events);
602 if (events < bitmap->mddev->events) {
603 printk(KERN_INFO "%s: bitmap file is out of date (%llu < %llu) "
604 "-- forcing full recovery\n", bmname(bitmap), events,
605 (unsigned long long) bitmap->mddev->events);
NeilBrown4f2e6392006-10-21 10:24:09 -0700606 sb->state |= cpu_to_le32(BITMAP_STALE);
NeilBrown32a76272005-06-21 17:17:14 -0700607 }
608success:
609 /* assign fields using values from superblock */
NeilBrown42a04b52009-12-14 12:49:53 +1100610 bitmap->mddev->bitmap_info.chunksize = chunksize;
611 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
NeilBrown42a04b52009-12-14 12:49:53 +1100612 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
NeilBrown4f2e6392006-10-21 10:24:09 -0700613 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800614 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
615 bitmap->flags |= BITMAP_HOSTENDIAN;
NeilBrown32a76272005-06-21 17:17:14 -0700616 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
NeilBrown4f2e6392006-10-21 10:24:09 -0700617 if (sb->state & cpu_to_le32(BITMAP_STALE))
NeilBrown6a079972005-09-09 16:23:44 -0700618 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown32a76272005-06-21 17:17:14 -0700619 err = 0;
620out:
NeilBrownea03aff2006-01-06 00:20:34 -0800621 kunmap_atomic(sb, KM_USER0);
NeilBrown32a76272005-06-21 17:17:14 -0700622 if (err)
623 bitmap_print_sb(bitmap);
624 return err;
625}
626
627enum bitmap_mask_op {
628 MASK_SET,
629 MASK_UNSET
630};
631
NeilBrown4ad13662007-07-17 04:06:13 -0700632/* record the state of the bitmap in the superblock. Return the old value */
633static int bitmap_mask_state(struct bitmap *bitmap, enum bitmap_state bits,
634 enum bitmap_mask_op op)
NeilBrown32a76272005-06-21 17:17:14 -0700635{
636 bitmap_super_t *sb;
637 unsigned long flags;
NeilBrown4ad13662007-07-17 04:06:13 -0700638 int old;
NeilBrown32a76272005-06-21 17:17:14 -0700639
640 spin_lock_irqsave(&bitmap->lock, flags);
Adrian Bunk7e317652006-03-25 03:07:51 -0800641 if (!bitmap->sb_page) { /* can't set the state */
NeilBrown32a76272005-06-21 17:17:14 -0700642 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700643 return 0;
NeilBrown32a76272005-06-21 17:17:14 -0700644 }
NeilBrown32a76272005-06-21 17:17:14 -0700645 spin_unlock_irqrestore(&bitmap->lock, flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100646 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700647 old = le32_to_cpu(sb->state) & bits;
NeilBrown32a76272005-06-21 17:17:14 -0700648 switch (op) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000649 case MASK_SET:
650 sb->state |= cpu_to_le32(bits);
651 break;
652 case MASK_UNSET:
653 sb->state &= cpu_to_le32(~bits);
654 break;
655 default:
656 BUG();
NeilBrown32a76272005-06-21 17:17:14 -0700657 }
NeilBrownea03aff2006-01-06 00:20:34 -0800658 kunmap_atomic(sb, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -0700659 return old;
NeilBrown32a76272005-06-21 17:17:14 -0700660}
661
662/*
663 * general bitmap file operations
664 */
665
NeilBrownece5cff2009-12-14 12:49:56 +1100666/*
667 * on-disk bitmap:
668 *
669 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
670 * file a page at a time. There's a superblock at the start of the file.
671 */
NeilBrown32a76272005-06-21 17:17:14 -0700672/* calculate the index of the page that contains this bit */
NeilBrownece5cff2009-12-14 12:49:56 +1100673static inline unsigned long file_page_index(struct bitmap *bitmap, unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700674{
NeilBrownece5cff2009-12-14 12:49:56 +1100675 if (!bitmap->mddev->bitmap_info.external)
676 chunk += sizeof(bitmap_super_t) << 3;
677 return chunk >> PAGE_BIT_SHIFT;
NeilBrown32a76272005-06-21 17:17:14 -0700678}
679
680/* calculate the (bit) offset of this bit within a page */
NeilBrownece5cff2009-12-14 12:49:56 +1100681static inline unsigned long file_page_offset(struct bitmap *bitmap, unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700682{
NeilBrownece5cff2009-12-14 12:49:56 +1100683 if (!bitmap->mddev->bitmap_info.external)
684 chunk += sizeof(bitmap_super_t) << 3;
685 return chunk & (PAGE_BITS - 1);
NeilBrown32a76272005-06-21 17:17:14 -0700686}
687
688/*
689 * return a pointer to the page in the filemap that contains the given bit
690 *
691 * this lookup is complicated by the fact that the bitmap sb might be exactly
692 * 1 page (e.g., x86) or less than 1 page -- so the bitmap might start on page
693 * 0 or page 1
694 */
695static inline struct page *filemap_get_page(struct bitmap *bitmap,
696 unsigned long chunk)
697{
NeilBrowne384e582010-06-01 19:37:34 +1000698 if (bitmap->filemap == NULL)
699 return NULL;
NeilBrownac2f40b2010-06-01 19:37:31 +1000700 if (file_page_index(bitmap, chunk) >= bitmap->file_pages)
701 return NULL;
NeilBrownece5cff2009-12-14 12:49:56 +1100702 return bitmap->filemap[file_page_index(bitmap, chunk)
703 - file_page_index(bitmap, 0)];
NeilBrown32a76272005-06-21 17:17:14 -0700704}
705
NeilBrown32a76272005-06-21 17:17:14 -0700706static void bitmap_file_unmap(struct bitmap *bitmap)
707{
708 struct page **map, *sb_page;
709 unsigned long *attr;
710 int pages;
711 unsigned long flags;
712
713 spin_lock_irqsave(&bitmap->lock, flags);
714 map = bitmap->filemap;
715 bitmap->filemap = NULL;
716 attr = bitmap->filemap_attr;
717 bitmap->filemap_attr = NULL;
718 pages = bitmap->file_pages;
719 bitmap->file_pages = 0;
720 sb_page = bitmap->sb_page;
721 bitmap->sb_page = NULL;
722 spin_unlock_irqrestore(&bitmap->lock, flags);
723
724 while (pages--)
NeilBrownece5cff2009-12-14 12:49:56 +1100725 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700726 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700727 kfree(map);
728 kfree(attr);
729
NeilBrownd785a062006-06-26 00:27:48 -0700730 if (sb_page)
731 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700732}
733
734static void bitmap_file_put(struct bitmap *bitmap)
735{
736 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700737 unsigned long flags;
738
739 spin_lock_irqsave(&bitmap->lock, flags);
740 file = bitmap->file;
741 bitmap->file = NULL;
742 spin_unlock_irqrestore(&bitmap->lock, flags);
743
NeilBrownd785a062006-06-26 00:27:48 -0700744 if (file)
745 wait_event(bitmap->write_wait,
746 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700747 bitmap_file_unmap(bitmap);
748
NeilBrownd785a062006-06-26 00:27:48 -0700749 if (file) {
Josef Sipekc649bb92006-12-08 02:37:19 -0800750 struct inode *inode = file->f_path.dentry->d_inode;
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800751 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700752 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700753 }
NeilBrown32a76272005-06-21 17:17:14 -0700754}
755
NeilBrown32a76272005-06-21 17:17:14 -0700756/*
757 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
758 * then it is no longer reliable, so we stop using it and we mark the file
759 * as failed in the superblock
760 */
761static void bitmap_file_kick(struct bitmap *bitmap)
762{
763 char *path, *ptr = NULL;
764
NeilBrown4ad13662007-07-17 04:06:13 -0700765 if (bitmap_mask_state(bitmap, BITMAP_STALE, MASK_SET) == 0) {
766 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700767
NeilBrown4ad13662007-07-17 04:06:13 -0700768 if (bitmap->file) {
769 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
770 if (path)
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700771 ptr = d_path(&bitmap->file->f_path, path,
772 PAGE_SIZE);
773
NeilBrown4ad13662007-07-17 04:06:13 -0700774 printk(KERN_ALERT
775 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700776 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700777
NeilBrown4ad13662007-07-17 04:06:13 -0700778 kfree(path);
779 } else
780 printk(KERN_ALERT
781 "%s: disabling internal bitmap due to errors\n",
782 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700783 }
NeilBrown32a76272005-06-21 17:17:14 -0700784
785 bitmap_file_put(bitmap);
786
787 return;
788}
789
790enum bitmap_page_attr {
NeilBrownac2f40b2010-06-01 19:37:31 +1000791 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
792 BITMAP_PAGE_CLEAN = 1, /* there are bits that might need to be cleared */
793 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
NeilBrown32a76272005-06-21 17:17:14 -0700794};
795
796static inline void set_page_attr(struct bitmap *bitmap, struct page *page,
797 enum bitmap_page_attr attr)
798{
NeilBrowne384e582010-06-01 19:37:34 +1000799 if (page)
800 __set_bit((page->index<<2) + attr, bitmap->filemap_attr);
801 else
802 __set_bit(attr, &bitmap->logattrs);
NeilBrown32a76272005-06-21 17:17:14 -0700803}
804
805static inline void clear_page_attr(struct bitmap *bitmap, struct page *page,
806 enum bitmap_page_attr attr)
807{
NeilBrowne384e582010-06-01 19:37:34 +1000808 if (page)
809 __clear_bit((page->index<<2) + attr, bitmap->filemap_attr);
810 else
811 __clear_bit(attr, &bitmap->logattrs);
NeilBrown32a76272005-06-21 17:17:14 -0700812}
813
NeilBrownec7a3192006-06-26 00:27:45 -0700814static inline unsigned long test_page_attr(struct bitmap *bitmap, struct page *page,
815 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700816{
NeilBrowne384e582010-06-01 19:37:34 +1000817 if (page)
818 return test_bit((page->index<<2) + attr, bitmap->filemap_attr);
819 else
820 return test_bit(attr, &bitmap->logattrs);
NeilBrown32a76272005-06-21 17:17:14 -0700821}
822
823/*
824 * bitmap_file_set_bit -- called before performing a write to the md device
825 * to set (and eventually sync) a particular bit in the bitmap file
826 *
827 * we set the bit immediately, then we record the page number so that
828 * when an unplug occurs, we can flush the dirty pages out to disk
829 */
830static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
831{
832 unsigned long bit;
NeilBrowne384e582010-06-01 19:37:34 +1000833 struct page *page = NULL;
NeilBrown32a76272005-06-21 17:17:14 -0700834 void *kaddr;
835 unsigned long chunk = block >> CHUNK_BLOCK_SHIFT(bitmap);
836
NeilBrowne384e582010-06-01 19:37:34 +1000837 if (!bitmap->filemap) {
838 struct dm_dirty_log *log = bitmap->mddev->bitmap_info.log;
839 if (log)
840 log->type->mark_region(log, chunk);
841 } else {
NeilBrown32a76272005-06-21 17:17:14 -0700842
NeilBrowne384e582010-06-01 19:37:34 +1000843 page = filemap_get_page(bitmap, chunk);
844 if (!page)
845 return;
846 bit = file_page_offset(bitmap, chunk);
NeilBrown32a76272005-06-21 17:17:14 -0700847
NeilBrowne384e582010-06-01 19:37:34 +1000848 /* set the bit */
849 kaddr = kmap_atomic(page, KM_USER0);
850 if (bitmap->flags & BITMAP_HOSTENDIAN)
851 set_bit(bit, kaddr);
852 else
853 ext2_set_bit(bit, kaddr);
854 kunmap_atomic(kaddr, KM_USER0);
855 PRINTK("set file bit %lu page %lu\n", bit, page->index);
856 }
NeilBrown32a76272005-06-21 17:17:14 -0700857 /* record page number so it gets flushed to disk when unplug occurs */
858 set_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
NeilBrown32a76272005-06-21 17:17:14 -0700859}
860
861/* this gets called when the md device is ready to unplug its underlying
862 * (slave) device queues -- before we let any writes go down, we need to
863 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700864void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700865{
NeilBrownec7a3192006-06-26 00:27:45 -0700866 unsigned long i, flags;
867 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700868 struct page *page;
869 int wait = 0;
870
871 if (!bitmap)
NeilBrown4ad13662007-07-17 04:06:13 -0700872 return;
NeilBrowne384e582010-06-01 19:37:34 +1000873 if (!bitmap->filemap) {
874 /* Must be using a dirty_log */
875 struct dm_dirty_log *log = bitmap->mddev->bitmap_info.log;
876 dirty = test_and_clear_bit(BITMAP_PAGE_DIRTY, &bitmap->logattrs);
877 need_write = test_and_clear_bit(BITMAP_PAGE_NEEDWRITE, &bitmap->logattrs);
878 if (dirty || need_write)
879 if (log->type->flush(log))
880 bitmap->flags |= BITMAP_WRITE_ERROR;
881 goto out;
882 }
NeilBrown32a76272005-06-21 17:17:14 -0700883
884 /* look at each page to see if there are any set bits that need to be
885 * flushed out to disk */
886 for (i = 0; i < bitmap->file_pages; i++) {
887 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrowna654b9d82005-06-21 17:17:27 -0700888 if (!bitmap->filemap) {
NeilBrown32a76272005-06-21 17:17:14 -0700889 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -0700890 return;
NeilBrown32a76272005-06-21 17:17:14 -0700891 }
892 page = bitmap->filemap[i];
NeilBrownec7a3192006-06-26 00:27:45 -0700893 dirty = test_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
894 need_write = test_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrown32a76272005-06-21 17:17:14 -0700895 clear_page_attr(bitmap, page, BITMAP_PAGE_DIRTY);
896 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrownec7a3192006-06-26 00:27:45 -0700897 if (dirty)
NeilBrown32a76272005-06-21 17:17:14 -0700898 wait = 1;
899 spin_unlock_irqrestore(&bitmap->lock, flags);
900
NeilBrownac2f40b2010-06-01 19:37:31 +1000901 if (dirty || need_write)
NeilBrown4ad13662007-07-17 04:06:13 -0700902 write_page(bitmap, page, 0);
NeilBrown32a76272005-06-21 17:17:14 -0700903 }
904 if (wait) { /* if any writes were performed, we need to wait on them */
NeilBrown0b79ccf2006-06-26 00:27:44 -0700905 if (bitmap->file)
NeilBrownd785a062006-06-26 00:27:48 -0700906 wait_event(bitmap->write_wait,
907 atomic_read(&bitmap->pending_writes)==0);
NeilBrown0b79ccf2006-06-26 00:27:44 -0700908 else
NeilBrowna9701a32005-11-08 21:39:34 -0800909 md_super_wait(bitmap->mddev);
NeilBrown32a76272005-06-21 17:17:14 -0700910 }
NeilBrowne384e582010-06-01 19:37:34 +1000911out:
NeilBrownd785a062006-06-26 00:27:48 -0700912 if (bitmap->flags & BITMAP_WRITE_ERROR)
913 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700914}
NeilBrownac2f40b2010-06-01 19:37:31 +1000915EXPORT_SYMBOL(bitmap_unplug);
NeilBrown32a76272005-06-21 17:17:14 -0700916
NeilBrown6a079972005-09-09 16:23:44 -0700917static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700918/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
919 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
920 * memory mapping of the bitmap file
921 * Special cases:
922 * if there's no bitmap file, or if the bitmap file had been
923 * previously kicked from the array, we mark all the bits as
924 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700925 *
926 * We ignore all bits for sectors that end earlier than 'start'.
927 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700928 */
NeilBrown6a079972005-09-09 16:23:44 -0700929static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700930{
931 unsigned long i, chunks, index, oldindex, bit;
932 struct page *page = NULL, *oldpage = NULL;
933 unsigned long num_pages, bit_cnt = 0;
934 struct file *file;
NeilBrownd785a062006-06-26 00:27:48 -0700935 unsigned long bytes, offset;
NeilBrown32a76272005-06-21 17:17:14 -0700936 int outofdate;
937 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800938 void *paddr;
NeilBrown32a76272005-06-21 17:17:14 -0700939
940 chunks = bitmap->chunks;
941 file = bitmap->file;
942
NeilBrown42a04b52009-12-14 12:49:53 +1100943 BUG_ON(!file && !bitmap->mddev->bitmap_info.offset);
NeilBrown32a76272005-06-21 17:17:14 -0700944
Olaf Hering44456d32005-07-27 11:45:17 -0700945#ifdef INJECT_FAULTS_3
NeilBrown32a76272005-06-21 17:17:14 -0700946 outofdate = 1;
947#else
948 outofdate = bitmap->flags & BITMAP_STALE;
949#endif
950 if (outofdate)
951 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
952 "recovery\n", bmname(bitmap));
953
NeilBrowne384e582010-06-01 19:37:34 +1000954 bytes = DIV_ROUND_UP(bitmap->chunks, 8);
NeilBrownece5cff2009-12-14 12:49:56 +1100955 if (!bitmap->mddev->bitmap_info.external)
956 bytes += sizeof(bitmap_super_t);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700957
NeilBrowne384e582010-06-01 19:37:34 +1000958 num_pages = DIV_ROUND_UP(bytes, PAGE_SIZE);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700959
NeilBrownece5cff2009-12-14 12:49:56 +1100960 if (file && i_size_read(file->f_mapping->host) < bytes) {
NeilBrown32a76272005-06-21 17:17:14 -0700961 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
962 bmname(bitmap),
963 (unsigned long) i_size_read(file->f_mapping->host),
NeilBrownece5cff2009-12-14 12:49:56 +1100964 bytes);
NeilBrown4ad13662007-07-17 04:06:13 -0700965 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700966 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700967
968 ret = -ENOMEM;
969
NeilBrown32a76272005-06-21 17:17:14 -0700970 bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700971 if (!bitmap->filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700972 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700973
NeilBrowne16b68b2006-06-26 00:27:45 -0700974 /* We need 4 bits per page, rounded up to a multiple of sizeof(unsigned long) */
975 bitmap->filemap_attr = kzalloc(
NeilBrownac2f40b2010-06-01 19:37:31 +1000976 roundup(DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
NeilBrowne16b68b2006-06-26 00:27:45 -0700977 GFP_KERNEL);
NeilBrownbc7f77d2005-06-21 17:17:17 -0700978 if (!bitmap->filemap_attr)
NeilBrown4ad13662007-07-17 04:06:13 -0700979 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700980
NeilBrown32a76272005-06-21 17:17:14 -0700981 oldindex = ~0L;
982
983 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -0800984 int b;
NeilBrownece5cff2009-12-14 12:49:56 +1100985 index = file_page_index(bitmap, i);
986 bit = file_page_offset(bitmap, i);
NeilBrown32a76272005-06-21 17:17:14 -0700987 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -0700988 int count;
NeilBrown32a76272005-06-21 17:17:14 -0700989 /* unmap the old page, we're done with it */
NeilBrownd785a062006-06-26 00:27:48 -0700990 if (index == num_pages-1)
NeilBrownece5cff2009-12-14 12:49:56 +1100991 count = bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -0700992 else
993 count = PAGE_SIZE;
NeilBrownece5cff2009-12-14 12:49:56 +1100994 if (index == 0 && bitmap->sb_page) {
NeilBrown32a76272005-06-21 17:17:14 -0700995 /*
996 * if we're here then the superblock page
997 * contains some bits (PAGE_SIZE != sizeof sb)
998 * we've already read it in, so just use it
999 */
1000 page = bitmap->sb_page;
1001 offset = sizeof(bitmap_super_t);
NeilBrown53845272009-01-09 08:31:05 +11001002 if (!file)
1003 read_sb_page(bitmap->mddev,
NeilBrown42a04b52009-12-14 12:49:53 +11001004 bitmap->mddev->bitmap_info.offset,
NeilBrown53845272009-01-09 08:31:05 +11001005 page,
1006 index, count);
NeilBrowna654b9d82005-06-21 17:17:27 -07001007 } else if (file) {
NeilBrownd785a062006-06-26 00:27:48 -07001008 page = read_page(file, index, bitmap, count);
NeilBrowna654b9d82005-06-21 17:17:27 -07001009 offset = 0;
1010 } else {
NeilBrown42a04b52009-12-14 12:49:53 +11001011 page = read_sb_page(bitmap->mddev,
1012 bitmap->mddev->bitmap_info.offset,
NeilBrowna2ed9612008-12-19 16:25:01 +11001013 NULL,
1014 index, count);
NeilBrown32a76272005-06-21 17:17:14 -07001015 offset = 0;
1016 }
NeilBrowna654b9d82005-06-21 17:17:27 -07001017 if (IS_ERR(page)) { /* read error */
1018 ret = PTR_ERR(page);
NeilBrown4ad13662007-07-17 04:06:13 -07001019 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001020 }
1021
NeilBrown32a76272005-06-21 17:17:14 -07001022 oldindex = index;
1023 oldpage = page;
NeilBrown32a76272005-06-21 17:17:14 -07001024
NeilBrownb74fd282009-05-07 12:47:19 +10001025 bitmap->filemap[bitmap->file_pages++] = page;
1026 bitmap->last_page_size = count;
1027
NeilBrown32a76272005-06-21 17:17:14 -07001028 if (outofdate) {
1029 /*
1030 * if bitmap is out of date, dirty the
NeilBrownac2f40b2010-06-01 19:37:31 +10001031 * whole page and write it out
NeilBrown32a76272005-06-21 17:17:14 -07001032 */
NeilBrownea03aff2006-01-06 00:20:34 -08001033 paddr = kmap_atomic(page, KM_USER0);
1034 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001035 PAGE_SIZE - offset);
NeilBrownea03aff2006-01-06 00:20:34 -08001036 kunmap_atomic(paddr, KM_USER0);
NeilBrown4ad13662007-07-17 04:06:13 -07001037 write_page(bitmap, page, 1);
1038
1039 ret = -EIO;
NeilBrownb74fd282009-05-07 12:47:19 +10001040 if (bitmap->flags & BITMAP_WRITE_ERROR)
NeilBrown4ad13662007-07-17 04:06:13 -07001041 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001042 }
NeilBrown32a76272005-06-21 17:17:14 -07001043 }
NeilBrownea03aff2006-01-06 00:20:34 -08001044 paddr = kmap_atomic(page, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001045 if (bitmap->flags & BITMAP_HOSTENDIAN)
NeilBrownea03aff2006-01-06 00:20:34 -08001046 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001047 else
NeilBrownea03aff2006-01-06 00:20:34 -08001048 b = ext2_test_bit(bit, paddr);
1049 kunmap_atomic(paddr, KM_USER0);
NeilBrownbd926c62005-11-08 21:39:32 -08001050 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001051 /* if the disk bit is set, set the memory bit */
NeilBrowndb305e52009-05-07 12:49:06 +10001052 int needed = ((sector_t)(i+1) << (CHUNK_BLOCK_SHIFT(bitmap))
1053 >= start);
1054 bitmap_set_memory_bits(bitmap,
1055 (sector_t)i << CHUNK_BLOCK_SHIFT(bitmap),
1056 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001057 bit_cnt++;
NeilBrown6a079972005-09-09 16:23:44 -07001058 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -07001059 }
NeilBrown32a76272005-06-21 17:17:14 -07001060 }
1061
NeilBrownac2f40b2010-06-01 19:37:31 +10001062 /* everything went OK */
NeilBrown32a76272005-06-21 17:17:14 -07001063 ret = 0;
1064 bitmap_mask_state(bitmap, BITMAP_STALE, MASK_UNSET);
1065
NeilBrown32a76272005-06-21 17:17:14 -07001066 if (bit_cnt) { /* Kick recovery if any bits were set */
1067 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
1068 md_wakeup_thread(bitmap->mddev->thread);
1069 }
1070
NeilBrown32a76272005-06-21 17:17:14 -07001071 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrown4ad13662007-07-17 04:06:13 -07001072 "read %lu/%lu pages, set %lu bits\n",
1073 bmname(bitmap), bitmap->file_pages, num_pages, bit_cnt);
NeilBrown32a76272005-06-21 17:17:14 -07001074
NeilBrown4ad13662007-07-17 04:06:13 -07001075 return 0;
1076
1077 err:
1078 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1079 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001080 return ret;
1081}
1082
NeilBrowna654b9d82005-06-21 17:17:27 -07001083void bitmap_write_all(struct bitmap *bitmap)
1084{
1085 /* We don't actually write all bitmap blocks here,
1086 * just flag them as needing to be written
1087 */
NeilBrownec7a3192006-06-26 00:27:45 -07001088 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001089
NeilBrownac2f40b2010-06-01 19:37:31 +10001090 for (i = 0; i < bitmap->file_pages; i++)
NeilBrownec7a3192006-06-26 00:27:45 -07001091 set_page_attr(bitmap, bitmap->filemap[i],
1092 BITMAP_PAGE_NEEDWRITE);
NeilBrowna654b9d82005-06-21 17:17:27 -07001093}
1094
NeilBrown32a76272005-06-21 17:17:14 -07001095static void bitmap_count_page(struct bitmap *bitmap, sector_t offset, int inc)
1096{
1097 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1098 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1099 bitmap->bp[page].count += inc;
NeilBrown32a76272005-06-21 17:17:14 -07001100 bitmap_checkfree(bitmap, page);
1101}
1102static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1103 sector_t offset, int *blocks,
1104 int create);
1105
1106/*
1107 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1108 * out to disk
1109 */
1110
NeilBrownaa5cbd12009-12-14 12:49:46 +11001111void bitmap_daemon_work(mddev_t *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001112{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001113 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001114 unsigned long j;
NeilBrown32a76272005-06-21 17:17:14 -07001115 unsigned long flags;
1116 struct page *page = NULL, *lastpage = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001117 int blocks;
NeilBrownea03aff2006-01-06 00:20:34 -08001118 void *paddr;
NeilBrowne384e582010-06-01 19:37:34 +10001119 struct dm_dirty_log *log = mddev->bitmap_info.log;
NeilBrown32a76272005-06-21 17:17:14 -07001120
NeilBrownaa5cbd12009-12-14 12:49:46 +11001121 /* Use a mutex to guard daemon_work against
1122 * bitmap_destroy.
1123 */
NeilBrownc3d97142009-12-14 12:49:52 +11001124 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001125 bitmap = mddev->bitmap;
1126 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001127 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001128 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001129 }
NeilBrown42a04b52009-12-14 12:49:53 +11001130 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown1b04be92009-12-14 12:49:53 +11001131 + bitmap->mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001132 goto done;
1133
NeilBrown32a76272005-06-21 17:17:14 -07001134 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001135 if (bitmap->allclean) {
1136 bitmap->mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001137 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001138 }
1139 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001140
NeilBrownbe512692009-05-26 09:41:17 +10001141 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001142 for (j = 0; j < bitmap->chunks; j++) {
1143 bitmap_counter_t *bmc;
NeilBrowne384e582010-06-01 19:37:34 +10001144 if (!bitmap->filemap) {
1145 if (!log)
1146 /* error or shutdown */
1147 break;
1148 } else
1149 page = filemap_get_page(bitmap, j);
NeilBrown32a76272005-06-21 17:17:14 -07001150
1151 if (page != lastpage) {
NeilBrownaa3163f2005-06-21 17:17:22 -07001152 /* skip this page unless it's marked as needing cleaning */
NeilBrownec7a3192006-06-26 00:27:45 -07001153 if (!test_page_attr(bitmap, page, BITMAP_PAGE_CLEAN)) {
1154 int need_write = test_page_attr(bitmap, page,
1155 BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001156 if (need_write)
NeilBrownaa3163f2005-06-21 17:17:22 -07001157 clear_page_attr(bitmap, page, BITMAP_PAGE_NEEDWRITE);
NeilBrowna647e4b2006-06-26 00:27:46 -07001158
NeilBrownaa3163f2005-06-21 17:17:22 -07001159 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001160 if (need_write) {
NeilBrown4ad13662007-07-17 04:06:13 -07001161 write_page(bitmap, page, 0);
NeilBrown8311c292008-03-04 14:29:30 -08001162 bitmap->allclean = 0;
1163 }
NeilBrownbe512692009-05-26 09:41:17 +10001164 spin_lock_irqsave(&bitmap->lock, flags);
1165 j |= (PAGE_BITS - 1);
NeilBrownaa3163f2005-06-21 17:17:22 -07001166 continue;
1167 }
1168
NeilBrown32a76272005-06-21 17:17:14 -07001169 /* grab the new page, sync and release the old */
NeilBrown32a76272005-06-21 17:17:14 -07001170 if (lastpage != NULL) {
NeilBrownec7a3192006-06-26 00:27:45 -07001171 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001172 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1173 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown4ad13662007-07-17 04:06:13 -07001174 write_page(bitmap, lastpage, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001175 } else {
1176 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1177 spin_unlock_irqrestore(&bitmap->lock, flags);
1178 }
NeilBrown32a76272005-06-21 17:17:14 -07001179 } else
1180 spin_unlock_irqrestore(&bitmap->lock, flags);
1181 lastpage = page;
Neil Browna0da84f2008-06-28 08:31:22 +10001182
1183 /* We are possibly going to clear some bits, so make
1184 * sure that events_cleared is up-to-date.
1185 */
NeilBrownece5cff2009-12-14 12:49:56 +11001186 if (bitmap->need_sync &&
1187 bitmap->mddev->bitmap_info.external == 0) {
Neil Browna0da84f2008-06-28 08:31:22 +10001188 bitmap_super_t *sb;
1189 bitmap->need_sync = 0;
1190 sb = kmap_atomic(bitmap->sb_page, KM_USER0);
1191 sb->events_cleared =
1192 cpu_to_le64(bitmap->events_cleared);
1193 kunmap_atomic(sb, KM_USER0);
1194 write_page(bitmap, bitmap->sb_page, 1);
1195 }
NeilBrown32a76272005-06-21 17:17:14 -07001196 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownece5cff2009-12-14 12:49:56 +11001197 if (!bitmap->need_sync)
1198 clear_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -07001199 }
NeilBrowndb305e52009-05-07 12:49:06 +10001200 bmc = bitmap_get_counter(bitmap,
1201 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
1202 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001203 if (bmc) {
NeilBrown8311c292008-03-04 14:29:30 -08001204 if (*bmc)
1205 bitmap->allclean = 0;
1206
NeilBrown32a76272005-06-21 17:17:14 -07001207 if (*bmc == 2) {
NeilBrownac2f40b2010-06-01 19:37:31 +10001208 *bmc = 1; /* maybe clear the bit next time */
NeilBrown32a76272005-06-21 17:17:14 -07001209 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
NeilBrownece5cff2009-12-14 12:49:56 +11001210 } else if (*bmc == 1 && !bitmap->need_sync) {
NeilBrown32a76272005-06-21 17:17:14 -07001211 /* we can clear the bit */
1212 *bmc = 0;
NeilBrowndb305e52009-05-07 12:49:06 +10001213 bitmap_count_page(bitmap,
1214 (sector_t)j << CHUNK_BLOCK_SHIFT(bitmap),
NeilBrown32a76272005-06-21 17:17:14 -07001215 -1);
1216
1217 /* clear the bit */
NeilBrowne384e582010-06-01 19:37:34 +10001218 if (page) {
1219 paddr = kmap_atomic(page, KM_USER0);
1220 if (bitmap->flags & BITMAP_HOSTENDIAN)
1221 clear_bit(file_page_offset(bitmap, j),
1222 paddr);
1223 else
1224 ext2_clear_bit(file_page_offset(bitmap, j),
1225 paddr);
1226 kunmap_atomic(paddr, KM_USER0);
1227 } else
1228 log->type->clear_region(log, j);
NeilBrown32a76272005-06-21 17:17:14 -07001229 }
NeilBrownbe512692009-05-26 09:41:17 +10001230 } else
1231 j |= PAGE_COUNTER_MASK;
NeilBrown32a76272005-06-21 17:17:14 -07001232 }
NeilBrownbe512692009-05-26 09:41:17 +10001233 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001234
1235 /* now sync the final page */
NeilBrowne384e582010-06-01 19:37:34 +10001236 if (lastpage != NULL || log != NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001237 spin_lock_irqsave(&bitmap->lock, flags);
NeilBrownec7a3192006-06-26 00:27:45 -07001238 if (test_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE)) {
NeilBrown32a76272005-06-21 17:17:14 -07001239 clear_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1240 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrowne384e582010-06-01 19:37:34 +10001241 if (lastpage)
1242 write_page(bitmap, lastpage, 0);
1243 else
1244 if (log->type->flush(log))
1245 bitmap->flags |= BITMAP_WRITE_ERROR;
NeilBrown32a76272005-06-21 17:17:14 -07001246 } else {
1247 set_page_attr(bitmap, lastpage, BITMAP_PAGE_NEEDWRITE);
1248 spin_unlock_irqrestore(&bitmap->lock, flags);
1249 }
NeilBrown32a76272005-06-21 17:17:14 -07001250 }
1251
NeilBrown7be3dfe2008-03-10 11:43:48 -07001252 done:
NeilBrown8311c292008-03-04 14:29:30 -08001253 if (bitmap->allclean == 0)
NeilBrownac2f40b2010-06-01 19:37:31 +10001254 bitmap->mddev->thread->timeout =
NeilBrown1b04be92009-12-14 12:49:53 +11001255 bitmap->mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001256 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001257}
1258
NeilBrown32a76272005-06-21 17:17:14 -07001259static bitmap_counter_t *bitmap_get_counter(struct bitmap *bitmap,
1260 sector_t offset, int *blocks,
1261 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001262__releases(bitmap->lock)
1263__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001264{
1265 /* If 'create', we might release the lock and reclaim it.
1266 * The lock must have been taken with interrupts enabled.
1267 * If !create, we don't release the lock.
1268 */
1269 sector_t chunk = offset >> CHUNK_BLOCK_SHIFT(bitmap);
1270 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1271 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1272 sector_t csize;
NeilBrownef425672010-06-01 19:37:33 +10001273 int err;
NeilBrown32a76272005-06-21 17:17:14 -07001274
NeilBrownef425672010-06-01 19:37:33 +10001275 err = bitmap_checkpage(bitmap, page, create);
1276
1277 if (bitmap->bp[page].hijacked ||
1278 bitmap->bp[page].map == NULL)
1279 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1280 PAGE_COUNTER_SHIFT - 1);
1281 else
NeilBrown32a76272005-06-21 17:17:14 -07001282 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
NeilBrownef425672010-06-01 19:37:33 +10001283 *blocks = csize - (offset & (csize - 1));
1284
1285 if (err < 0)
NeilBrown32a76272005-06-21 17:17:14 -07001286 return NULL;
NeilBrownef425672010-06-01 19:37:33 +10001287
NeilBrown32a76272005-06-21 17:17:14 -07001288 /* now locked ... */
1289
1290 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1291 /* should we use the first or second counter field
1292 * of the hijacked pointer? */
1293 int hi = (pageoff > PAGE_COUNTER_MASK);
NeilBrown32a76272005-06-21 17:17:14 -07001294 return &((bitmap_counter_t *)
1295 &bitmap->bp[page].map)[hi];
NeilBrownef425672010-06-01 19:37:33 +10001296 } else /* page is allocated */
NeilBrown32a76272005-06-21 17:17:14 -07001297 return (bitmap_counter_t *)
1298 &(bitmap->bp[page].map[pageoff]);
NeilBrown32a76272005-06-21 17:17:14 -07001299}
1300
NeilBrown4b6d2872005-09-09 16:23:47 -07001301int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001302{
NeilBrownac2f40b2010-06-01 19:37:31 +10001303 if (!bitmap)
1304 return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001305
1306 if (behind) {
Paul Clements696fcd52010-03-08 16:02:37 +11001307 int bw;
NeilBrown4b6d2872005-09-09 16:23:47 -07001308 atomic_inc(&bitmap->behind_writes);
Paul Clements696fcd52010-03-08 16:02:37 +11001309 bw = atomic_read(&bitmap->behind_writes);
1310 if (bw > bitmap->behind_writes_used)
1311 bitmap->behind_writes_used = bw;
1312
NeilBrown4b6d2872005-09-09 16:23:47 -07001313 PRINTK(KERN_DEBUG "inc write-behind count %d/%d\n",
Paul Clements696fcd52010-03-08 16:02:37 +11001314 bw, bitmap->max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001315 }
1316
NeilBrown32a76272005-06-21 17:17:14 -07001317 while (sectors) {
1318 int blocks;
1319 bitmap_counter_t *bmc;
1320
1321 spin_lock_irq(&bitmap->lock);
1322 bmc = bitmap_get_counter(bitmap, offset, &blocks, 1);
1323 if (!bmc) {
1324 spin_unlock_irq(&bitmap->lock);
1325 return 0;
1326 }
1327
Neil Brownda6e1a32007-02-08 14:20:37 -08001328 if (unlikely((*bmc & COUNTER_MAX) == COUNTER_MAX)) {
1329 DEFINE_WAIT(__wait);
1330 /* note that it is safe to do the prepare_to_wait
1331 * after the test as long as we do it before dropping
1332 * the spinlock.
1333 */
1334 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1335 TASK_UNINTERRUPTIBLE);
1336 spin_unlock_irq(&bitmap->lock);
NeilBrownb63d7c22010-06-01 19:37:33 +10001337 md_unplug(bitmap->mddev);
Neil Brownda6e1a32007-02-08 14:20:37 -08001338 schedule();
1339 finish_wait(&bitmap->overflow_wait, &__wait);
1340 continue;
1341 }
1342
NeilBrownac2f40b2010-06-01 19:37:31 +10001343 switch (*bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001344 case 0:
1345 bitmap_file_set_bit(bitmap, offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10001346 bitmap_count_page(bitmap, offset, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001347 /* fall through */
1348 case 1:
1349 *bmc = 2;
1350 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001351
NeilBrown32a76272005-06-21 17:17:14 -07001352 (*bmc)++;
1353
1354 spin_unlock_irq(&bitmap->lock);
1355
1356 offset += blocks;
1357 if (sectors > blocks)
1358 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001359 else
1360 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001361 }
NeilBrown8311c292008-03-04 14:29:30 -08001362 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001363 return 0;
1364}
NeilBrownac2f40b2010-06-01 19:37:31 +10001365EXPORT_SYMBOL(bitmap_startwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001366
1367void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001368 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001369{
NeilBrownac2f40b2010-06-01 19:37:31 +10001370 if (!bitmap)
1371 return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001372 if (behind) {
NeilBrowne5551902010-03-31 11:21:44 +11001373 if (atomic_dec_and_test(&bitmap->behind_writes))
1374 wake_up(&bitmap->behind_wait);
NeilBrown4b6d2872005-09-09 16:23:47 -07001375 PRINTK(KERN_DEBUG "dec write-behind count %d/%d\n",
1376 atomic_read(&bitmap->behind_writes), bitmap->max_write_behind);
1377 }
NeilBrownd0a4bb42009-03-31 14:27:02 +11001378 if (bitmap->mddev->degraded)
1379 /* Never clear bits or update events_cleared when degraded */
1380 success = 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001381
NeilBrown32a76272005-06-21 17:17:14 -07001382 while (sectors) {
1383 int blocks;
1384 unsigned long flags;
1385 bitmap_counter_t *bmc;
1386
1387 spin_lock_irqsave(&bitmap->lock, flags);
1388 bmc = bitmap_get_counter(bitmap, offset, &blocks, 0);
1389 if (!bmc) {
1390 spin_unlock_irqrestore(&bitmap->lock, flags);
1391 return;
1392 }
1393
Neil Browna0da84f2008-06-28 08:31:22 +10001394 if (success &&
1395 bitmap->events_cleared < bitmap->mddev->events) {
1396 bitmap->events_cleared = bitmap->mddev->events;
1397 bitmap->need_sync = 1;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001398 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001399 }
1400
NeilBrown32a76272005-06-21 17:17:14 -07001401 if (!success && ! (*bmc & NEEDED_MASK))
1402 *bmc |= NEEDED_MASK;
1403
Neil Brownda6e1a32007-02-08 14:20:37 -08001404 if ((*bmc & COUNTER_MAX) == COUNTER_MAX)
1405 wake_up(&bitmap->overflow_wait);
1406
NeilBrown32a76272005-06-21 17:17:14 -07001407 (*bmc)--;
NeilBrownac2f40b2010-06-01 19:37:31 +10001408 if (*bmc <= 2)
NeilBrown32a76272005-06-21 17:17:14 -07001409 set_page_attr(bitmap,
NeilBrowne384e582010-06-01 19:37:34 +10001410 filemap_get_page(
1411 bitmap,
1412 offset >> CHUNK_BLOCK_SHIFT(bitmap)),
NeilBrown32a76272005-06-21 17:17:14 -07001413 BITMAP_PAGE_CLEAN);
NeilBrownac2f40b2010-06-01 19:37:31 +10001414
NeilBrown32a76272005-06-21 17:17:14 -07001415 spin_unlock_irqrestore(&bitmap->lock, flags);
1416 offset += blocks;
1417 if (sectors > blocks)
1418 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001419 else
1420 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001421 }
1422}
NeilBrownac2f40b2010-06-01 19:37:31 +10001423EXPORT_SYMBOL(bitmap_endwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001424
NeilBrown1187cf02009-03-31 14:27:02 +11001425static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1426 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001427{
1428 bitmap_counter_t *bmc;
1429 int rv;
1430 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1431 *blocks = 1024;
1432 return 1; /* always resync if no bitmap */
1433 }
1434 spin_lock_irq(&bitmap->lock);
1435 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1436 rv = 0;
1437 if (bmc) {
1438 /* locked */
1439 if (RESYNC(*bmc))
1440 rv = 1;
1441 else if (NEEDED(*bmc)) {
1442 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001443 if (!degraded) { /* don't set/clear bits if degraded */
1444 *bmc |= RESYNC_MASK;
1445 *bmc &= ~NEEDED_MASK;
1446 }
NeilBrown32a76272005-06-21 17:17:14 -07001447 }
1448 }
1449 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001450 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001451 return rv;
1452}
1453
NeilBrown1187cf02009-03-31 14:27:02 +11001454int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, int *blocks,
1455 int degraded)
1456{
1457 /* bitmap_start_sync must always report on multiples of whole
1458 * pages, otherwise resync (which is very PAGE_SIZE based) will
1459 * get confused.
1460 * So call __bitmap_start_sync repeatedly (if needed) until
1461 * At least PAGE_SIZE>>9 blocks are covered.
1462 * Return the 'or' of the result.
1463 */
1464 int rv = 0;
1465 int blocks1;
1466
1467 *blocks = 0;
1468 while (*blocks < (PAGE_SIZE>>9)) {
1469 rv |= __bitmap_start_sync(bitmap, offset,
1470 &blocks1, degraded);
1471 offset += blocks1;
1472 *blocks += blocks1;
1473 }
1474 return rv;
1475}
NeilBrownac2f40b2010-06-01 19:37:31 +10001476EXPORT_SYMBOL(bitmap_start_sync);
NeilBrown1187cf02009-03-31 14:27:02 +11001477
NeilBrown32a76272005-06-21 17:17:14 -07001478void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, int *blocks, int aborted)
1479{
1480 bitmap_counter_t *bmc;
1481 unsigned long flags;
NeilBrownac2f40b2010-06-01 19:37:31 +10001482
1483 if (bitmap == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001484 *blocks = 1024;
1485 return;
1486 }
1487 spin_lock_irqsave(&bitmap->lock, flags);
1488 bmc = bitmap_get_counter(bitmap, offset, blocks, 0);
1489 if (bmc == NULL)
1490 goto unlock;
1491 /* locked */
NeilBrown32a76272005-06-21 17:17:14 -07001492 if (RESYNC(*bmc)) {
1493 *bmc &= ~RESYNC_MASK;
1494
1495 if (!NEEDED(*bmc) && aborted)
1496 *bmc |= NEEDED_MASK;
1497 else {
NeilBrownac2f40b2010-06-01 19:37:31 +10001498 if (*bmc <= 2)
NeilBrown32a76272005-06-21 17:17:14 -07001499 set_page_attr(bitmap,
1500 filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap)),
1501 BITMAP_PAGE_CLEAN);
NeilBrown32a76272005-06-21 17:17:14 -07001502 }
1503 }
1504 unlock:
1505 spin_unlock_irqrestore(&bitmap->lock, flags);
NeilBrown8311c292008-03-04 14:29:30 -08001506 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001507}
NeilBrownac2f40b2010-06-01 19:37:31 +10001508EXPORT_SYMBOL(bitmap_end_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001509
1510void bitmap_close_sync(struct bitmap *bitmap)
1511{
1512 /* Sync has finished, and any bitmap chunks that weren't synced
1513 * properly have been aborted. It remains to us to clear the
1514 * RESYNC bit wherever it is still on
1515 */
1516 sector_t sector = 0;
1517 int blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001518 if (!bitmap)
1519 return;
NeilBrown32a76272005-06-21 17:17:14 -07001520 while (sector < bitmap->mddev->resync_max_sectors) {
1521 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001522 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001523 }
1524}
NeilBrownac2f40b2010-06-01 19:37:31 +10001525EXPORT_SYMBOL(bitmap_close_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001526
NeilBrownb47490c2008-02-06 01:39:50 -08001527void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1528{
1529 sector_t s = 0;
1530 int blocks;
1531
1532 if (!bitmap)
1533 return;
1534 if (sector == 0) {
1535 bitmap->last_end_sync = jiffies;
1536 return;
1537 }
1538 if (time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001539 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001540 return;
1541 wait_event(bitmap->mddev->recovery_wait,
1542 atomic_read(&bitmap->mddev->recovery_active) == 0);
1543
NeilBrown97e4f422009-03-31 14:33:13 +11001544 bitmap->mddev->curr_resync_completed = bitmap->mddev->curr_resync;
NeilBrown676e42d2010-06-01 19:37:26 +10001545 if (bitmap->mddev->persistent)
1546 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrownb47490c2008-02-06 01:39:50 -08001547 sector &= ~((1ULL << CHUNK_BLOCK_SHIFT(bitmap)) - 1);
1548 s = 0;
1549 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1550 bitmap_end_sync(bitmap, s, &blocks, 0);
1551 s += blocks;
1552 }
1553 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001554 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001555}
NeilBrownac2f40b2010-06-01 19:37:31 +10001556EXPORT_SYMBOL(bitmap_cond_end_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001557
NeilBrown6a079972005-09-09 16:23:44 -07001558static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001559{
1560 /* For each chunk covered by any of these sectors, set the
NeilBrown193f1c92005-08-04 12:53:33 -07001561 * counter to 1 and set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001562 * be 0 at this point
1563 */
NeilBrown193f1c92005-08-04 12:53:33 -07001564
1565 int secs;
1566 bitmap_counter_t *bmc;
1567 spin_lock_irq(&bitmap->lock);
1568 bmc = bitmap_get_counter(bitmap, offset, &secs, 1);
1569 if (!bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001570 spin_unlock_irq(&bitmap->lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001571 return;
NeilBrown32a76272005-06-21 17:17:14 -07001572 }
NeilBrownac2f40b2010-06-01 19:37:31 +10001573 if (!*bmc) {
NeilBrown193f1c92005-08-04 12:53:33 -07001574 struct page *page;
NeilBrownac2f40b2010-06-01 19:37:31 +10001575 *bmc = 1 | (needed ? NEEDED_MASK : 0);
NeilBrown193f1c92005-08-04 12:53:33 -07001576 bitmap_count_page(bitmap, offset, 1);
1577 page = filemap_get_page(bitmap, offset >> CHUNK_BLOCK_SHIFT(bitmap));
1578 set_page_attr(bitmap, page, BITMAP_PAGE_CLEAN);
1579 }
1580 spin_unlock_irq(&bitmap->lock);
NeilBrown8311c292008-03-04 14:29:30 -08001581 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001582}
1583
Paul Clements9b1d1da2006-10-03 01:15:49 -07001584/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1585void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1586{
1587 unsigned long chunk;
1588
1589 for (chunk = s; chunk <= e; chunk++) {
NeilBrowndb305e52009-05-07 12:49:06 +10001590 sector_t sec = (sector_t)chunk << CHUNK_BLOCK_SHIFT(bitmap);
Paul Clements9b1d1da2006-10-03 01:15:49 -07001591 bitmap_set_memory_bits(bitmap, sec, 1);
1592 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001593 if (sec < bitmap->mddev->recovery_cp)
1594 /* We are asserting that the array is dirty,
1595 * so move the recovery_cp address back so
1596 * that it is obvious that it is dirty
1597 */
1598 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001599 }
1600}
1601
NeilBrown32a76272005-06-21 17:17:14 -07001602/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001603 * flush out any pending updates
1604 */
1605void bitmap_flush(mddev_t *mddev)
1606{
1607 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001608 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001609
1610 if (!bitmap) /* there was no bitmap */
1611 return;
1612
1613 /* run the daemon_work three time to ensure everything is flushed
1614 * that can be
1615 */
NeilBrown1b04be92009-12-14 12:49:53 +11001616 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001617 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001618 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001619 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001620 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001621 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001622 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001623 bitmap_update_sb(bitmap);
1624}
1625
1626/*
NeilBrown32a76272005-06-21 17:17:14 -07001627 * free memory that was allocated
1628 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001629static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001630{
1631 unsigned long k, pages;
1632 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001633
1634 if (!bitmap) /* there was no bitmap */
1635 return;
1636
NeilBrown32a76272005-06-21 17:17:14 -07001637 /* release the bitmap file and kill the daemon */
1638 bitmap_file_put(bitmap);
1639
1640 bp = bitmap->bp;
1641 pages = bitmap->pages;
1642
1643 /* free all allocated memory */
1644
NeilBrown32a76272005-06-21 17:17:14 -07001645 if (bp) /* deallocate the page memory */
1646 for (k = 0; k < pages; k++)
1647 if (bp[k].map && !bp[k].hijacked)
1648 kfree(bp[k].map);
1649 kfree(bp);
1650 kfree(bitmap);
1651}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001652
NeilBrown3178b0d2005-09-09 16:23:50 -07001653void bitmap_destroy(mddev_t *mddev)
1654{
1655 struct bitmap *bitmap = mddev->bitmap;
1656
1657 if (!bitmap) /* there was no bitmap */
1658 return;
1659
NeilBrownc3d97142009-12-14 12:49:52 +11001660 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown3178b0d2005-09-09 16:23:50 -07001661 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrownc3d97142009-12-14 12:49:52 +11001662 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001663 if (mddev->thread)
1664 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001665
NeilBrownece5cff2009-12-14 12:49:56 +11001666 if (bitmap->sysfs_can_clear)
1667 sysfs_put(bitmap->sysfs_can_clear);
1668
NeilBrown3178b0d2005-09-09 16:23:50 -07001669 bitmap_free(bitmap);
1670}
NeilBrown32a76272005-06-21 17:17:14 -07001671
1672/*
1673 * initialize the bitmap structure
1674 * if this returns an error, bitmap_destroy must be called to do clean up
1675 */
1676int bitmap_create(mddev_t *mddev)
1677{
1678 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001679 sector_t blocks = mddev->resync_max_sectors;
NeilBrown32a76272005-06-21 17:17:14 -07001680 unsigned long chunks;
1681 unsigned long pages;
NeilBrownc3d97142009-12-14 12:49:52 +11001682 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001683 int err;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001684 struct sysfs_dirent *bm = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001685
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001686 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001687
NeilBrowne384e582010-06-01 19:37:34 +10001688 if (!file
1689 && !mddev->bitmap_info.offset
1690 && !mddev->bitmap_info.log) /* bitmap disabled, nothing to do */
NeilBrown32a76272005-06-21 17:17:14 -07001691 return 0;
1692
NeilBrownc3d97142009-12-14 12:49:52 +11001693 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowne384e582010-06-01 19:37:34 +10001694 BUG_ON(mddev->bitmap_info.offset && mddev->bitmap_info.log);
NeilBrowna654b9d82005-06-21 17:17:27 -07001695
NeilBrown9ffae0c2006-01-06 00:20:32 -08001696 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001697 if (!bitmap)
1698 return -ENOMEM;
1699
NeilBrown32a76272005-06-21 17:17:14 -07001700 spin_lock_init(&bitmap->lock);
NeilBrownce25c312006-06-26 00:27:49 -07001701 atomic_set(&bitmap->pending_writes, 0);
1702 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001703 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrowne5551902010-03-31 11:21:44 +11001704 init_waitqueue_head(&bitmap->behind_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001705
NeilBrown32a76272005-06-21 17:17:14 -07001706 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001707
NeilBrown5ff5aff2010-06-01 19:37:32 +10001708 if (mddev->kobj.sd)
1709 bm = sysfs_get_dirent(mddev->kobj.sd, NULL, "bitmap");
NeilBrownece5cff2009-12-14 12:49:56 +11001710 if (bm) {
Eric W. Biederman3ff195b2010-03-30 11:31:26 -07001711 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, NULL, "can_clear");
NeilBrownece5cff2009-12-14 12:49:56 +11001712 sysfs_put(bm);
1713 } else
1714 bitmap->sysfs_can_clear = NULL;
1715
NeilBrown32a76272005-06-21 17:17:14 -07001716 bitmap->file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001717 if (file) {
1718 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001719 /* As future accesses to this file will use bmap,
1720 * and bypass the page cache, we must sync the file
1721 * first.
1722 */
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001723 vfs_fsync(file, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001724 }
NeilBrown42a04b52009-12-14 12:49:53 +11001725 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
NeilBrownece5cff2009-12-14 12:49:56 +11001726 if (!mddev->bitmap_info.external)
1727 err = bitmap_read_sb(bitmap);
1728 else {
1729 err = 0;
1730 if (mddev->bitmap_info.chunksize == 0 ||
1731 mddev->bitmap_info.daemon_sleep == 0)
1732 /* chunksize and time_base need to be
1733 * set first. */
1734 err = -EINVAL;
1735 }
NeilBrown32a76272005-06-21 17:17:14 -07001736 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001737 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001738
NeilBrown624ce4f2009-12-14 12:49:56 +11001739 bitmap->daemon_lastrun = jiffies;
NeilBrown42a04b52009-12-14 12:49:53 +11001740 bitmap->chunkshift = ffz(~mddev->bitmap_info.chunksize);
NeilBrown32a76272005-06-21 17:17:14 -07001741
1742 /* now that chunksize and chunkshift are set, we can use these macros */
NeilBrownac2f40b2010-06-01 19:37:31 +10001743 chunks = (blocks + CHUNK_BLOCK_RATIO(bitmap) - 1) >>
NeilBrown1f593902009-04-20 11:50:24 +10001744 CHUNK_BLOCK_SHIFT(bitmap);
NeilBrownac2f40b2010-06-01 19:37:31 +10001745 pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;
NeilBrown32a76272005-06-21 17:17:14 -07001746
1747 BUG_ON(!pages);
1748
1749 bitmap->chunks = chunks;
1750 bitmap->pages = pages;
1751 bitmap->missing_pages = pages;
1752 bitmap->counter_bits = COUNTER_BITS;
1753
1754 bitmap->syncchunk = ~0UL;
1755
Olaf Hering44456d32005-07-27 11:45:17 -07001756#ifdef INJECT_FATAL_FAULT_1
NeilBrown32a76272005-06-21 17:17:14 -07001757 bitmap->bp = NULL;
1758#else
NeilBrown9ffae0c2006-01-06 00:20:32 -08001759 bitmap->bp = kzalloc(pages * sizeof(*bitmap->bp), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001760#endif
NeilBrown3178b0d2005-09-09 16:23:50 -07001761 err = -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -07001762 if (!bitmap->bp)
NeilBrown3178b0d2005-09-09 16:23:50 -07001763 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001764
NeilBrown69e51b42010-06-01 19:37:35 +10001765 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
1766 pages, bmname(bitmap));
1767
1768 mddev->bitmap = bitmap;
1769
1770
1771 return (bitmap->flags & BITMAP_WRITE_ERROR) ? -EIO : 0;
1772
1773 error:
1774 bitmap_free(bitmap);
1775 return err;
1776}
1777
1778int bitmap_load(mddev_t *mddev)
1779{
1780 int err = 0;
1781 sector_t sector = 0;
1782 struct bitmap *bitmap = mddev->bitmap;
1783
1784 if (!bitmap)
1785 goto out;
1786
1787 /* Clear out old bitmap info first: Either there is none, or we
1788 * are resuming after someone else has possibly changed things,
1789 * so we should forget old cached info.
1790 * All chunks should be clean, but some might need_sync.
1791 */
1792 while (sector < mddev->resync_max_sectors) {
1793 int blocks;
1794 bitmap_start_sync(bitmap, sector, &blocks, 0);
1795 sector += blocks;
1796 }
1797 bitmap_close_sync(bitmap);
1798
NeilBrowne384e582010-06-01 19:37:34 +10001799 if (mddev->bitmap_info.log) {
1800 unsigned long i;
1801 struct dm_dirty_log *log = mddev->bitmap_info.log;
1802 for (i = 0; i < bitmap->chunks; i++)
1803 if (!log->type->in_sync(log, i, 1))
1804 bitmap_set_memory_bits(bitmap,
1805 (sector_t)i << CHUNK_BLOCK_SHIFT(bitmap),
1806 1);
NeilBrown69e51b42010-06-01 19:37:35 +10001807 } else {
1808 sector_t start = 0;
1809 if (mddev->degraded == 0
1810 || bitmap->events_cleared == mddev->events)
1811 /* no need to keep dirty bits to optimise a
1812 * re-add of a missing device */
1813 start = mddev->recovery_cp;
1814
NeilBrowne384e582010-06-01 19:37:34 +10001815 err = bitmap_init_from_disk(bitmap, start);
NeilBrown69e51b42010-06-01 19:37:35 +10001816 }
NeilBrown32a76272005-06-21 17:17:14 -07001817 if (err)
NeilBrown69e51b42010-06-01 19:37:35 +10001818 goto out;
NeilBrown3178b0d2005-09-09 16:23:50 -07001819
NeilBrown1b04be92009-12-14 12:49:53 +11001820 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001821 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001822
NeilBrown4ad13662007-07-17 04:06:13 -07001823 bitmap_update_sb(bitmap);
1824
NeilBrown69e51b42010-06-01 19:37:35 +10001825 if (bitmap->flags & BITMAP_WRITE_ERROR)
1826 err = -EIO;
1827out:
NeilBrown3178b0d2005-09-09 16:23:50 -07001828 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001829}
NeilBrown69e51b42010-06-01 19:37:35 +10001830EXPORT_SYMBOL_GPL(bitmap_load);
NeilBrown32a76272005-06-21 17:17:14 -07001831
NeilBrown43a70502009-12-14 12:49:55 +11001832static ssize_t
1833location_show(mddev_t *mddev, char *page)
1834{
1835 ssize_t len;
NeilBrownac2f40b2010-06-01 19:37:31 +10001836 if (mddev->bitmap_info.file)
NeilBrown43a70502009-12-14 12:49:55 +11001837 len = sprintf(page, "file");
NeilBrownac2f40b2010-06-01 19:37:31 +10001838 else if (mddev->bitmap_info.offset)
NeilBrown43a70502009-12-14 12:49:55 +11001839 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10001840 else
NeilBrown43a70502009-12-14 12:49:55 +11001841 len = sprintf(page, "none");
1842 len += sprintf(page+len, "\n");
1843 return len;
1844}
1845
1846static ssize_t
1847location_store(mddev_t *mddev, const char *buf, size_t len)
1848{
1849
1850 if (mddev->pers) {
1851 if (!mddev->pers->quiesce)
1852 return -EBUSY;
1853 if (mddev->recovery || mddev->sync_thread)
1854 return -EBUSY;
1855 }
1856
1857 if (mddev->bitmap || mddev->bitmap_info.file ||
1858 mddev->bitmap_info.offset) {
1859 /* bitmap already configured. Only option is to clear it */
1860 if (strncmp(buf, "none", 4) != 0)
1861 return -EBUSY;
1862 if (mddev->pers) {
1863 mddev->pers->quiesce(mddev, 1);
1864 bitmap_destroy(mddev);
1865 mddev->pers->quiesce(mddev, 0);
1866 }
1867 mddev->bitmap_info.offset = 0;
1868 if (mddev->bitmap_info.file) {
1869 struct file *f = mddev->bitmap_info.file;
1870 mddev->bitmap_info.file = NULL;
1871 restore_bitmap_write_access(f);
1872 fput(f);
1873 }
1874 } else {
1875 /* No bitmap, OK to set a location */
1876 long long offset;
1877 if (strncmp(buf, "none", 4) == 0)
1878 /* nothing to be done */;
1879 else if (strncmp(buf, "file:", 5) == 0) {
1880 /* Not supported yet */
1881 return -EINVAL;
1882 } else {
1883 int rv;
1884 if (buf[0] == '+')
1885 rv = strict_strtoll(buf+1, 10, &offset);
1886 else
1887 rv = strict_strtoll(buf, 10, &offset);
1888 if (rv)
1889 return rv;
1890 if (offset == 0)
1891 return -EINVAL;
NeilBrownece5cff2009-12-14 12:49:56 +11001892 if (mddev->bitmap_info.external == 0 &&
1893 mddev->major_version == 0 &&
NeilBrown43a70502009-12-14 12:49:55 +11001894 offset != mddev->bitmap_info.default_offset)
1895 return -EINVAL;
1896 mddev->bitmap_info.offset = offset;
1897 if (mddev->pers) {
1898 mddev->pers->quiesce(mddev, 1);
1899 rv = bitmap_create(mddev);
1900 if (rv) {
1901 bitmap_destroy(mddev);
1902 mddev->bitmap_info.offset = 0;
1903 }
1904 mddev->pers->quiesce(mddev, 0);
1905 if (rv)
1906 return rv;
1907 }
1908 }
1909 }
1910 if (!mddev->external) {
1911 /* Ensure new bitmap info is stored in
1912 * metadata promptly.
1913 */
1914 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1915 md_wakeup_thread(mddev->thread);
1916 }
1917 return len;
1918}
1919
1920static struct md_sysfs_entry bitmap_location =
1921__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
1922
1923static ssize_t
1924timeout_show(mddev_t *mddev, char *page)
1925{
1926 ssize_t len;
1927 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
1928 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
NeilBrownac2f40b2010-06-01 19:37:31 +10001929
NeilBrown43a70502009-12-14 12:49:55 +11001930 len = sprintf(page, "%lu", secs);
1931 if (jifs)
1932 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
1933 len += sprintf(page+len, "\n");
1934 return len;
1935}
1936
1937static ssize_t
1938timeout_store(mddev_t *mddev, const char *buf, size_t len)
1939{
1940 /* timeout can be set at any time */
1941 unsigned long timeout;
1942 int rv = strict_strtoul_scaled(buf, &timeout, 4);
1943 if (rv)
1944 return rv;
1945
1946 /* just to make sure we don't overflow... */
1947 if (timeout >= LONG_MAX / HZ)
1948 return -EINVAL;
1949
1950 timeout = timeout * HZ / 10000;
1951
1952 if (timeout >= MAX_SCHEDULE_TIMEOUT)
1953 timeout = MAX_SCHEDULE_TIMEOUT-1;
1954 if (timeout < 1)
1955 timeout = 1;
1956 mddev->bitmap_info.daemon_sleep = timeout;
1957 if (mddev->thread) {
1958 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
1959 * the bitmap is all clean and we don't need to
1960 * adjust the timeout right now
1961 */
1962 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
1963 mddev->thread->timeout = timeout;
1964 md_wakeup_thread(mddev->thread);
1965 }
1966 }
1967 return len;
1968}
1969
1970static struct md_sysfs_entry bitmap_timeout =
1971__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
1972
1973static ssize_t
1974backlog_show(mddev_t *mddev, char *page)
1975{
1976 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
1977}
1978
1979static ssize_t
1980backlog_store(mddev_t *mddev, const char *buf, size_t len)
1981{
1982 unsigned long backlog;
1983 int rv = strict_strtoul(buf, 10, &backlog);
1984 if (rv)
1985 return rv;
1986 if (backlog > COUNTER_MAX)
1987 return -EINVAL;
1988 mddev->bitmap_info.max_write_behind = backlog;
1989 return len;
1990}
1991
1992static struct md_sysfs_entry bitmap_backlog =
1993__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
1994
1995static ssize_t
1996chunksize_show(mddev_t *mddev, char *page)
1997{
1998 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
1999}
2000
2001static ssize_t
2002chunksize_store(mddev_t *mddev, const char *buf, size_t len)
2003{
2004 /* Can only be changed when no bitmap is active */
2005 int rv;
2006 unsigned long csize;
2007 if (mddev->bitmap)
2008 return -EBUSY;
2009 rv = strict_strtoul(buf, 10, &csize);
2010 if (rv)
2011 return rv;
2012 if (csize < 512 ||
2013 !is_power_of_2(csize))
2014 return -EINVAL;
2015 mddev->bitmap_info.chunksize = csize;
2016 return len;
2017}
2018
2019static struct md_sysfs_entry bitmap_chunksize =
2020__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2021
NeilBrownece5cff2009-12-14 12:49:56 +11002022static ssize_t metadata_show(mddev_t *mddev, char *page)
2023{
2024 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2025 ? "external" : "internal"));
2026}
2027
2028static ssize_t metadata_store(mddev_t *mddev, const char *buf, size_t len)
2029{
2030 if (mddev->bitmap ||
2031 mddev->bitmap_info.file ||
2032 mddev->bitmap_info.offset)
2033 return -EBUSY;
2034 if (strncmp(buf, "external", 8) == 0)
2035 mddev->bitmap_info.external = 1;
2036 else if (strncmp(buf, "internal", 8) == 0)
2037 mddev->bitmap_info.external = 0;
2038 else
2039 return -EINVAL;
2040 return len;
2041}
2042
2043static struct md_sysfs_entry bitmap_metadata =
2044__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2045
2046static ssize_t can_clear_show(mddev_t *mddev, char *page)
2047{
2048 int len;
2049 if (mddev->bitmap)
2050 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2051 "false" : "true"));
2052 else
2053 len = sprintf(page, "\n");
2054 return len;
2055}
2056
2057static ssize_t can_clear_store(mddev_t *mddev, const char *buf, size_t len)
2058{
2059 if (mddev->bitmap == NULL)
2060 return -ENOENT;
2061 if (strncmp(buf, "false", 5) == 0)
2062 mddev->bitmap->need_sync = 1;
2063 else if (strncmp(buf, "true", 4) == 0) {
2064 if (mddev->degraded)
2065 return -EBUSY;
2066 mddev->bitmap->need_sync = 0;
2067 } else
2068 return -EINVAL;
2069 return len;
2070}
2071
2072static struct md_sysfs_entry bitmap_can_clear =
2073__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2074
Paul Clements696fcd52010-03-08 16:02:37 +11002075static ssize_t
2076behind_writes_used_show(mddev_t *mddev, char *page)
2077{
2078 if (mddev->bitmap == NULL)
2079 return sprintf(page, "0\n");
2080 return sprintf(page, "%lu\n",
2081 mddev->bitmap->behind_writes_used);
2082}
2083
2084static ssize_t
2085behind_writes_used_reset(mddev_t *mddev, const char *buf, size_t len)
2086{
2087 if (mddev->bitmap)
2088 mddev->bitmap->behind_writes_used = 0;
2089 return len;
2090}
2091
2092static struct md_sysfs_entry max_backlog_used =
2093__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2094 behind_writes_used_show, behind_writes_used_reset);
2095
NeilBrown43a70502009-12-14 12:49:55 +11002096static struct attribute *md_bitmap_attrs[] = {
2097 &bitmap_location.attr,
2098 &bitmap_timeout.attr,
2099 &bitmap_backlog.attr,
2100 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002101 &bitmap_metadata.attr,
2102 &bitmap_can_clear.attr,
Paul Clements696fcd52010-03-08 16:02:37 +11002103 &max_backlog_used.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002104 NULL
2105};
2106struct attribute_group md_bitmap_group = {
2107 .name = "bitmap",
2108 .attrs = md_bitmap_attrs,
2109};
2110