blob: b43a75a246e7d317af08a62b1b7979bdf88ed0cd [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>
NeilBrown57148962012-03-19 12:46:40 +110029#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110030#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110031#include "bitmap.h"
NeilBrown32a76272005-06-21 17:17:14 -070032
NeilBrownac2f40b2010-06-01 19:37:31 +100033static inline char *bmname(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -070034{
35 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
36}
37
NeilBrown32a76272005-06-21 17:17:14 -070038/*
NeilBrown32a76272005-06-21 17:17:14 -070039 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
40 *
41 * 1) check to see if this page is allocated, if it's not then try to alloc
42 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
43 * page pointer directly as a counter
44 *
45 * if we find our page, we increment the page's refcount so that it stays
46 * allocated while we're using it
47 */
NeilBrown40cffcc2012-05-22 13:55:24 +100048static int bitmap_checkpage(struct bitmap_counts *bitmap,
NeilBrownac2f40b2010-06-01 19:37:31 +100049 unsigned long page, int create)
NeilBrownee305ac2009-09-23 18:06:44 +100050__releases(bitmap->lock)
51__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -070052{
53 unsigned char *mappage;
54
55 if (page >= bitmap->pages) {
NeilBrown1187cf02009-03-31 14:27:02 +110056 /* This can happen if bitmap_start_sync goes beyond
57 * End-of-device while looking for a whole page.
58 * It is harmless.
59 */
NeilBrown32a76272005-06-21 17:17:14 -070060 return -EINVAL;
61 }
62
NeilBrown32a76272005-06-21 17:17:14 -070063 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
64 return 0;
65
66 if (bitmap->bp[page].map) /* page is already allocated, just return */
67 return 0;
68
69 if (!create)
70 return -ENOENT;
71
NeilBrown32a76272005-06-21 17:17:14 -070072 /* this page has not been allocated yet */
73
NeilBrownac2f40b2010-06-01 19:37:31 +100074 spin_unlock_irq(&bitmap->lock);
NeilBrownd9590142015-02-02 17:08:03 +110075 /* It is possible that this is being called inside a
76 * prepare_to_wait/finish_wait loop from raid5c:make_request().
77 * In general it is not permitted to sleep in that context as it
78 * can cause the loop to spin freely.
79 * That doesn't apply here as we can only reach this point
80 * once with any loop.
81 * When this function completes, either bp[page].map or
82 * bp[page].hijacked. In either case, this function will
83 * abort before getting to this point again. So there is
84 * no risk of a free-spin, and so it is safe to assert
85 * that sleeping here is allowed.
86 */
87 sched_annotate_sleep();
NeilBrown792a1d42012-03-19 12:46:41 +110088 mappage = kzalloc(PAGE_SIZE, GFP_NOIO);
NeilBrownac2f40b2010-06-01 19:37:31 +100089 spin_lock_irq(&bitmap->lock);
90
91 if (mappage == NULL) {
NeilBrown40cffcc2012-05-22 13:55:24 +100092 pr_debug("md/bitmap: map page allocation failed, hijacking\n");
NeilBrown32a76272005-06-21 17:17:14 -070093 /* failed - set the hijacked flag so that we can use the
94 * pointer as a counter */
NeilBrown32a76272005-06-21 17:17:14 -070095 if (!bitmap->bp[page].map)
96 bitmap->bp[page].hijacked = 1;
NeilBrownac2f40b2010-06-01 19:37:31 +100097 } else if (bitmap->bp[page].map ||
98 bitmap->bp[page].hijacked) {
NeilBrown32a76272005-06-21 17:17:14 -070099 /* somebody beat us to getting the page */
NeilBrown792a1d42012-03-19 12:46:41 +1100100 kfree(mappage);
NeilBrown32a76272005-06-21 17:17:14 -0700101 return 0;
NeilBrownac2f40b2010-06-01 19:37:31 +1000102 } else {
103
104 /* no page was in place and we have one, so install it */
105
106 bitmap->bp[page].map = mappage;
107 bitmap->missing_pages--;
NeilBrown32a76272005-06-21 17:17:14 -0700108 }
NeilBrown32a76272005-06-21 17:17:14 -0700109 return 0;
110}
111
NeilBrown32a76272005-06-21 17:17:14 -0700112/* if page is completely empty, put it back on the free list, or dealloc it */
113/* if page was hijacked, unmark the flag so it might get alloced next time */
114/* Note: lock should be held when calling this */
NeilBrown40cffcc2012-05-22 13:55:24 +1000115static void bitmap_checkfree(struct bitmap_counts *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700116{
117 char *ptr;
118
119 if (bitmap->bp[page].count) /* page is still busy */
120 return;
121
122 /* page is no longer in use, it can be released */
123
124 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
125 bitmap->bp[page].hijacked = 0;
126 bitmap->bp[page].map = NULL;
NeilBrownac2f40b2010-06-01 19:37:31 +1000127 } else {
128 /* normal case, free the page */
129 ptr = bitmap->bp[page].map;
130 bitmap->bp[page].map = NULL;
131 bitmap->missing_pages++;
NeilBrown792a1d42012-03-19 12:46:41 +1100132 kfree(ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700133 }
NeilBrown32a76272005-06-21 17:17:14 -0700134}
135
NeilBrown32a76272005-06-21 17:17:14 -0700136/*
137 * bitmap file handling - read and write the bitmap file and its superblock
138 */
139
NeilBrown32a76272005-06-21 17:17:14 -0700140/*
141 * basic page I/O operations
142 */
143
NeilBrowna654b9d82005-06-21 17:17:27 -0700144/* IO operations when bitmap is stored near all superblocks */
NeilBrown27581e52012-05-22 13:55:08 +1000145static int read_sb_page(struct mddev *mddev, loff_t offset,
146 struct page *page,
147 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700148{
149 /* choose a good rdev and read the page from there */
150
NeilBrown3cb03002011-10-11 16:45:26 +1100151 struct md_rdev *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700152 sector_t target;
NeilBrowna654b9d82005-06-21 17:17:27 -0700153
NeilBrowndafb20f2012-03-19 12:46:39 +1100154 rdev_for_each(rdev, mddev) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800155 if (! test_bit(In_sync, &rdev->flags)
156 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700157 continue;
158
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100159 target = offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700160
NeilBrown2b193362010-10-27 15:16:40 +1100161 if (sync_page_io(rdev, target,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400162 roundup(size, bdev_logical_block_size(rdev->bdev)),
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100163 page, READ, true)) {
NeilBrownab904d62005-09-09 16:23:52 -0700164 page->index = index;
NeilBrown27581e52012-05-22 13:55:08 +1000165 return 0;
NeilBrownab904d62005-09-09 16:23:52 -0700166 }
167 }
NeilBrown27581e52012-05-22 13:55:08 +1000168 return -EIO;
NeilBrowna654b9d82005-06-21 17:17:27 -0700169}
170
NeilBrownfd01b882011-10-11 16:47:53 +1100171static struct md_rdev *next_active_rdev(struct md_rdev *rdev, struct mddev *mddev)
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000172{
173 /* Iterate the disks of an mddev, using rcu to protect access to the
174 * linked list, and raising the refcount of devices we return to ensure
175 * they don't disappear while in use.
176 * As devices are only added or removed when raid_disk is < 0 and
177 * nr_pending is 0 and In_sync is clear, the entries we return will
178 * still be in the same position on the list when we re-enter
Michael Wangfd177482012-10-11 13:43:21 +1100179 * list_for_each_entry_continue_rcu.
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000180 */
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000181 rcu_read_lock();
182 if (rdev == NULL)
183 /* start at the beginning */
Michael Wangfd177482012-10-11 13:43:21 +1100184 rdev = list_entry_rcu(&mddev->disks, struct md_rdev, same_set);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000185 else {
186 /* release the previous rdev and start from there. */
187 rdev_dec_pending(rdev, mddev);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000188 }
Michael Wangfd177482012-10-11 13:43:21 +1100189 list_for_each_entry_continue_rcu(rdev, &mddev->disks, same_set) {
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000190 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000191 !test_bit(Faulty, &rdev->flags)) {
192 /* this is a usable devices */
193 atomic_inc(&rdev->nr_pending);
194 rcu_read_unlock();
195 return rdev;
196 }
197 }
198 rcu_read_unlock();
199 return NULL;
200}
201
NeilBrownab6085c2007-05-23 13:58:10 -0700202static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700203{
NeilBrown3cb03002011-10-11 16:45:26 +1100204 struct md_rdev *rdev = NULL;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100205 struct block_device *bdev;
NeilBrownfd01b882011-10-11 16:47:53 +1100206 struct mddev *mddev = bitmap->mddev;
NeilBrown1ec885c2012-05-22 13:55:10 +1000207 struct bitmap_storage *store = &bitmap->storage;
NeilBrowna654b9d82005-06-21 17:17:27 -0700208
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000209 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000210 int size = PAGE_SIZE;
211 loff_t offset = mddev->bitmap_info.offset;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100212
213 bdev = (rdev->meta_bdev) ? rdev->meta_bdev : rdev->bdev;
214
NeilBrown9b1215c2012-05-22 13:55:11 +1000215 if (page->index == store->file_pages-1) {
216 int last_page_size = store->bytes & (PAGE_SIZE-1);
217 if (last_page_size == 0)
218 last_page_size = PAGE_SIZE;
219 size = roundup(last_page_size,
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100220 bdev_logical_block_size(bdev));
NeilBrown9b1215c2012-05-22 13:55:11 +1000221 }
NeilBrownac2f40b2010-06-01 19:37:31 +1000222 /* Just make sure we aren't corrupting data or
223 * metadata
224 */
225 if (mddev->external) {
226 /* Bitmap could be anywhere. */
227 if (rdev->sb_start + offset + (page->index
228 * (PAGE_SIZE/512))
229 > rdev->data_offset
230 &&
231 rdev->sb_start + offset
232 < (rdev->data_offset + mddev->dev_sectors
233 + (PAGE_SIZE/512)))
234 goto bad_alignment;
235 } else if (offset < 0) {
236 /* DATA BITMAP METADATA */
237 if (offset
238 + (long)(page->index * (PAGE_SIZE/512))
239 + size/512 > 0)
240 /* bitmap runs in to metadata */
241 goto bad_alignment;
242 if (rdev->data_offset + mddev->dev_sectors
243 > rdev->sb_start + offset)
244 /* data runs in to bitmap */
245 goto bad_alignment;
246 } else if (rdev->sb_start < rdev->data_offset) {
247 /* METADATA BITMAP DATA */
248 if (rdev->sb_start
249 + offset
250 + page->index*(PAGE_SIZE/512) + size/512
251 > rdev->data_offset)
252 /* bitmap runs in to data */
253 goto bad_alignment;
254 } else {
255 /* DATA METADATA BITMAP - no problems */
256 }
257 md_super_write(mddev, rdev,
258 rdev->sb_start + offset
259 + page->index * (PAGE_SIZE/512),
260 size,
261 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000262 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700263
264 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800265 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700266 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000267
268 bad_alignment:
NeilBrown4b809912008-07-21 17:05:25 +1000269 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700270}
271
NeilBrown4ad13662007-07-17 04:06:13 -0700272static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700273/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700274 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700275 */
NeilBrown4ad13662007-07-17 04:06:13 -0700276static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700277{
NeilBrownd785a062006-06-26 00:27:48 -0700278 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700279
NeilBrown1ec885c2012-05-22 13:55:10 +1000280 if (bitmap->storage.file == NULL) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700281 switch (write_sb_page(bitmap, page, wait)) {
282 case -EINVAL:
NeilBrownb405fe92012-05-22 13:55:15 +1000283 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownf0d76d72007-07-17 04:06:12 -0700284 }
NeilBrown4ad13662007-07-17 04:06:13 -0700285 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700286
NeilBrown4ad13662007-07-17 04:06:13 -0700287 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800288
NeilBrown4ad13662007-07-17 04:06:13 -0700289 while (bh && bh->b_blocknr) {
290 atomic_inc(&bitmap->pending_writes);
291 set_buffer_locked(bh);
292 set_buffer_mapped(bh);
Jens Axboe721a9602011-03-09 11:56:30 +0100293 submit_bh(WRITE | REQ_SYNC, bh);
NeilBrown4ad13662007-07-17 04:06:13 -0700294 bh = bh->b_this_page;
295 }
NeilBrown32a76272005-06-21 17:17:14 -0700296
NeilBrownac2f40b2010-06-01 19:37:31 +1000297 if (wait)
NeilBrown4ad13662007-07-17 04:06:13 -0700298 wait_event(bitmap->write_wait,
299 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700300 }
NeilBrownb405fe92012-05-22 13:55:15 +1000301 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700302 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700303}
304
NeilBrownd785a062006-06-26 00:27:48 -0700305static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700306{
NeilBrownd785a062006-06-26 00:27:48 -0700307 struct bitmap *bitmap = bh->b_private;
NeilBrownd785a062006-06-26 00:27:48 -0700308
NeilBrownb405fe92012-05-22 13:55:15 +1000309 if (!uptodate)
310 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownd785a062006-06-26 00:27:48 -0700311 if (atomic_dec_and_test(&bitmap->pending_writes))
312 wake_up(&bitmap->write_wait);
313}
314
315/* copied from buffer.c */
316static void
317__clear_page_buffers(struct page *page)
318{
319 ClearPagePrivate(page);
320 set_page_private(page, 0);
321 page_cache_release(page);
322}
323static void free_buffers(struct page *page)
324{
NeilBrown27581e52012-05-22 13:55:08 +1000325 struct buffer_head *bh;
NeilBrownd785a062006-06-26 00:27:48 -0700326
NeilBrown27581e52012-05-22 13:55:08 +1000327 if (!PagePrivate(page))
328 return;
329
330 bh = page_buffers(page);
NeilBrownd785a062006-06-26 00:27:48 -0700331 while (bh) {
332 struct buffer_head *next = bh->b_this_page;
333 free_buffer_head(bh);
334 bh = next;
335 }
336 __clear_page_buffers(page);
337 put_page(page);
338}
339
340/* read a page from a file.
341 * We both read the page, and attach buffers to the page to record the
342 * address of each block (using bmap). These addresses will be used
343 * to write the block later, completely bypassing the filesystem.
344 * This usage is similar to how swap files are handled, and allows us
345 * to write to a file with no concerns of memory allocation failing.
346 */
NeilBrown27581e52012-05-22 13:55:08 +1000347static int read_page(struct file *file, unsigned long index,
348 struct bitmap *bitmap,
349 unsigned long count,
350 struct page *page)
NeilBrownd785a062006-06-26 00:27:48 -0700351{
NeilBrown27581e52012-05-22 13:55:08 +1000352 int ret = 0;
Al Viro496ad9a2013-01-23 17:07:38 -0500353 struct inode *inode = file_inode(file);
NeilBrownd785a062006-06-26 00:27:48 -0700354 struct buffer_head *bh;
355 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700356
NeilBrown36a4e1f2011-10-07 14:23:17 +1100357 pr_debug("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE,
358 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700359
NeilBrownd785a062006-06-26 00:27:48 -0700360 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
361 if (!bh) {
NeilBrown27581e52012-05-22 13:55:08 +1000362 ret = -ENOMEM;
NeilBrownd785a062006-06-26 00:27:48 -0700363 goto out;
364 }
365 attach_page_buffers(page, bh);
366 block = index << (PAGE_SHIFT - inode->i_blkbits);
367 while (bh) {
368 if (count == 0)
369 bh->b_blocknr = 0;
370 else {
371 bh->b_blocknr = bmap(inode, block);
372 if (bh->b_blocknr == 0) {
373 /* Cannot use this file! */
NeilBrown27581e52012-05-22 13:55:08 +1000374 ret = -EINVAL;
NeilBrownd785a062006-06-26 00:27:48 -0700375 goto out;
376 }
377 bh->b_bdev = inode->i_sb->s_bdev;
378 if (count < (1<<inode->i_blkbits))
379 count = 0;
380 else
381 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700382
NeilBrownd785a062006-06-26 00:27:48 -0700383 bh->b_end_io = end_bitmap_write;
384 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700385 atomic_inc(&bitmap->pending_writes);
386 set_buffer_locked(bh);
387 set_buffer_mapped(bh);
388 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700389 }
390 block++;
391 bh = bh->b_this_page;
392 }
NeilBrownd785a062006-06-26 00:27:48 -0700393 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700394
395 wait_event(bitmap->write_wait,
396 atomic_read(&bitmap->pending_writes)==0);
NeilBrownb405fe92012-05-22 13:55:15 +1000397 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown27581e52012-05-22 13:55:08 +1000398 ret = -EIO;
NeilBrown32a76272005-06-21 17:17:14 -0700399out:
NeilBrown27581e52012-05-22 13:55:08 +1000400 if (ret)
401 printk(KERN_ALERT "md: bitmap read error: (%dB @ %llu): %d\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800402 (int)PAGE_SIZE,
403 (unsigned long long)index << PAGE_SHIFT,
NeilBrown27581e52012-05-22 13:55:08 +1000404 ret);
405 return ret;
NeilBrown32a76272005-06-21 17:17:14 -0700406}
407
408/*
409 * bitmap file superblock operations
410 */
411
412/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700413void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700414{
415 bitmap_super_t *sb;
NeilBrown32a76272005-06-21 17:17:14 -0700416
417 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700418 return;
NeilBrownece5cff2009-12-14 12:49:56 +1100419 if (bitmap->mddev->bitmap_info.external)
420 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000421 if (!bitmap->storage.sb_page) /* no superblock */
NeilBrown4ad13662007-07-17 04:06:13 -0700422 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000423 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700424 sb->events = cpu_to_le64(bitmap->mddev->events);
NeilBrown8258c532011-05-11 14:26:30 +1000425 if (bitmap->mddev->events < bitmap->events_cleared)
Neil Browna0da84f2008-06-28 08:31:22 +1000426 /* rocking back to read-only */
427 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown8258c532011-05-11 14:26:30 +1000428 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
429 sb->state = cpu_to_le32(bitmap->flags);
NeilBrown43a70502009-12-14 12:49:55 +1100430 /* Just in case these have been changed via sysfs: */
431 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
432 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownb81a0402012-05-22 13:55:26 +1000433 /* This might have been changed by a reshape */
434 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
435 sb->chunksize = cpu_to_le32(bitmap->mddev->bitmap_info.chunksize);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500436 sb->nodes = cpu_to_le32(bitmap->mddev->bitmap_info.nodes);
NeilBrown1dff2b82012-05-22 13:55:34 +1000437 sb->sectors_reserved = cpu_to_le32(bitmap->mddev->
438 bitmap_info.space);
Cong Wangb2f46e62011-11-28 13:25:44 +0800439 kunmap_atomic(sb);
NeilBrown1ec885c2012-05-22 13:55:10 +1000440 write_page(bitmap, bitmap->storage.sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700441}
442
443/* print out the bitmap file superblock */
444void bitmap_print_sb(struct bitmap *bitmap)
445{
446 bitmap_super_t *sb;
447
NeilBrown1ec885c2012-05-22 13:55:10 +1000448 if (!bitmap || !bitmap->storage.sb_page)
NeilBrown32a76272005-06-21 17:17:14 -0700449 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000450 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700451 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700452 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
453 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
454 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700455 *(__u32 *)(sb->uuid+0),
456 *(__u32 *)(sb->uuid+4),
457 *(__u32 *)(sb->uuid+8),
458 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700459 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700460 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700461 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700462 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700463 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
464 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
465 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
466 printk(KERN_DEBUG " sync size: %llu KB\n",
467 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700468 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
Cong Wangb2f46e62011-11-28 13:25:44 +0800469 kunmap_atomic(sb);
NeilBrown32a76272005-06-21 17:17:14 -0700470}
471
Jonathan Brassow9c810752011-06-08 17:59:30 -0500472/*
473 * bitmap_new_disk_sb
474 * @bitmap
475 *
476 * This function is somewhat the reverse of bitmap_read_sb. bitmap_read_sb
477 * reads and verifies the on-disk bitmap superblock and populates bitmap_info.
478 * This function verifies 'bitmap_info' and populates the on-disk bitmap
479 * structure, which is to be written to disk.
480 *
481 * Returns: 0 on success, -Exxx on error
482 */
483static int bitmap_new_disk_sb(struct bitmap *bitmap)
484{
485 bitmap_super_t *sb;
486 unsigned long chunksize, daemon_sleep, write_behind;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500487
NeilBrown1ec885c2012-05-22 13:55:10 +1000488 bitmap->storage.sb_page = alloc_page(GFP_KERNEL);
Jianpeng Ma582e2e02012-10-11 13:45:36 +1100489 if (bitmap->storage.sb_page == NULL)
490 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000491 bitmap->storage.sb_page->index = 0;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500492
NeilBrown1ec885c2012-05-22 13:55:10 +1000493 sb = kmap_atomic(bitmap->storage.sb_page);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500494
495 sb->magic = cpu_to_le32(BITMAP_MAGIC);
496 sb->version = cpu_to_le32(BITMAP_MAJOR_HI);
497
498 chunksize = bitmap->mddev->bitmap_info.chunksize;
499 BUG_ON(!chunksize);
500 if (!is_power_of_2(chunksize)) {
Cong Wangb2f46e62011-11-28 13:25:44 +0800501 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500502 printk(KERN_ERR "bitmap chunksize not a power of 2\n");
503 return -EINVAL;
504 }
505 sb->chunksize = cpu_to_le32(chunksize);
506
507 daemon_sleep = bitmap->mddev->bitmap_info.daemon_sleep;
508 if (!daemon_sleep ||
509 (daemon_sleep < 1) || (daemon_sleep > MAX_SCHEDULE_TIMEOUT)) {
510 printk(KERN_INFO "Choosing daemon_sleep default (5 sec)\n");
511 daemon_sleep = 5 * HZ;
512 }
513 sb->daemon_sleep = cpu_to_le32(daemon_sleep);
514 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
515
516 /*
517 * FIXME: write_behind for RAID1. If not specified, what
518 * is a good choice? We choose COUNTER_MAX / 2 arbitrarily.
519 */
520 write_behind = bitmap->mddev->bitmap_info.max_write_behind;
521 if (write_behind > COUNTER_MAX)
522 write_behind = COUNTER_MAX / 2;
523 sb->write_behind = cpu_to_le32(write_behind);
524 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
525
526 /* keep the array size field of the bitmap superblock up to date */
527 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
528
529 memcpy(sb->uuid, bitmap->mddev->uuid, 16);
530
NeilBrownb405fe92012-05-22 13:55:15 +1000531 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown84e92342012-05-22 13:55:14 +1000532 sb->state = cpu_to_le32(bitmap->flags);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500533 bitmap->events_cleared = bitmap->mddev->events;
534 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
535
Cong Wangb2f46e62011-11-28 13:25:44 +0800536 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500537
538 return 0;
539}
540
NeilBrown32a76272005-06-21 17:17:14 -0700541/* read the superblock from the bitmap file and initialize some bitmap fields */
542static int bitmap_read_sb(struct bitmap *bitmap)
543{
544 char *reason = NULL;
545 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700546 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700547 unsigned long long events;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500548 int nodes = 0;
NeilBrown1dff2b82012-05-22 13:55:34 +1000549 unsigned long sectors_reserved = 0;
NeilBrown32a76272005-06-21 17:17:14 -0700550 int err = -EINVAL;
NeilBrown27581e52012-05-22 13:55:08 +1000551 struct page *sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700552
NeilBrown1ec885c2012-05-22 13:55:10 +1000553 if (!bitmap->storage.file && !bitmap->mddev->bitmap_info.offset) {
NeilBrownef99bf42012-05-22 13:55:08 +1000554 chunksize = 128 * 1024 * 1024;
555 daemon_sleep = 5 * HZ;
556 write_behind = 0;
NeilBrownb405fe92012-05-22 13:55:15 +1000557 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +1000558 err = 0;
559 goto out_no_sb;
560 }
NeilBrown32a76272005-06-21 17:17:14 -0700561 /* page 0 is the superblock, read it... */
NeilBrown27581e52012-05-22 13:55:08 +1000562 sb_page = alloc_page(GFP_KERNEL);
563 if (!sb_page)
564 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000565 bitmap->storage.sb_page = sb_page;
NeilBrown27581e52012-05-22 13:55:08 +1000566
NeilBrown1ec885c2012-05-22 13:55:10 +1000567 if (bitmap->storage.file) {
568 loff_t isize = i_size_read(bitmap->storage.file->f_mapping->host);
NeilBrownf49d5e62007-01-26 00:57:03 -0800569 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
570
NeilBrown1ec885c2012-05-22 13:55:10 +1000571 err = read_page(bitmap->storage.file, 0,
NeilBrown27581e52012-05-22 13:55:08 +1000572 bitmap, bytes, sb_page);
NeilBrownf49d5e62007-01-26 00:57:03 -0800573 } else {
NeilBrown27581e52012-05-22 13:55:08 +1000574 err = read_sb_page(bitmap->mddev,
575 bitmap->mddev->bitmap_info.offset,
576 sb_page,
577 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700578 }
NeilBrown27581e52012-05-22 13:55:08 +1000579 if (err)
NeilBrown32a76272005-06-21 17:17:14 -0700580 return err;
NeilBrown32a76272005-06-21 17:17:14 -0700581
NeilBrown27581e52012-05-22 13:55:08 +1000582 sb = kmap_atomic(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700583
NeilBrown32a76272005-06-21 17:17:14 -0700584 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100585 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700586 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown1dff2b82012-05-22 13:55:34 +1000587 sectors_reserved = le32_to_cpu(sb->sectors_reserved);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500588 nodes = le32_to_cpu(sb->nodes);
NeilBrown32a76272005-06-21 17:17:14 -0700589
590 /* verify that the bitmap-specific fields are valid */
591 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
592 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800593 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
594 le32_to_cpu(sb->version) > BITMAP_MAJOR_HI)
NeilBrown32a76272005-06-21 17:17:14 -0700595 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100596 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800597 reason = "bitmap chunksize too small";
Jonathan Brassowd7445402011-06-08 18:01:10 -0500598 else if (!is_power_of_2(chunksize))
NeilBrown32a76272005-06-21 17:17:14 -0700599 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100600 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800601 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700602 else if (write_behind > COUNTER_MAX)
603 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700604 if (reason) {
605 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
606 bmname(bitmap), reason);
607 goto out;
608 }
609
610 /* keep the array size field of the bitmap superblock up to date */
611 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
612
NeilBrown278c1ca2012-03-19 12:46:40 +1100613 if (bitmap->mddev->persistent) {
614 /*
615 * We have a persistent array superblock, so compare the
616 * bitmap's UUID and event counter to the mddev's
617 */
618 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
619 printk(KERN_INFO
620 "%s: bitmap superblock UUID mismatch\n",
621 bmname(bitmap));
622 goto out;
623 }
624 events = le64_to_cpu(sb->events);
625 if (events < bitmap->mddev->events) {
626 printk(KERN_INFO
627 "%s: bitmap file is out of date (%llu < %llu) "
628 "-- forcing full recovery\n",
629 bmname(bitmap), events,
630 (unsigned long long) bitmap->mddev->events);
NeilBrownb405fe92012-05-22 13:55:15 +1000631 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown278c1ca2012-03-19 12:46:40 +1100632 }
633 }
NeilBrown32a76272005-06-21 17:17:14 -0700634
NeilBrown32a76272005-06-21 17:17:14 -0700635 /* assign fields using values from superblock */
NeilBrown4f2e6392006-10-21 10:24:09 -0700636 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800637 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
NeilBrownb405fe92012-05-22 13:55:15 +1000638 set_bit(BITMAP_HOSTENDIAN, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -0700639 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500640 strlcpy(bitmap->mddev->bitmap_info.cluster_name, sb->cluster_name, 64);
NeilBrown32a76272005-06-21 17:17:14 -0700641 err = 0;
642out:
Cong Wangb2f46e62011-11-28 13:25:44 +0800643 kunmap_atomic(sb);
NeilBrownef99bf42012-05-22 13:55:08 +1000644out_no_sb:
NeilBrownb405fe92012-05-22 13:55:15 +1000645 if (test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000646 bitmap->events_cleared = bitmap->mddev->events;
647 bitmap->mddev->bitmap_info.chunksize = chunksize;
648 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
649 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500650 bitmap->mddev->bitmap_info.nodes = nodes;
NeilBrown1dff2b82012-05-22 13:55:34 +1000651 if (bitmap->mddev->bitmap_info.space == 0 ||
652 bitmap->mddev->bitmap_info.space > sectors_reserved)
653 bitmap->mddev->bitmap_info.space = sectors_reserved;
NeilBrown32a76272005-06-21 17:17:14 -0700654 if (err)
655 bitmap_print_sb(bitmap);
656 return err;
657}
658
NeilBrown32a76272005-06-21 17:17:14 -0700659/*
660 * general bitmap file operations
661 */
662
NeilBrownece5cff2009-12-14 12:49:56 +1100663/*
664 * on-disk bitmap:
665 *
666 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
667 * file a page at a time. There's a superblock at the start of the file.
668 */
NeilBrown32a76272005-06-21 17:17:14 -0700669/* calculate the index of the page that contains this bit */
NeilBrown1ec885c2012-05-22 13:55:10 +1000670static inline unsigned long file_page_index(struct bitmap_storage *store,
671 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700672{
NeilBrown1ec885c2012-05-22 13:55:10 +1000673 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100674 chunk += sizeof(bitmap_super_t) << 3;
675 return chunk >> PAGE_BIT_SHIFT;
NeilBrown32a76272005-06-21 17:17:14 -0700676}
677
678/* calculate the (bit) offset of this bit within a page */
NeilBrown1ec885c2012-05-22 13:55:10 +1000679static inline unsigned long file_page_offset(struct bitmap_storage *store,
680 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700681{
NeilBrown1ec885c2012-05-22 13:55:10 +1000682 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100683 chunk += sizeof(bitmap_super_t) << 3;
684 return chunk & (PAGE_BITS - 1);
NeilBrown32a76272005-06-21 17:17:14 -0700685}
686
687/*
688 * return a pointer to the page in the filemap that contains the given bit
689 *
NeilBrown32a76272005-06-21 17:17:14 -0700690 */
NeilBrown1ec885c2012-05-22 13:55:10 +1000691static inline struct page *filemap_get_page(struct bitmap_storage *store,
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000692 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700693{
NeilBrown1ec885c2012-05-22 13:55:10 +1000694 if (file_page_index(store, chunk) >= store->file_pages)
NeilBrownac2f40b2010-06-01 19:37:31 +1000695 return NULL;
NeilBrownf2e06c52014-05-28 13:39:23 +1000696 return store->filemap[file_page_index(store, chunk)];
NeilBrown32a76272005-06-21 17:17:14 -0700697}
698
NeilBrownd1244cb2012-05-22 13:55:12 +1000699static int bitmap_storage_alloc(struct bitmap_storage *store,
700 unsigned long chunks, int with_super)
701{
702 int pnum;
703 unsigned long num_pages;
704 unsigned long bytes;
705
706 bytes = DIV_ROUND_UP(chunks, 8);
707 if (with_super)
708 bytes += sizeof(bitmap_super_t);
709
710 num_pages = DIV_ROUND_UP(bytes, PAGE_SIZE);
711
712 store->filemap = kmalloc(sizeof(struct page *)
713 * num_pages, GFP_KERNEL);
714 if (!store->filemap)
715 return -ENOMEM;
716
717 if (with_super && !store->sb_page) {
NeilBrownd60b4792012-05-22 13:55:25 +1000718 store->sb_page = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000719 if (store->sb_page == NULL)
720 return -ENOMEM;
721 store->sb_page->index = 0;
722 }
723 pnum = 0;
724 if (store->sb_page) {
725 store->filemap[0] = store->sb_page;
726 pnum = 1;
727 }
728 for ( ; pnum < num_pages; pnum++) {
NeilBrownd60b4792012-05-22 13:55:25 +1000729 store->filemap[pnum] = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000730 if (!store->filemap[pnum]) {
731 store->file_pages = pnum;
732 return -ENOMEM;
733 }
734 store->filemap[pnum]->index = pnum;
735 }
736 store->file_pages = pnum;
737
738 /* We need 4 bits per page, rounded up to a multiple
739 * of sizeof(unsigned long) */
740 store->filemap_attr = kzalloc(
741 roundup(DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
742 GFP_KERNEL);
743 if (!store->filemap_attr)
744 return -ENOMEM;
745
746 store->bytes = bytes;
747
748 return 0;
749}
750
NeilBrownfae7d322012-05-22 13:55:21 +1000751static void bitmap_file_unmap(struct bitmap_storage *store)
NeilBrown32a76272005-06-21 17:17:14 -0700752{
753 struct page **map, *sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700754 int pages;
NeilBrownfae7d322012-05-22 13:55:21 +1000755 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700756
NeilBrownfae7d322012-05-22 13:55:21 +1000757 file = store->file;
NeilBrown1ec885c2012-05-22 13:55:10 +1000758 map = store->filemap;
NeilBrown1ec885c2012-05-22 13:55:10 +1000759 pages = store->file_pages;
NeilBrown1ec885c2012-05-22 13:55:10 +1000760 sb_page = store->sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700761
762 while (pages--)
NeilBrownece5cff2009-12-14 12:49:56 +1100763 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700764 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700765 kfree(map);
NeilBrownfae7d322012-05-22 13:55:21 +1000766 kfree(store->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700767
NeilBrownd785a062006-06-26 00:27:48 -0700768 if (sb_page)
769 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700770
NeilBrownd785a062006-06-26 00:27:48 -0700771 if (file) {
Al Viro496ad9a2013-01-23 17:07:38 -0500772 struct inode *inode = file_inode(file);
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800773 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700774 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700775 }
NeilBrown32a76272005-06-21 17:17:14 -0700776}
777
NeilBrown32a76272005-06-21 17:17:14 -0700778/*
779 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
780 * then it is no longer reliable, so we stop using it and we mark the file
781 * as failed in the superblock
782 */
783static void bitmap_file_kick(struct bitmap *bitmap)
784{
785 char *path, *ptr = NULL;
786
NeilBrownb405fe92012-05-22 13:55:15 +1000787 if (!test_and_set_bit(BITMAP_STALE, &bitmap->flags)) {
NeilBrown4ad13662007-07-17 04:06:13 -0700788 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700789
NeilBrown1ec885c2012-05-22 13:55:10 +1000790 if (bitmap->storage.file) {
NeilBrown4ad13662007-07-17 04:06:13 -0700791 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
792 if (path)
NeilBrown1ec885c2012-05-22 13:55:10 +1000793 ptr = d_path(&bitmap->storage.file->f_path,
794 path, PAGE_SIZE);
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700795
NeilBrown4ad13662007-07-17 04:06:13 -0700796 printk(KERN_ALERT
797 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700798 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700799
NeilBrown4ad13662007-07-17 04:06:13 -0700800 kfree(path);
801 } else
802 printk(KERN_ALERT
803 "%s: disabling internal bitmap due to errors\n",
804 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700805 }
NeilBrown32a76272005-06-21 17:17:14 -0700806}
807
808enum bitmap_page_attr {
NeilBrownac2f40b2010-06-01 19:37:31 +1000809 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
NeilBrown5a537df2011-09-21 15:37:46 +1000810 BITMAP_PAGE_PENDING = 1, /* there are bits that are being cleaned.
811 * i.e. counter is 1 or 2. */
NeilBrownac2f40b2010-06-01 19:37:31 +1000812 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
NeilBrown32a76272005-06-21 17:17:14 -0700813};
814
NeilBrownd1891222012-05-22 13:55:09 +1000815static inline void set_page_attr(struct bitmap *bitmap, int pnum,
816 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700817{
NeilBrownbdfd1142012-05-22 13:55:22 +1000818 set_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700819}
820
NeilBrownd1891222012-05-22 13:55:09 +1000821static inline void clear_page_attr(struct bitmap *bitmap, int pnum,
822 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700823{
NeilBrownbdfd1142012-05-22 13:55:22 +1000824 clear_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700825}
826
NeilBrownbdfd1142012-05-22 13:55:22 +1000827static inline int test_page_attr(struct bitmap *bitmap, int pnum,
828 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700829{
NeilBrown1ec885c2012-05-22 13:55:10 +1000830 return test_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700831}
832
NeilBrownbdfd1142012-05-22 13:55:22 +1000833static inline int test_and_clear_page_attr(struct bitmap *bitmap, int pnum,
834 enum bitmap_page_attr attr)
835{
836 return test_and_clear_bit((pnum<<2) + attr,
837 bitmap->storage.filemap_attr);
838}
NeilBrown32a76272005-06-21 17:17:14 -0700839/*
840 * bitmap_file_set_bit -- called before performing a write to the md device
841 * to set (and eventually sync) a particular bit in the bitmap file
842 *
843 * we set the bit immediately, then we record the page number so that
844 * when an unplug occurs, we can flush the dirty pages out to disk
845 */
846static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
847{
848 unsigned long bit;
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000849 struct page *page;
NeilBrown32a76272005-06-21 17:17:14 -0700850 void *kaddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000851 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -0700852
NeilBrown1ec885c2012-05-22 13:55:10 +1000853 page = filemap_get_page(&bitmap->storage, chunk);
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000854 if (!page)
855 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000856 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrown32a76272005-06-21 17:17:14 -0700857
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000858 /* set the bit */
Cong Wangb2f46e62011-11-28 13:25:44 +0800859 kaddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000860 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000861 set_bit(bit, kaddr);
862 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000863 set_bit_le(bit, kaddr);
Cong Wangb2f46e62011-11-28 13:25:44 +0800864 kunmap_atomic(kaddr);
NeilBrown36a4e1f2011-10-07 14:23:17 +1100865 pr_debug("set file bit %lu page %lu\n", bit, page->index);
NeilBrown32a76272005-06-21 17:17:14 -0700866 /* record page number so it gets flushed to disk when unplug occurs */
NeilBrownd1891222012-05-22 13:55:09 +1000867 set_page_attr(bitmap, page->index, BITMAP_PAGE_DIRTY);
NeilBrown32a76272005-06-21 17:17:14 -0700868}
869
NeilBrownef99bf42012-05-22 13:55:08 +1000870static void bitmap_file_clear_bit(struct bitmap *bitmap, sector_t block)
871{
872 unsigned long bit;
873 struct page *page;
874 void *paddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000875 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrownef99bf42012-05-22 13:55:08 +1000876
NeilBrown1ec885c2012-05-22 13:55:10 +1000877 page = filemap_get_page(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000878 if (!page)
879 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000880 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000881 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000882 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000883 clear_bit(bit, paddr);
884 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000885 clear_bit_le(bit, paddr);
NeilBrownef99bf42012-05-22 13:55:08 +1000886 kunmap_atomic(paddr);
NeilBrownd1891222012-05-22 13:55:09 +1000887 if (!test_page_attr(bitmap, page->index, BITMAP_PAGE_NEEDWRITE)) {
888 set_page_attr(bitmap, page->index, BITMAP_PAGE_PENDING);
NeilBrownef99bf42012-05-22 13:55:08 +1000889 bitmap->allclean = 0;
890 }
891}
892
NeilBrown32a76272005-06-21 17:17:14 -0700893/* this gets called when the md device is ready to unplug its underlying
894 * (slave) device queues -- before we let any writes go down, we need to
895 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700896void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700897{
NeilBrown74667122012-05-22 13:55:19 +1000898 unsigned long i;
NeilBrownec7a3192006-06-26 00:27:45 -0700899 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700900
NeilBrown62f82fa2012-05-22 13:55:21 +1000901 if (!bitmap || !bitmap->storage.filemap ||
902 test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700903 return;
NeilBrown32a76272005-06-21 17:17:14 -0700904
905 /* look at each page to see if there are any set bits that need to be
906 * flushed out to disk */
NeilBrown1ec885c2012-05-22 13:55:10 +1000907 for (i = 0; i < bitmap->storage.file_pages; i++) {
NeilBrownbdfd1142012-05-22 13:55:22 +1000908 if (!bitmap->storage.filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700909 return;
NeilBrownbdfd1142012-05-22 13:55:22 +1000910 dirty = test_and_clear_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
911 need_write = test_and_clear_page_attr(bitmap, i,
912 BITMAP_PAGE_NEEDWRITE);
913 if (dirty || need_write) {
NeilBrownd1891222012-05-22 13:55:09 +1000914 clear_page_attr(bitmap, i, BITMAP_PAGE_PENDING);
NeilBrownbdfd1142012-05-22 13:55:22 +1000915 write_page(bitmap, bitmap->storage.filemap[i], 0);
916 }
NeilBrown32a76272005-06-21 17:17:14 -0700917 }
NeilBrown4b5060d2014-09-09 14:13:51 +1000918 if (bitmap->storage.file)
919 wait_event(bitmap->write_wait,
920 atomic_read(&bitmap->pending_writes)==0);
921 else
922 md_super_wait(bitmap->mddev);
923
NeilBrownb405fe92012-05-22 13:55:15 +1000924 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrownd785a062006-06-26 00:27:48 -0700925 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700926}
NeilBrownac2f40b2010-06-01 19:37:31 +1000927EXPORT_SYMBOL(bitmap_unplug);
NeilBrown32a76272005-06-21 17:17:14 -0700928
NeilBrown6a079972005-09-09 16:23:44 -0700929static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -0700930/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
931 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
932 * memory mapping of the bitmap file
933 * Special cases:
934 * if there's no bitmap file, or if the bitmap file had been
935 * previously kicked from the array, we mark all the bits as
936 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -0700937 *
938 * We ignore all bits for sectors that end earlier than 'start'.
939 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -0700940 */
NeilBrown6a079972005-09-09 16:23:44 -0700941static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -0700942{
943 unsigned long i, chunks, index, oldindex, bit;
NeilBrown27581e52012-05-22 13:55:08 +1000944 struct page *page = NULL;
NeilBrownd1244cb2012-05-22 13:55:12 +1000945 unsigned long bit_cnt = 0;
NeilBrown32a76272005-06-21 17:17:14 -0700946 struct file *file;
NeilBrownd1244cb2012-05-22 13:55:12 +1000947 unsigned long offset;
NeilBrown32a76272005-06-21 17:17:14 -0700948 int outofdate;
949 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -0800950 void *paddr;
NeilBrown1ec885c2012-05-22 13:55:10 +1000951 struct bitmap_storage *store = &bitmap->storage;
NeilBrown32a76272005-06-21 17:17:14 -0700952
NeilBrown40cffcc2012-05-22 13:55:24 +1000953 chunks = bitmap->counts.chunks;
NeilBrown1ec885c2012-05-22 13:55:10 +1000954 file = store->file;
NeilBrown32a76272005-06-21 17:17:14 -0700955
NeilBrownef99bf42012-05-22 13:55:08 +1000956 if (!file && !bitmap->mddev->bitmap_info.offset) {
957 /* No permanent bitmap - fill with '1s'. */
NeilBrown1ec885c2012-05-22 13:55:10 +1000958 store->filemap = NULL;
959 store->file_pages = 0;
NeilBrownef99bf42012-05-22 13:55:08 +1000960 for (i = 0; i < chunks ; i++) {
961 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +1000962 int needed = ((sector_t)(i+1) << (bitmap->counts.chunkshift)
NeilBrownef99bf42012-05-22 13:55:08 +1000963 >= start);
964 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +1000965 (sector_t)i << bitmap->counts.chunkshift,
NeilBrownef99bf42012-05-22 13:55:08 +1000966 needed);
967 }
968 return 0;
969 }
NeilBrown32a76272005-06-21 17:17:14 -0700970
NeilBrownb405fe92012-05-22 13:55:15 +1000971 outofdate = test_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -0700972 if (outofdate)
973 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
974 "recovery\n", bmname(bitmap));
975
NeilBrownd1244cb2012-05-22 13:55:12 +1000976 if (file && i_size_read(file->f_mapping->host) < store->bytes) {
NeilBrown32a76272005-06-21 17:17:14 -0700977 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
NeilBrownd1244cb2012-05-22 13:55:12 +1000978 bmname(bitmap),
979 (unsigned long) i_size_read(file->f_mapping->host),
980 store->bytes);
NeilBrown4ad13662007-07-17 04:06:13 -0700981 goto err;
NeilBrown32a76272005-06-21 17:17:14 -0700982 }
NeilBrownbc7f77d2005-06-21 17:17:17 -0700983
NeilBrown32a76272005-06-21 17:17:14 -0700984 oldindex = ~0L;
NeilBrownd1244cb2012-05-22 13:55:12 +1000985 offset = 0;
986 if (!bitmap->mddev->bitmap_info.external)
987 offset = sizeof(bitmap_super_t);
NeilBrown32a76272005-06-21 17:17:14 -0700988
989 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -0800990 int b;
NeilBrown1ec885c2012-05-22 13:55:10 +1000991 index = file_page_index(&bitmap->storage, i);
992 bit = file_page_offset(&bitmap->storage, i);
NeilBrown32a76272005-06-21 17:17:14 -0700993 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -0700994 int count;
NeilBrown32a76272005-06-21 17:17:14 -0700995 /* unmap the old page, we're done with it */
NeilBrownd1244cb2012-05-22 13:55:12 +1000996 if (index == store->file_pages-1)
997 count = store->bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -0700998 else
999 count = PAGE_SIZE;
NeilBrown1ec885c2012-05-22 13:55:10 +10001000 page = store->filemap[index];
NeilBrown27581e52012-05-22 13:55:08 +10001001 if (file)
1002 ret = read_page(file, index, bitmap,
1003 count, page);
1004 else
1005 ret = read_sb_page(
1006 bitmap->mddev,
1007 bitmap->mddev->bitmap_info.offset,
1008 page,
1009 index, count);
1010
1011 if (ret)
NeilBrown4ad13662007-07-17 04:06:13 -07001012 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001013
NeilBrown32a76272005-06-21 17:17:14 -07001014 oldindex = index;
NeilBrown32a76272005-06-21 17:17:14 -07001015
1016 if (outofdate) {
1017 /*
1018 * if bitmap is out of date, dirty the
NeilBrownac2f40b2010-06-01 19:37:31 +10001019 * whole page and write it out
NeilBrown32a76272005-06-21 17:17:14 -07001020 */
Cong Wangb2f46e62011-11-28 13:25:44 +08001021 paddr = kmap_atomic(page);
NeilBrownea03aff2006-01-06 00:20:34 -08001022 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001023 PAGE_SIZE - offset);
Cong Wangb2f46e62011-11-28 13:25:44 +08001024 kunmap_atomic(paddr);
NeilBrown4ad13662007-07-17 04:06:13 -07001025 write_page(bitmap, page, 1);
1026
1027 ret = -EIO;
NeilBrownb405fe92012-05-22 13:55:15 +10001028 if (test_bit(BITMAP_WRITE_ERROR,
1029 &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -07001030 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001031 }
NeilBrown32a76272005-06-21 17:17:14 -07001032 }
Cong Wangb2f46e62011-11-28 13:25:44 +08001033 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +10001034 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownea03aff2006-01-06 00:20:34 -08001035 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001036 else
Akinobu Mita6b33aff2011-03-23 16:42:13 -07001037 b = test_bit_le(bit, paddr);
Cong Wangb2f46e62011-11-28 13:25:44 +08001038 kunmap_atomic(paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001039 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001040 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001041 int needed = ((sector_t)(i+1) << bitmap->counts.chunkshift
NeilBrowndb305e52009-05-07 12:49:06 +10001042 >= start);
1043 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001044 (sector_t)i << bitmap->counts.chunkshift,
NeilBrowndb305e52009-05-07 12:49:06 +10001045 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001046 bit_cnt++;
1047 }
NeilBrown27581e52012-05-22 13:55:08 +10001048 offset = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001049 }
1050
NeilBrown32a76272005-06-21 17:17:14 -07001051 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrownd1244cb2012-05-22 13:55:12 +10001052 "read %lu pages, set %lu of %lu bits\n",
NeilBrown1ec885c2012-05-22 13:55:10 +10001053 bmname(bitmap), store->file_pages,
NeilBrownd1244cb2012-05-22 13:55:12 +10001054 bit_cnt, chunks);
NeilBrown32a76272005-06-21 17:17:14 -07001055
NeilBrown4ad13662007-07-17 04:06:13 -07001056 return 0;
1057
1058 err:
1059 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1060 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001061 return ret;
1062}
1063
NeilBrowna654b9d82005-06-21 17:17:27 -07001064void bitmap_write_all(struct bitmap *bitmap)
1065{
1066 /* We don't actually write all bitmap blocks here,
1067 * just flag them as needing to be written
1068 */
NeilBrownec7a3192006-06-26 00:27:45 -07001069 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001070
NeilBrown1ec885c2012-05-22 13:55:10 +10001071 if (!bitmap || !bitmap->storage.filemap)
NeilBrownef99bf42012-05-22 13:55:08 +10001072 return;
NeilBrown1ec885c2012-05-22 13:55:10 +10001073 if (bitmap->storage.file)
NeilBrownef99bf42012-05-22 13:55:08 +10001074 /* Only one copy, so nothing needed */
1075 return;
1076
NeilBrown1ec885c2012-05-22 13:55:10 +10001077 for (i = 0; i < bitmap->storage.file_pages; i++)
NeilBrownd1891222012-05-22 13:55:09 +10001078 set_page_attr(bitmap, i,
NeilBrownec7a3192006-06-26 00:27:45 -07001079 BITMAP_PAGE_NEEDWRITE);
NeilBrown2585f3e2011-09-21 15:37:46 +10001080 bitmap->allclean = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -07001081}
1082
NeilBrown40cffcc2012-05-22 13:55:24 +10001083static void bitmap_count_page(struct bitmap_counts *bitmap,
1084 sector_t offset, int inc)
NeilBrown32a76272005-06-21 17:17:14 -07001085{
NeilBrown61a0d802012-03-19 12:46:41 +11001086 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001087 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1088 bitmap->bp[page].count += inc;
NeilBrown32a76272005-06-21 17:17:14 -07001089 bitmap_checkfree(bitmap, page);
1090}
NeilBrownbf07bb72012-05-22 13:55:06 +10001091
NeilBrown40cffcc2012-05-22 13:55:24 +10001092static void bitmap_set_pending(struct bitmap_counts *bitmap, sector_t offset)
NeilBrownbf07bb72012-05-22 13:55:06 +10001093{
1094 sector_t chunk = offset >> bitmap->chunkshift;
1095 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1096 struct bitmap_page *bp = &bitmap->bp[page];
1097
1098 if (!bp->pending)
1099 bp->pending = 1;
1100}
1101
NeilBrown40cffcc2012-05-22 13:55:24 +10001102static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001103 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001104 int create);
1105
1106/*
1107 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1108 * out to disk
1109 */
1110
NeilBrownfd01b882011-10-11 16:47:53 +11001111void bitmap_daemon_work(struct mddev *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;
NeilBrownbf07bb72012-05-22 13:55:06 +10001115 unsigned long nextpage;
NeilBrown57dab0b2010-10-19 10:03:39 +11001116 sector_t blocks;
NeilBrown40cffcc2012-05-22 13:55:24 +10001117 struct bitmap_counts *counts;
NeilBrown32a76272005-06-21 17:17:14 -07001118
NeilBrownaa5cbd12009-12-14 12:49:46 +11001119 /* Use a mutex to guard daemon_work against
1120 * bitmap_destroy.
1121 */
NeilBrownc3d97142009-12-14 12:49:52 +11001122 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001123 bitmap = mddev->bitmap;
1124 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001125 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001126 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001127 }
NeilBrown42a04b52009-12-14 12:49:53 +11001128 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown2e61ebb2011-12-23 10:17:50 +11001129 + mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001130 goto done;
1131
NeilBrown32a76272005-06-21 17:17:14 -07001132 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001133 if (bitmap->allclean) {
NeilBrown2e61ebb2011-12-23 10:17:50 +11001134 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001135 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001136 }
1137 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001138
NeilBrownbf07bb72012-05-22 13:55:06 +10001139 /* Any file-page which is PENDING now needs to be written.
1140 * So set NEEDWRITE now, then after we make any last-minute changes
1141 * we will write it.
1142 */
NeilBrown1ec885c2012-05-22 13:55:10 +10001143 for (j = 0; j < bitmap->storage.file_pages; j++)
NeilBrownbdfd1142012-05-22 13:55:22 +10001144 if (test_and_clear_page_attr(bitmap, j,
1145 BITMAP_PAGE_PENDING))
NeilBrownd1891222012-05-22 13:55:09 +10001146 set_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001147 BITMAP_PAGE_NEEDWRITE);
NeilBrownbf07bb72012-05-22 13:55:06 +10001148
1149 if (bitmap->need_sync &&
1150 mddev->bitmap_info.external == 0) {
1151 /* Arrange for superblock update as well as
1152 * other changes */
1153 bitmap_super_t *sb;
1154 bitmap->need_sync = 0;
NeilBrown1ec885c2012-05-22 13:55:10 +10001155 if (bitmap->storage.filemap) {
1156 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrownef99bf42012-05-22 13:55:08 +10001157 sb->events_cleared =
1158 cpu_to_le64(bitmap->events_cleared);
1159 kunmap_atomic(sb);
NeilBrownd1891222012-05-22 13:55:09 +10001160 set_page_attr(bitmap, 0,
NeilBrownef99bf42012-05-22 13:55:08 +10001161 BITMAP_PAGE_NEEDWRITE);
1162 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001163 }
1164 /* Now look at the bitmap counters and if any are '2' or '1',
1165 * decrement and handle accordingly.
1166 */
NeilBrown40cffcc2012-05-22 13:55:24 +10001167 counts = &bitmap->counts;
1168 spin_lock_irq(&counts->lock);
NeilBrownbf07bb72012-05-22 13:55:06 +10001169 nextpage = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001170 for (j = 0; j < counts->chunks; j++) {
NeilBrown32a76272005-06-21 17:17:14 -07001171 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001172 sector_t block = (sector_t)j << counts->chunkshift;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001173
NeilBrownbf07bb72012-05-22 13:55:06 +10001174 if (j == nextpage) {
1175 nextpage += PAGE_COUNTER_RATIO;
NeilBrown40cffcc2012-05-22 13:55:24 +10001176 if (!counts->bp[j >> PAGE_COUNTER_SHIFT].pending) {
NeilBrownbf07bb72012-05-22 13:55:06 +10001177 j |= PAGE_COUNTER_MASK;
NeilBrownaa3163f2005-06-21 17:17:22 -07001178 continue;
1179 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001180 counts->bp[j >> PAGE_COUNTER_SHIFT].pending = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001181 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001182 bmc = bitmap_get_counter(counts,
NeilBrownef99bf42012-05-22 13:55:08 +10001183 block,
NeilBrowndb305e52009-05-07 12:49:06 +10001184 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001185
NeilBrownbf07bb72012-05-22 13:55:06 +10001186 if (!bmc) {
1187 j |= PAGE_COUNTER_MASK;
1188 continue;
1189 }
1190 if (*bmc == 1 && !bitmap->need_sync) {
1191 /* We can clear the bit */
NeilBrownbf07bb72012-05-22 13:55:06 +10001192 *bmc = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001193 bitmap_count_page(counts, block, -1);
NeilBrownef99bf42012-05-22 13:55:08 +10001194 bitmap_file_clear_bit(bitmap, block);
NeilBrownbf07bb72012-05-22 13:55:06 +10001195 } else if (*bmc && *bmc <= 2) {
1196 *bmc = 1;
NeilBrown40cffcc2012-05-22 13:55:24 +10001197 bitmap_set_pending(counts, block);
NeilBrown2585f3e2011-09-21 15:37:46 +10001198 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001199 }
NeilBrown32a76272005-06-21 17:17:14 -07001200 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001201 spin_unlock_irq(&counts->lock);
NeilBrown32a76272005-06-21 17:17:14 -07001202
NeilBrownbf07bb72012-05-22 13:55:06 +10001203 /* Now start writeout on any page in NEEDWRITE that isn't DIRTY.
1204 * DIRTY pages need to be written by bitmap_unplug so it can wait
1205 * for them.
1206 * If we find any DIRTY page we stop there and let bitmap_unplug
1207 * handle all the rest. This is important in the case where
1208 * the first blocking holds the superblock and it has been updated.
1209 * We mustn't write any other blocks before the superblock.
1210 */
NeilBrown62f82fa2012-05-22 13:55:21 +10001211 for (j = 0;
1212 j < bitmap->storage.file_pages
1213 && !test_bit(BITMAP_STALE, &bitmap->flags);
1214 j++) {
NeilBrownbf07bb72012-05-22 13:55:06 +10001215
NeilBrownd1891222012-05-22 13:55:09 +10001216 if (test_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001217 BITMAP_PAGE_DIRTY))
1218 /* bitmap_unplug will handle the rest */
1219 break;
NeilBrownbdfd1142012-05-22 13:55:22 +10001220 if (test_and_clear_page_attr(bitmap, j,
1221 BITMAP_PAGE_NEEDWRITE)) {
NeilBrown1ec885c2012-05-22 13:55:10 +10001222 write_page(bitmap, bitmap->storage.filemap[j], 0);
NeilBrownbf07bb72012-05-22 13:55:06 +10001223 }
1224 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001225
NeilBrown7be3dfe2008-03-10 11:43:48 -07001226 done:
NeilBrown8311c292008-03-04 14:29:30 -08001227 if (bitmap->allclean == 0)
NeilBrown2e61ebb2011-12-23 10:17:50 +11001228 mddev->thread->timeout =
1229 mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001230 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001231}
1232
NeilBrown40cffcc2012-05-22 13:55:24 +10001233static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001234 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001235 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001236__releases(bitmap->lock)
1237__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001238{
1239 /* If 'create', we might release the lock and reclaim it.
1240 * The lock must have been taken with interrupts enabled.
1241 * If !create, we don't release the lock.
1242 */
NeilBrown61a0d802012-03-19 12:46:41 +11001243 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001244 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1245 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1246 sector_t csize;
NeilBrownef425672010-06-01 19:37:33 +10001247 int err;
NeilBrown32a76272005-06-21 17:17:14 -07001248
NeilBrownef425672010-06-01 19:37:33 +10001249 err = bitmap_checkpage(bitmap, page, create);
1250
1251 if (bitmap->bp[page].hijacked ||
1252 bitmap->bp[page].map == NULL)
NeilBrown61a0d802012-03-19 12:46:41 +11001253 csize = ((sector_t)1) << (bitmap->chunkshift +
NeilBrownef425672010-06-01 19:37:33 +10001254 PAGE_COUNTER_SHIFT - 1);
1255 else
NeilBrown61a0d802012-03-19 12:46:41 +11001256 csize = ((sector_t)1) << bitmap->chunkshift;
NeilBrownef425672010-06-01 19:37:33 +10001257 *blocks = csize - (offset & (csize - 1));
1258
1259 if (err < 0)
NeilBrown32a76272005-06-21 17:17:14 -07001260 return NULL;
NeilBrownef425672010-06-01 19:37:33 +10001261
NeilBrown32a76272005-06-21 17:17:14 -07001262 /* now locked ... */
1263
1264 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1265 /* should we use the first or second counter field
1266 * of the hijacked pointer? */
1267 int hi = (pageoff > PAGE_COUNTER_MASK);
NeilBrown32a76272005-06-21 17:17:14 -07001268 return &((bitmap_counter_t *)
1269 &bitmap->bp[page].map)[hi];
NeilBrownef425672010-06-01 19:37:33 +10001270 } else /* page is allocated */
NeilBrown32a76272005-06-21 17:17:14 -07001271 return (bitmap_counter_t *)
1272 &(bitmap->bp[page].map[pageoff]);
NeilBrown32a76272005-06-21 17:17:14 -07001273}
1274
NeilBrown4b6d2872005-09-09 16:23:47 -07001275int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001276{
NeilBrownac2f40b2010-06-01 19:37:31 +10001277 if (!bitmap)
1278 return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001279
1280 if (behind) {
Paul Clements696fcd52010-03-08 16:02:37 +11001281 int bw;
NeilBrown4b6d2872005-09-09 16:23:47 -07001282 atomic_inc(&bitmap->behind_writes);
Paul Clements696fcd52010-03-08 16:02:37 +11001283 bw = atomic_read(&bitmap->behind_writes);
1284 if (bw > bitmap->behind_writes_used)
1285 bitmap->behind_writes_used = bw;
1286
NeilBrown36a4e1f2011-10-07 14:23:17 +11001287 pr_debug("inc write-behind count %d/%lu\n",
1288 bw, bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001289 }
1290
NeilBrown32a76272005-06-21 17:17:14 -07001291 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001292 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001293 bitmap_counter_t *bmc;
1294
NeilBrown40cffcc2012-05-22 13:55:24 +10001295 spin_lock_irq(&bitmap->counts.lock);
1296 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001297 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001298 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001299 return 0;
1300 }
1301
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001302 if (unlikely(COUNTER(*bmc) == COUNTER_MAX)) {
Neil Brownda6e1a32007-02-08 14:20:37 -08001303 DEFINE_WAIT(__wait);
1304 /* note that it is safe to do the prepare_to_wait
1305 * after the test as long as we do it before dropping
1306 * the spinlock.
1307 */
1308 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1309 TASK_UNINTERRUPTIBLE);
NeilBrown40cffcc2012-05-22 13:55:24 +10001310 spin_unlock_irq(&bitmap->counts.lock);
NeilBrownf54a9d02012-08-02 08:33:20 +10001311 schedule();
Neil Brownda6e1a32007-02-08 14:20:37 -08001312 finish_wait(&bitmap->overflow_wait, &__wait);
1313 continue;
1314 }
1315
NeilBrownac2f40b2010-06-01 19:37:31 +10001316 switch (*bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001317 case 0:
1318 bitmap_file_set_bit(bitmap, offset);
NeilBrown40cffcc2012-05-22 13:55:24 +10001319 bitmap_count_page(&bitmap->counts, offset, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001320 /* fall through */
1321 case 1:
1322 *bmc = 2;
1323 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001324
NeilBrown32a76272005-06-21 17:17:14 -07001325 (*bmc)++;
1326
NeilBrown40cffcc2012-05-22 13:55:24 +10001327 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001328
1329 offset += blocks;
1330 if (sectors > blocks)
1331 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001332 else
1333 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001334 }
1335 return 0;
1336}
NeilBrownac2f40b2010-06-01 19:37:31 +10001337EXPORT_SYMBOL(bitmap_startwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001338
1339void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001340 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001341{
NeilBrownac2f40b2010-06-01 19:37:31 +10001342 if (!bitmap)
1343 return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001344 if (behind) {
NeilBrowne5551902010-03-31 11:21:44 +11001345 if (atomic_dec_and_test(&bitmap->behind_writes))
1346 wake_up(&bitmap->behind_wait);
NeilBrown36a4e1f2011-10-07 14:23:17 +11001347 pr_debug("dec write-behind count %d/%lu\n",
1348 atomic_read(&bitmap->behind_writes),
1349 bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001350 }
1351
NeilBrown32a76272005-06-21 17:17:14 -07001352 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001353 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001354 unsigned long flags;
1355 bitmap_counter_t *bmc;
1356
NeilBrown40cffcc2012-05-22 13:55:24 +10001357 spin_lock_irqsave(&bitmap->counts.lock, flags);
1358 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001359 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001360 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001361 return;
1362 }
1363
NeilBrown961902c2011-12-23 09:57:48 +11001364 if (success && !bitmap->mddev->degraded &&
Neil Browna0da84f2008-06-28 08:31:22 +10001365 bitmap->events_cleared < bitmap->mddev->events) {
1366 bitmap->events_cleared = bitmap->mddev->events;
1367 bitmap->need_sync = 1;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001368 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001369 }
1370
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001371 if (!success && !NEEDED(*bmc))
NeilBrown32a76272005-06-21 17:17:14 -07001372 *bmc |= NEEDED_MASK;
1373
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001374 if (COUNTER(*bmc) == COUNTER_MAX)
Neil Brownda6e1a32007-02-08 14:20:37 -08001375 wake_up(&bitmap->overflow_wait);
1376
NeilBrown32a76272005-06-21 17:17:14 -07001377 (*bmc)--;
NeilBrown2585f3e2011-09-21 15:37:46 +10001378 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001379 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001380 bitmap->allclean = 0;
1381 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001382 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001383 offset += blocks;
1384 if (sectors > blocks)
1385 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001386 else
1387 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001388 }
1389}
NeilBrownac2f40b2010-06-01 19:37:31 +10001390EXPORT_SYMBOL(bitmap_endwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001391
NeilBrown57dab0b2010-10-19 10:03:39 +11001392static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001393 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001394{
1395 bitmap_counter_t *bmc;
1396 int rv;
1397 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1398 *blocks = 1024;
1399 return 1; /* always resync if no bitmap */
1400 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001401 spin_lock_irq(&bitmap->counts.lock);
1402 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001403 rv = 0;
1404 if (bmc) {
1405 /* locked */
1406 if (RESYNC(*bmc))
1407 rv = 1;
1408 else if (NEEDED(*bmc)) {
1409 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001410 if (!degraded) { /* don't set/clear bits if degraded */
1411 *bmc |= RESYNC_MASK;
1412 *bmc &= ~NEEDED_MASK;
1413 }
NeilBrown32a76272005-06-21 17:17:14 -07001414 }
1415 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001416 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001417 return rv;
1418}
1419
NeilBrown57dab0b2010-10-19 10:03:39 +11001420int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001421 int degraded)
1422{
1423 /* bitmap_start_sync must always report on multiples of whole
1424 * pages, otherwise resync (which is very PAGE_SIZE based) will
1425 * get confused.
1426 * So call __bitmap_start_sync repeatedly (if needed) until
1427 * At least PAGE_SIZE>>9 blocks are covered.
1428 * Return the 'or' of the result.
1429 */
1430 int rv = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001431 sector_t blocks1;
NeilBrown1187cf02009-03-31 14:27:02 +11001432
1433 *blocks = 0;
1434 while (*blocks < (PAGE_SIZE>>9)) {
1435 rv |= __bitmap_start_sync(bitmap, offset,
1436 &blocks1, degraded);
1437 offset += blocks1;
1438 *blocks += blocks1;
1439 }
1440 return rv;
1441}
NeilBrownac2f40b2010-06-01 19:37:31 +10001442EXPORT_SYMBOL(bitmap_start_sync);
NeilBrown1187cf02009-03-31 14:27:02 +11001443
NeilBrown57dab0b2010-10-19 10:03:39 +11001444void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted)
NeilBrown32a76272005-06-21 17:17:14 -07001445{
1446 bitmap_counter_t *bmc;
1447 unsigned long flags;
NeilBrownac2f40b2010-06-01 19:37:31 +10001448
1449 if (bitmap == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001450 *blocks = 1024;
1451 return;
1452 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001453 spin_lock_irqsave(&bitmap->counts.lock, flags);
1454 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001455 if (bmc == NULL)
1456 goto unlock;
1457 /* locked */
NeilBrown32a76272005-06-21 17:17:14 -07001458 if (RESYNC(*bmc)) {
1459 *bmc &= ~RESYNC_MASK;
1460
1461 if (!NEEDED(*bmc) && aborted)
1462 *bmc |= NEEDED_MASK;
1463 else {
NeilBrown2585f3e2011-09-21 15:37:46 +10001464 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001465 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001466 bitmap->allclean = 0;
1467 }
NeilBrown32a76272005-06-21 17:17:14 -07001468 }
1469 }
1470 unlock:
NeilBrown40cffcc2012-05-22 13:55:24 +10001471 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001472}
NeilBrownac2f40b2010-06-01 19:37:31 +10001473EXPORT_SYMBOL(bitmap_end_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001474
1475void bitmap_close_sync(struct bitmap *bitmap)
1476{
1477 /* Sync has finished, and any bitmap chunks that weren't synced
1478 * properly have been aborted. It remains to us to clear the
1479 * RESYNC bit wherever it is still on
1480 */
1481 sector_t sector = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001482 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001483 if (!bitmap)
1484 return;
NeilBrown32a76272005-06-21 17:17:14 -07001485 while (sector < bitmap->mddev->resync_max_sectors) {
1486 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001487 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001488 }
1489}
NeilBrownac2f40b2010-06-01 19:37:31 +10001490EXPORT_SYMBOL(bitmap_close_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001491
NeilBrownb47490c2008-02-06 01:39:50 -08001492void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector)
1493{
1494 sector_t s = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001495 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001496
1497 if (!bitmap)
1498 return;
1499 if (sector == 0) {
1500 bitmap->last_end_sync = jiffies;
1501 return;
1502 }
1503 if (time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001504 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001505 return;
1506 wait_event(bitmap->mddev->recovery_wait,
1507 atomic_read(&bitmap->mddev->recovery_active) == 0);
1508
NeilBrown75d3da42011-01-14 09:14:34 +11001509 bitmap->mddev->curr_resync_completed = sector;
NeilBrown070dc6d2010-08-30 17:33:34 +10001510 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrown40cffcc2012-05-22 13:55:24 +10001511 sector &= ~((1ULL << bitmap->counts.chunkshift) - 1);
NeilBrownb47490c2008-02-06 01:39:50 -08001512 s = 0;
1513 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1514 bitmap_end_sync(bitmap, s, &blocks, 0);
1515 s += blocks;
1516 }
1517 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001518 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001519}
NeilBrownac2f40b2010-06-01 19:37:31 +10001520EXPORT_SYMBOL(bitmap_cond_end_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001521
NeilBrown6a079972005-09-09 16:23:44 -07001522static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001523{
1524 /* For each chunk covered by any of these sectors, set the
NeilBrownef99bf42012-05-22 13:55:08 +10001525 * counter to 2 and possibly set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001526 * be 0 at this point
1527 */
NeilBrown193f1c92005-08-04 12:53:33 -07001528
NeilBrown57dab0b2010-10-19 10:03:39 +11001529 sector_t secs;
NeilBrown193f1c92005-08-04 12:53:33 -07001530 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001531 spin_lock_irq(&bitmap->counts.lock);
1532 bmc = bitmap_get_counter(&bitmap->counts, offset, &secs, 1);
NeilBrown193f1c92005-08-04 12:53:33 -07001533 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001534 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001535 return;
NeilBrown32a76272005-06-21 17:17:14 -07001536 }
NeilBrownac2f40b2010-06-01 19:37:31 +10001537 if (!*bmc) {
NeilBrown915c4202011-12-23 10:17:51 +11001538 *bmc = 2 | (needed ? NEEDED_MASK : 0);
NeilBrown40cffcc2012-05-22 13:55:24 +10001539 bitmap_count_page(&bitmap->counts, offset, 1);
1540 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001541 bitmap->allclean = 0;
NeilBrown193f1c92005-08-04 12:53:33 -07001542 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001543 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001544}
1545
Paul Clements9b1d1da2006-10-03 01:15:49 -07001546/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1547void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1548{
1549 unsigned long chunk;
1550
1551 for (chunk = s; chunk <= e; chunk++) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001552 sector_t sec = (sector_t)chunk << bitmap->counts.chunkshift;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001553 bitmap_set_memory_bits(bitmap, sec, 1);
1554 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001555 if (sec < bitmap->mddev->recovery_cp)
1556 /* We are asserting that the array is dirty,
1557 * so move the recovery_cp address back so
1558 * that it is obvious that it is dirty
1559 */
1560 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001561 }
1562}
1563
NeilBrown32a76272005-06-21 17:17:14 -07001564/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001565 * flush out any pending updates
1566 */
NeilBrownfd01b882011-10-11 16:47:53 +11001567void bitmap_flush(struct mddev *mddev)
NeilBrown6b8b3e82005-08-04 12:53:35 -07001568{
1569 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001570 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001571
1572 if (!bitmap) /* there was no bitmap */
1573 return;
1574
1575 /* run the daemon_work three time to ensure everything is flushed
1576 * that can be
1577 */
NeilBrown1b04be92009-12-14 12:49:53 +11001578 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001579 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001580 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001581 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001582 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001583 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001584 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001585 bitmap_update_sb(bitmap);
1586}
1587
1588/*
NeilBrown32a76272005-06-21 17:17:14 -07001589 * free memory that was allocated
1590 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001591static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001592{
1593 unsigned long k, pages;
1594 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001595
1596 if (!bitmap) /* there was no bitmap */
1597 return;
1598
NeilBrownfae7d322012-05-22 13:55:21 +10001599 /* Shouldn't be needed - but just in case.... */
1600 wait_event(bitmap->write_wait,
1601 atomic_read(&bitmap->pending_writes) == 0);
1602
1603 /* release the bitmap file */
1604 bitmap_file_unmap(&bitmap->storage);
NeilBrown32a76272005-06-21 17:17:14 -07001605
NeilBrown40cffcc2012-05-22 13:55:24 +10001606 bp = bitmap->counts.bp;
1607 pages = bitmap->counts.pages;
NeilBrown32a76272005-06-21 17:17:14 -07001608
1609 /* free all allocated memory */
1610
NeilBrown32a76272005-06-21 17:17:14 -07001611 if (bp) /* deallocate the page memory */
1612 for (k = 0; k < pages; k++)
1613 if (bp[k].map && !bp[k].hijacked)
1614 kfree(bp[k].map);
1615 kfree(bp);
1616 kfree(bitmap);
1617}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001618
NeilBrownfd01b882011-10-11 16:47:53 +11001619void bitmap_destroy(struct mddev *mddev)
NeilBrown3178b0d2005-09-09 16:23:50 -07001620{
1621 struct bitmap *bitmap = mddev->bitmap;
1622
1623 if (!bitmap) /* there was no bitmap */
1624 return;
1625
NeilBrownc3d97142009-12-14 12:49:52 +11001626 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown978a7a42014-12-15 12:56:58 +11001627 spin_lock(&mddev->lock);
NeilBrown3178b0d2005-09-09 16:23:50 -07001628 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrown978a7a42014-12-15 12:56:58 +11001629 spin_unlock(&mddev->lock);
NeilBrownc3d97142009-12-14 12:49:52 +11001630 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001631 if (mddev->thread)
1632 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001633
NeilBrownece5cff2009-12-14 12:49:56 +11001634 if (bitmap->sysfs_can_clear)
1635 sysfs_put(bitmap->sysfs_can_clear);
1636
NeilBrown3178b0d2005-09-09 16:23:50 -07001637 bitmap_free(bitmap);
1638}
NeilBrown32a76272005-06-21 17:17:14 -07001639
1640/*
1641 * initialize the bitmap structure
1642 * if this returns an error, bitmap_destroy must be called to do clean up
1643 */
NeilBrownfd01b882011-10-11 16:47:53 +11001644int bitmap_create(struct mddev *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001645{
1646 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001647 sector_t blocks = mddev->resync_max_sectors;
NeilBrownc3d97142009-12-14 12:49:52 +11001648 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001649 int err;
Tejun Heo324a56e2013-12-11 14:11:53 -05001650 struct kernfs_node *bm = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001651
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001652 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001653
NeilBrownc3d97142009-12-14 12:49:52 +11001654 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001655
NeilBrown9ffae0c2006-01-06 00:20:32 -08001656 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001657 if (!bitmap)
1658 return -ENOMEM;
1659
NeilBrown40cffcc2012-05-22 13:55:24 +10001660 spin_lock_init(&bitmap->counts.lock);
NeilBrownce25c312006-06-26 00:27:49 -07001661 atomic_set(&bitmap->pending_writes, 0);
1662 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001663 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrowne5551902010-03-31 11:21:44 +11001664 init_waitqueue_head(&bitmap->behind_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001665
NeilBrown32a76272005-06-21 17:17:14 -07001666 bitmap->mddev = mddev;
NeilBrown32a76272005-06-21 17:17:14 -07001667
NeilBrown5ff5aff2010-06-01 19:37:32 +10001668 if (mddev->kobj.sd)
Tejun Heo388975c2013-09-11 23:19:13 -04001669 bm = sysfs_get_dirent(mddev->kobj.sd, "bitmap");
NeilBrownece5cff2009-12-14 12:49:56 +11001670 if (bm) {
Tejun Heo388975c2013-09-11 23:19:13 -04001671 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, "can_clear");
NeilBrownece5cff2009-12-14 12:49:56 +11001672 sysfs_put(bm);
1673 } else
1674 bitmap->sysfs_can_clear = NULL;
1675
NeilBrown1ec885c2012-05-22 13:55:10 +10001676 bitmap->storage.file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001677 if (file) {
1678 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001679 /* As future accesses to this file will use bmap,
1680 * and bypass the page cache, we must sync the file
1681 * first.
1682 */
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001683 vfs_fsync(file, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001684 }
NeilBrown42a04b52009-12-14 12:49:53 +11001685 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
Jonathan Brassow9c810752011-06-08 17:59:30 -05001686 if (!mddev->bitmap_info.external) {
1687 /*
1688 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1689 * instructing us to create a new on-disk bitmap instance.
1690 */
1691 if (test_and_clear_bit(MD_ARRAY_FIRST_USE, &mddev->flags))
1692 err = bitmap_new_disk_sb(bitmap);
1693 else
1694 err = bitmap_read_sb(bitmap);
1695 } else {
NeilBrownece5cff2009-12-14 12:49:56 +11001696 err = 0;
1697 if (mddev->bitmap_info.chunksize == 0 ||
1698 mddev->bitmap_info.daemon_sleep == 0)
1699 /* chunksize and time_base need to be
1700 * set first. */
1701 err = -EINVAL;
1702 }
NeilBrown32a76272005-06-21 17:17:14 -07001703 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001704 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001705
NeilBrown624ce4f2009-12-14 12:49:56 +11001706 bitmap->daemon_lastrun = jiffies;
NeilBrownd60b4792012-05-22 13:55:25 +10001707 err = bitmap_resize(bitmap, blocks, mddev->bitmap_info.chunksize, 1);
1708 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001709 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001710
NeilBrown69e51b42010-06-01 19:37:35 +10001711 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
NeilBrownd60b4792012-05-22 13:55:25 +10001712 bitmap->counts.pages, bmname(bitmap));
NeilBrown69e51b42010-06-01 19:37:35 +10001713
1714 mddev->bitmap = bitmap;
NeilBrownb405fe92012-05-22 13:55:15 +10001715 return test_bit(BITMAP_WRITE_ERROR, &bitmap->flags) ? -EIO : 0;
NeilBrown69e51b42010-06-01 19:37:35 +10001716
1717 error:
1718 bitmap_free(bitmap);
1719 return err;
1720}
1721
NeilBrownfd01b882011-10-11 16:47:53 +11001722int bitmap_load(struct mddev *mddev)
NeilBrown69e51b42010-06-01 19:37:35 +10001723{
1724 int err = 0;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001725 sector_t start = 0;
NeilBrown69e51b42010-06-01 19:37:35 +10001726 sector_t sector = 0;
1727 struct bitmap *bitmap = mddev->bitmap;
1728
1729 if (!bitmap)
1730 goto out;
1731
1732 /* Clear out old bitmap info first: Either there is none, or we
1733 * are resuming after someone else has possibly changed things,
1734 * so we should forget old cached info.
1735 * All chunks should be clean, but some might need_sync.
1736 */
1737 while (sector < mddev->resync_max_sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001738 sector_t blocks;
NeilBrown69e51b42010-06-01 19:37:35 +10001739 bitmap_start_sync(bitmap, sector, &blocks, 0);
1740 sector += blocks;
1741 }
1742 bitmap_close_sync(bitmap);
1743
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001744 if (mddev->degraded == 0
1745 || bitmap->events_cleared == mddev->events)
1746 /* no need to keep dirty bits to optimise a
1747 * re-add of a missing device */
1748 start = mddev->recovery_cp;
NeilBrown69e51b42010-06-01 19:37:35 +10001749
NeilBrownafbaa902012-04-12 16:05:06 +10001750 mutex_lock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001751 err = bitmap_init_from_disk(bitmap, start);
NeilBrownafbaa902012-04-12 16:05:06 +10001752 mutex_unlock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001753
NeilBrown32a76272005-06-21 17:17:14 -07001754 if (err)
NeilBrown69e51b42010-06-01 19:37:35 +10001755 goto out;
NeilBrownb405fe92012-05-22 13:55:15 +10001756 clear_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +10001757
1758 /* Kick recovery in case any bits were set */
1759 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
NeilBrown3178b0d2005-09-09 16:23:50 -07001760
NeilBrown1b04be92009-12-14 12:49:53 +11001761 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001762 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001763
NeilBrown4ad13662007-07-17 04:06:13 -07001764 bitmap_update_sb(bitmap);
1765
NeilBrownb405fe92012-05-22 13:55:15 +10001766 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown69e51b42010-06-01 19:37:35 +10001767 err = -EIO;
1768out:
NeilBrown3178b0d2005-09-09 16:23:50 -07001769 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001770}
NeilBrown69e51b42010-06-01 19:37:35 +10001771EXPORT_SYMBOL_GPL(bitmap_load);
NeilBrown32a76272005-06-21 17:17:14 -07001772
NeilBrown57148962012-03-19 12:46:40 +11001773void bitmap_status(struct seq_file *seq, struct bitmap *bitmap)
1774{
1775 unsigned long chunk_kb;
NeilBrown40cffcc2012-05-22 13:55:24 +10001776 struct bitmap_counts *counts;
NeilBrown57148962012-03-19 12:46:40 +11001777
1778 if (!bitmap)
1779 return;
1780
NeilBrown40cffcc2012-05-22 13:55:24 +10001781 counts = &bitmap->counts;
1782
NeilBrown57148962012-03-19 12:46:40 +11001783 chunk_kb = bitmap->mddev->bitmap_info.chunksize >> 10;
1784 seq_printf(seq, "bitmap: %lu/%lu pages [%luKB], "
1785 "%lu%s chunk",
NeilBrown40cffcc2012-05-22 13:55:24 +10001786 counts->pages - counts->missing_pages,
1787 counts->pages,
1788 (counts->pages - counts->missing_pages)
NeilBrown57148962012-03-19 12:46:40 +11001789 << (PAGE_SHIFT - 10),
1790 chunk_kb ? chunk_kb : bitmap->mddev->bitmap_info.chunksize,
1791 chunk_kb ? "KB" : "B");
NeilBrown1ec885c2012-05-22 13:55:10 +10001792 if (bitmap->storage.file) {
NeilBrown57148962012-03-19 12:46:40 +11001793 seq_printf(seq, ", file: ");
NeilBrown1ec885c2012-05-22 13:55:10 +10001794 seq_path(seq, &bitmap->storage.file->f_path, " \t\n");
NeilBrown57148962012-03-19 12:46:40 +11001795 }
1796
1797 seq_printf(seq, "\n");
NeilBrown57148962012-03-19 12:46:40 +11001798}
1799
NeilBrownd60b4792012-05-22 13:55:25 +10001800int bitmap_resize(struct bitmap *bitmap, sector_t blocks,
1801 int chunksize, int init)
1802{
1803 /* If chunk_size is 0, choose an appropriate chunk size.
1804 * Then possibly allocate new storage space.
1805 * Then quiesce, copy bits, replace bitmap, and re-start
1806 *
1807 * This function is called both to set up the initial bitmap
1808 * and to resize the bitmap while the array is active.
1809 * If this happens as a result of the array being resized,
1810 * chunksize will be zero, and we need to choose a suitable
1811 * chunksize, otherwise we use what we are given.
1812 */
1813 struct bitmap_storage store;
1814 struct bitmap_counts old_counts;
1815 unsigned long chunks;
1816 sector_t block;
1817 sector_t old_blocks, new_blocks;
1818 int chunkshift;
1819 int ret = 0;
1820 long pages;
1821 struct bitmap_page *new_bp;
1822
1823 if (chunksize == 0) {
1824 /* If there is enough space, leave the chunk size unchanged,
1825 * else increase by factor of two until there is enough space.
1826 */
1827 long bytes;
1828 long space = bitmap->mddev->bitmap_info.space;
1829
1830 if (space == 0) {
1831 /* We don't know how much space there is, so limit
1832 * to current size - in sectors.
1833 */
1834 bytes = DIV_ROUND_UP(bitmap->counts.chunks, 8);
1835 if (!bitmap->mddev->bitmap_info.external)
1836 bytes += sizeof(bitmap_super_t);
1837 space = DIV_ROUND_UP(bytes, 512);
1838 bitmap->mddev->bitmap_info.space = space;
1839 }
1840 chunkshift = bitmap->counts.chunkshift;
1841 chunkshift--;
1842 do {
1843 /* 'chunkshift' is shift from block size to chunk size */
1844 chunkshift++;
1845 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1846 bytes = DIV_ROUND_UP(chunks, 8);
1847 if (!bitmap->mddev->bitmap_info.external)
1848 bytes += sizeof(bitmap_super_t);
1849 } while (bytes > (space << 9));
1850 } else
1851 chunkshift = ffz(~chunksize) - BITMAP_BLOCK_SHIFT;
1852
1853 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1854 memset(&store, 0, sizeof(store));
1855 if (bitmap->mddev->bitmap_info.offset || bitmap->mddev->bitmap_info.file)
1856 ret = bitmap_storage_alloc(&store, chunks,
1857 !bitmap->mddev->bitmap_info.external);
1858 if (ret)
1859 goto err;
1860
1861 pages = DIV_ROUND_UP(chunks, PAGE_COUNTER_RATIO);
1862
1863 new_bp = kzalloc(pages * sizeof(*new_bp), GFP_KERNEL);
1864 ret = -ENOMEM;
1865 if (!new_bp) {
1866 bitmap_file_unmap(&store);
1867 goto err;
1868 }
1869
1870 if (!init)
1871 bitmap->mddev->pers->quiesce(bitmap->mddev, 1);
1872
1873 store.file = bitmap->storage.file;
1874 bitmap->storage.file = NULL;
1875
1876 if (store.sb_page && bitmap->storage.sb_page)
1877 memcpy(page_address(store.sb_page),
1878 page_address(bitmap->storage.sb_page),
1879 sizeof(bitmap_super_t));
1880 bitmap_file_unmap(&bitmap->storage);
1881 bitmap->storage = store;
1882
1883 old_counts = bitmap->counts;
1884 bitmap->counts.bp = new_bp;
1885 bitmap->counts.pages = pages;
1886 bitmap->counts.missing_pages = pages;
1887 bitmap->counts.chunkshift = chunkshift;
1888 bitmap->counts.chunks = chunks;
1889 bitmap->mddev->bitmap_info.chunksize = 1 << (chunkshift +
1890 BITMAP_BLOCK_SHIFT);
1891
1892 blocks = min(old_counts.chunks << old_counts.chunkshift,
1893 chunks << chunkshift);
1894
1895 spin_lock_irq(&bitmap->counts.lock);
1896 for (block = 0; block < blocks; ) {
1897 bitmap_counter_t *bmc_old, *bmc_new;
1898 int set;
1899
1900 bmc_old = bitmap_get_counter(&old_counts, block,
1901 &old_blocks, 0);
1902 set = bmc_old && NEEDED(*bmc_old);
1903
1904 if (set) {
1905 bmc_new = bitmap_get_counter(&bitmap->counts, block,
1906 &new_blocks, 1);
1907 if (*bmc_new == 0) {
1908 /* need to set on-disk bits too. */
1909 sector_t end = block + new_blocks;
1910 sector_t start = block >> chunkshift;
1911 start <<= chunkshift;
1912 while (start < end) {
1913 bitmap_file_set_bit(bitmap, block);
1914 start += 1 << chunkshift;
1915 }
1916 *bmc_new = 2;
1917 bitmap_count_page(&bitmap->counts,
1918 block, 1);
1919 bitmap_set_pending(&bitmap->counts,
1920 block);
1921 }
1922 *bmc_new |= NEEDED_MASK;
1923 if (new_blocks < old_blocks)
1924 old_blocks = new_blocks;
1925 }
1926 block += old_blocks;
1927 }
1928
1929 if (!init) {
1930 int i;
1931 while (block < (chunks << chunkshift)) {
1932 bitmap_counter_t *bmc;
1933 bmc = bitmap_get_counter(&bitmap->counts, block,
1934 &new_blocks, 1);
1935 if (bmc) {
1936 /* new space. It needs to be resynced, so
1937 * we set NEEDED_MASK.
1938 */
1939 if (*bmc == 0) {
1940 *bmc = NEEDED_MASK | 2;
1941 bitmap_count_page(&bitmap->counts,
1942 block, 1);
1943 bitmap_set_pending(&bitmap->counts,
1944 block);
1945 }
1946 }
1947 block += new_blocks;
1948 }
1949 for (i = 0; i < bitmap->storage.file_pages; i++)
1950 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
1951 }
1952 spin_unlock_irq(&bitmap->counts.lock);
1953
1954 if (!init) {
1955 bitmap_unplug(bitmap);
1956 bitmap->mddev->pers->quiesce(bitmap->mddev, 0);
1957 }
1958 ret = 0;
1959err:
1960 return ret;
1961}
1962EXPORT_SYMBOL_GPL(bitmap_resize);
1963
NeilBrown43a70502009-12-14 12:49:55 +11001964static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001965location_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11001966{
1967 ssize_t len;
NeilBrownac2f40b2010-06-01 19:37:31 +10001968 if (mddev->bitmap_info.file)
NeilBrown43a70502009-12-14 12:49:55 +11001969 len = sprintf(page, "file");
NeilBrownac2f40b2010-06-01 19:37:31 +10001970 else if (mddev->bitmap_info.offset)
NeilBrown43a70502009-12-14 12:49:55 +11001971 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10001972 else
NeilBrown43a70502009-12-14 12:49:55 +11001973 len = sprintf(page, "none");
1974 len += sprintf(page+len, "\n");
1975 return len;
1976}
1977
1978static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11001979location_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11001980{
1981
1982 if (mddev->pers) {
1983 if (!mddev->pers->quiesce)
1984 return -EBUSY;
1985 if (mddev->recovery || mddev->sync_thread)
1986 return -EBUSY;
1987 }
1988
1989 if (mddev->bitmap || mddev->bitmap_info.file ||
1990 mddev->bitmap_info.offset) {
1991 /* bitmap already configured. Only option is to clear it */
1992 if (strncmp(buf, "none", 4) != 0)
1993 return -EBUSY;
1994 if (mddev->pers) {
1995 mddev->pers->quiesce(mddev, 1);
1996 bitmap_destroy(mddev);
1997 mddev->pers->quiesce(mddev, 0);
1998 }
1999 mddev->bitmap_info.offset = 0;
2000 if (mddev->bitmap_info.file) {
2001 struct file *f = mddev->bitmap_info.file;
2002 mddev->bitmap_info.file = NULL;
NeilBrown43a70502009-12-14 12:49:55 +11002003 fput(f);
2004 }
2005 } else {
2006 /* No bitmap, OK to set a location */
2007 long long offset;
2008 if (strncmp(buf, "none", 4) == 0)
2009 /* nothing to be done */;
2010 else if (strncmp(buf, "file:", 5) == 0) {
2011 /* Not supported yet */
2012 return -EINVAL;
2013 } else {
2014 int rv;
2015 if (buf[0] == '+')
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002016 rv = kstrtoll(buf+1, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002017 else
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002018 rv = kstrtoll(buf, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002019 if (rv)
2020 return rv;
2021 if (offset == 0)
2022 return -EINVAL;
NeilBrownece5cff2009-12-14 12:49:56 +11002023 if (mddev->bitmap_info.external == 0 &&
2024 mddev->major_version == 0 &&
NeilBrown43a70502009-12-14 12:49:55 +11002025 offset != mddev->bitmap_info.default_offset)
2026 return -EINVAL;
2027 mddev->bitmap_info.offset = offset;
2028 if (mddev->pers) {
2029 mddev->pers->quiesce(mddev, 1);
2030 rv = bitmap_create(mddev);
NeilBrown4474ca42012-03-19 12:46:37 +11002031 if (!rv)
2032 rv = bitmap_load(mddev);
NeilBrown43a70502009-12-14 12:49:55 +11002033 if (rv) {
2034 bitmap_destroy(mddev);
2035 mddev->bitmap_info.offset = 0;
2036 }
2037 mddev->pers->quiesce(mddev, 0);
2038 if (rv)
2039 return rv;
2040 }
2041 }
2042 }
2043 if (!mddev->external) {
2044 /* Ensure new bitmap info is stored in
2045 * metadata promptly.
2046 */
2047 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2048 md_wakeup_thread(mddev->thread);
2049 }
2050 return len;
2051}
2052
2053static struct md_sysfs_entry bitmap_location =
2054__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
2055
NeilBrown6409bb02012-05-22 13:55:07 +10002056/* 'bitmap/space' is the space available at 'location' for the
2057 * bitmap. This allows the kernel to know when it is safe to
2058 * resize the bitmap to match a resized array.
2059 */
2060static ssize_t
2061space_show(struct mddev *mddev, char *page)
2062{
2063 return sprintf(page, "%lu\n", mddev->bitmap_info.space);
2064}
2065
2066static ssize_t
2067space_store(struct mddev *mddev, const char *buf, size_t len)
2068{
2069 unsigned long sectors;
2070 int rv;
2071
2072 rv = kstrtoul(buf, 10, &sectors);
2073 if (rv)
2074 return rv;
2075
2076 if (sectors == 0)
2077 return -EINVAL;
2078
2079 if (mddev->bitmap &&
NeilBrown9b1215c2012-05-22 13:55:11 +10002080 sectors < (mddev->bitmap->storage.bytes + 511) >> 9)
NeilBrown6409bb02012-05-22 13:55:07 +10002081 return -EFBIG; /* Bitmap is too big for this small space */
2082
2083 /* could make sure it isn't too big, but that isn't really
2084 * needed - user-space should be careful.
2085 */
2086 mddev->bitmap_info.space = sectors;
2087 return len;
2088}
2089
2090static struct md_sysfs_entry bitmap_space =
2091__ATTR(space, S_IRUGO|S_IWUSR, space_show, space_store);
2092
NeilBrown43a70502009-12-14 12:49:55 +11002093static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002094timeout_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002095{
2096 ssize_t len;
2097 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
2098 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
NeilBrownac2f40b2010-06-01 19:37:31 +10002099
NeilBrown43a70502009-12-14 12:49:55 +11002100 len = sprintf(page, "%lu", secs);
2101 if (jifs)
2102 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
2103 len += sprintf(page+len, "\n");
2104 return len;
2105}
2106
2107static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002108timeout_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002109{
2110 /* timeout can be set at any time */
2111 unsigned long timeout;
2112 int rv = strict_strtoul_scaled(buf, &timeout, 4);
2113 if (rv)
2114 return rv;
2115
2116 /* just to make sure we don't overflow... */
2117 if (timeout >= LONG_MAX / HZ)
2118 return -EINVAL;
2119
2120 timeout = timeout * HZ / 10000;
2121
2122 if (timeout >= MAX_SCHEDULE_TIMEOUT)
2123 timeout = MAX_SCHEDULE_TIMEOUT-1;
2124 if (timeout < 1)
2125 timeout = 1;
2126 mddev->bitmap_info.daemon_sleep = timeout;
2127 if (mddev->thread) {
2128 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
2129 * the bitmap is all clean and we don't need to
2130 * adjust the timeout right now
2131 */
2132 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
2133 mddev->thread->timeout = timeout;
2134 md_wakeup_thread(mddev->thread);
2135 }
2136 }
2137 return len;
2138}
2139
2140static struct md_sysfs_entry bitmap_timeout =
2141__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
2142
2143static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002144backlog_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002145{
2146 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
2147}
2148
2149static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002150backlog_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002151{
2152 unsigned long backlog;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002153 int rv = kstrtoul(buf, 10, &backlog);
NeilBrown43a70502009-12-14 12:49:55 +11002154 if (rv)
2155 return rv;
2156 if (backlog > COUNTER_MAX)
2157 return -EINVAL;
2158 mddev->bitmap_info.max_write_behind = backlog;
2159 return len;
2160}
2161
2162static struct md_sysfs_entry bitmap_backlog =
2163__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
2164
2165static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002166chunksize_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002167{
2168 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
2169}
2170
2171static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002172chunksize_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002173{
2174 /* Can only be changed when no bitmap is active */
2175 int rv;
2176 unsigned long csize;
2177 if (mddev->bitmap)
2178 return -EBUSY;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002179 rv = kstrtoul(buf, 10, &csize);
NeilBrown43a70502009-12-14 12:49:55 +11002180 if (rv)
2181 return rv;
2182 if (csize < 512 ||
2183 !is_power_of_2(csize))
2184 return -EINVAL;
2185 mddev->bitmap_info.chunksize = csize;
2186 return len;
2187}
2188
2189static struct md_sysfs_entry bitmap_chunksize =
2190__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2191
NeilBrownfd01b882011-10-11 16:47:53 +11002192static ssize_t metadata_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002193{
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002194 if (mddev_is_clustered(mddev))
2195 return sprintf(page, "clustered\n");
NeilBrownece5cff2009-12-14 12:49:56 +11002196 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2197 ? "external" : "internal"));
2198}
2199
NeilBrownfd01b882011-10-11 16:47:53 +11002200static ssize_t metadata_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002201{
2202 if (mddev->bitmap ||
2203 mddev->bitmap_info.file ||
2204 mddev->bitmap_info.offset)
2205 return -EBUSY;
2206 if (strncmp(buf, "external", 8) == 0)
2207 mddev->bitmap_info.external = 1;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002208 else if ((strncmp(buf, "internal", 8) == 0) ||
2209 (strncmp(buf, "clustered", 9) == 0))
NeilBrownece5cff2009-12-14 12:49:56 +11002210 mddev->bitmap_info.external = 0;
2211 else
2212 return -EINVAL;
2213 return len;
2214}
2215
2216static struct md_sysfs_entry bitmap_metadata =
2217__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2218
NeilBrownfd01b882011-10-11 16:47:53 +11002219static ssize_t can_clear_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002220{
2221 int len;
NeilBrownb7b17c92014-12-15 12:56:59 +11002222 spin_lock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002223 if (mddev->bitmap)
2224 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2225 "false" : "true"));
2226 else
2227 len = sprintf(page, "\n");
NeilBrownb7b17c92014-12-15 12:56:59 +11002228 spin_unlock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002229 return len;
2230}
2231
NeilBrownfd01b882011-10-11 16:47:53 +11002232static ssize_t can_clear_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002233{
2234 if (mddev->bitmap == NULL)
2235 return -ENOENT;
2236 if (strncmp(buf, "false", 5) == 0)
2237 mddev->bitmap->need_sync = 1;
2238 else if (strncmp(buf, "true", 4) == 0) {
2239 if (mddev->degraded)
2240 return -EBUSY;
2241 mddev->bitmap->need_sync = 0;
2242 } else
2243 return -EINVAL;
2244 return len;
2245}
2246
2247static struct md_sysfs_entry bitmap_can_clear =
2248__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2249
Paul Clements696fcd52010-03-08 16:02:37 +11002250static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002251behind_writes_used_show(struct mddev *mddev, char *page)
Paul Clements696fcd52010-03-08 16:02:37 +11002252{
NeilBrownb7b17c92014-12-15 12:56:59 +11002253 ssize_t ret;
2254 spin_lock(&mddev->lock);
Paul Clements696fcd52010-03-08 16:02:37 +11002255 if (mddev->bitmap == NULL)
NeilBrownb7b17c92014-12-15 12:56:59 +11002256 ret = sprintf(page, "0\n");
2257 else
2258 ret = sprintf(page, "%lu\n",
2259 mddev->bitmap->behind_writes_used);
2260 spin_unlock(&mddev->lock);
2261 return ret;
Paul Clements696fcd52010-03-08 16:02:37 +11002262}
2263
2264static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002265behind_writes_used_reset(struct mddev *mddev, const char *buf, size_t len)
Paul Clements696fcd52010-03-08 16:02:37 +11002266{
2267 if (mddev->bitmap)
2268 mddev->bitmap->behind_writes_used = 0;
2269 return len;
2270}
2271
2272static struct md_sysfs_entry max_backlog_used =
2273__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2274 behind_writes_used_show, behind_writes_used_reset);
2275
NeilBrown43a70502009-12-14 12:49:55 +11002276static struct attribute *md_bitmap_attrs[] = {
2277 &bitmap_location.attr,
NeilBrown6409bb02012-05-22 13:55:07 +10002278 &bitmap_space.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002279 &bitmap_timeout.attr,
2280 &bitmap_backlog.attr,
2281 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002282 &bitmap_metadata.attr,
2283 &bitmap_can_clear.attr,
Paul Clements696fcd52010-03-08 16:02:37 +11002284 &max_backlog_used.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002285 NULL
2286};
2287struct attribute_group md_bitmap_group = {
2288 .name = "bitmap",
2289 .attrs = md_bitmap_attrs,
2290};
2291