blob: d80cce499a56e595d1f2679170124ca5fc620315 [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.
NeilBrown8532e342015-05-20 15:05:09 +1000180 *
181 * Note that if entered with 'rdev == NULL' to start at the
182 * beginning, we temporarily assign 'rdev' to an address which
183 * isn't really an rdev, but which can be used by
184 * list_for_each_entry_continue_rcu() to find the first entry.
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000185 */
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000186 rcu_read_lock();
187 if (rdev == NULL)
188 /* start at the beginning */
NeilBrown8532e342015-05-20 15:05:09 +1000189 rdev = list_entry(&mddev->disks, struct md_rdev, same_set);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000190 else {
191 /* release the previous rdev and start from there. */
192 rdev_dec_pending(rdev, mddev);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000193 }
Michael Wangfd177482012-10-11 13:43:21 +1100194 list_for_each_entry_continue_rcu(rdev, &mddev->disks, same_set) {
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000195 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000196 !test_bit(Faulty, &rdev->flags)) {
197 /* this is a usable devices */
198 atomic_inc(&rdev->nr_pending);
199 rcu_read_unlock();
200 return rdev;
201 }
202 }
203 rcu_read_unlock();
204 return NULL;
205}
206
NeilBrownab6085c2007-05-23 13:58:10 -0700207static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700208{
NeilBrown3cb03002011-10-11 16:45:26 +1100209 struct md_rdev *rdev = NULL;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100210 struct block_device *bdev;
NeilBrownfd01b882011-10-11 16:47:53 +1100211 struct mddev *mddev = bitmap->mddev;
NeilBrown1ec885c2012-05-22 13:55:10 +1000212 struct bitmap_storage *store = &bitmap->storage;
NeilBrowna654b9d82005-06-21 17:17:27 -0700213
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000214 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000215 int size = PAGE_SIZE;
216 loff_t offset = mddev->bitmap_info.offset;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100217
218 bdev = (rdev->meta_bdev) ? rdev->meta_bdev : rdev->bdev;
219
NeilBrown9b1215c2012-05-22 13:55:11 +1000220 if (page->index == store->file_pages-1) {
221 int last_page_size = store->bytes & (PAGE_SIZE-1);
222 if (last_page_size == 0)
223 last_page_size = PAGE_SIZE;
224 size = roundup(last_page_size,
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100225 bdev_logical_block_size(bdev));
NeilBrown9b1215c2012-05-22 13:55:11 +1000226 }
NeilBrownac2f40b2010-06-01 19:37:31 +1000227 /* Just make sure we aren't corrupting data or
228 * metadata
229 */
230 if (mddev->external) {
231 /* Bitmap could be anywhere. */
232 if (rdev->sb_start + offset + (page->index
233 * (PAGE_SIZE/512))
234 > rdev->data_offset
235 &&
236 rdev->sb_start + offset
237 < (rdev->data_offset + mddev->dev_sectors
238 + (PAGE_SIZE/512)))
239 goto bad_alignment;
240 } else if (offset < 0) {
241 /* DATA BITMAP METADATA */
242 if (offset
243 + (long)(page->index * (PAGE_SIZE/512))
244 + size/512 > 0)
245 /* bitmap runs in to metadata */
246 goto bad_alignment;
247 if (rdev->data_offset + mddev->dev_sectors
248 > rdev->sb_start + offset)
249 /* data runs in to bitmap */
250 goto bad_alignment;
251 } else if (rdev->sb_start < rdev->data_offset) {
252 /* METADATA BITMAP DATA */
253 if (rdev->sb_start
254 + offset
255 + page->index*(PAGE_SIZE/512) + size/512
256 > rdev->data_offset)
257 /* bitmap runs in to data */
258 goto bad_alignment;
259 } else {
260 /* DATA METADATA BITMAP - no problems */
261 }
262 md_super_write(mddev, rdev,
263 rdev->sb_start + offset
264 + page->index * (PAGE_SIZE/512),
265 size,
266 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000267 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700268
269 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800270 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700271 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000272
273 bad_alignment:
NeilBrown4b809912008-07-21 17:05:25 +1000274 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700275}
276
NeilBrown4ad13662007-07-17 04:06:13 -0700277static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700278/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700279 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700280 */
NeilBrown4ad13662007-07-17 04:06:13 -0700281static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700282{
NeilBrownd785a062006-06-26 00:27:48 -0700283 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700284
NeilBrown1ec885c2012-05-22 13:55:10 +1000285 if (bitmap->storage.file == NULL) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700286 switch (write_sb_page(bitmap, page, wait)) {
287 case -EINVAL:
NeilBrownb405fe92012-05-22 13:55:15 +1000288 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownf0d76d72007-07-17 04:06:12 -0700289 }
NeilBrown4ad13662007-07-17 04:06:13 -0700290 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700291
NeilBrown4ad13662007-07-17 04:06:13 -0700292 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800293
NeilBrown4ad13662007-07-17 04:06:13 -0700294 while (bh && bh->b_blocknr) {
295 atomic_inc(&bitmap->pending_writes);
296 set_buffer_locked(bh);
297 set_buffer_mapped(bh);
Jens Axboe721a9602011-03-09 11:56:30 +0100298 submit_bh(WRITE | REQ_SYNC, bh);
NeilBrown4ad13662007-07-17 04:06:13 -0700299 bh = bh->b_this_page;
300 }
NeilBrown32a76272005-06-21 17:17:14 -0700301
NeilBrownac2f40b2010-06-01 19:37:31 +1000302 if (wait)
NeilBrown4ad13662007-07-17 04:06:13 -0700303 wait_event(bitmap->write_wait,
304 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700305 }
NeilBrownb405fe92012-05-22 13:55:15 +1000306 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700307 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700308}
309
NeilBrownd785a062006-06-26 00:27:48 -0700310static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700311{
NeilBrownd785a062006-06-26 00:27:48 -0700312 struct bitmap *bitmap = bh->b_private;
NeilBrownd785a062006-06-26 00:27:48 -0700313
NeilBrownb405fe92012-05-22 13:55:15 +1000314 if (!uptodate)
315 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownd785a062006-06-26 00:27:48 -0700316 if (atomic_dec_and_test(&bitmap->pending_writes))
317 wake_up(&bitmap->write_wait);
318}
319
320/* copied from buffer.c */
321static void
322__clear_page_buffers(struct page *page)
323{
324 ClearPagePrivate(page);
325 set_page_private(page, 0);
326 page_cache_release(page);
327}
328static void free_buffers(struct page *page)
329{
NeilBrown27581e52012-05-22 13:55:08 +1000330 struct buffer_head *bh;
NeilBrownd785a062006-06-26 00:27:48 -0700331
NeilBrown27581e52012-05-22 13:55:08 +1000332 if (!PagePrivate(page))
333 return;
334
335 bh = page_buffers(page);
NeilBrownd785a062006-06-26 00:27:48 -0700336 while (bh) {
337 struct buffer_head *next = bh->b_this_page;
338 free_buffer_head(bh);
339 bh = next;
340 }
341 __clear_page_buffers(page);
342 put_page(page);
343}
344
345/* read a page from a file.
346 * We both read the page, and attach buffers to the page to record the
347 * address of each block (using bmap). These addresses will be used
348 * to write the block later, completely bypassing the filesystem.
349 * This usage is similar to how swap files are handled, and allows us
350 * to write to a file with no concerns of memory allocation failing.
351 */
NeilBrown27581e52012-05-22 13:55:08 +1000352static int read_page(struct file *file, unsigned long index,
353 struct bitmap *bitmap,
354 unsigned long count,
355 struct page *page)
NeilBrownd785a062006-06-26 00:27:48 -0700356{
NeilBrown27581e52012-05-22 13:55:08 +1000357 int ret = 0;
Al Viro496ad9a2013-01-23 17:07:38 -0500358 struct inode *inode = file_inode(file);
NeilBrownd785a062006-06-26 00:27:48 -0700359 struct buffer_head *bh;
360 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700361
NeilBrown36a4e1f2011-10-07 14:23:17 +1100362 pr_debug("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE,
363 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700364
NeilBrownd785a062006-06-26 00:27:48 -0700365 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
366 if (!bh) {
NeilBrown27581e52012-05-22 13:55:08 +1000367 ret = -ENOMEM;
NeilBrownd785a062006-06-26 00:27:48 -0700368 goto out;
369 }
370 attach_page_buffers(page, bh);
371 block = index << (PAGE_SHIFT - inode->i_blkbits);
372 while (bh) {
373 if (count == 0)
374 bh->b_blocknr = 0;
375 else {
376 bh->b_blocknr = bmap(inode, block);
377 if (bh->b_blocknr == 0) {
378 /* Cannot use this file! */
NeilBrown27581e52012-05-22 13:55:08 +1000379 ret = -EINVAL;
NeilBrownd785a062006-06-26 00:27:48 -0700380 goto out;
381 }
382 bh->b_bdev = inode->i_sb->s_bdev;
383 if (count < (1<<inode->i_blkbits))
384 count = 0;
385 else
386 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700387
NeilBrownd785a062006-06-26 00:27:48 -0700388 bh->b_end_io = end_bitmap_write;
389 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700390 atomic_inc(&bitmap->pending_writes);
391 set_buffer_locked(bh);
392 set_buffer_mapped(bh);
393 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700394 }
395 block++;
396 bh = bh->b_this_page;
397 }
NeilBrownd785a062006-06-26 00:27:48 -0700398 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700399
400 wait_event(bitmap->write_wait,
401 atomic_read(&bitmap->pending_writes)==0);
NeilBrownb405fe92012-05-22 13:55:15 +1000402 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown27581e52012-05-22 13:55:08 +1000403 ret = -EIO;
NeilBrown32a76272005-06-21 17:17:14 -0700404out:
NeilBrown27581e52012-05-22 13:55:08 +1000405 if (ret)
406 printk(KERN_ALERT "md: bitmap read error: (%dB @ %llu): %d\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800407 (int)PAGE_SIZE,
408 (unsigned long long)index << PAGE_SHIFT,
NeilBrown27581e52012-05-22 13:55:08 +1000409 ret);
410 return ret;
NeilBrown32a76272005-06-21 17:17:14 -0700411}
412
413/*
414 * bitmap file superblock operations
415 */
416
417/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700418void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700419{
420 bitmap_super_t *sb;
NeilBrown32a76272005-06-21 17:17:14 -0700421
422 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700423 return;
NeilBrownece5cff2009-12-14 12:49:56 +1100424 if (bitmap->mddev->bitmap_info.external)
425 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000426 if (!bitmap->storage.sb_page) /* no superblock */
NeilBrown4ad13662007-07-17 04:06:13 -0700427 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000428 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700429 sb->events = cpu_to_le64(bitmap->mddev->events);
NeilBrown8258c532011-05-11 14:26:30 +1000430 if (bitmap->mddev->events < bitmap->events_cleared)
Neil Browna0da84f2008-06-28 08:31:22 +1000431 /* rocking back to read-only */
432 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown8258c532011-05-11 14:26:30 +1000433 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
434 sb->state = cpu_to_le32(bitmap->flags);
NeilBrown43a70502009-12-14 12:49:55 +1100435 /* Just in case these have been changed via sysfs: */
436 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
437 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownb81a0402012-05-22 13:55:26 +1000438 /* This might have been changed by a reshape */
439 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
440 sb->chunksize = cpu_to_le32(bitmap->mddev->bitmap_info.chunksize);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500441 sb->nodes = cpu_to_le32(bitmap->mddev->bitmap_info.nodes);
NeilBrown1dff2b82012-05-22 13:55:34 +1000442 sb->sectors_reserved = cpu_to_le32(bitmap->mddev->
443 bitmap_info.space);
Cong Wangb2f46e62011-11-28 13:25:44 +0800444 kunmap_atomic(sb);
NeilBrown1ec885c2012-05-22 13:55:10 +1000445 write_page(bitmap, bitmap->storage.sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700446}
447
448/* print out the bitmap file superblock */
449void bitmap_print_sb(struct bitmap *bitmap)
450{
451 bitmap_super_t *sb;
452
NeilBrown1ec885c2012-05-22 13:55:10 +1000453 if (!bitmap || !bitmap->storage.sb_page)
NeilBrown32a76272005-06-21 17:17:14 -0700454 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000455 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700456 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700457 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
458 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
459 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700460 *(__u32 *)(sb->uuid+0),
461 *(__u32 *)(sb->uuid+4),
462 *(__u32 *)(sb->uuid+8),
463 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700464 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700465 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700466 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700467 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700468 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
469 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
470 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
471 printk(KERN_DEBUG " sync size: %llu KB\n",
472 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700473 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
Cong Wangb2f46e62011-11-28 13:25:44 +0800474 kunmap_atomic(sb);
NeilBrown32a76272005-06-21 17:17:14 -0700475}
476
Jonathan Brassow9c810752011-06-08 17:59:30 -0500477/*
478 * bitmap_new_disk_sb
479 * @bitmap
480 *
481 * This function is somewhat the reverse of bitmap_read_sb. bitmap_read_sb
482 * reads and verifies the on-disk bitmap superblock and populates bitmap_info.
483 * This function verifies 'bitmap_info' and populates the on-disk bitmap
484 * structure, which is to be written to disk.
485 *
486 * Returns: 0 on success, -Exxx on error
487 */
488static int bitmap_new_disk_sb(struct bitmap *bitmap)
489{
490 bitmap_super_t *sb;
491 unsigned long chunksize, daemon_sleep, write_behind;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500492
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500493 bitmap->storage.sb_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
Jianpeng Ma582e2e02012-10-11 13:45:36 +1100494 if (bitmap->storage.sb_page == NULL)
495 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000496 bitmap->storage.sb_page->index = 0;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500497
NeilBrown1ec885c2012-05-22 13:55:10 +1000498 sb = kmap_atomic(bitmap->storage.sb_page);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500499
500 sb->magic = cpu_to_le32(BITMAP_MAGIC);
501 sb->version = cpu_to_le32(BITMAP_MAJOR_HI);
502
503 chunksize = bitmap->mddev->bitmap_info.chunksize;
504 BUG_ON(!chunksize);
505 if (!is_power_of_2(chunksize)) {
Cong Wangb2f46e62011-11-28 13:25:44 +0800506 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500507 printk(KERN_ERR "bitmap chunksize not a power of 2\n");
508 return -EINVAL;
509 }
510 sb->chunksize = cpu_to_le32(chunksize);
511
512 daemon_sleep = bitmap->mddev->bitmap_info.daemon_sleep;
513 if (!daemon_sleep ||
514 (daemon_sleep < 1) || (daemon_sleep > MAX_SCHEDULE_TIMEOUT)) {
515 printk(KERN_INFO "Choosing daemon_sleep default (5 sec)\n");
516 daemon_sleep = 5 * HZ;
517 }
518 sb->daemon_sleep = cpu_to_le32(daemon_sleep);
519 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
520
521 /*
522 * FIXME: write_behind for RAID1. If not specified, what
523 * is a good choice? We choose COUNTER_MAX / 2 arbitrarily.
524 */
525 write_behind = bitmap->mddev->bitmap_info.max_write_behind;
526 if (write_behind > COUNTER_MAX)
527 write_behind = COUNTER_MAX / 2;
528 sb->write_behind = cpu_to_le32(write_behind);
529 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
530
531 /* keep the array size field of the bitmap superblock up to date */
532 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
533
534 memcpy(sb->uuid, bitmap->mddev->uuid, 16);
535
NeilBrownb405fe92012-05-22 13:55:15 +1000536 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown84e92342012-05-22 13:55:14 +1000537 sb->state = cpu_to_le32(bitmap->flags);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500538 bitmap->events_cleared = bitmap->mddev->events;
539 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500540 bitmap->mddev->bitmap_info.nodes = 0;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500541
Cong Wangb2f46e62011-11-28 13:25:44 +0800542 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500543
544 return 0;
545}
546
NeilBrown32a76272005-06-21 17:17:14 -0700547/* read the superblock from the bitmap file and initialize some bitmap fields */
548static int bitmap_read_sb(struct bitmap *bitmap)
549{
550 char *reason = NULL;
551 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700552 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700553 unsigned long long events;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500554 int nodes = 0;
NeilBrown1dff2b82012-05-22 13:55:34 +1000555 unsigned long sectors_reserved = 0;
NeilBrown32a76272005-06-21 17:17:14 -0700556 int err = -EINVAL;
NeilBrown27581e52012-05-22 13:55:08 +1000557 struct page *sb_page;
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000558 loff_t offset = bitmap->mddev->bitmap_info.offset;
NeilBrown32a76272005-06-21 17:17:14 -0700559
NeilBrown1ec885c2012-05-22 13:55:10 +1000560 if (!bitmap->storage.file && !bitmap->mddev->bitmap_info.offset) {
NeilBrownef99bf42012-05-22 13:55:08 +1000561 chunksize = 128 * 1024 * 1024;
562 daemon_sleep = 5 * HZ;
563 write_behind = 0;
NeilBrownb405fe92012-05-22 13:55:15 +1000564 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +1000565 err = 0;
566 goto out_no_sb;
567 }
NeilBrown32a76272005-06-21 17:17:14 -0700568 /* page 0 is the superblock, read it... */
NeilBrown27581e52012-05-22 13:55:08 +1000569 sb_page = alloc_page(GFP_KERNEL);
570 if (!sb_page)
571 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000572 bitmap->storage.sb_page = sb_page;
NeilBrown27581e52012-05-22 13:55:08 +1000573
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500574re_read:
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500575 /* If cluster_slot is set, the cluster is setup */
576 if (bitmap->cluster_slot >= 0) {
Stephen Rothwell3b0e6aa2015-03-03 13:35:31 +1100577 sector_t bm_blocks = bitmap->mddev->resync_max_sectors;
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500578
Stephen Rothwell3b0e6aa2015-03-03 13:35:31 +1100579 sector_div(bm_blocks,
580 bitmap->mddev->bitmap_info.chunksize >> 9);
Goldwyn Rodrigues124eb762015-03-24 11:29:05 -0500581 /* bits to bytes */
582 bm_blocks = ((bm_blocks+7) >> 3) + sizeof(bitmap_super_t);
583 /* to 4k blocks */
NeilBrown935f3d42015-03-02 17:02:29 +1100584 bm_blocks = DIV_ROUND_UP_SECTOR_T(bm_blocks, 4096);
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000585 offset = bitmap->mddev->bitmap_info.offset + (bitmap->cluster_slot * (bm_blocks << 3));
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500586 pr_info("%s:%d bm slot: %d offset: %llu\n", __func__, __LINE__,
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000587 bitmap->cluster_slot, offset);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500588 }
589
NeilBrown1ec885c2012-05-22 13:55:10 +1000590 if (bitmap->storage.file) {
591 loff_t isize = i_size_read(bitmap->storage.file->f_mapping->host);
NeilBrownf49d5e62007-01-26 00:57:03 -0800592 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
593
NeilBrown1ec885c2012-05-22 13:55:10 +1000594 err = read_page(bitmap->storage.file, 0,
NeilBrown27581e52012-05-22 13:55:08 +1000595 bitmap, bytes, sb_page);
NeilBrownf49d5e62007-01-26 00:57:03 -0800596 } else {
NeilBrown27581e52012-05-22 13:55:08 +1000597 err = read_sb_page(bitmap->mddev,
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000598 offset,
NeilBrown27581e52012-05-22 13:55:08 +1000599 sb_page,
600 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700601 }
NeilBrown27581e52012-05-22 13:55:08 +1000602 if (err)
NeilBrown32a76272005-06-21 17:17:14 -0700603 return err;
NeilBrown32a76272005-06-21 17:17:14 -0700604
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500605 err = -EINVAL;
NeilBrown27581e52012-05-22 13:55:08 +1000606 sb = kmap_atomic(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700607
NeilBrown32a76272005-06-21 17:17:14 -0700608 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100609 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700610 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown1dff2b82012-05-22 13:55:34 +1000611 sectors_reserved = le32_to_cpu(sb->sectors_reserved);
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000612 /* Setup nodes/clustername only if bitmap version is
613 * cluster-compatible
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500614 */
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000615 if (sb->version == cpu_to_le32(BITMAP_MAJOR_CLUSTERED)) {
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500616 nodes = le32_to_cpu(sb->nodes);
617 strlcpy(bitmap->mddev->bitmap_info.cluster_name,
618 sb->cluster_name, 64);
619 }
NeilBrown32a76272005-06-21 17:17:14 -0700620
621 /* verify that the bitmap-specific fields are valid */
622 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
623 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800624 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000625 le32_to_cpu(sb->version) > BITMAP_MAJOR_CLUSTERED)
NeilBrown32a76272005-06-21 17:17:14 -0700626 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100627 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800628 reason = "bitmap chunksize too small";
Jonathan Brassowd7445402011-06-08 18:01:10 -0500629 else if (!is_power_of_2(chunksize))
NeilBrown32a76272005-06-21 17:17:14 -0700630 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100631 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800632 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700633 else if (write_behind > COUNTER_MAX)
634 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700635 if (reason) {
636 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
637 bmname(bitmap), reason);
638 goto out;
639 }
640
641 /* keep the array size field of the bitmap superblock up to date */
642 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
643
NeilBrown278c1ca2012-03-19 12:46:40 +1100644 if (bitmap->mddev->persistent) {
645 /*
646 * We have a persistent array superblock, so compare the
647 * bitmap's UUID and event counter to the mddev's
648 */
649 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
650 printk(KERN_INFO
651 "%s: bitmap superblock UUID mismatch\n",
652 bmname(bitmap));
653 goto out;
654 }
655 events = le64_to_cpu(sb->events);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500656 if (!nodes && (events < bitmap->mddev->events)) {
NeilBrown278c1ca2012-03-19 12:46:40 +1100657 printk(KERN_INFO
658 "%s: bitmap file is out of date (%llu < %llu) "
659 "-- forcing full recovery\n",
660 bmname(bitmap), events,
661 (unsigned long long) bitmap->mddev->events);
NeilBrownb405fe92012-05-22 13:55:15 +1000662 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown278c1ca2012-03-19 12:46:40 +1100663 }
664 }
NeilBrown32a76272005-06-21 17:17:14 -0700665
NeilBrown32a76272005-06-21 17:17:14 -0700666 /* assign fields using values from superblock */
NeilBrown4f2e6392006-10-21 10:24:09 -0700667 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800668 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
NeilBrownb405fe92012-05-22 13:55:15 +1000669 set_bit(BITMAP_HOSTENDIAN, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -0700670 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500671 strlcpy(bitmap->mddev->bitmap_info.cluster_name, sb->cluster_name, 64);
NeilBrown32a76272005-06-21 17:17:14 -0700672 err = 0;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500673
NeilBrown32a76272005-06-21 17:17:14 -0700674out:
Cong Wangb2f46e62011-11-28 13:25:44 +0800675 kunmap_atomic(sb);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500676 /* Assiging chunksize is required for "re_read" */
677 bitmap->mddev->bitmap_info.chunksize = chunksize;
Goldwyn Rodriguesf7357272015-07-22 12:09:16 -0500678 if (err == 0 && nodes && (bitmap->cluster_slot < 0)) {
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500679 err = md_setup_cluster(bitmap->mddev, nodes);
680 if (err) {
681 pr_err("%s: Could not setup cluster service (%d)\n",
682 bmname(bitmap), err);
683 goto out_no_sb;
684 }
685 bitmap->cluster_slot = md_cluster_ops->slot_number(bitmap->mddev);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500686 goto re_read;
687 }
688
689
NeilBrownef99bf42012-05-22 13:55:08 +1000690out_no_sb:
NeilBrownb405fe92012-05-22 13:55:15 +1000691 if (test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000692 bitmap->events_cleared = bitmap->mddev->events;
693 bitmap->mddev->bitmap_info.chunksize = chunksize;
694 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
695 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500696 bitmap->mddev->bitmap_info.nodes = nodes;
NeilBrown1dff2b82012-05-22 13:55:34 +1000697 if (bitmap->mddev->bitmap_info.space == 0 ||
698 bitmap->mddev->bitmap_info.space > sectors_reserved)
699 bitmap->mddev->bitmap_info.space = sectors_reserved;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500700 if (err) {
NeilBrown32a76272005-06-21 17:17:14 -0700701 bitmap_print_sb(bitmap);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500702 if (bitmap->cluster_slot < 0)
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500703 md_cluster_stop(bitmap->mddev);
704 }
NeilBrown32a76272005-06-21 17:17:14 -0700705 return err;
706}
707
NeilBrown32a76272005-06-21 17:17:14 -0700708/*
709 * general bitmap file operations
710 */
711
NeilBrownece5cff2009-12-14 12:49:56 +1100712/*
713 * on-disk bitmap:
714 *
715 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
716 * file a page at a time. There's a superblock at the start of the file.
717 */
NeilBrown32a76272005-06-21 17:17:14 -0700718/* calculate the index of the page that contains this bit */
NeilBrown1ec885c2012-05-22 13:55:10 +1000719static inline unsigned long file_page_index(struct bitmap_storage *store,
720 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700721{
NeilBrown1ec885c2012-05-22 13:55:10 +1000722 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100723 chunk += sizeof(bitmap_super_t) << 3;
724 return chunk >> PAGE_BIT_SHIFT;
NeilBrown32a76272005-06-21 17:17:14 -0700725}
726
727/* calculate the (bit) offset of this bit within a page */
NeilBrown1ec885c2012-05-22 13:55:10 +1000728static inline unsigned long file_page_offset(struct bitmap_storage *store,
729 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700730{
NeilBrown1ec885c2012-05-22 13:55:10 +1000731 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100732 chunk += sizeof(bitmap_super_t) << 3;
733 return chunk & (PAGE_BITS - 1);
NeilBrown32a76272005-06-21 17:17:14 -0700734}
735
736/*
737 * return a pointer to the page in the filemap that contains the given bit
738 *
NeilBrown32a76272005-06-21 17:17:14 -0700739 */
NeilBrown1ec885c2012-05-22 13:55:10 +1000740static inline struct page *filemap_get_page(struct bitmap_storage *store,
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000741 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700742{
NeilBrown1ec885c2012-05-22 13:55:10 +1000743 if (file_page_index(store, chunk) >= store->file_pages)
NeilBrownac2f40b2010-06-01 19:37:31 +1000744 return NULL;
NeilBrownf2e06c52014-05-28 13:39:23 +1000745 return store->filemap[file_page_index(store, chunk)];
NeilBrown32a76272005-06-21 17:17:14 -0700746}
747
NeilBrownd1244cb2012-05-22 13:55:12 +1000748static int bitmap_storage_alloc(struct bitmap_storage *store,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500749 unsigned long chunks, int with_super,
750 int slot_number)
NeilBrownd1244cb2012-05-22 13:55:12 +1000751{
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500752 int pnum, offset = 0;
NeilBrownd1244cb2012-05-22 13:55:12 +1000753 unsigned long num_pages;
754 unsigned long bytes;
755
756 bytes = DIV_ROUND_UP(chunks, 8);
757 if (with_super)
758 bytes += sizeof(bitmap_super_t);
759
760 num_pages = DIV_ROUND_UP(bytes, PAGE_SIZE);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500761 offset = slot_number * (num_pages - 1);
NeilBrownd1244cb2012-05-22 13:55:12 +1000762
763 store->filemap = kmalloc(sizeof(struct page *)
764 * num_pages, GFP_KERNEL);
765 if (!store->filemap)
766 return -ENOMEM;
767
768 if (with_super && !store->sb_page) {
NeilBrownd60b4792012-05-22 13:55:25 +1000769 store->sb_page = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000770 if (store->sb_page == NULL)
771 return -ENOMEM;
NeilBrownd1244cb2012-05-22 13:55:12 +1000772 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500773
NeilBrownd1244cb2012-05-22 13:55:12 +1000774 pnum = 0;
775 if (store->sb_page) {
776 store->filemap[0] = store->sb_page;
777 pnum = 1;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500778 store->sb_page->index = offset;
NeilBrownd1244cb2012-05-22 13:55:12 +1000779 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500780
NeilBrownd1244cb2012-05-22 13:55:12 +1000781 for ( ; pnum < num_pages; pnum++) {
NeilBrownd60b4792012-05-22 13:55:25 +1000782 store->filemap[pnum] = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000783 if (!store->filemap[pnum]) {
784 store->file_pages = pnum;
785 return -ENOMEM;
786 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500787 store->filemap[pnum]->index = pnum + offset;
NeilBrownd1244cb2012-05-22 13:55:12 +1000788 }
789 store->file_pages = pnum;
790
791 /* We need 4 bits per page, rounded up to a multiple
792 * of sizeof(unsigned long) */
793 store->filemap_attr = kzalloc(
794 roundup(DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
795 GFP_KERNEL);
796 if (!store->filemap_attr)
797 return -ENOMEM;
798
799 store->bytes = bytes;
800
801 return 0;
802}
803
NeilBrownfae7d322012-05-22 13:55:21 +1000804static void bitmap_file_unmap(struct bitmap_storage *store)
NeilBrown32a76272005-06-21 17:17:14 -0700805{
806 struct page **map, *sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700807 int pages;
NeilBrownfae7d322012-05-22 13:55:21 +1000808 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700809
NeilBrownfae7d322012-05-22 13:55:21 +1000810 file = store->file;
NeilBrown1ec885c2012-05-22 13:55:10 +1000811 map = store->filemap;
NeilBrown1ec885c2012-05-22 13:55:10 +1000812 pages = store->file_pages;
NeilBrown1ec885c2012-05-22 13:55:10 +1000813 sb_page = store->sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700814
815 while (pages--)
NeilBrownece5cff2009-12-14 12:49:56 +1100816 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700817 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700818 kfree(map);
NeilBrownfae7d322012-05-22 13:55:21 +1000819 kfree(store->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700820
NeilBrownd785a062006-06-26 00:27:48 -0700821 if (sb_page)
822 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700823
NeilBrownd785a062006-06-26 00:27:48 -0700824 if (file) {
Al Viro496ad9a2013-01-23 17:07:38 -0500825 struct inode *inode = file_inode(file);
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800826 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700827 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700828 }
NeilBrown32a76272005-06-21 17:17:14 -0700829}
830
NeilBrown32a76272005-06-21 17:17:14 -0700831/*
832 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
833 * then it is no longer reliable, so we stop using it and we mark the file
834 * as failed in the superblock
835 */
836static void bitmap_file_kick(struct bitmap *bitmap)
837{
838 char *path, *ptr = NULL;
839
NeilBrownb405fe92012-05-22 13:55:15 +1000840 if (!test_and_set_bit(BITMAP_STALE, &bitmap->flags)) {
NeilBrown4ad13662007-07-17 04:06:13 -0700841 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700842
NeilBrown1ec885c2012-05-22 13:55:10 +1000843 if (bitmap->storage.file) {
NeilBrown4ad13662007-07-17 04:06:13 -0700844 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
845 if (path)
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +0200846 ptr = file_path(bitmap->storage.file,
NeilBrown1ec885c2012-05-22 13:55:10 +1000847 path, PAGE_SIZE);
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700848
NeilBrown4ad13662007-07-17 04:06:13 -0700849 printk(KERN_ALERT
850 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700851 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700852
NeilBrown4ad13662007-07-17 04:06:13 -0700853 kfree(path);
854 } else
855 printk(KERN_ALERT
856 "%s: disabling internal bitmap due to errors\n",
857 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700858 }
NeilBrown32a76272005-06-21 17:17:14 -0700859}
860
861enum bitmap_page_attr {
NeilBrownac2f40b2010-06-01 19:37:31 +1000862 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
NeilBrown5a537df2011-09-21 15:37:46 +1000863 BITMAP_PAGE_PENDING = 1, /* there are bits that are being cleaned.
864 * i.e. counter is 1 or 2. */
NeilBrownac2f40b2010-06-01 19:37:31 +1000865 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
NeilBrown32a76272005-06-21 17:17:14 -0700866};
867
NeilBrownd1891222012-05-22 13:55:09 +1000868static inline void set_page_attr(struct bitmap *bitmap, int pnum,
869 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700870{
NeilBrownbdfd1142012-05-22 13:55:22 +1000871 set_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700872}
873
NeilBrownd1891222012-05-22 13:55:09 +1000874static inline void clear_page_attr(struct bitmap *bitmap, int pnum,
875 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700876{
NeilBrownbdfd1142012-05-22 13:55:22 +1000877 clear_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700878}
879
NeilBrownbdfd1142012-05-22 13:55:22 +1000880static inline int test_page_attr(struct bitmap *bitmap, int pnum,
881 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700882{
NeilBrown1ec885c2012-05-22 13:55:10 +1000883 return test_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700884}
885
NeilBrownbdfd1142012-05-22 13:55:22 +1000886static inline int test_and_clear_page_attr(struct bitmap *bitmap, int pnum,
887 enum bitmap_page_attr attr)
888{
889 return test_and_clear_bit((pnum<<2) + attr,
890 bitmap->storage.filemap_attr);
891}
NeilBrown32a76272005-06-21 17:17:14 -0700892/*
893 * bitmap_file_set_bit -- called before performing a write to the md device
894 * to set (and eventually sync) a particular bit in the bitmap file
895 *
896 * we set the bit immediately, then we record the page number so that
897 * when an unplug occurs, we can flush the dirty pages out to disk
898 */
899static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
900{
901 unsigned long bit;
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000902 struct page *page;
NeilBrown32a76272005-06-21 17:17:14 -0700903 void *kaddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000904 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -0700905
NeilBrown1ec885c2012-05-22 13:55:10 +1000906 page = filemap_get_page(&bitmap->storage, chunk);
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000907 if (!page)
908 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000909 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrown32a76272005-06-21 17:17:14 -0700910
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000911 /* set the bit */
Cong Wangb2f46e62011-11-28 13:25:44 +0800912 kaddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000913 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000914 set_bit(bit, kaddr);
915 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000916 set_bit_le(bit, kaddr);
Cong Wangb2f46e62011-11-28 13:25:44 +0800917 kunmap_atomic(kaddr);
NeilBrown36a4e1f2011-10-07 14:23:17 +1100918 pr_debug("set file bit %lu page %lu\n", bit, page->index);
NeilBrown32a76272005-06-21 17:17:14 -0700919 /* record page number so it gets flushed to disk when unplug occurs */
NeilBrownd1891222012-05-22 13:55:09 +1000920 set_page_attr(bitmap, page->index, BITMAP_PAGE_DIRTY);
NeilBrown32a76272005-06-21 17:17:14 -0700921}
922
NeilBrownef99bf42012-05-22 13:55:08 +1000923static void bitmap_file_clear_bit(struct bitmap *bitmap, sector_t block)
924{
925 unsigned long bit;
926 struct page *page;
927 void *paddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000928 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrownef99bf42012-05-22 13:55:08 +1000929
NeilBrown1ec885c2012-05-22 13:55:10 +1000930 page = filemap_get_page(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000931 if (!page)
932 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000933 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000934 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000935 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000936 clear_bit(bit, paddr);
937 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000938 clear_bit_le(bit, paddr);
NeilBrownef99bf42012-05-22 13:55:08 +1000939 kunmap_atomic(paddr);
NeilBrownd1891222012-05-22 13:55:09 +1000940 if (!test_page_attr(bitmap, page->index, BITMAP_PAGE_NEEDWRITE)) {
941 set_page_attr(bitmap, page->index, BITMAP_PAGE_PENDING);
NeilBrownef99bf42012-05-22 13:55:08 +1000942 bitmap->allclean = 0;
943 }
944}
945
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -0500946static int bitmap_file_test_bit(struct bitmap *bitmap, sector_t block)
947{
948 unsigned long bit;
949 struct page *page;
950 void *paddr;
951 unsigned long chunk = block >> bitmap->counts.chunkshift;
952 int set = 0;
953
954 page = filemap_get_page(&bitmap->storage, chunk);
955 if (!page)
956 return -EINVAL;
957 bit = file_page_offset(&bitmap->storage, chunk);
958 paddr = kmap_atomic(page);
959 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
960 set = test_bit(bit, paddr);
961 else
962 set = test_bit_le(bit, paddr);
963 kunmap_atomic(paddr);
964 return set;
965}
966
967
NeilBrown32a76272005-06-21 17:17:14 -0700968/* this gets called when the md device is ready to unplug its underlying
969 * (slave) device queues -- before we let any writes go down, we need to
970 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700971void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700972{
NeilBrown74667122012-05-22 13:55:19 +1000973 unsigned long i;
NeilBrownec7a3192006-06-26 00:27:45 -0700974 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700975
NeilBrown62f82fa2012-05-22 13:55:21 +1000976 if (!bitmap || !bitmap->storage.filemap ||
977 test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700978 return;
NeilBrown32a76272005-06-21 17:17:14 -0700979
980 /* look at each page to see if there are any set bits that need to be
981 * flushed out to disk */
NeilBrown1ec885c2012-05-22 13:55:10 +1000982 for (i = 0; i < bitmap->storage.file_pages; i++) {
NeilBrownbdfd1142012-05-22 13:55:22 +1000983 if (!bitmap->storage.filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700984 return;
NeilBrownbdfd1142012-05-22 13:55:22 +1000985 dirty = test_and_clear_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
986 need_write = test_and_clear_page_attr(bitmap, i,
987 BITMAP_PAGE_NEEDWRITE);
988 if (dirty || need_write) {
NeilBrownd1891222012-05-22 13:55:09 +1000989 clear_page_attr(bitmap, i, BITMAP_PAGE_PENDING);
NeilBrownbdfd1142012-05-22 13:55:22 +1000990 write_page(bitmap, bitmap->storage.filemap[i], 0);
991 }
NeilBrown32a76272005-06-21 17:17:14 -0700992 }
NeilBrown4b5060d2014-09-09 14:13:51 +1000993 if (bitmap->storage.file)
994 wait_event(bitmap->write_wait,
995 atomic_read(&bitmap->pending_writes)==0);
996 else
997 md_super_wait(bitmap->mddev);
998
NeilBrownb405fe92012-05-22 13:55:15 +1000999 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrownd785a062006-06-26 00:27:48 -07001000 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -07001001}
NeilBrownac2f40b2010-06-01 19:37:31 +10001002EXPORT_SYMBOL(bitmap_unplug);
NeilBrown32a76272005-06-21 17:17:14 -07001003
NeilBrown6a079972005-09-09 16:23:44 -07001004static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -07001005/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
1006 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
1007 * memory mapping of the bitmap file
1008 * Special cases:
1009 * if there's no bitmap file, or if the bitmap file had been
1010 * previously kicked from the array, we mark all the bits as
1011 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -07001012 *
1013 * We ignore all bits for sectors that end earlier than 'start'.
1014 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -07001015 */
NeilBrown6a079972005-09-09 16:23:44 -07001016static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -07001017{
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001018 unsigned long i, chunks, index, oldindex, bit, node_offset = 0;
NeilBrown27581e52012-05-22 13:55:08 +10001019 struct page *page = NULL;
NeilBrownd1244cb2012-05-22 13:55:12 +10001020 unsigned long bit_cnt = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001021 struct file *file;
NeilBrownd1244cb2012-05-22 13:55:12 +10001022 unsigned long offset;
NeilBrown32a76272005-06-21 17:17:14 -07001023 int outofdate;
1024 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -08001025 void *paddr;
NeilBrown1ec885c2012-05-22 13:55:10 +10001026 struct bitmap_storage *store = &bitmap->storage;
NeilBrown32a76272005-06-21 17:17:14 -07001027
NeilBrown40cffcc2012-05-22 13:55:24 +10001028 chunks = bitmap->counts.chunks;
NeilBrown1ec885c2012-05-22 13:55:10 +10001029 file = store->file;
NeilBrown32a76272005-06-21 17:17:14 -07001030
NeilBrownef99bf42012-05-22 13:55:08 +10001031 if (!file && !bitmap->mddev->bitmap_info.offset) {
1032 /* No permanent bitmap - fill with '1s'. */
NeilBrown1ec885c2012-05-22 13:55:10 +10001033 store->filemap = NULL;
1034 store->file_pages = 0;
NeilBrownef99bf42012-05-22 13:55:08 +10001035 for (i = 0; i < chunks ; i++) {
1036 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001037 int needed = ((sector_t)(i+1) << (bitmap->counts.chunkshift)
NeilBrownef99bf42012-05-22 13:55:08 +10001038 >= start);
1039 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001040 (sector_t)i << bitmap->counts.chunkshift,
NeilBrownef99bf42012-05-22 13:55:08 +10001041 needed);
1042 }
1043 return 0;
1044 }
NeilBrown32a76272005-06-21 17:17:14 -07001045
NeilBrownb405fe92012-05-22 13:55:15 +10001046 outofdate = test_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -07001047 if (outofdate)
1048 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
1049 "recovery\n", bmname(bitmap));
1050
NeilBrownd1244cb2012-05-22 13:55:12 +10001051 if (file && i_size_read(file->f_mapping->host) < store->bytes) {
NeilBrown32a76272005-06-21 17:17:14 -07001052 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
NeilBrownd1244cb2012-05-22 13:55:12 +10001053 bmname(bitmap),
1054 (unsigned long) i_size_read(file->f_mapping->host),
1055 store->bytes);
NeilBrown4ad13662007-07-17 04:06:13 -07001056 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001057 }
NeilBrownbc7f77d2005-06-21 17:17:17 -07001058
NeilBrown32a76272005-06-21 17:17:14 -07001059 oldindex = ~0L;
NeilBrownd1244cb2012-05-22 13:55:12 +10001060 offset = 0;
1061 if (!bitmap->mddev->bitmap_info.external)
1062 offset = sizeof(bitmap_super_t);
NeilBrown32a76272005-06-21 17:17:14 -07001063
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001064 if (mddev_is_clustered(bitmap->mddev))
1065 node_offset = bitmap->cluster_slot * (DIV_ROUND_UP(store->bytes, PAGE_SIZE));
1066
NeilBrown32a76272005-06-21 17:17:14 -07001067 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -08001068 int b;
NeilBrown1ec885c2012-05-22 13:55:10 +10001069 index = file_page_index(&bitmap->storage, i);
1070 bit = file_page_offset(&bitmap->storage, i);
NeilBrown32a76272005-06-21 17:17:14 -07001071 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -07001072 int count;
NeilBrown32a76272005-06-21 17:17:14 -07001073 /* unmap the old page, we're done with it */
NeilBrownd1244cb2012-05-22 13:55:12 +10001074 if (index == store->file_pages-1)
1075 count = store->bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -07001076 else
1077 count = PAGE_SIZE;
NeilBrown1ec885c2012-05-22 13:55:10 +10001078 page = store->filemap[index];
NeilBrown27581e52012-05-22 13:55:08 +10001079 if (file)
1080 ret = read_page(file, index, bitmap,
1081 count, page);
1082 else
1083 ret = read_sb_page(
1084 bitmap->mddev,
1085 bitmap->mddev->bitmap_info.offset,
1086 page,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001087 index + node_offset, count);
NeilBrown27581e52012-05-22 13:55:08 +10001088
1089 if (ret)
NeilBrown4ad13662007-07-17 04:06:13 -07001090 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001091
NeilBrown32a76272005-06-21 17:17:14 -07001092 oldindex = index;
NeilBrown32a76272005-06-21 17:17:14 -07001093
1094 if (outofdate) {
1095 /*
1096 * if bitmap is out of date, dirty the
NeilBrownac2f40b2010-06-01 19:37:31 +10001097 * whole page and write it out
NeilBrown32a76272005-06-21 17:17:14 -07001098 */
Cong Wangb2f46e62011-11-28 13:25:44 +08001099 paddr = kmap_atomic(page);
NeilBrownea03aff2006-01-06 00:20:34 -08001100 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001101 PAGE_SIZE - offset);
Cong Wangb2f46e62011-11-28 13:25:44 +08001102 kunmap_atomic(paddr);
NeilBrown4ad13662007-07-17 04:06:13 -07001103 write_page(bitmap, page, 1);
1104
1105 ret = -EIO;
NeilBrownb405fe92012-05-22 13:55:15 +10001106 if (test_bit(BITMAP_WRITE_ERROR,
1107 &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -07001108 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001109 }
NeilBrown32a76272005-06-21 17:17:14 -07001110 }
Cong Wangb2f46e62011-11-28 13:25:44 +08001111 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +10001112 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownea03aff2006-01-06 00:20:34 -08001113 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001114 else
Akinobu Mita6b33aff2011-03-23 16:42:13 -07001115 b = test_bit_le(bit, paddr);
Cong Wangb2f46e62011-11-28 13:25:44 +08001116 kunmap_atomic(paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001117 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001118 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001119 int needed = ((sector_t)(i+1) << bitmap->counts.chunkshift
NeilBrowndb305e52009-05-07 12:49:06 +10001120 >= start);
1121 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001122 (sector_t)i << bitmap->counts.chunkshift,
NeilBrowndb305e52009-05-07 12:49:06 +10001123 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001124 bit_cnt++;
1125 }
NeilBrown27581e52012-05-22 13:55:08 +10001126 offset = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001127 }
1128
NeilBrown32a76272005-06-21 17:17:14 -07001129 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrownd1244cb2012-05-22 13:55:12 +10001130 "read %lu pages, set %lu of %lu bits\n",
NeilBrown1ec885c2012-05-22 13:55:10 +10001131 bmname(bitmap), store->file_pages,
NeilBrownd1244cb2012-05-22 13:55:12 +10001132 bit_cnt, chunks);
NeilBrown32a76272005-06-21 17:17:14 -07001133
NeilBrown4ad13662007-07-17 04:06:13 -07001134 return 0;
1135
1136 err:
1137 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1138 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001139 return ret;
1140}
1141
NeilBrowna654b9d82005-06-21 17:17:27 -07001142void bitmap_write_all(struct bitmap *bitmap)
1143{
1144 /* We don't actually write all bitmap blocks here,
1145 * just flag them as needing to be written
1146 */
NeilBrownec7a3192006-06-26 00:27:45 -07001147 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001148
NeilBrown1ec885c2012-05-22 13:55:10 +10001149 if (!bitmap || !bitmap->storage.filemap)
NeilBrownef99bf42012-05-22 13:55:08 +10001150 return;
NeilBrown1ec885c2012-05-22 13:55:10 +10001151 if (bitmap->storage.file)
NeilBrownef99bf42012-05-22 13:55:08 +10001152 /* Only one copy, so nothing needed */
1153 return;
1154
NeilBrown1ec885c2012-05-22 13:55:10 +10001155 for (i = 0; i < bitmap->storage.file_pages; i++)
NeilBrownd1891222012-05-22 13:55:09 +10001156 set_page_attr(bitmap, i,
NeilBrownec7a3192006-06-26 00:27:45 -07001157 BITMAP_PAGE_NEEDWRITE);
NeilBrown2585f3e2011-09-21 15:37:46 +10001158 bitmap->allclean = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -07001159}
1160
NeilBrown40cffcc2012-05-22 13:55:24 +10001161static void bitmap_count_page(struct bitmap_counts *bitmap,
1162 sector_t offset, int inc)
NeilBrown32a76272005-06-21 17:17:14 -07001163{
NeilBrown61a0d802012-03-19 12:46:41 +11001164 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001165 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1166 bitmap->bp[page].count += inc;
NeilBrown32a76272005-06-21 17:17:14 -07001167 bitmap_checkfree(bitmap, page);
1168}
NeilBrownbf07bb72012-05-22 13:55:06 +10001169
NeilBrown40cffcc2012-05-22 13:55:24 +10001170static void bitmap_set_pending(struct bitmap_counts *bitmap, sector_t offset)
NeilBrownbf07bb72012-05-22 13:55:06 +10001171{
1172 sector_t chunk = offset >> bitmap->chunkshift;
1173 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1174 struct bitmap_page *bp = &bitmap->bp[page];
1175
1176 if (!bp->pending)
1177 bp->pending = 1;
1178}
1179
NeilBrown40cffcc2012-05-22 13:55:24 +10001180static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001181 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001182 int create);
1183
1184/*
1185 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1186 * out to disk
1187 */
1188
NeilBrownfd01b882011-10-11 16:47:53 +11001189void bitmap_daemon_work(struct mddev *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001190{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001191 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001192 unsigned long j;
NeilBrownbf07bb72012-05-22 13:55:06 +10001193 unsigned long nextpage;
NeilBrown57dab0b2010-10-19 10:03:39 +11001194 sector_t blocks;
NeilBrown40cffcc2012-05-22 13:55:24 +10001195 struct bitmap_counts *counts;
NeilBrown32a76272005-06-21 17:17:14 -07001196
NeilBrownaa5cbd12009-12-14 12:49:46 +11001197 /* Use a mutex to guard daemon_work against
1198 * bitmap_destroy.
1199 */
NeilBrownc3d97142009-12-14 12:49:52 +11001200 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001201 bitmap = mddev->bitmap;
1202 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001203 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001204 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001205 }
NeilBrown42a04b52009-12-14 12:49:53 +11001206 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown2e61ebb2011-12-23 10:17:50 +11001207 + mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001208 goto done;
1209
NeilBrown32a76272005-06-21 17:17:14 -07001210 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001211 if (bitmap->allclean) {
NeilBrown2e61ebb2011-12-23 10:17:50 +11001212 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001213 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001214 }
1215 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001216
NeilBrownbf07bb72012-05-22 13:55:06 +10001217 /* Any file-page which is PENDING now needs to be written.
1218 * So set NEEDWRITE now, then after we make any last-minute changes
1219 * we will write it.
1220 */
NeilBrown1ec885c2012-05-22 13:55:10 +10001221 for (j = 0; j < bitmap->storage.file_pages; j++)
NeilBrownbdfd1142012-05-22 13:55:22 +10001222 if (test_and_clear_page_attr(bitmap, j,
1223 BITMAP_PAGE_PENDING))
NeilBrownd1891222012-05-22 13:55:09 +10001224 set_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001225 BITMAP_PAGE_NEEDWRITE);
NeilBrownbf07bb72012-05-22 13:55:06 +10001226
1227 if (bitmap->need_sync &&
1228 mddev->bitmap_info.external == 0) {
1229 /* Arrange for superblock update as well as
1230 * other changes */
1231 bitmap_super_t *sb;
1232 bitmap->need_sync = 0;
NeilBrown1ec885c2012-05-22 13:55:10 +10001233 if (bitmap->storage.filemap) {
1234 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrownef99bf42012-05-22 13:55:08 +10001235 sb->events_cleared =
1236 cpu_to_le64(bitmap->events_cleared);
1237 kunmap_atomic(sb);
NeilBrownd1891222012-05-22 13:55:09 +10001238 set_page_attr(bitmap, 0,
NeilBrownef99bf42012-05-22 13:55:08 +10001239 BITMAP_PAGE_NEEDWRITE);
1240 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001241 }
1242 /* Now look at the bitmap counters and if any are '2' or '1',
1243 * decrement and handle accordingly.
1244 */
NeilBrown40cffcc2012-05-22 13:55:24 +10001245 counts = &bitmap->counts;
1246 spin_lock_irq(&counts->lock);
NeilBrownbf07bb72012-05-22 13:55:06 +10001247 nextpage = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001248 for (j = 0; j < counts->chunks; j++) {
NeilBrown32a76272005-06-21 17:17:14 -07001249 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001250 sector_t block = (sector_t)j << counts->chunkshift;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001251
NeilBrownbf07bb72012-05-22 13:55:06 +10001252 if (j == nextpage) {
1253 nextpage += PAGE_COUNTER_RATIO;
NeilBrown40cffcc2012-05-22 13:55:24 +10001254 if (!counts->bp[j >> PAGE_COUNTER_SHIFT].pending) {
NeilBrownbf07bb72012-05-22 13:55:06 +10001255 j |= PAGE_COUNTER_MASK;
NeilBrownaa3163f2005-06-21 17:17:22 -07001256 continue;
1257 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001258 counts->bp[j >> PAGE_COUNTER_SHIFT].pending = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001259 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001260 bmc = bitmap_get_counter(counts,
NeilBrownef99bf42012-05-22 13:55:08 +10001261 block,
NeilBrowndb305e52009-05-07 12:49:06 +10001262 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001263
NeilBrownbf07bb72012-05-22 13:55:06 +10001264 if (!bmc) {
1265 j |= PAGE_COUNTER_MASK;
1266 continue;
1267 }
1268 if (*bmc == 1 && !bitmap->need_sync) {
1269 /* We can clear the bit */
NeilBrownbf07bb72012-05-22 13:55:06 +10001270 *bmc = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001271 bitmap_count_page(counts, block, -1);
NeilBrownef99bf42012-05-22 13:55:08 +10001272 bitmap_file_clear_bit(bitmap, block);
NeilBrownbf07bb72012-05-22 13:55:06 +10001273 } else if (*bmc && *bmc <= 2) {
1274 *bmc = 1;
NeilBrown40cffcc2012-05-22 13:55:24 +10001275 bitmap_set_pending(counts, block);
NeilBrown2585f3e2011-09-21 15:37:46 +10001276 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001277 }
NeilBrown32a76272005-06-21 17:17:14 -07001278 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001279 spin_unlock_irq(&counts->lock);
NeilBrown32a76272005-06-21 17:17:14 -07001280
NeilBrownbf07bb72012-05-22 13:55:06 +10001281 /* Now start writeout on any page in NEEDWRITE that isn't DIRTY.
1282 * DIRTY pages need to be written by bitmap_unplug so it can wait
1283 * for them.
1284 * If we find any DIRTY page we stop there and let bitmap_unplug
1285 * handle all the rest. This is important in the case where
1286 * the first blocking holds the superblock and it has been updated.
1287 * We mustn't write any other blocks before the superblock.
1288 */
NeilBrown62f82fa2012-05-22 13:55:21 +10001289 for (j = 0;
1290 j < bitmap->storage.file_pages
1291 && !test_bit(BITMAP_STALE, &bitmap->flags);
1292 j++) {
NeilBrownd1891222012-05-22 13:55:09 +10001293 if (test_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001294 BITMAP_PAGE_DIRTY))
1295 /* bitmap_unplug will handle the rest */
1296 break;
NeilBrownbdfd1142012-05-22 13:55:22 +10001297 if (test_and_clear_page_attr(bitmap, j,
1298 BITMAP_PAGE_NEEDWRITE)) {
NeilBrown1ec885c2012-05-22 13:55:10 +10001299 write_page(bitmap, bitmap->storage.filemap[j], 0);
NeilBrownbf07bb72012-05-22 13:55:06 +10001300 }
1301 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001302
NeilBrown7be3dfe2008-03-10 11:43:48 -07001303 done:
NeilBrown8311c292008-03-04 14:29:30 -08001304 if (bitmap->allclean == 0)
NeilBrown2e61ebb2011-12-23 10:17:50 +11001305 mddev->thread->timeout =
1306 mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001307 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001308}
1309
NeilBrown40cffcc2012-05-22 13:55:24 +10001310static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001311 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001312 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001313__releases(bitmap->lock)
1314__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001315{
1316 /* If 'create', we might release the lock and reclaim it.
1317 * The lock must have been taken with interrupts enabled.
1318 * If !create, we don't release the lock.
1319 */
NeilBrown61a0d802012-03-19 12:46:41 +11001320 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001321 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1322 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1323 sector_t csize;
NeilBrownef425672010-06-01 19:37:33 +10001324 int err;
NeilBrown32a76272005-06-21 17:17:14 -07001325
NeilBrownef425672010-06-01 19:37:33 +10001326 err = bitmap_checkpage(bitmap, page, create);
1327
1328 if (bitmap->bp[page].hijacked ||
1329 bitmap->bp[page].map == NULL)
NeilBrown61a0d802012-03-19 12:46:41 +11001330 csize = ((sector_t)1) << (bitmap->chunkshift +
NeilBrownef425672010-06-01 19:37:33 +10001331 PAGE_COUNTER_SHIFT - 1);
1332 else
NeilBrown61a0d802012-03-19 12:46:41 +11001333 csize = ((sector_t)1) << bitmap->chunkshift;
NeilBrownef425672010-06-01 19:37:33 +10001334 *blocks = csize - (offset & (csize - 1));
1335
1336 if (err < 0)
NeilBrown32a76272005-06-21 17:17:14 -07001337 return NULL;
NeilBrownef425672010-06-01 19:37:33 +10001338
NeilBrown32a76272005-06-21 17:17:14 -07001339 /* now locked ... */
1340
1341 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1342 /* should we use the first or second counter field
1343 * of the hijacked pointer? */
1344 int hi = (pageoff > PAGE_COUNTER_MASK);
NeilBrown32a76272005-06-21 17:17:14 -07001345 return &((bitmap_counter_t *)
1346 &bitmap->bp[page].map)[hi];
NeilBrownef425672010-06-01 19:37:33 +10001347 } else /* page is allocated */
NeilBrown32a76272005-06-21 17:17:14 -07001348 return (bitmap_counter_t *)
1349 &(bitmap->bp[page].map[pageoff]);
NeilBrown32a76272005-06-21 17:17:14 -07001350}
1351
NeilBrown4b6d2872005-09-09 16:23:47 -07001352int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001353{
NeilBrownac2f40b2010-06-01 19:37:31 +10001354 if (!bitmap)
1355 return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001356
1357 if (behind) {
Paul Clements696fcd52010-03-08 16:02:37 +11001358 int bw;
NeilBrown4b6d2872005-09-09 16:23:47 -07001359 atomic_inc(&bitmap->behind_writes);
Paul Clements696fcd52010-03-08 16:02:37 +11001360 bw = atomic_read(&bitmap->behind_writes);
1361 if (bw > bitmap->behind_writes_used)
1362 bitmap->behind_writes_used = bw;
1363
NeilBrown36a4e1f2011-10-07 14:23:17 +11001364 pr_debug("inc write-behind count %d/%lu\n",
1365 bw, bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001366 }
1367
NeilBrown32a76272005-06-21 17:17:14 -07001368 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001369 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001370 bitmap_counter_t *bmc;
1371
NeilBrown40cffcc2012-05-22 13:55:24 +10001372 spin_lock_irq(&bitmap->counts.lock);
1373 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001374 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001375 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001376 return 0;
1377 }
1378
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001379 if (unlikely(COUNTER(*bmc) == COUNTER_MAX)) {
Neil Brownda6e1a32007-02-08 14:20:37 -08001380 DEFINE_WAIT(__wait);
1381 /* note that it is safe to do the prepare_to_wait
1382 * after the test as long as we do it before dropping
1383 * the spinlock.
1384 */
1385 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1386 TASK_UNINTERRUPTIBLE);
NeilBrown40cffcc2012-05-22 13:55:24 +10001387 spin_unlock_irq(&bitmap->counts.lock);
NeilBrownf54a9d02012-08-02 08:33:20 +10001388 schedule();
Neil Brownda6e1a32007-02-08 14:20:37 -08001389 finish_wait(&bitmap->overflow_wait, &__wait);
1390 continue;
1391 }
1392
NeilBrownac2f40b2010-06-01 19:37:31 +10001393 switch (*bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001394 case 0:
1395 bitmap_file_set_bit(bitmap, offset);
NeilBrown40cffcc2012-05-22 13:55:24 +10001396 bitmap_count_page(&bitmap->counts, offset, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001397 /* fall through */
1398 case 1:
1399 *bmc = 2;
1400 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001401
NeilBrown32a76272005-06-21 17:17:14 -07001402 (*bmc)++;
1403
NeilBrown40cffcc2012-05-22 13:55:24 +10001404 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001405
1406 offset += blocks;
1407 if (sectors > blocks)
1408 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001409 else
1410 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001411 }
1412 return 0;
1413}
NeilBrownac2f40b2010-06-01 19:37:31 +10001414EXPORT_SYMBOL(bitmap_startwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001415
1416void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001417 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001418{
NeilBrownac2f40b2010-06-01 19:37:31 +10001419 if (!bitmap)
1420 return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001421 if (behind) {
NeilBrowne5551902010-03-31 11:21:44 +11001422 if (atomic_dec_and_test(&bitmap->behind_writes))
1423 wake_up(&bitmap->behind_wait);
NeilBrown36a4e1f2011-10-07 14:23:17 +11001424 pr_debug("dec write-behind count %d/%lu\n",
1425 atomic_read(&bitmap->behind_writes),
1426 bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001427 }
1428
NeilBrown32a76272005-06-21 17:17:14 -07001429 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001430 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001431 unsigned long flags;
1432 bitmap_counter_t *bmc;
1433
NeilBrown40cffcc2012-05-22 13:55:24 +10001434 spin_lock_irqsave(&bitmap->counts.lock, flags);
1435 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001436 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001437 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001438 return;
1439 }
1440
NeilBrown961902c2011-12-23 09:57:48 +11001441 if (success && !bitmap->mddev->degraded &&
Neil Browna0da84f2008-06-28 08:31:22 +10001442 bitmap->events_cleared < bitmap->mddev->events) {
1443 bitmap->events_cleared = bitmap->mddev->events;
1444 bitmap->need_sync = 1;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001445 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001446 }
1447
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001448 if (!success && !NEEDED(*bmc))
NeilBrown32a76272005-06-21 17:17:14 -07001449 *bmc |= NEEDED_MASK;
1450
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001451 if (COUNTER(*bmc) == COUNTER_MAX)
Neil Brownda6e1a32007-02-08 14:20:37 -08001452 wake_up(&bitmap->overflow_wait);
1453
NeilBrown32a76272005-06-21 17:17:14 -07001454 (*bmc)--;
NeilBrown2585f3e2011-09-21 15:37:46 +10001455 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001456 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001457 bitmap->allclean = 0;
1458 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001459 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001460 offset += blocks;
1461 if (sectors > blocks)
1462 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001463 else
1464 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001465 }
1466}
NeilBrownac2f40b2010-06-01 19:37:31 +10001467EXPORT_SYMBOL(bitmap_endwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001468
NeilBrown57dab0b2010-10-19 10:03:39 +11001469static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001470 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001471{
1472 bitmap_counter_t *bmc;
1473 int rv;
1474 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1475 *blocks = 1024;
1476 return 1; /* always resync if no bitmap */
1477 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001478 spin_lock_irq(&bitmap->counts.lock);
1479 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001480 rv = 0;
1481 if (bmc) {
1482 /* locked */
1483 if (RESYNC(*bmc))
1484 rv = 1;
1485 else if (NEEDED(*bmc)) {
1486 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001487 if (!degraded) { /* don't set/clear bits if degraded */
1488 *bmc |= RESYNC_MASK;
1489 *bmc &= ~NEEDED_MASK;
1490 }
NeilBrown32a76272005-06-21 17:17:14 -07001491 }
1492 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001493 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001494 return rv;
1495}
1496
NeilBrown57dab0b2010-10-19 10:03:39 +11001497int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001498 int degraded)
1499{
1500 /* bitmap_start_sync must always report on multiples of whole
1501 * pages, otherwise resync (which is very PAGE_SIZE based) will
1502 * get confused.
1503 * So call __bitmap_start_sync repeatedly (if needed) until
1504 * At least PAGE_SIZE>>9 blocks are covered.
1505 * Return the 'or' of the result.
1506 */
1507 int rv = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001508 sector_t blocks1;
NeilBrown1187cf02009-03-31 14:27:02 +11001509
1510 *blocks = 0;
1511 while (*blocks < (PAGE_SIZE>>9)) {
1512 rv |= __bitmap_start_sync(bitmap, offset,
1513 &blocks1, degraded);
1514 offset += blocks1;
1515 *blocks += blocks1;
1516 }
1517 return rv;
1518}
NeilBrownac2f40b2010-06-01 19:37:31 +10001519EXPORT_SYMBOL(bitmap_start_sync);
NeilBrown1187cf02009-03-31 14:27:02 +11001520
NeilBrown57dab0b2010-10-19 10:03:39 +11001521void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted)
NeilBrown32a76272005-06-21 17:17:14 -07001522{
1523 bitmap_counter_t *bmc;
1524 unsigned long flags;
NeilBrownac2f40b2010-06-01 19:37:31 +10001525
1526 if (bitmap == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001527 *blocks = 1024;
1528 return;
1529 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001530 spin_lock_irqsave(&bitmap->counts.lock, flags);
1531 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001532 if (bmc == NULL)
1533 goto unlock;
1534 /* locked */
NeilBrown32a76272005-06-21 17:17:14 -07001535 if (RESYNC(*bmc)) {
1536 *bmc &= ~RESYNC_MASK;
1537
1538 if (!NEEDED(*bmc) && aborted)
1539 *bmc |= NEEDED_MASK;
1540 else {
NeilBrown2585f3e2011-09-21 15:37:46 +10001541 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001542 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001543 bitmap->allclean = 0;
1544 }
NeilBrown32a76272005-06-21 17:17:14 -07001545 }
1546 }
1547 unlock:
NeilBrown40cffcc2012-05-22 13:55:24 +10001548 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001549}
NeilBrownac2f40b2010-06-01 19:37:31 +10001550EXPORT_SYMBOL(bitmap_end_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001551
1552void bitmap_close_sync(struct bitmap *bitmap)
1553{
1554 /* Sync has finished, and any bitmap chunks that weren't synced
1555 * properly have been aborted. It remains to us to clear the
1556 * RESYNC bit wherever it is still on
1557 */
1558 sector_t sector = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001559 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001560 if (!bitmap)
1561 return;
NeilBrown32a76272005-06-21 17:17:14 -07001562 while (sector < bitmap->mddev->resync_max_sectors) {
1563 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001564 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001565 }
1566}
NeilBrownac2f40b2010-06-01 19:37:31 +10001567EXPORT_SYMBOL(bitmap_close_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001568
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001569void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector, bool force)
NeilBrownb47490c2008-02-06 01:39:50 -08001570{
1571 sector_t s = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001572 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001573
1574 if (!bitmap)
1575 return;
1576 if (sector == 0) {
1577 bitmap->last_end_sync = jiffies;
1578 return;
1579 }
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001580 if (!force && time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001581 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001582 return;
1583 wait_event(bitmap->mddev->recovery_wait,
1584 atomic_read(&bitmap->mddev->recovery_active) == 0);
1585
NeilBrown75d3da42011-01-14 09:14:34 +11001586 bitmap->mddev->curr_resync_completed = sector;
NeilBrown070dc6d2010-08-30 17:33:34 +10001587 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrown40cffcc2012-05-22 13:55:24 +10001588 sector &= ~((1ULL << bitmap->counts.chunkshift) - 1);
NeilBrownb47490c2008-02-06 01:39:50 -08001589 s = 0;
1590 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1591 bitmap_end_sync(bitmap, s, &blocks, 0);
1592 s += blocks;
1593 }
1594 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001595 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001596}
NeilBrownac2f40b2010-06-01 19:37:31 +10001597EXPORT_SYMBOL(bitmap_cond_end_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001598
NeilBrown6a079972005-09-09 16:23:44 -07001599static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001600{
1601 /* For each chunk covered by any of these sectors, set the
NeilBrownef99bf42012-05-22 13:55:08 +10001602 * counter to 2 and possibly set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001603 * be 0 at this point
1604 */
NeilBrown193f1c92005-08-04 12:53:33 -07001605
NeilBrown57dab0b2010-10-19 10:03:39 +11001606 sector_t secs;
NeilBrown193f1c92005-08-04 12:53:33 -07001607 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001608 spin_lock_irq(&bitmap->counts.lock);
1609 bmc = bitmap_get_counter(&bitmap->counts, offset, &secs, 1);
NeilBrown193f1c92005-08-04 12:53:33 -07001610 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001611 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001612 return;
NeilBrown32a76272005-06-21 17:17:14 -07001613 }
NeilBrownac2f40b2010-06-01 19:37:31 +10001614 if (!*bmc) {
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001615 *bmc = 2;
NeilBrown40cffcc2012-05-22 13:55:24 +10001616 bitmap_count_page(&bitmap->counts, offset, 1);
1617 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001618 bitmap->allclean = 0;
NeilBrown193f1c92005-08-04 12:53:33 -07001619 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001620 if (needed)
1621 *bmc |= NEEDED_MASK;
NeilBrown40cffcc2012-05-22 13:55:24 +10001622 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001623}
1624
Paul Clements9b1d1da2006-10-03 01:15:49 -07001625/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1626void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1627{
1628 unsigned long chunk;
1629
1630 for (chunk = s; chunk <= e; chunk++) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001631 sector_t sec = (sector_t)chunk << bitmap->counts.chunkshift;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001632 bitmap_set_memory_bits(bitmap, sec, 1);
1633 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001634 if (sec < bitmap->mddev->recovery_cp)
1635 /* We are asserting that the array is dirty,
1636 * so move the recovery_cp address back so
1637 * that it is obvious that it is dirty
1638 */
1639 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001640 }
1641}
1642
NeilBrown32a76272005-06-21 17:17:14 -07001643/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001644 * flush out any pending updates
1645 */
NeilBrownfd01b882011-10-11 16:47:53 +11001646void bitmap_flush(struct mddev *mddev)
NeilBrown6b8b3e82005-08-04 12:53:35 -07001647{
1648 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001649 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001650
1651 if (!bitmap) /* there was no bitmap */
1652 return;
1653
1654 /* run the daemon_work three time to ensure everything is flushed
1655 * that can be
1656 */
NeilBrown1b04be92009-12-14 12:49:53 +11001657 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001658 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001659 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001660 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001661 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001662 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001663 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001664 bitmap_update_sb(bitmap);
1665}
1666
1667/*
NeilBrown32a76272005-06-21 17:17:14 -07001668 * free memory that was allocated
1669 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001670static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001671{
1672 unsigned long k, pages;
1673 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001674
1675 if (!bitmap) /* there was no bitmap */
1676 return;
1677
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001678 if (mddev_is_clustered(bitmap->mddev) && bitmap->mddev->cluster_info &&
1679 bitmap->cluster_slot == md_cluster_ops->slot_number(bitmap->mddev))
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001680 md_cluster_stop(bitmap->mddev);
1681
NeilBrownfae7d322012-05-22 13:55:21 +10001682 /* Shouldn't be needed - but just in case.... */
1683 wait_event(bitmap->write_wait,
1684 atomic_read(&bitmap->pending_writes) == 0);
1685
1686 /* release the bitmap file */
1687 bitmap_file_unmap(&bitmap->storage);
NeilBrown32a76272005-06-21 17:17:14 -07001688
NeilBrown40cffcc2012-05-22 13:55:24 +10001689 bp = bitmap->counts.bp;
1690 pages = bitmap->counts.pages;
NeilBrown32a76272005-06-21 17:17:14 -07001691
1692 /* free all allocated memory */
1693
NeilBrown32a76272005-06-21 17:17:14 -07001694 if (bp) /* deallocate the page memory */
1695 for (k = 0; k < pages; k++)
1696 if (bp[k].map && !bp[k].hijacked)
1697 kfree(bp[k].map);
1698 kfree(bp);
1699 kfree(bitmap);
1700}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001701
NeilBrownfd01b882011-10-11 16:47:53 +11001702void bitmap_destroy(struct mddev *mddev)
NeilBrown3178b0d2005-09-09 16:23:50 -07001703{
1704 struct bitmap *bitmap = mddev->bitmap;
1705
1706 if (!bitmap) /* there was no bitmap */
1707 return;
1708
NeilBrownc3d97142009-12-14 12:49:52 +11001709 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown978a7a42014-12-15 12:56:58 +11001710 spin_lock(&mddev->lock);
NeilBrown3178b0d2005-09-09 16:23:50 -07001711 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrown978a7a42014-12-15 12:56:58 +11001712 spin_unlock(&mddev->lock);
NeilBrownc3d97142009-12-14 12:49:52 +11001713 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001714 if (mddev->thread)
1715 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001716
NeilBrownece5cff2009-12-14 12:49:56 +11001717 if (bitmap->sysfs_can_clear)
1718 sysfs_put(bitmap->sysfs_can_clear);
1719
NeilBrown3178b0d2005-09-09 16:23:50 -07001720 bitmap_free(bitmap);
1721}
NeilBrown32a76272005-06-21 17:17:14 -07001722
1723/*
1724 * initialize the bitmap structure
1725 * if this returns an error, bitmap_destroy must be called to do clean up
1726 */
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001727struct bitmap *bitmap_create(struct mddev *mddev, int slot)
NeilBrown32a76272005-06-21 17:17:14 -07001728{
1729 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001730 sector_t blocks = mddev->resync_max_sectors;
NeilBrownc3d97142009-12-14 12:49:52 +11001731 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001732 int err;
Tejun Heo324a56e2013-12-11 14:11:53 -05001733 struct kernfs_node *bm = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001734
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001735 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001736
NeilBrownc3d97142009-12-14 12:49:52 +11001737 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001738
NeilBrown9ffae0c2006-01-06 00:20:32 -08001739 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001740 if (!bitmap)
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001741 return ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -07001742
NeilBrown40cffcc2012-05-22 13:55:24 +10001743 spin_lock_init(&bitmap->counts.lock);
NeilBrownce25c312006-06-26 00:27:49 -07001744 atomic_set(&bitmap->pending_writes, 0);
1745 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001746 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrowne5551902010-03-31 11:21:44 +11001747 init_waitqueue_head(&bitmap->behind_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001748
NeilBrown32a76272005-06-21 17:17:14 -07001749 bitmap->mddev = mddev;
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001750 bitmap->cluster_slot = slot;
NeilBrown32a76272005-06-21 17:17:14 -07001751
NeilBrown5ff5aff2010-06-01 19:37:32 +10001752 if (mddev->kobj.sd)
Tejun Heo388975c2013-09-11 23:19:13 -04001753 bm = sysfs_get_dirent(mddev->kobj.sd, "bitmap");
NeilBrownece5cff2009-12-14 12:49:56 +11001754 if (bm) {
Tejun Heo388975c2013-09-11 23:19:13 -04001755 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, "can_clear");
NeilBrownece5cff2009-12-14 12:49:56 +11001756 sysfs_put(bm);
1757 } else
1758 bitmap->sysfs_can_clear = NULL;
1759
NeilBrown1ec885c2012-05-22 13:55:10 +10001760 bitmap->storage.file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001761 if (file) {
1762 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001763 /* As future accesses to this file will use bmap,
1764 * and bypass the page cache, we must sync the file
1765 * first.
1766 */
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001767 vfs_fsync(file, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001768 }
NeilBrown42a04b52009-12-14 12:49:53 +11001769 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
Jonathan Brassow9c810752011-06-08 17:59:30 -05001770 if (!mddev->bitmap_info.external) {
1771 /*
1772 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1773 * instructing us to create a new on-disk bitmap instance.
1774 */
1775 if (test_and_clear_bit(MD_ARRAY_FIRST_USE, &mddev->flags))
1776 err = bitmap_new_disk_sb(bitmap);
1777 else
1778 err = bitmap_read_sb(bitmap);
1779 } else {
NeilBrownece5cff2009-12-14 12:49:56 +11001780 err = 0;
1781 if (mddev->bitmap_info.chunksize == 0 ||
1782 mddev->bitmap_info.daemon_sleep == 0)
1783 /* chunksize and time_base need to be
1784 * set first. */
1785 err = -EINVAL;
1786 }
NeilBrown32a76272005-06-21 17:17:14 -07001787 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001788 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001789
NeilBrown624ce4f2009-12-14 12:49:56 +11001790 bitmap->daemon_lastrun = jiffies;
NeilBrownd60b4792012-05-22 13:55:25 +10001791 err = bitmap_resize(bitmap, blocks, mddev->bitmap_info.chunksize, 1);
1792 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001793 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001794
NeilBrown69e51b42010-06-01 19:37:35 +10001795 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
NeilBrownd60b4792012-05-22 13:55:25 +10001796 bitmap->counts.pages, bmname(bitmap));
NeilBrown69e51b42010-06-01 19:37:35 +10001797
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001798 err = test_bit(BITMAP_WRITE_ERROR, &bitmap->flags) ? -EIO : 0;
1799 if (err)
1800 goto error;
NeilBrown69e51b42010-06-01 19:37:35 +10001801
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001802 return bitmap;
NeilBrown69e51b42010-06-01 19:37:35 +10001803 error:
1804 bitmap_free(bitmap);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001805 return ERR_PTR(err);
NeilBrown69e51b42010-06-01 19:37:35 +10001806}
1807
NeilBrownfd01b882011-10-11 16:47:53 +11001808int bitmap_load(struct mddev *mddev)
NeilBrown69e51b42010-06-01 19:37:35 +10001809{
1810 int err = 0;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001811 sector_t start = 0;
NeilBrown69e51b42010-06-01 19:37:35 +10001812 sector_t sector = 0;
1813 struct bitmap *bitmap = mddev->bitmap;
1814
1815 if (!bitmap)
1816 goto out;
1817
1818 /* Clear out old bitmap info first: Either there is none, or we
1819 * are resuming after someone else has possibly changed things,
1820 * so we should forget old cached info.
1821 * All chunks should be clean, but some might need_sync.
1822 */
1823 while (sector < mddev->resync_max_sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001824 sector_t blocks;
NeilBrown69e51b42010-06-01 19:37:35 +10001825 bitmap_start_sync(bitmap, sector, &blocks, 0);
1826 sector += blocks;
1827 }
1828 bitmap_close_sync(bitmap);
1829
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001830 if (mddev->degraded == 0
1831 || bitmap->events_cleared == mddev->events)
1832 /* no need to keep dirty bits to optimise a
1833 * re-add of a missing device */
1834 start = mddev->recovery_cp;
NeilBrown69e51b42010-06-01 19:37:35 +10001835
NeilBrownafbaa902012-04-12 16:05:06 +10001836 mutex_lock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001837 err = bitmap_init_from_disk(bitmap, start);
NeilBrownafbaa902012-04-12 16:05:06 +10001838 mutex_unlock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001839
NeilBrown32a76272005-06-21 17:17:14 -07001840 if (err)
NeilBrown69e51b42010-06-01 19:37:35 +10001841 goto out;
NeilBrownb405fe92012-05-22 13:55:15 +10001842 clear_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +10001843
1844 /* Kick recovery in case any bits were set */
1845 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
NeilBrown3178b0d2005-09-09 16:23:50 -07001846
NeilBrown1b04be92009-12-14 12:49:53 +11001847 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001848 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001849
NeilBrown4ad13662007-07-17 04:06:13 -07001850 bitmap_update_sb(bitmap);
1851
NeilBrownb405fe92012-05-22 13:55:15 +10001852 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown69e51b42010-06-01 19:37:35 +10001853 err = -EIO;
1854out:
NeilBrown3178b0d2005-09-09 16:23:50 -07001855 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001856}
NeilBrown69e51b42010-06-01 19:37:35 +10001857EXPORT_SYMBOL_GPL(bitmap_load);
NeilBrown32a76272005-06-21 17:17:14 -07001858
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001859/* Loads the bitmap associated with slot and copies the resync information
1860 * to our bitmap
1861 */
1862int bitmap_copy_from_slot(struct mddev *mddev, int slot,
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001863 sector_t *low, sector_t *high, bool clear_bits)
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001864{
1865 int rv = 0, i, j;
1866 sector_t block, lo = 0, hi = 0;
1867 struct bitmap_counts *counts;
1868 struct bitmap *bitmap = bitmap_create(mddev, slot);
1869
1870 if (IS_ERR(bitmap))
1871 return PTR_ERR(bitmap);
1872
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001873 rv = bitmap_init_from_disk(bitmap, 0);
1874 if (rv)
1875 goto err;
1876
1877 counts = &bitmap->counts;
1878 for (j = 0; j < counts->chunks; j++) {
1879 block = (sector_t)j << counts->chunkshift;
1880 if (bitmap_file_test_bit(bitmap, block)) {
1881 if (!lo)
1882 lo = block;
1883 hi = block;
1884 bitmap_file_clear_bit(bitmap, block);
1885 bitmap_set_memory_bits(mddev->bitmap, block, 1);
1886 bitmap_file_set_bit(mddev->bitmap, block);
1887 }
1888 }
1889
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001890 if (clear_bits) {
1891 bitmap_update_sb(bitmap);
1892 /* Setting this for the ev_page should be enough.
1893 * And we do not require both write_all and PAGE_DIRT either
1894 */
1895 for (i = 0; i < bitmap->storage.file_pages; i++)
1896 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
1897 bitmap_write_all(bitmap);
1898 bitmap_unplug(bitmap);
1899 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001900 *low = lo;
1901 *high = hi;
1902err:
1903 bitmap_free(bitmap);
1904 return rv;
1905}
1906EXPORT_SYMBOL_GPL(bitmap_copy_from_slot);
1907
1908
NeilBrown57148962012-03-19 12:46:40 +11001909void bitmap_status(struct seq_file *seq, struct bitmap *bitmap)
1910{
1911 unsigned long chunk_kb;
NeilBrown40cffcc2012-05-22 13:55:24 +10001912 struct bitmap_counts *counts;
NeilBrown57148962012-03-19 12:46:40 +11001913
1914 if (!bitmap)
1915 return;
1916
NeilBrown40cffcc2012-05-22 13:55:24 +10001917 counts = &bitmap->counts;
1918
NeilBrown57148962012-03-19 12:46:40 +11001919 chunk_kb = bitmap->mddev->bitmap_info.chunksize >> 10;
1920 seq_printf(seq, "bitmap: %lu/%lu pages [%luKB], "
1921 "%lu%s chunk",
NeilBrown40cffcc2012-05-22 13:55:24 +10001922 counts->pages - counts->missing_pages,
1923 counts->pages,
1924 (counts->pages - counts->missing_pages)
NeilBrown57148962012-03-19 12:46:40 +11001925 << (PAGE_SHIFT - 10),
1926 chunk_kb ? chunk_kb : bitmap->mddev->bitmap_info.chunksize,
1927 chunk_kb ? "KB" : "B");
NeilBrown1ec885c2012-05-22 13:55:10 +10001928 if (bitmap->storage.file) {
NeilBrown57148962012-03-19 12:46:40 +11001929 seq_printf(seq, ", file: ");
Miklos Szeredi2726d562015-06-19 10:30:28 +02001930 seq_file_path(seq, bitmap->storage.file, " \t\n");
NeilBrown57148962012-03-19 12:46:40 +11001931 }
1932
1933 seq_printf(seq, "\n");
NeilBrown57148962012-03-19 12:46:40 +11001934}
1935
NeilBrownd60b4792012-05-22 13:55:25 +10001936int bitmap_resize(struct bitmap *bitmap, sector_t blocks,
1937 int chunksize, int init)
1938{
1939 /* If chunk_size is 0, choose an appropriate chunk size.
1940 * Then possibly allocate new storage space.
1941 * Then quiesce, copy bits, replace bitmap, and re-start
1942 *
1943 * This function is called both to set up the initial bitmap
1944 * and to resize the bitmap while the array is active.
1945 * If this happens as a result of the array being resized,
1946 * chunksize will be zero, and we need to choose a suitable
1947 * chunksize, otherwise we use what we are given.
1948 */
1949 struct bitmap_storage store;
1950 struct bitmap_counts old_counts;
1951 unsigned long chunks;
1952 sector_t block;
1953 sector_t old_blocks, new_blocks;
1954 int chunkshift;
1955 int ret = 0;
1956 long pages;
1957 struct bitmap_page *new_bp;
1958
1959 if (chunksize == 0) {
1960 /* If there is enough space, leave the chunk size unchanged,
1961 * else increase by factor of two until there is enough space.
1962 */
1963 long bytes;
1964 long space = bitmap->mddev->bitmap_info.space;
1965
1966 if (space == 0) {
1967 /* We don't know how much space there is, so limit
1968 * to current size - in sectors.
1969 */
1970 bytes = DIV_ROUND_UP(bitmap->counts.chunks, 8);
1971 if (!bitmap->mddev->bitmap_info.external)
1972 bytes += sizeof(bitmap_super_t);
1973 space = DIV_ROUND_UP(bytes, 512);
1974 bitmap->mddev->bitmap_info.space = space;
1975 }
1976 chunkshift = bitmap->counts.chunkshift;
1977 chunkshift--;
1978 do {
1979 /* 'chunkshift' is shift from block size to chunk size */
1980 chunkshift++;
1981 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1982 bytes = DIV_ROUND_UP(chunks, 8);
1983 if (!bitmap->mddev->bitmap_info.external)
1984 bytes += sizeof(bitmap_super_t);
1985 } while (bytes > (space << 9));
1986 } else
1987 chunkshift = ffz(~chunksize) - BITMAP_BLOCK_SHIFT;
1988
1989 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1990 memset(&store, 0, sizeof(store));
1991 if (bitmap->mddev->bitmap_info.offset || bitmap->mddev->bitmap_info.file)
1992 ret = bitmap_storage_alloc(&store, chunks,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001993 !bitmap->mddev->bitmap_info.external,
NeilBrownda6fb7a2015-10-01 16:03:38 +10001994 mddev_is_clustered(bitmap->mddev)
1995 ? bitmap->cluster_slot : 0);
NeilBrownd60b4792012-05-22 13:55:25 +10001996 if (ret)
1997 goto err;
1998
1999 pages = DIV_ROUND_UP(chunks, PAGE_COUNTER_RATIO);
2000
2001 new_bp = kzalloc(pages * sizeof(*new_bp), GFP_KERNEL);
2002 ret = -ENOMEM;
2003 if (!new_bp) {
2004 bitmap_file_unmap(&store);
2005 goto err;
2006 }
2007
2008 if (!init)
2009 bitmap->mddev->pers->quiesce(bitmap->mddev, 1);
2010
2011 store.file = bitmap->storage.file;
2012 bitmap->storage.file = NULL;
2013
2014 if (store.sb_page && bitmap->storage.sb_page)
2015 memcpy(page_address(store.sb_page),
2016 page_address(bitmap->storage.sb_page),
2017 sizeof(bitmap_super_t));
2018 bitmap_file_unmap(&bitmap->storage);
2019 bitmap->storage = store;
2020
2021 old_counts = bitmap->counts;
2022 bitmap->counts.bp = new_bp;
2023 bitmap->counts.pages = pages;
2024 bitmap->counts.missing_pages = pages;
2025 bitmap->counts.chunkshift = chunkshift;
2026 bitmap->counts.chunks = chunks;
2027 bitmap->mddev->bitmap_info.chunksize = 1 << (chunkshift +
2028 BITMAP_BLOCK_SHIFT);
2029
2030 blocks = min(old_counts.chunks << old_counts.chunkshift,
2031 chunks << chunkshift);
2032
2033 spin_lock_irq(&bitmap->counts.lock);
2034 for (block = 0; block < blocks; ) {
2035 bitmap_counter_t *bmc_old, *bmc_new;
2036 int set;
2037
2038 bmc_old = bitmap_get_counter(&old_counts, block,
2039 &old_blocks, 0);
2040 set = bmc_old && NEEDED(*bmc_old);
2041
2042 if (set) {
2043 bmc_new = bitmap_get_counter(&bitmap->counts, block,
2044 &new_blocks, 1);
2045 if (*bmc_new == 0) {
2046 /* need to set on-disk bits too. */
2047 sector_t end = block + new_blocks;
2048 sector_t start = block >> chunkshift;
2049 start <<= chunkshift;
2050 while (start < end) {
2051 bitmap_file_set_bit(bitmap, block);
2052 start += 1 << chunkshift;
2053 }
2054 *bmc_new = 2;
2055 bitmap_count_page(&bitmap->counts,
2056 block, 1);
2057 bitmap_set_pending(&bitmap->counts,
2058 block);
2059 }
2060 *bmc_new |= NEEDED_MASK;
2061 if (new_blocks < old_blocks)
2062 old_blocks = new_blocks;
2063 }
2064 block += old_blocks;
2065 }
2066
2067 if (!init) {
2068 int i;
2069 while (block < (chunks << chunkshift)) {
2070 bitmap_counter_t *bmc;
2071 bmc = bitmap_get_counter(&bitmap->counts, block,
2072 &new_blocks, 1);
2073 if (bmc) {
2074 /* new space. It needs to be resynced, so
2075 * we set NEEDED_MASK.
2076 */
2077 if (*bmc == 0) {
2078 *bmc = NEEDED_MASK | 2;
2079 bitmap_count_page(&bitmap->counts,
2080 block, 1);
2081 bitmap_set_pending(&bitmap->counts,
2082 block);
2083 }
2084 }
2085 block += new_blocks;
2086 }
2087 for (i = 0; i < bitmap->storage.file_pages; i++)
2088 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
2089 }
2090 spin_unlock_irq(&bitmap->counts.lock);
2091
2092 if (!init) {
2093 bitmap_unplug(bitmap);
2094 bitmap->mddev->pers->quiesce(bitmap->mddev, 0);
2095 }
2096 ret = 0;
2097err:
2098 return ret;
2099}
2100EXPORT_SYMBOL_GPL(bitmap_resize);
2101
NeilBrown43a70502009-12-14 12:49:55 +11002102static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002103location_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002104{
2105 ssize_t len;
NeilBrownac2f40b2010-06-01 19:37:31 +10002106 if (mddev->bitmap_info.file)
NeilBrown43a70502009-12-14 12:49:55 +11002107 len = sprintf(page, "file");
NeilBrownac2f40b2010-06-01 19:37:31 +10002108 else if (mddev->bitmap_info.offset)
NeilBrown43a70502009-12-14 12:49:55 +11002109 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10002110 else
NeilBrown43a70502009-12-14 12:49:55 +11002111 len = sprintf(page, "none");
2112 len += sprintf(page+len, "\n");
2113 return len;
2114}
2115
2116static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002117location_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002118{
2119
2120 if (mddev->pers) {
2121 if (!mddev->pers->quiesce)
2122 return -EBUSY;
2123 if (mddev->recovery || mddev->sync_thread)
2124 return -EBUSY;
2125 }
2126
2127 if (mddev->bitmap || mddev->bitmap_info.file ||
2128 mddev->bitmap_info.offset) {
2129 /* bitmap already configured. Only option is to clear it */
2130 if (strncmp(buf, "none", 4) != 0)
2131 return -EBUSY;
2132 if (mddev->pers) {
2133 mddev->pers->quiesce(mddev, 1);
2134 bitmap_destroy(mddev);
2135 mddev->pers->quiesce(mddev, 0);
2136 }
2137 mddev->bitmap_info.offset = 0;
2138 if (mddev->bitmap_info.file) {
2139 struct file *f = mddev->bitmap_info.file;
2140 mddev->bitmap_info.file = NULL;
NeilBrown43a70502009-12-14 12:49:55 +11002141 fput(f);
2142 }
2143 } else {
2144 /* No bitmap, OK to set a location */
2145 long long offset;
2146 if (strncmp(buf, "none", 4) == 0)
2147 /* nothing to be done */;
2148 else if (strncmp(buf, "file:", 5) == 0) {
2149 /* Not supported yet */
2150 return -EINVAL;
2151 } else {
2152 int rv;
2153 if (buf[0] == '+')
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002154 rv = kstrtoll(buf+1, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002155 else
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002156 rv = kstrtoll(buf, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002157 if (rv)
2158 return rv;
2159 if (offset == 0)
2160 return -EINVAL;
NeilBrownece5cff2009-12-14 12:49:56 +11002161 if (mddev->bitmap_info.external == 0 &&
2162 mddev->major_version == 0 &&
NeilBrown43a70502009-12-14 12:49:55 +11002163 offset != mddev->bitmap_info.default_offset)
2164 return -EINVAL;
2165 mddev->bitmap_info.offset = offset;
2166 if (mddev->pers) {
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002167 struct bitmap *bitmap;
NeilBrown43a70502009-12-14 12:49:55 +11002168 mddev->pers->quiesce(mddev, 1);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002169 bitmap = bitmap_create(mddev, -1);
2170 if (IS_ERR(bitmap))
2171 rv = PTR_ERR(bitmap);
2172 else {
2173 mddev->bitmap = bitmap;
NeilBrown4474ca42012-03-19 12:46:37 +11002174 rv = bitmap_load(mddev);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002175 if (rv) {
2176 bitmap_destroy(mddev);
2177 mddev->bitmap_info.offset = 0;
2178 }
NeilBrown43a70502009-12-14 12:49:55 +11002179 }
2180 mddev->pers->quiesce(mddev, 0);
2181 if (rv)
2182 return rv;
2183 }
2184 }
2185 }
2186 if (!mddev->external) {
2187 /* Ensure new bitmap info is stored in
2188 * metadata promptly.
2189 */
2190 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2191 md_wakeup_thread(mddev->thread);
2192 }
2193 return len;
2194}
2195
2196static struct md_sysfs_entry bitmap_location =
2197__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
2198
NeilBrown6409bb02012-05-22 13:55:07 +10002199/* 'bitmap/space' is the space available at 'location' for the
2200 * bitmap. This allows the kernel to know when it is safe to
2201 * resize the bitmap to match a resized array.
2202 */
2203static ssize_t
2204space_show(struct mddev *mddev, char *page)
2205{
2206 return sprintf(page, "%lu\n", mddev->bitmap_info.space);
2207}
2208
2209static ssize_t
2210space_store(struct mddev *mddev, const char *buf, size_t len)
2211{
2212 unsigned long sectors;
2213 int rv;
2214
2215 rv = kstrtoul(buf, 10, &sectors);
2216 if (rv)
2217 return rv;
2218
2219 if (sectors == 0)
2220 return -EINVAL;
2221
2222 if (mddev->bitmap &&
NeilBrown9b1215c2012-05-22 13:55:11 +10002223 sectors < (mddev->bitmap->storage.bytes + 511) >> 9)
NeilBrown6409bb02012-05-22 13:55:07 +10002224 return -EFBIG; /* Bitmap is too big for this small space */
2225
2226 /* could make sure it isn't too big, but that isn't really
2227 * needed - user-space should be careful.
2228 */
2229 mddev->bitmap_info.space = sectors;
2230 return len;
2231}
2232
2233static struct md_sysfs_entry bitmap_space =
2234__ATTR(space, S_IRUGO|S_IWUSR, space_show, space_store);
2235
NeilBrown43a70502009-12-14 12:49:55 +11002236static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002237timeout_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002238{
2239 ssize_t len;
2240 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
2241 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
NeilBrownac2f40b2010-06-01 19:37:31 +10002242
NeilBrown43a70502009-12-14 12:49:55 +11002243 len = sprintf(page, "%lu", secs);
2244 if (jifs)
2245 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
2246 len += sprintf(page+len, "\n");
2247 return len;
2248}
2249
2250static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002251timeout_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002252{
2253 /* timeout can be set at any time */
2254 unsigned long timeout;
2255 int rv = strict_strtoul_scaled(buf, &timeout, 4);
2256 if (rv)
2257 return rv;
2258
2259 /* just to make sure we don't overflow... */
2260 if (timeout >= LONG_MAX / HZ)
2261 return -EINVAL;
2262
2263 timeout = timeout * HZ / 10000;
2264
2265 if (timeout >= MAX_SCHEDULE_TIMEOUT)
2266 timeout = MAX_SCHEDULE_TIMEOUT-1;
2267 if (timeout < 1)
2268 timeout = 1;
2269 mddev->bitmap_info.daemon_sleep = timeout;
2270 if (mddev->thread) {
2271 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
2272 * the bitmap is all clean and we don't need to
2273 * adjust the timeout right now
2274 */
2275 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
2276 mddev->thread->timeout = timeout;
2277 md_wakeup_thread(mddev->thread);
2278 }
2279 }
2280 return len;
2281}
2282
2283static struct md_sysfs_entry bitmap_timeout =
2284__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
2285
2286static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002287backlog_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002288{
2289 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
2290}
2291
2292static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002293backlog_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002294{
2295 unsigned long backlog;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002296 int rv = kstrtoul(buf, 10, &backlog);
NeilBrown43a70502009-12-14 12:49:55 +11002297 if (rv)
2298 return rv;
2299 if (backlog > COUNTER_MAX)
2300 return -EINVAL;
2301 mddev->bitmap_info.max_write_behind = backlog;
2302 return len;
2303}
2304
2305static struct md_sysfs_entry bitmap_backlog =
2306__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
2307
2308static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002309chunksize_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002310{
2311 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
2312}
2313
2314static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002315chunksize_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002316{
2317 /* Can only be changed when no bitmap is active */
2318 int rv;
2319 unsigned long csize;
2320 if (mddev->bitmap)
2321 return -EBUSY;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002322 rv = kstrtoul(buf, 10, &csize);
NeilBrown43a70502009-12-14 12:49:55 +11002323 if (rv)
2324 return rv;
2325 if (csize < 512 ||
2326 !is_power_of_2(csize))
2327 return -EINVAL;
2328 mddev->bitmap_info.chunksize = csize;
2329 return len;
2330}
2331
2332static struct md_sysfs_entry bitmap_chunksize =
2333__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2334
NeilBrownfd01b882011-10-11 16:47:53 +11002335static ssize_t metadata_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002336{
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002337 if (mddev_is_clustered(mddev))
2338 return sprintf(page, "clustered\n");
NeilBrownece5cff2009-12-14 12:49:56 +11002339 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2340 ? "external" : "internal"));
2341}
2342
NeilBrownfd01b882011-10-11 16:47:53 +11002343static ssize_t metadata_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002344{
2345 if (mddev->bitmap ||
2346 mddev->bitmap_info.file ||
2347 mddev->bitmap_info.offset)
2348 return -EBUSY;
2349 if (strncmp(buf, "external", 8) == 0)
2350 mddev->bitmap_info.external = 1;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002351 else if ((strncmp(buf, "internal", 8) == 0) ||
2352 (strncmp(buf, "clustered", 9) == 0))
NeilBrownece5cff2009-12-14 12:49:56 +11002353 mddev->bitmap_info.external = 0;
2354 else
2355 return -EINVAL;
2356 return len;
2357}
2358
2359static struct md_sysfs_entry bitmap_metadata =
2360__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2361
NeilBrownfd01b882011-10-11 16:47:53 +11002362static ssize_t can_clear_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002363{
2364 int len;
NeilBrownb7b17c92014-12-15 12:56:59 +11002365 spin_lock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002366 if (mddev->bitmap)
2367 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2368 "false" : "true"));
2369 else
2370 len = sprintf(page, "\n");
NeilBrownb7b17c92014-12-15 12:56:59 +11002371 spin_unlock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002372 return len;
2373}
2374
NeilBrownfd01b882011-10-11 16:47:53 +11002375static ssize_t can_clear_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002376{
2377 if (mddev->bitmap == NULL)
2378 return -ENOENT;
2379 if (strncmp(buf, "false", 5) == 0)
2380 mddev->bitmap->need_sync = 1;
2381 else if (strncmp(buf, "true", 4) == 0) {
2382 if (mddev->degraded)
2383 return -EBUSY;
2384 mddev->bitmap->need_sync = 0;
2385 } else
2386 return -EINVAL;
2387 return len;
2388}
2389
2390static struct md_sysfs_entry bitmap_can_clear =
2391__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2392
Paul Clements696fcd52010-03-08 16:02:37 +11002393static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002394behind_writes_used_show(struct mddev *mddev, char *page)
Paul Clements696fcd52010-03-08 16:02:37 +11002395{
NeilBrownb7b17c92014-12-15 12:56:59 +11002396 ssize_t ret;
2397 spin_lock(&mddev->lock);
Paul Clements696fcd52010-03-08 16:02:37 +11002398 if (mddev->bitmap == NULL)
NeilBrownb7b17c92014-12-15 12:56:59 +11002399 ret = sprintf(page, "0\n");
2400 else
2401 ret = sprintf(page, "%lu\n",
2402 mddev->bitmap->behind_writes_used);
2403 spin_unlock(&mddev->lock);
2404 return ret;
Paul Clements696fcd52010-03-08 16:02:37 +11002405}
2406
2407static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002408behind_writes_used_reset(struct mddev *mddev, const char *buf, size_t len)
Paul Clements696fcd52010-03-08 16:02:37 +11002409{
2410 if (mddev->bitmap)
2411 mddev->bitmap->behind_writes_used = 0;
2412 return len;
2413}
2414
2415static struct md_sysfs_entry max_backlog_used =
2416__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2417 behind_writes_used_show, behind_writes_used_reset);
2418
NeilBrown43a70502009-12-14 12:49:55 +11002419static struct attribute *md_bitmap_attrs[] = {
2420 &bitmap_location.attr,
NeilBrown6409bb02012-05-22 13:55:07 +10002421 &bitmap_space.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002422 &bitmap_timeout.attr,
2423 &bitmap_backlog.attr,
2424 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002425 &bitmap_metadata.attr,
2426 &bitmap_can_clear.attr,
Paul Clements696fcd52010-03-08 16:02:37 +11002427 &max_backlog_used.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002428 NULL
2429};
2430struct attribute_group md_bitmap_group = {
2431 .name = "bitmap",
2432 .attrs = md_bitmap_attrs,
2433};
2434