blob: 431da21cb488878cf84e01c9c564381ac020ffe4 [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,
Guoqing Jiangc9d65032016-05-02 11:50:11 -040049 unsigned long page, int create, int no_hijack)
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");
Guoqing Jiangc9d65032016-05-02 11:50:11 -040093 /* We don't support hijack for cluster raid */
94 if (no_hijack)
95 return -ENOMEM;
NeilBrown32a76272005-06-21 17:17:14 -070096 /* failed - set the hijacked flag so that we can use the
97 * pointer as a counter */
NeilBrown32a76272005-06-21 17:17:14 -070098 if (!bitmap->bp[page].map)
99 bitmap->bp[page].hijacked = 1;
NeilBrownac2f40b2010-06-01 19:37:31 +1000100 } else if (bitmap->bp[page].map ||
101 bitmap->bp[page].hijacked) {
NeilBrown32a76272005-06-21 17:17:14 -0700102 /* somebody beat us to getting the page */
NeilBrown792a1d42012-03-19 12:46:41 +1100103 kfree(mappage);
NeilBrownac2f40b2010-06-01 19:37:31 +1000104 } else {
105
106 /* no page was in place and we have one, so install it */
107
108 bitmap->bp[page].map = mappage;
109 bitmap->missing_pages--;
NeilBrown32a76272005-06-21 17:17:14 -0700110 }
NeilBrown32a76272005-06-21 17:17:14 -0700111 return 0;
112}
113
NeilBrown32a76272005-06-21 17:17:14 -0700114/* if page is completely empty, put it back on the free list, or dealloc it */
115/* if page was hijacked, unmark the flag so it might get alloced next time */
116/* Note: lock should be held when calling this */
NeilBrown40cffcc2012-05-22 13:55:24 +1000117static void bitmap_checkfree(struct bitmap_counts *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700118{
119 char *ptr;
120
121 if (bitmap->bp[page].count) /* page is still busy */
122 return;
123
124 /* page is no longer in use, it can be released */
125
126 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
127 bitmap->bp[page].hijacked = 0;
128 bitmap->bp[page].map = NULL;
NeilBrownac2f40b2010-06-01 19:37:31 +1000129 } else {
130 /* normal case, free the page */
131 ptr = bitmap->bp[page].map;
132 bitmap->bp[page].map = NULL;
133 bitmap->missing_pages++;
NeilBrown792a1d42012-03-19 12:46:41 +1100134 kfree(ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700135 }
NeilBrown32a76272005-06-21 17:17:14 -0700136}
137
NeilBrown32a76272005-06-21 17:17:14 -0700138/*
139 * bitmap file handling - read and write the bitmap file and its superblock
140 */
141
NeilBrown32a76272005-06-21 17:17:14 -0700142/*
143 * basic page I/O operations
144 */
145
NeilBrowna654b9d82005-06-21 17:17:27 -0700146/* IO operations when bitmap is stored near all superblocks */
NeilBrown27581e52012-05-22 13:55:08 +1000147static int read_sb_page(struct mddev *mddev, loff_t offset,
148 struct page *page,
149 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700150{
151 /* choose a good rdev and read the page from there */
152
NeilBrown3cb03002011-10-11 16:45:26 +1100153 struct md_rdev *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700154 sector_t target;
NeilBrowna654b9d82005-06-21 17:17:27 -0700155
NeilBrowndafb20f2012-03-19 12:46:39 +1100156 rdev_for_each(rdev, mddev) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800157 if (! test_bit(In_sync, &rdev->flags)
158 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700159 continue;
160
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100161 target = offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700162
NeilBrown2b193362010-10-27 15:16:40 +1100163 if (sync_page_io(rdev, target,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400164 roundup(size, bdev_logical_block_size(rdev->bdev)),
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100165 page, READ, true)) {
NeilBrownab904d62005-09-09 16:23:52 -0700166 page->index = index;
NeilBrown27581e52012-05-22 13:55:08 +1000167 return 0;
NeilBrownab904d62005-09-09 16:23:52 -0700168 }
169 }
NeilBrown27581e52012-05-22 13:55:08 +1000170 return -EIO;
NeilBrowna654b9d82005-06-21 17:17:27 -0700171}
172
NeilBrownfd01b882011-10-11 16:47:53 +1100173static struct md_rdev *next_active_rdev(struct md_rdev *rdev, struct mddev *mddev)
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000174{
175 /* Iterate the disks of an mddev, using rcu to protect access to the
176 * linked list, and raising the refcount of devices we return to ensure
177 * they don't disappear while in use.
178 * As devices are only added or removed when raid_disk is < 0 and
179 * nr_pending is 0 and In_sync is clear, the entries we return will
180 * still be in the same position on the list when we re-enter
Michael Wangfd177482012-10-11 13:43:21 +1100181 * list_for_each_entry_continue_rcu.
NeilBrown8532e342015-05-20 15:05:09 +1000182 *
183 * Note that if entered with 'rdev == NULL' to start at the
184 * beginning, we temporarily assign 'rdev' to an address which
185 * isn't really an rdev, but which can be used by
186 * list_for_each_entry_continue_rcu() to find the first entry.
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000187 */
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000188 rcu_read_lock();
189 if (rdev == NULL)
190 /* start at the beginning */
NeilBrown8532e342015-05-20 15:05:09 +1000191 rdev = list_entry(&mddev->disks, struct md_rdev, same_set);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000192 else {
193 /* release the previous rdev and start from there. */
194 rdev_dec_pending(rdev, mddev);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000195 }
Michael Wangfd177482012-10-11 13:43:21 +1100196 list_for_each_entry_continue_rcu(rdev, &mddev->disks, same_set) {
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000197 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000198 !test_bit(Faulty, &rdev->flags)) {
199 /* this is a usable devices */
200 atomic_inc(&rdev->nr_pending);
201 rcu_read_unlock();
202 return rdev;
203 }
204 }
205 rcu_read_unlock();
206 return NULL;
207}
208
NeilBrownab6085c2007-05-23 13:58:10 -0700209static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700210{
NeilBrown3cb03002011-10-11 16:45:26 +1100211 struct md_rdev *rdev = NULL;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100212 struct block_device *bdev;
NeilBrownfd01b882011-10-11 16:47:53 +1100213 struct mddev *mddev = bitmap->mddev;
NeilBrown1ec885c2012-05-22 13:55:10 +1000214 struct bitmap_storage *store = &bitmap->storage;
NeilBrowna654b9d82005-06-21 17:17:27 -0700215
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000216 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000217 int size = PAGE_SIZE;
218 loff_t offset = mddev->bitmap_info.offset;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100219
220 bdev = (rdev->meta_bdev) ? rdev->meta_bdev : rdev->bdev;
221
NeilBrown9b1215c2012-05-22 13:55:11 +1000222 if (page->index == store->file_pages-1) {
223 int last_page_size = store->bytes & (PAGE_SIZE-1);
224 if (last_page_size == 0)
225 last_page_size = PAGE_SIZE;
226 size = roundup(last_page_size,
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100227 bdev_logical_block_size(bdev));
NeilBrown9b1215c2012-05-22 13:55:11 +1000228 }
NeilBrownac2f40b2010-06-01 19:37:31 +1000229 /* Just make sure we aren't corrupting data or
230 * metadata
231 */
232 if (mddev->external) {
233 /* Bitmap could be anywhere. */
234 if (rdev->sb_start + offset + (page->index
235 * (PAGE_SIZE/512))
236 > rdev->data_offset
237 &&
238 rdev->sb_start + offset
239 < (rdev->data_offset + mddev->dev_sectors
240 + (PAGE_SIZE/512)))
241 goto bad_alignment;
242 } else if (offset < 0) {
243 /* DATA BITMAP METADATA */
244 if (offset
245 + (long)(page->index * (PAGE_SIZE/512))
246 + size/512 > 0)
247 /* bitmap runs in to metadata */
248 goto bad_alignment;
249 if (rdev->data_offset + mddev->dev_sectors
250 > rdev->sb_start + offset)
251 /* data runs in to bitmap */
252 goto bad_alignment;
253 } else if (rdev->sb_start < rdev->data_offset) {
254 /* METADATA BITMAP DATA */
255 if (rdev->sb_start
256 + offset
257 + page->index*(PAGE_SIZE/512) + size/512
258 > rdev->data_offset)
259 /* bitmap runs in to data */
260 goto bad_alignment;
261 } else {
262 /* DATA METADATA BITMAP - no problems */
263 }
264 md_super_write(mddev, rdev,
265 rdev->sb_start + offset
266 + page->index * (PAGE_SIZE/512),
267 size,
268 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000269 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700270
271 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800272 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700273 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000274
275 bad_alignment:
NeilBrown4b809912008-07-21 17:05:25 +1000276 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700277}
278
NeilBrown4ad13662007-07-17 04:06:13 -0700279static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700280/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700281 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700282 */
NeilBrown4ad13662007-07-17 04:06:13 -0700283static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700284{
NeilBrownd785a062006-06-26 00:27:48 -0700285 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700286
NeilBrown1ec885c2012-05-22 13:55:10 +1000287 if (bitmap->storage.file == NULL) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700288 switch (write_sb_page(bitmap, page, wait)) {
289 case -EINVAL:
NeilBrownb405fe92012-05-22 13:55:15 +1000290 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownf0d76d72007-07-17 04:06:12 -0700291 }
NeilBrown4ad13662007-07-17 04:06:13 -0700292 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700293
NeilBrown4ad13662007-07-17 04:06:13 -0700294 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800295
NeilBrown4ad13662007-07-17 04:06:13 -0700296 while (bh && bh->b_blocknr) {
297 atomic_inc(&bitmap->pending_writes);
298 set_buffer_locked(bh);
299 set_buffer_mapped(bh);
Jens Axboe721a9602011-03-09 11:56:30 +0100300 submit_bh(WRITE | REQ_SYNC, bh);
NeilBrown4ad13662007-07-17 04:06:13 -0700301 bh = bh->b_this_page;
302 }
NeilBrown32a76272005-06-21 17:17:14 -0700303
NeilBrownac2f40b2010-06-01 19:37:31 +1000304 if (wait)
NeilBrown4ad13662007-07-17 04:06:13 -0700305 wait_event(bitmap->write_wait,
306 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700307 }
NeilBrownb405fe92012-05-22 13:55:15 +1000308 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700309 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700310}
311
NeilBrownd785a062006-06-26 00:27:48 -0700312static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700313{
NeilBrownd785a062006-06-26 00:27:48 -0700314 struct bitmap *bitmap = bh->b_private;
NeilBrownd785a062006-06-26 00:27:48 -0700315
NeilBrownb405fe92012-05-22 13:55:15 +1000316 if (!uptodate)
317 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownd785a062006-06-26 00:27:48 -0700318 if (atomic_dec_and_test(&bitmap->pending_writes))
319 wake_up(&bitmap->write_wait);
320}
321
322/* copied from buffer.c */
323static void
324__clear_page_buffers(struct page *page)
325{
326 ClearPagePrivate(page);
327 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300328 put_page(page);
NeilBrownd785a062006-06-26 00:27:48 -0700329}
330static void free_buffers(struct page *page)
331{
NeilBrown27581e52012-05-22 13:55:08 +1000332 struct buffer_head *bh;
NeilBrownd785a062006-06-26 00:27:48 -0700333
NeilBrown27581e52012-05-22 13:55:08 +1000334 if (!PagePrivate(page))
335 return;
336
337 bh = page_buffers(page);
NeilBrownd785a062006-06-26 00:27:48 -0700338 while (bh) {
339 struct buffer_head *next = bh->b_this_page;
340 free_buffer_head(bh);
341 bh = next;
342 }
343 __clear_page_buffers(page);
344 put_page(page);
345}
346
347/* read a page from a file.
348 * We both read the page, and attach buffers to the page to record the
349 * address of each block (using bmap). These addresses will be used
350 * to write the block later, completely bypassing the filesystem.
351 * This usage is similar to how swap files are handled, and allows us
352 * to write to a file with no concerns of memory allocation failing.
353 */
NeilBrown27581e52012-05-22 13:55:08 +1000354static int read_page(struct file *file, unsigned long index,
355 struct bitmap *bitmap,
356 unsigned long count,
357 struct page *page)
NeilBrownd785a062006-06-26 00:27:48 -0700358{
NeilBrown27581e52012-05-22 13:55:08 +1000359 int ret = 0;
Al Viro496ad9a2013-01-23 17:07:38 -0500360 struct inode *inode = file_inode(file);
NeilBrownd785a062006-06-26 00:27:48 -0700361 struct buffer_head *bh;
362 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700363
NeilBrown36a4e1f2011-10-07 14:23:17 +1100364 pr_debug("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE,
365 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700366
NeilBrownd785a062006-06-26 00:27:48 -0700367 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
368 if (!bh) {
NeilBrown27581e52012-05-22 13:55:08 +1000369 ret = -ENOMEM;
NeilBrownd785a062006-06-26 00:27:48 -0700370 goto out;
371 }
372 attach_page_buffers(page, bh);
373 block = index << (PAGE_SHIFT - inode->i_blkbits);
374 while (bh) {
375 if (count == 0)
376 bh->b_blocknr = 0;
377 else {
378 bh->b_blocknr = bmap(inode, block);
379 if (bh->b_blocknr == 0) {
380 /* Cannot use this file! */
NeilBrown27581e52012-05-22 13:55:08 +1000381 ret = -EINVAL;
NeilBrownd785a062006-06-26 00:27:48 -0700382 goto out;
383 }
384 bh->b_bdev = inode->i_sb->s_bdev;
385 if (count < (1<<inode->i_blkbits))
386 count = 0;
387 else
388 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700389
NeilBrownd785a062006-06-26 00:27:48 -0700390 bh->b_end_io = end_bitmap_write;
391 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700392 atomic_inc(&bitmap->pending_writes);
393 set_buffer_locked(bh);
394 set_buffer_mapped(bh);
395 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700396 }
397 block++;
398 bh = bh->b_this_page;
399 }
NeilBrownd785a062006-06-26 00:27:48 -0700400 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700401
402 wait_event(bitmap->write_wait,
403 atomic_read(&bitmap->pending_writes)==0);
NeilBrownb405fe92012-05-22 13:55:15 +1000404 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown27581e52012-05-22 13:55:08 +1000405 ret = -EIO;
NeilBrown32a76272005-06-21 17:17:14 -0700406out:
NeilBrown27581e52012-05-22 13:55:08 +1000407 if (ret)
408 printk(KERN_ALERT "md: bitmap read error: (%dB @ %llu): %d\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800409 (int)PAGE_SIZE,
410 (unsigned long long)index << PAGE_SHIFT,
NeilBrown27581e52012-05-22 13:55:08 +1000411 ret);
412 return ret;
NeilBrown32a76272005-06-21 17:17:14 -0700413}
414
415/*
416 * bitmap file superblock operations
417 */
418
419/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700420void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700421{
422 bitmap_super_t *sb;
NeilBrown32a76272005-06-21 17:17:14 -0700423
424 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700425 return;
NeilBrownece5cff2009-12-14 12:49:56 +1100426 if (bitmap->mddev->bitmap_info.external)
427 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000428 if (!bitmap->storage.sb_page) /* no superblock */
NeilBrown4ad13662007-07-17 04:06:13 -0700429 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000430 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700431 sb->events = cpu_to_le64(bitmap->mddev->events);
NeilBrown8258c532011-05-11 14:26:30 +1000432 if (bitmap->mddev->events < bitmap->events_cleared)
Neil Browna0da84f2008-06-28 08:31:22 +1000433 /* rocking back to read-only */
434 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown8258c532011-05-11 14:26:30 +1000435 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
436 sb->state = cpu_to_le32(bitmap->flags);
NeilBrown43a70502009-12-14 12:49:55 +1100437 /* Just in case these have been changed via sysfs: */
438 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
439 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownb81a0402012-05-22 13:55:26 +1000440 /* This might have been changed by a reshape */
441 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
442 sb->chunksize = cpu_to_le32(bitmap->mddev->bitmap_info.chunksize);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500443 sb->nodes = cpu_to_le32(bitmap->mddev->bitmap_info.nodes);
NeilBrown1dff2b82012-05-22 13:55:34 +1000444 sb->sectors_reserved = cpu_to_le32(bitmap->mddev->
445 bitmap_info.space);
Cong Wangb2f46e62011-11-28 13:25:44 +0800446 kunmap_atomic(sb);
NeilBrown1ec885c2012-05-22 13:55:10 +1000447 write_page(bitmap, bitmap->storage.sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700448}
449
450/* print out the bitmap file superblock */
451void bitmap_print_sb(struct bitmap *bitmap)
452{
453 bitmap_super_t *sb;
454
NeilBrown1ec885c2012-05-22 13:55:10 +1000455 if (!bitmap || !bitmap->storage.sb_page)
NeilBrown32a76272005-06-21 17:17:14 -0700456 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000457 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700458 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700459 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
460 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
461 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700462 *(__u32 *)(sb->uuid+0),
463 *(__u32 *)(sb->uuid+4),
464 *(__u32 *)(sb->uuid+8),
465 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700466 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700467 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700468 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700469 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700470 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
471 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
472 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
473 printk(KERN_DEBUG " sync size: %llu KB\n",
474 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700475 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
Cong Wangb2f46e62011-11-28 13:25:44 +0800476 kunmap_atomic(sb);
NeilBrown32a76272005-06-21 17:17:14 -0700477}
478
Jonathan Brassow9c810752011-06-08 17:59:30 -0500479/*
480 * bitmap_new_disk_sb
481 * @bitmap
482 *
483 * This function is somewhat the reverse of bitmap_read_sb. bitmap_read_sb
484 * reads and verifies the on-disk bitmap superblock and populates bitmap_info.
485 * This function verifies 'bitmap_info' and populates the on-disk bitmap
486 * structure, which is to be written to disk.
487 *
488 * Returns: 0 on success, -Exxx on error
489 */
490static int bitmap_new_disk_sb(struct bitmap *bitmap)
491{
492 bitmap_super_t *sb;
493 unsigned long chunksize, daemon_sleep, write_behind;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500494
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500495 bitmap->storage.sb_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
Jianpeng Ma582e2e02012-10-11 13:45:36 +1100496 if (bitmap->storage.sb_page == NULL)
497 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000498 bitmap->storage.sb_page->index = 0;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500499
NeilBrown1ec885c2012-05-22 13:55:10 +1000500 sb = kmap_atomic(bitmap->storage.sb_page);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500501
502 sb->magic = cpu_to_le32(BITMAP_MAGIC);
503 sb->version = cpu_to_le32(BITMAP_MAJOR_HI);
504
505 chunksize = bitmap->mddev->bitmap_info.chunksize;
506 BUG_ON(!chunksize);
507 if (!is_power_of_2(chunksize)) {
Cong Wangb2f46e62011-11-28 13:25:44 +0800508 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500509 printk(KERN_ERR "bitmap chunksize not a power of 2\n");
510 return -EINVAL;
511 }
512 sb->chunksize = cpu_to_le32(chunksize);
513
514 daemon_sleep = bitmap->mddev->bitmap_info.daemon_sleep;
Eric Engestromc97e0602016-03-07 12:01:05 +0000515 if (!daemon_sleep || (daemon_sleep > MAX_SCHEDULE_TIMEOUT)) {
Jonathan Brassow9c810752011-06-08 17:59:30 -0500516 printk(KERN_INFO "Choosing daemon_sleep default (5 sec)\n");
517 daemon_sleep = 5 * HZ;
518 }
519 sb->daemon_sleep = cpu_to_le32(daemon_sleep);
520 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
521
522 /*
523 * FIXME: write_behind for RAID1. If not specified, what
524 * is a good choice? We choose COUNTER_MAX / 2 arbitrarily.
525 */
526 write_behind = bitmap->mddev->bitmap_info.max_write_behind;
527 if (write_behind > COUNTER_MAX)
528 write_behind = COUNTER_MAX / 2;
529 sb->write_behind = cpu_to_le32(write_behind);
530 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
531
532 /* keep the array size field of the bitmap superblock up to date */
533 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
534
535 memcpy(sb->uuid, bitmap->mddev->uuid, 16);
536
NeilBrownb405fe92012-05-22 13:55:15 +1000537 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown84e92342012-05-22 13:55:14 +1000538 sb->state = cpu_to_le32(bitmap->flags);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500539 bitmap->events_cleared = bitmap->mddev->events;
540 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500541 bitmap->mddev->bitmap_info.nodes = 0;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500542
Cong Wangb2f46e62011-11-28 13:25:44 +0800543 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500544
545 return 0;
546}
547
NeilBrown32a76272005-06-21 17:17:14 -0700548/* read the superblock from the bitmap file and initialize some bitmap fields */
549static int bitmap_read_sb(struct bitmap *bitmap)
550{
551 char *reason = NULL;
552 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700553 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700554 unsigned long long events;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500555 int nodes = 0;
NeilBrown1dff2b82012-05-22 13:55:34 +1000556 unsigned long sectors_reserved = 0;
NeilBrown32a76272005-06-21 17:17:14 -0700557 int err = -EINVAL;
NeilBrown27581e52012-05-22 13:55:08 +1000558 struct page *sb_page;
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000559 loff_t offset = bitmap->mddev->bitmap_info.offset;
NeilBrown32a76272005-06-21 17:17:14 -0700560
NeilBrown1ec885c2012-05-22 13:55:10 +1000561 if (!bitmap->storage.file && !bitmap->mddev->bitmap_info.offset) {
NeilBrownef99bf42012-05-22 13:55:08 +1000562 chunksize = 128 * 1024 * 1024;
563 daemon_sleep = 5 * HZ;
564 write_behind = 0;
NeilBrownb405fe92012-05-22 13:55:15 +1000565 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +1000566 err = 0;
567 goto out_no_sb;
568 }
NeilBrown32a76272005-06-21 17:17:14 -0700569 /* page 0 is the superblock, read it... */
NeilBrown27581e52012-05-22 13:55:08 +1000570 sb_page = alloc_page(GFP_KERNEL);
571 if (!sb_page)
572 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000573 bitmap->storage.sb_page = sb_page;
NeilBrown27581e52012-05-22 13:55:08 +1000574
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500575re_read:
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500576 /* If cluster_slot is set, the cluster is setup */
577 if (bitmap->cluster_slot >= 0) {
Stephen Rothwell3b0e6aa2015-03-03 13:35:31 +1100578 sector_t bm_blocks = bitmap->mddev->resync_max_sectors;
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500579
Stephen Rothwell3b0e6aa2015-03-03 13:35:31 +1100580 sector_div(bm_blocks,
581 bitmap->mddev->bitmap_info.chunksize >> 9);
Goldwyn Rodrigues124eb762015-03-24 11:29:05 -0500582 /* bits to bytes */
583 bm_blocks = ((bm_blocks+7) >> 3) + sizeof(bitmap_super_t);
584 /* to 4k blocks */
NeilBrown935f3d42015-03-02 17:02:29 +1100585 bm_blocks = DIV_ROUND_UP_SECTOR_T(bm_blocks, 4096);
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000586 offset = bitmap->mddev->bitmap_info.offset + (bitmap->cluster_slot * (bm_blocks << 3));
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500587 pr_info("%s:%d bm slot: %d offset: %llu\n", __func__, __LINE__,
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000588 bitmap->cluster_slot, offset);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500589 }
590
NeilBrown1ec885c2012-05-22 13:55:10 +1000591 if (bitmap->storage.file) {
592 loff_t isize = i_size_read(bitmap->storage.file->f_mapping->host);
NeilBrownf49d5e62007-01-26 00:57:03 -0800593 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
594
NeilBrown1ec885c2012-05-22 13:55:10 +1000595 err = read_page(bitmap->storage.file, 0,
NeilBrown27581e52012-05-22 13:55:08 +1000596 bitmap, bytes, sb_page);
NeilBrownf49d5e62007-01-26 00:57:03 -0800597 } else {
NeilBrown27581e52012-05-22 13:55:08 +1000598 err = read_sb_page(bitmap->mddev,
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000599 offset,
NeilBrown27581e52012-05-22 13:55:08 +1000600 sb_page,
601 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700602 }
NeilBrown27581e52012-05-22 13:55:08 +1000603 if (err)
NeilBrown32a76272005-06-21 17:17:14 -0700604 return err;
NeilBrown32a76272005-06-21 17:17:14 -0700605
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500606 err = -EINVAL;
NeilBrown27581e52012-05-22 13:55:08 +1000607 sb = kmap_atomic(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700608
NeilBrown32a76272005-06-21 17:17:14 -0700609 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100610 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700611 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown1dff2b82012-05-22 13:55:34 +1000612 sectors_reserved = le32_to_cpu(sb->sectors_reserved);
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000613 /* Setup nodes/clustername only if bitmap version is
614 * cluster-compatible
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500615 */
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000616 if (sb->version == cpu_to_le32(BITMAP_MAJOR_CLUSTERED)) {
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500617 nodes = le32_to_cpu(sb->nodes);
618 strlcpy(bitmap->mddev->bitmap_info.cluster_name,
619 sb->cluster_name, 64);
620 }
NeilBrown32a76272005-06-21 17:17:14 -0700621
622 /* verify that the bitmap-specific fields are valid */
623 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
624 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800625 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000626 le32_to_cpu(sb->version) > BITMAP_MAJOR_CLUSTERED)
NeilBrown32a76272005-06-21 17:17:14 -0700627 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100628 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800629 reason = "bitmap chunksize too small";
Jonathan Brassowd7445402011-06-08 18:01:10 -0500630 else if (!is_power_of_2(chunksize))
NeilBrown32a76272005-06-21 17:17:14 -0700631 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100632 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800633 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700634 else if (write_behind > COUNTER_MAX)
635 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700636 if (reason) {
637 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
638 bmname(bitmap), reason);
639 goto out;
640 }
641
642 /* keep the array size field of the bitmap superblock up to date */
643 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
644
NeilBrown278c1ca2012-03-19 12:46:40 +1100645 if (bitmap->mddev->persistent) {
646 /*
647 * We have a persistent array superblock, so compare the
648 * bitmap's UUID and event counter to the mddev's
649 */
650 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
651 printk(KERN_INFO
652 "%s: bitmap superblock UUID mismatch\n",
653 bmname(bitmap));
654 goto out;
655 }
656 events = le64_to_cpu(sb->events);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500657 if (!nodes && (events < bitmap->mddev->events)) {
NeilBrown278c1ca2012-03-19 12:46:40 +1100658 printk(KERN_INFO
659 "%s: bitmap file is out of date (%llu < %llu) "
660 "-- forcing full recovery\n",
661 bmname(bitmap), events,
662 (unsigned long long) bitmap->mddev->events);
NeilBrownb405fe92012-05-22 13:55:15 +1000663 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown278c1ca2012-03-19 12:46:40 +1100664 }
665 }
NeilBrown32a76272005-06-21 17:17:14 -0700666
NeilBrown32a76272005-06-21 17:17:14 -0700667 /* assign fields using values from superblock */
NeilBrown4f2e6392006-10-21 10:24:09 -0700668 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800669 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
NeilBrownb405fe92012-05-22 13:55:15 +1000670 set_bit(BITMAP_HOSTENDIAN, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -0700671 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500672 strlcpy(bitmap->mddev->bitmap_info.cluster_name, sb->cluster_name, 64);
NeilBrown32a76272005-06-21 17:17:14 -0700673 err = 0;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500674
NeilBrown32a76272005-06-21 17:17:14 -0700675out:
Cong Wangb2f46e62011-11-28 13:25:44 +0800676 kunmap_atomic(sb);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500677 /* Assiging chunksize is required for "re_read" */
678 bitmap->mddev->bitmap_info.chunksize = chunksize;
Goldwyn Rodriguesf7357272015-07-22 12:09:16 -0500679 if (err == 0 && nodes && (bitmap->cluster_slot < 0)) {
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500680 err = md_setup_cluster(bitmap->mddev, nodes);
681 if (err) {
682 pr_err("%s: Could not setup cluster service (%d)\n",
683 bmname(bitmap), err);
684 goto out_no_sb;
685 }
686 bitmap->cluster_slot = md_cluster_ops->slot_number(bitmap->mddev);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500687 goto re_read;
688 }
689
690
NeilBrownef99bf42012-05-22 13:55:08 +1000691out_no_sb:
NeilBrownb405fe92012-05-22 13:55:15 +1000692 if (test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000693 bitmap->events_cleared = bitmap->mddev->events;
694 bitmap->mddev->bitmap_info.chunksize = chunksize;
695 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
696 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500697 bitmap->mddev->bitmap_info.nodes = nodes;
NeilBrown1dff2b82012-05-22 13:55:34 +1000698 if (bitmap->mddev->bitmap_info.space == 0 ||
699 bitmap->mddev->bitmap_info.space > sectors_reserved)
700 bitmap->mddev->bitmap_info.space = sectors_reserved;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500701 if (err) {
NeilBrown32a76272005-06-21 17:17:14 -0700702 bitmap_print_sb(bitmap);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500703 if (bitmap->cluster_slot < 0)
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500704 md_cluster_stop(bitmap->mddev);
705 }
NeilBrown32a76272005-06-21 17:17:14 -0700706 return err;
707}
708
NeilBrown32a76272005-06-21 17:17:14 -0700709/*
710 * general bitmap file operations
711 */
712
NeilBrownece5cff2009-12-14 12:49:56 +1100713/*
714 * on-disk bitmap:
715 *
716 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
717 * file a page at a time. There's a superblock at the start of the file.
718 */
NeilBrown32a76272005-06-21 17:17:14 -0700719/* calculate the index of the page that contains this bit */
NeilBrown1ec885c2012-05-22 13:55:10 +1000720static inline unsigned long file_page_index(struct bitmap_storage *store,
721 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700722{
NeilBrown1ec885c2012-05-22 13:55:10 +1000723 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100724 chunk += sizeof(bitmap_super_t) << 3;
725 return chunk >> PAGE_BIT_SHIFT;
NeilBrown32a76272005-06-21 17:17:14 -0700726}
727
728/* calculate the (bit) offset of this bit within a page */
NeilBrown1ec885c2012-05-22 13:55:10 +1000729static inline unsigned long file_page_offset(struct bitmap_storage *store,
730 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700731{
NeilBrown1ec885c2012-05-22 13:55:10 +1000732 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100733 chunk += sizeof(bitmap_super_t) << 3;
734 return chunk & (PAGE_BITS - 1);
NeilBrown32a76272005-06-21 17:17:14 -0700735}
736
737/*
738 * return a pointer to the page in the filemap that contains the given bit
739 *
NeilBrown32a76272005-06-21 17:17:14 -0700740 */
NeilBrown1ec885c2012-05-22 13:55:10 +1000741static inline struct page *filemap_get_page(struct bitmap_storage *store,
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000742 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700743{
NeilBrown1ec885c2012-05-22 13:55:10 +1000744 if (file_page_index(store, chunk) >= store->file_pages)
NeilBrownac2f40b2010-06-01 19:37:31 +1000745 return NULL;
NeilBrownf2e06c52014-05-28 13:39:23 +1000746 return store->filemap[file_page_index(store, chunk)];
NeilBrown32a76272005-06-21 17:17:14 -0700747}
748
NeilBrownd1244cb2012-05-22 13:55:12 +1000749static int bitmap_storage_alloc(struct bitmap_storage *store,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500750 unsigned long chunks, int with_super,
751 int slot_number)
NeilBrownd1244cb2012-05-22 13:55:12 +1000752{
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500753 int pnum, offset = 0;
NeilBrownd1244cb2012-05-22 13:55:12 +1000754 unsigned long num_pages;
755 unsigned long bytes;
756
757 bytes = DIV_ROUND_UP(chunks, 8);
758 if (with_super)
759 bytes += sizeof(bitmap_super_t);
760
761 num_pages = DIV_ROUND_UP(bytes, PAGE_SIZE);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500762 offset = slot_number * (num_pages - 1);
NeilBrownd1244cb2012-05-22 13:55:12 +1000763
764 store->filemap = kmalloc(sizeof(struct page *)
765 * num_pages, GFP_KERNEL);
766 if (!store->filemap)
767 return -ENOMEM;
768
769 if (with_super && !store->sb_page) {
NeilBrownd60b4792012-05-22 13:55:25 +1000770 store->sb_page = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000771 if (store->sb_page == NULL)
772 return -ENOMEM;
NeilBrownd1244cb2012-05-22 13:55:12 +1000773 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500774
NeilBrownd1244cb2012-05-22 13:55:12 +1000775 pnum = 0;
776 if (store->sb_page) {
777 store->filemap[0] = store->sb_page;
778 pnum = 1;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500779 store->sb_page->index = offset;
NeilBrownd1244cb2012-05-22 13:55:12 +1000780 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500781
NeilBrownd1244cb2012-05-22 13:55:12 +1000782 for ( ; pnum < num_pages; pnum++) {
NeilBrownd60b4792012-05-22 13:55:25 +1000783 store->filemap[pnum] = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000784 if (!store->filemap[pnum]) {
785 store->file_pages = pnum;
786 return -ENOMEM;
787 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500788 store->filemap[pnum]->index = pnum + offset;
NeilBrownd1244cb2012-05-22 13:55:12 +1000789 }
790 store->file_pages = pnum;
791
792 /* We need 4 bits per page, rounded up to a multiple
793 * of sizeof(unsigned long) */
794 store->filemap_attr = kzalloc(
795 roundup(DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
796 GFP_KERNEL);
797 if (!store->filemap_attr)
798 return -ENOMEM;
799
800 store->bytes = bytes;
801
802 return 0;
803}
804
NeilBrownfae7d322012-05-22 13:55:21 +1000805static void bitmap_file_unmap(struct bitmap_storage *store)
NeilBrown32a76272005-06-21 17:17:14 -0700806{
807 struct page **map, *sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700808 int pages;
NeilBrownfae7d322012-05-22 13:55:21 +1000809 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700810
NeilBrownfae7d322012-05-22 13:55:21 +1000811 file = store->file;
NeilBrown1ec885c2012-05-22 13:55:10 +1000812 map = store->filemap;
NeilBrown1ec885c2012-05-22 13:55:10 +1000813 pages = store->file_pages;
NeilBrown1ec885c2012-05-22 13:55:10 +1000814 sb_page = store->sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700815
816 while (pages--)
NeilBrownece5cff2009-12-14 12:49:56 +1100817 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700818 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700819 kfree(map);
NeilBrownfae7d322012-05-22 13:55:21 +1000820 kfree(store->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700821
NeilBrownd785a062006-06-26 00:27:48 -0700822 if (sb_page)
823 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700824
NeilBrownd785a062006-06-26 00:27:48 -0700825 if (file) {
Al Viro496ad9a2013-01-23 17:07:38 -0500826 struct inode *inode = file_inode(file);
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800827 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700828 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700829 }
NeilBrown32a76272005-06-21 17:17:14 -0700830}
831
NeilBrown32a76272005-06-21 17:17:14 -0700832/*
833 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
834 * then it is no longer reliable, so we stop using it and we mark the file
835 * as failed in the superblock
836 */
837static void bitmap_file_kick(struct bitmap *bitmap)
838{
839 char *path, *ptr = NULL;
840
NeilBrownb405fe92012-05-22 13:55:15 +1000841 if (!test_and_set_bit(BITMAP_STALE, &bitmap->flags)) {
NeilBrown4ad13662007-07-17 04:06:13 -0700842 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700843
NeilBrown1ec885c2012-05-22 13:55:10 +1000844 if (bitmap->storage.file) {
NeilBrown4ad13662007-07-17 04:06:13 -0700845 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
846 if (path)
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +0200847 ptr = file_path(bitmap->storage.file,
NeilBrown1ec885c2012-05-22 13:55:10 +1000848 path, PAGE_SIZE);
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700849
NeilBrown4ad13662007-07-17 04:06:13 -0700850 printk(KERN_ALERT
851 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700852 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700853
NeilBrown4ad13662007-07-17 04:06:13 -0700854 kfree(path);
855 } else
856 printk(KERN_ALERT
857 "%s: disabling internal bitmap due to errors\n",
858 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700859 }
NeilBrown32a76272005-06-21 17:17:14 -0700860}
861
862enum bitmap_page_attr {
NeilBrownac2f40b2010-06-01 19:37:31 +1000863 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
NeilBrown5a537df2011-09-21 15:37:46 +1000864 BITMAP_PAGE_PENDING = 1, /* there are bits that are being cleaned.
865 * i.e. counter is 1 or 2. */
NeilBrownac2f40b2010-06-01 19:37:31 +1000866 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
NeilBrown32a76272005-06-21 17:17:14 -0700867};
868
NeilBrownd1891222012-05-22 13:55:09 +1000869static inline void set_page_attr(struct bitmap *bitmap, int pnum,
870 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700871{
NeilBrownbdfd1142012-05-22 13:55:22 +1000872 set_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700873}
874
NeilBrownd1891222012-05-22 13:55:09 +1000875static inline void clear_page_attr(struct bitmap *bitmap, int pnum,
876 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700877{
NeilBrownbdfd1142012-05-22 13:55:22 +1000878 clear_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700879}
880
NeilBrownbdfd1142012-05-22 13:55:22 +1000881static inline int test_page_attr(struct bitmap *bitmap, int pnum,
882 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700883{
NeilBrown1ec885c2012-05-22 13:55:10 +1000884 return test_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700885}
886
NeilBrownbdfd1142012-05-22 13:55:22 +1000887static inline int test_and_clear_page_attr(struct bitmap *bitmap, int pnum,
888 enum bitmap_page_attr attr)
889{
890 return test_and_clear_bit((pnum<<2) + attr,
891 bitmap->storage.filemap_attr);
892}
NeilBrown32a76272005-06-21 17:17:14 -0700893/*
894 * bitmap_file_set_bit -- called before performing a write to the md device
895 * to set (and eventually sync) a particular bit in the bitmap file
896 *
897 * we set the bit immediately, then we record the page number so that
898 * when an unplug occurs, we can flush the dirty pages out to disk
899 */
900static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
901{
902 unsigned long bit;
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000903 struct page *page;
NeilBrown32a76272005-06-21 17:17:14 -0700904 void *kaddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000905 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -0700906
NeilBrown1ec885c2012-05-22 13:55:10 +1000907 page = filemap_get_page(&bitmap->storage, chunk);
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000908 if (!page)
909 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000910 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrown32a76272005-06-21 17:17:14 -0700911
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000912 /* set the bit */
Cong Wangb2f46e62011-11-28 13:25:44 +0800913 kaddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000914 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000915 set_bit(bit, kaddr);
916 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000917 set_bit_le(bit, kaddr);
Cong Wangb2f46e62011-11-28 13:25:44 +0800918 kunmap_atomic(kaddr);
NeilBrown36a4e1f2011-10-07 14:23:17 +1100919 pr_debug("set file bit %lu page %lu\n", bit, page->index);
NeilBrown32a76272005-06-21 17:17:14 -0700920 /* record page number so it gets flushed to disk when unplug occurs */
NeilBrownd1891222012-05-22 13:55:09 +1000921 set_page_attr(bitmap, page->index, BITMAP_PAGE_DIRTY);
NeilBrown32a76272005-06-21 17:17:14 -0700922}
923
NeilBrownef99bf42012-05-22 13:55:08 +1000924static void bitmap_file_clear_bit(struct bitmap *bitmap, sector_t block)
925{
926 unsigned long bit;
927 struct page *page;
928 void *paddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000929 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrownef99bf42012-05-22 13:55:08 +1000930
NeilBrown1ec885c2012-05-22 13:55:10 +1000931 page = filemap_get_page(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000932 if (!page)
933 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000934 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000935 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000936 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000937 clear_bit(bit, paddr);
938 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000939 clear_bit_le(bit, paddr);
NeilBrownef99bf42012-05-22 13:55:08 +1000940 kunmap_atomic(paddr);
NeilBrownd1891222012-05-22 13:55:09 +1000941 if (!test_page_attr(bitmap, page->index, BITMAP_PAGE_NEEDWRITE)) {
942 set_page_attr(bitmap, page->index, BITMAP_PAGE_PENDING);
NeilBrownef99bf42012-05-22 13:55:08 +1000943 bitmap->allclean = 0;
944 }
945}
946
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -0500947static int bitmap_file_test_bit(struct bitmap *bitmap, sector_t block)
948{
949 unsigned long bit;
950 struct page *page;
951 void *paddr;
952 unsigned long chunk = block >> bitmap->counts.chunkshift;
953 int set = 0;
954
955 page = filemap_get_page(&bitmap->storage, chunk);
956 if (!page)
957 return -EINVAL;
958 bit = file_page_offset(&bitmap->storage, chunk);
959 paddr = kmap_atomic(page);
960 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
961 set = test_bit(bit, paddr);
962 else
963 set = test_bit_le(bit, paddr);
964 kunmap_atomic(paddr);
965 return set;
966}
967
968
NeilBrown32a76272005-06-21 17:17:14 -0700969/* this gets called when the md device is ready to unplug its underlying
970 * (slave) device queues -- before we let any writes go down, we need to
971 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700972void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700973{
NeilBrown74667122012-05-22 13:55:19 +1000974 unsigned long i;
NeilBrownec7a3192006-06-26 00:27:45 -0700975 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700976
NeilBrown62f82fa2012-05-22 13:55:21 +1000977 if (!bitmap || !bitmap->storage.filemap ||
978 test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700979 return;
NeilBrown32a76272005-06-21 17:17:14 -0700980
981 /* look at each page to see if there are any set bits that need to be
982 * flushed out to disk */
NeilBrown1ec885c2012-05-22 13:55:10 +1000983 for (i = 0; i < bitmap->storage.file_pages; i++) {
NeilBrownbdfd1142012-05-22 13:55:22 +1000984 if (!bitmap->storage.filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700985 return;
NeilBrownbdfd1142012-05-22 13:55:22 +1000986 dirty = test_and_clear_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
987 need_write = test_and_clear_page_attr(bitmap, i,
988 BITMAP_PAGE_NEEDWRITE);
989 if (dirty || need_write) {
NeilBrownd1891222012-05-22 13:55:09 +1000990 clear_page_attr(bitmap, i, BITMAP_PAGE_PENDING);
NeilBrownbdfd1142012-05-22 13:55:22 +1000991 write_page(bitmap, bitmap->storage.filemap[i], 0);
992 }
NeilBrown32a76272005-06-21 17:17:14 -0700993 }
NeilBrown4b5060d2014-09-09 14:13:51 +1000994 if (bitmap->storage.file)
995 wait_event(bitmap->write_wait,
996 atomic_read(&bitmap->pending_writes)==0);
997 else
998 md_super_wait(bitmap->mddev);
999
NeilBrownb405fe92012-05-22 13:55:15 +10001000 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrownd785a062006-06-26 00:27:48 -07001001 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -07001002}
NeilBrownac2f40b2010-06-01 19:37:31 +10001003EXPORT_SYMBOL(bitmap_unplug);
NeilBrown32a76272005-06-21 17:17:14 -07001004
NeilBrown6a079972005-09-09 16:23:44 -07001005static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -07001006/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
1007 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
1008 * memory mapping of the bitmap file
1009 * Special cases:
1010 * if there's no bitmap file, or if the bitmap file had been
1011 * previously kicked from the array, we mark all the bits as
1012 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -07001013 *
1014 * We ignore all bits for sectors that end earlier than 'start'.
1015 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -07001016 */
NeilBrown6a079972005-09-09 16:23:44 -07001017static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -07001018{
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001019 unsigned long i, chunks, index, oldindex, bit, node_offset = 0;
NeilBrown27581e52012-05-22 13:55:08 +10001020 struct page *page = NULL;
NeilBrownd1244cb2012-05-22 13:55:12 +10001021 unsigned long bit_cnt = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001022 struct file *file;
NeilBrownd1244cb2012-05-22 13:55:12 +10001023 unsigned long offset;
NeilBrown32a76272005-06-21 17:17:14 -07001024 int outofdate;
1025 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -08001026 void *paddr;
NeilBrown1ec885c2012-05-22 13:55:10 +10001027 struct bitmap_storage *store = &bitmap->storage;
NeilBrown32a76272005-06-21 17:17:14 -07001028
NeilBrown40cffcc2012-05-22 13:55:24 +10001029 chunks = bitmap->counts.chunks;
NeilBrown1ec885c2012-05-22 13:55:10 +10001030 file = store->file;
NeilBrown32a76272005-06-21 17:17:14 -07001031
NeilBrownef99bf42012-05-22 13:55:08 +10001032 if (!file && !bitmap->mddev->bitmap_info.offset) {
1033 /* No permanent bitmap - fill with '1s'. */
NeilBrown1ec885c2012-05-22 13:55:10 +10001034 store->filemap = NULL;
1035 store->file_pages = 0;
NeilBrownef99bf42012-05-22 13:55:08 +10001036 for (i = 0; i < chunks ; i++) {
1037 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001038 int needed = ((sector_t)(i+1) << (bitmap->counts.chunkshift)
NeilBrownef99bf42012-05-22 13:55:08 +10001039 >= start);
1040 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001041 (sector_t)i << bitmap->counts.chunkshift,
NeilBrownef99bf42012-05-22 13:55:08 +10001042 needed);
1043 }
1044 return 0;
1045 }
NeilBrown32a76272005-06-21 17:17:14 -07001046
NeilBrownb405fe92012-05-22 13:55:15 +10001047 outofdate = test_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -07001048 if (outofdate)
1049 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
1050 "recovery\n", bmname(bitmap));
1051
NeilBrownd1244cb2012-05-22 13:55:12 +10001052 if (file && i_size_read(file->f_mapping->host) < store->bytes) {
NeilBrown32a76272005-06-21 17:17:14 -07001053 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
NeilBrownd1244cb2012-05-22 13:55:12 +10001054 bmname(bitmap),
1055 (unsigned long) i_size_read(file->f_mapping->host),
1056 store->bytes);
NeilBrown4ad13662007-07-17 04:06:13 -07001057 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001058 }
NeilBrownbc7f77d2005-06-21 17:17:17 -07001059
NeilBrown32a76272005-06-21 17:17:14 -07001060 oldindex = ~0L;
NeilBrownd1244cb2012-05-22 13:55:12 +10001061 offset = 0;
1062 if (!bitmap->mddev->bitmap_info.external)
1063 offset = sizeof(bitmap_super_t);
NeilBrown32a76272005-06-21 17:17:14 -07001064
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001065 if (mddev_is_clustered(bitmap->mddev))
1066 node_offset = bitmap->cluster_slot * (DIV_ROUND_UP(store->bytes, PAGE_SIZE));
1067
NeilBrown32a76272005-06-21 17:17:14 -07001068 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -08001069 int b;
NeilBrown1ec885c2012-05-22 13:55:10 +10001070 index = file_page_index(&bitmap->storage, i);
1071 bit = file_page_offset(&bitmap->storage, i);
NeilBrown32a76272005-06-21 17:17:14 -07001072 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -07001073 int count;
NeilBrown32a76272005-06-21 17:17:14 -07001074 /* unmap the old page, we're done with it */
NeilBrownd1244cb2012-05-22 13:55:12 +10001075 if (index == store->file_pages-1)
1076 count = store->bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -07001077 else
1078 count = PAGE_SIZE;
NeilBrown1ec885c2012-05-22 13:55:10 +10001079 page = store->filemap[index];
NeilBrown27581e52012-05-22 13:55:08 +10001080 if (file)
1081 ret = read_page(file, index, bitmap,
1082 count, page);
1083 else
1084 ret = read_sb_page(
1085 bitmap->mddev,
1086 bitmap->mddev->bitmap_info.offset,
1087 page,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001088 index + node_offset, count);
NeilBrown27581e52012-05-22 13:55:08 +10001089
1090 if (ret)
NeilBrown4ad13662007-07-17 04:06:13 -07001091 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001092
NeilBrown32a76272005-06-21 17:17:14 -07001093 oldindex = index;
NeilBrown32a76272005-06-21 17:17:14 -07001094
1095 if (outofdate) {
1096 /*
1097 * if bitmap is out of date, dirty the
NeilBrownac2f40b2010-06-01 19:37:31 +10001098 * whole page and write it out
NeilBrown32a76272005-06-21 17:17:14 -07001099 */
Cong Wangb2f46e62011-11-28 13:25:44 +08001100 paddr = kmap_atomic(page);
NeilBrownea03aff2006-01-06 00:20:34 -08001101 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001102 PAGE_SIZE - offset);
Cong Wangb2f46e62011-11-28 13:25:44 +08001103 kunmap_atomic(paddr);
NeilBrown4ad13662007-07-17 04:06:13 -07001104 write_page(bitmap, page, 1);
1105
1106 ret = -EIO;
NeilBrownb405fe92012-05-22 13:55:15 +10001107 if (test_bit(BITMAP_WRITE_ERROR,
1108 &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -07001109 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001110 }
NeilBrown32a76272005-06-21 17:17:14 -07001111 }
Cong Wangb2f46e62011-11-28 13:25:44 +08001112 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +10001113 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownea03aff2006-01-06 00:20:34 -08001114 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001115 else
Akinobu Mita6b33aff2011-03-23 16:42:13 -07001116 b = test_bit_le(bit, paddr);
Cong Wangb2f46e62011-11-28 13:25:44 +08001117 kunmap_atomic(paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001118 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001119 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001120 int needed = ((sector_t)(i+1) << bitmap->counts.chunkshift
NeilBrowndb305e52009-05-07 12:49:06 +10001121 >= start);
1122 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001123 (sector_t)i << bitmap->counts.chunkshift,
NeilBrowndb305e52009-05-07 12:49:06 +10001124 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001125 bit_cnt++;
1126 }
NeilBrown27581e52012-05-22 13:55:08 +10001127 offset = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001128 }
1129
NeilBrown32a76272005-06-21 17:17:14 -07001130 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrownd1244cb2012-05-22 13:55:12 +10001131 "read %lu pages, set %lu of %lu bits\n",
NeilBrown1ec885c2012-05-22 13:55:10 +10001132 bmname(bitmap), store->file_pages,
NeilBrownd1244cb2012-05-22 13:55:12 +10001133 bit_cnt, chunks);
NeilBrown32a76272005-06-21 17:17:14 -07001134
NeilBrown4ad13662007-07-17 04:06:13 -07001135 return 0;
1136
1137 err:
1138 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1139 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001140 return ret;
1141}
1142
NeilBrowna654b9d82005-06-21 17:17:27 -07001143void bitmap_write_all(struct bitmap *bitmap)
1144{
1145 /* We don't actually write all bitmap blocks here,
1146 * just flag them as needing to be written
1147 */
NeilBrownec7a3192006-06-26 00:27:45 -07001148 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001149
NeilBrown1ec885c2012-05-22 13:55:10 +10001150 if (!bitmap || !bitmap->storage.filemap)
NeilBrownef99bf42012-05-22 13:55:08 +10001151 return;
NeilBrown1ec885c2012-05-22 13:55:10 +10001152 if (bitmap->storage.file)
NeilBrownef99bf42012-05-22 13:55:08 +10001153 /* Only one copy, so nothing needed */
1154 return;
1155
NeilBrown1ec885c2012-05-22 13:55:10 +10001156 for (i = 0; i < bitmap->storage.file_pages; i++)
NeilBrownd1891222012-05-22 13:55:09 +10001157 set_page_attr(bitmap, i,
NeilBrownec7a3192006-06-26 00:27:45 -07001158 BITMAP_PAGE_NEEDWRITE);
NeilBrown2585f3e2011-09-21 15:37:46 +10001159 bitmap->allclean = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -07001160}
1161
NeilBrown40cffcc2012-05-22 13:55:24 +10001162static void bitmap_count_page(struct bitmap_counts *bitmap,
1163 sector_t offset, int inc)
NeilBrown32a76272005-06-21 17:17:14 -07001164{
NeilBrown61a0d802012-03-19 12:46:41 +11001165 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001166 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1167 bitmap->bp[page].count += inc;
NeilBrown32a76272005-06-21 17:17:14 -07001168 bitmap_checkfree(bitmap, page);
1169}
NeilBrownbf07bb72012-05-22 13:55:06 +10001170
NeilBrown40cffcc2012-05-22 13:55:24 +10001171static void bitmap_set_pending(struct bitmap_counts *bitmap, sector_t offset)
NeilBrownbf07bb72012-05-22 13:55:06 +10001172{
1173 sector_t chunk = offset >> bitmap->chunkshift;
1174 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1175 struct bitmap_page *bp = &bitmap->bp[page];
1176
1177 if (!bp->pending)
1178 bp->pending = 1;
1179}
1180
NeilBrown40cffcc2012-05-22 13:55:24 +10001181static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001182 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001183 int create);
1184
1185/*
1186 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1187 * out to disk
1188 */
1189
NeilBrownfd01b882011-10-11 16:47:53 +11001190void bitmap_daemon_work(struct mddev *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001191{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001192 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001193 unsigned long j;
NeilBrownbf07bb72012-05-22 13:55:06 +10001194 unsigned long nextpage;
NeilBrown57dab0b2010-10-19 10:03:39 +11001195 sector_t blocks;
NeilBrown40cffcc2012-05-22 13:55:24 +10001196 struct bitmap_counts *counts;
NeilBrown32a76272005-06-21 17:17:14 -07001197
NeilBrownaa5cbd12009-12-14 12:49:46 +11001198 /* Use a mutex to guard daemon_work against
1199 * bitmap_destroy.
1200 */
NeilBrownc3d97142009-12-14 12:49:52 +11001201 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001202 bitmap = mddev->bitmap;
1203 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001204 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001205 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001206 }
NeilBrown42a04b52009-12-14 12:49:53 +11001207 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown2e61ebb2011-12-23 10:17:50 +11001208 + mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001209 goto done;
1210
NeilBrown32a76272005-06-21 17:17:14 -07001211 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001212 if (bitmap->allclean) {
NeilBrown2e61ebb2011-12-23 10:17:50 +11001213 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001214 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001215 }
1216 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001217
NeilBrownbf07bb72012-05-22 13:55:06 +10001218 /* Any file-page which is PENDING now needs to be written.
1219 * So set NEEDWRITE now, then after we make any last-minute changes
1220 * we will write it.
1221 */
NeilBrown1ec885c2012-05-22 13:55:10 +10001222 for (j = 0; j < bitmap->storage.file_pages; j++)
NeilBrownbdfd1142012-05-22 13:55:22 +10001223 if (test_and_clear_page_attr(bitmap, j,
1224 BITMAP_PAGE_PENDING))
NeilBrownd1891222012-05-22 13:55:09 +10001225 set_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001226 BITMAP_PAGE_NEEDWRITE);
NeilBrownbf07bb72012-05-22 13:55:06 +10001227
1228 if (bitmap->need_sync &&
1229 mddev->bitmap_info.external == 0) {
1230 /* Arrange for superblock update as well as
1231 * other changes */
1232 bitmap_super_t *sb;
1233 bitmap->need_sync = 0;
NeilBrown1ec885c2012-05-22 13:55:10 +10001234 if (bitmap->storage.filemap) {
1235 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrownef99bf42012-05-22 13:55:08 +10001236 sb->events_cleared =
1237 cpu_to_le64(bitmap->events_cleared);
1238 kunmap_atomic(sb);
NeilBrownd1891222012-05-22 13:55:09 +10001239 set_page_attr(bitmap, 0,
NeilBrownef99bf42012-05-22 13:55:08 +10001240 BITMAP_PAGE_NEEDWRITE);
1241 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001242 }
1243 /* Now look at the bitmap counters and if any are '2' or '1',
1244 * decrement and handle accordingly.
1245 */
NeilBrown40cffcc2012-05-22 13:55:24 +10001246 counts = &bitmap->counts;
1247 spin_lock_irq(&counts->lock);
NeilBrownbf07bb72012-05-22 13:55:06 +10001248 nextpage = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001249 for (j = 0; j < counts->chunks; j++) {
NeilBrown32a76272005-06-21 17:17:14 -07001250 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001251 sector_t block = (sector_t)j << counts->chunkshift;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001252
NeilBrownbf07bb72012-05-22 13:55:06 +10001253 if (j == nextpage) {
1254 nextpage += PAGE_COUNTER_RATIO;
NeilBrown40cffcc2012-05-22 13:55:24 +10001255 if (!counts->bp[j >> PAGE_COUNTER_SHIFT].pending) {
NeilBrownbf07bb72012-05-22 13:55:06 +10001256 j |= PAGE_COUNTER_MASK;
NeilBrownaa3163f2005-06-21 17:17:22 -07001257 continue;
1258 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001259 counts->bp[j >> PAGE_COUNTER_SHIFT].pending = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001260 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001261 bmc = bitmap_get_counter(counts,
NeilBrownef99bf42012-05-22 13:55:08 +10001262 block,
NeilBrowndb305e52009-05-07 12:49:06 +10001263 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001264
NeilBrownbf07bb72012-05-22 13:55:06 +10001265 if (!bmc) {
1266 j |= PAGE_COUNTER_MASK;
1267 continue;
1268 }
1269 if (*bmc == 1 && !bitmap->need_sync) {
1270 /* We can clear the bit */
NeilBrownbf07bb72012-05-22 13:55:06 +10001271 *bmc = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001272 bitmap_count_page(counts, block, -1);
NeilBrownef99bf42012-05-22 13:55:08 +10001273 bitmap_file_clear_bit(bitmap, block);
NeilBrownbf07bb72012-05-22 13:55:06 +10001274 } else if (*bmc && *bmc <= 2) {
1275 *bmc = 1;
NeilBrown40cffcc2012-05-22 13:55:24 +10001276 bitmap_set_pending(counts, block);
NeilBrown2585f3e2011-09-21 15:37:46 +10001277 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001278 }
NeilBrown32a76272005-06-21 17:17:14 -07001279 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001280 spin_unlock_irq(&counts->lock);
NeilBrown32a76272005-06-21 17:17:14 -07001281
NeilBrownbf07bb72012-05-22 13:55:06 +10001282 /* Now start writeout on any page in NEEDWRITE that isn't DIRTY.
1283 * DIRTY pages need to be written by bitmap_unplug so it can wait
1284 * for them.
1285 * If we find any DIRTY page we stop there and let bitmap_unplug
1286 * handle all the rest. This is important in the case where
1287 * the first blocking holds the superblock and it has been updated.
1288 * We mustn't write any other blocks before the superblock.
1289 */
NeilBrown62f82fa2012-05-22 13:55:21 +10001290 for (j = 0;
1291 j < bitmap->storage.file_pages
1292 && !test_bit(BITMAP_STALE, &bitmap->flags);
1293 j++) {
NeilBrownd1891222012-05-22 13:55:09 +10001294 if (test_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001295 BITMAP_PAGE_DIRTY))
1296 /* bitmap_unplug will handle the rest */
1297 break;
NeilBrownbdfd1142012-05-22 13:55:22 +10001298 if (test_and_clear_page_attr(bitmap, j,
1299 BITMAP_PAGE_NEEDWRITE)) {
NeilBrown1ec885c2012-05-22 13:55:10 +10001300 write_page(bitmap, bitmap->storage.filemap[j], 0);
NeilBrownbf07bb72012-05-22 13:55:06 +10001301 }
1302 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001303
NeilBrown7be3dfe2008-03-10 11:43:48 -07001304 done:
NeilBrown8311c292008-03-04 14:29:30 -08001305 if (bitmap->allclean == 0)
NeilBrown2e61ebb2011-12-23 10:17:50 +11001306 mddev->thread->timeout =
1307 mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001308 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001309}
1310
NeilBrown40cffcc2012-05-22 13:55:24 +10001311static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001312 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001313 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001314__releases(bitmap->lock)
1315__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001316{
1317 /* If 'create', we might release the lock and reclaim it.
1318 * The lock must have been taken with interrupts enabled.
1319 * If !create, we don't release the lock.
1320 */
NeilBrown61a0d802012-03-19 12:46:41 +11001321 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001322 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1323 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1324 sector_t csize;
NeilBrownef425672010-06-01 19:37:33 +10001325 int err;
NeilBrown32a76272005-06-21 17:17:14 -07001326
Guoqing Jiangc9d65032016-05-02 11:50:11 -04001327 err = bitmap_checkpage(bitmap, page, create, 0);
NeilBrownef425672010-06-01 19:37:33 +10001328
1329 if (bitmap->bp[page].hijacked ||
1330 bitmap->bp[page].map == NULL)
NeilBrown61a0d802012-03-19 12:46:41 +11001331 csize = ((sector_t)1) << (bitmap->chunkshift +
NeilBrownef425672010-06-01 19:37:33 +10001332 PAGE_COUNTER_SHIFT - 1);
1333 else
NeilBrown61a0d802012-03-19 12:46:41 +11001334 csize = ((sector_t)1) << bitmap->chunkshift;
NeilBrownef425672010-06-01 19:37:33 +10001335 *blocks = csize - (offset & (csize - 1));
1336
1337 if (err < 0)
NeilBrown32a76272005-06-21 17:17:14 -07001338 return NULL;
NeilBrownef425672010-06-01 19:37:33 +10001339
NeilBrown32a76272005-06-21 17:17:14 -07001340 /* now locked ... */
1341
1342 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1343 /* should we use the first or second counter field
1344 * of the hijacked pointer? */
1345 int hi = (pageoff > PAGE_COUNTER_MASK);
NeilBrown32a76272005-06-21 17:17:14 -07001346 return &((bitmap_counter_t *)
1347 &bitmap->bp[page].map)[hi];
NeilBrownef425672010-06-01 19:37:33 +10001348 } else /* page is allocated */
NeilBrown32a76272005-06-21 17:17:14 -07001349 return (bitmap_counter_t *)
1350 &(bitmap->bp[page].map[pageoff]);
NeilBrown32a76272005-06-21 17:17:14 -07001351}
1352
NeilBrown4b6d2872005-09-09 16:23:47 -07001353int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001354{
NeilBrownac2f40b2010-06-01 19:37:31 +10001355 if (!bitmap)
1356 return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001357
1358 if (behind) {
Paul Clements696fcd52010-03-08 16:02:37 +11001359 int bw;
NeilBrown4b6d2872005-09-09 16:23:47 -07001360 atomic_inc(&bitmap->behind_writes);
Paul Clements696fcd52010-03-08 16:02:37 +11001361 bw = atomic_read(&bitmap->behind_writes);
1362 if (bw > bitmap->behind_writes_used)
1363 bitmap->behind_writes_used = bw;
1364
NeilBrown36a4e1f2011-10-07 14:23:17 +11001365 pr_debug("inc write-behind count %d/%lu\n",
1366 bw, bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001367 }
1368
NeilBrown32a76272005-06-21 17:17:14 -07001369 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001370 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001371 bitmap_counter_t *bmc;
1372
NeilBrown40cffcc2012-05-22 13:55:24 +10001373 spin_lock_irq(&bitmap->counts.lock);
1374 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001375 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001376 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001377 return 0;
1378 }
1379
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001380 if (unlikely(COUNTER(*bmc) == COUNTER_MAX)) {
Neil Brownda6e1a32007-02-08 14:20:37 -08001381 DEFINE_WAIT(__wait);
1382 /* note that it is safe to do the prepare_to_wait
1383 * after the test as long as we do it before dropping
1384 * the spinlock.
1385 */
1386 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1387 TASK_UNINTERRUPTIBLE);
NeilBrown40cffcc2012-05-22 13:55:24 +10001388 spin_unlock_irq(&bitmap->counts.lock);
NeilBrownf54a9d02012-08-02 08:33:20 +10001389 schedule();
Neil Brownda6e1a32007-02-08 14:20:37 -08001390 finish_wait(&bitmap->overflow_wait, &__wait);
1391 continue;
1392 }
1393
NeilBrownac2f40b2010-06-01 19:37:31 +10001394 switch (*bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001395 case 0:
1396 bitmap_file_set_bit(bitmap, offset);
NeilBrown40cffcc2012-05-22 13:55:24 +10001397 bitmap_count_page(&bitmap->counts, offset, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001398 /* fall through */
1399 case 1:
1400 *bmc = 2;
1401 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001402
NeilBrown32a76272005-06-21 17:17:14 -07001403 (*bmc)++;
1404
NeilBrown40cffcc2012-05-22 13:55:24 +10001405 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001406
1407 offset += blocks;
1408 if (sectors > blocks)
1409 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001410 else
1411 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001412 }
1413 return 0;
1414}
NeilBrownac2f40b2010-06-01 19:37:31 +10001415EXPORT_SYMBOL(bitmap_startwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001416
1417void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001418 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001419{
NeilBrownac2f40b2010-06-01 19:37:31 +10001420 if (!bitmap)
1421 return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001422 if (behind) {
NeilBrowne5551902010-03-31 11:21:44 +11001423 if (atomic_dec_and_test(&bitmap->behind_writes))
1424 wake_up(&bitmap->behind_wait);
NeilBrown36a4e1f2011-10-07 14:23:17 +11001425 pr_debug("dec write-behind count %d/%lu\n",
1426 atomic_read(&bitmap->behind_writes),
1427 bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001428 }
1429
NeilBrown32a76272005-06-21 17:17:14 -07001430 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001431 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001432 unsigned long flags;
1433 bitmap_counter_t *bmc;
1434
NeilBrown40cffcc2012-05-22 13:55:24 +10001435 spin_lock_irqsave(&bitmap->counts.lock, flags);
1436 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001437 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001438 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001439 return;
1440 }
1441
NeilBrown961902c2011-12-23 09:57:48 +11001442 if (success && !bitmap->mddev->degraded &&
Neil Browna0da84f2008-06-28 08:31:22 +10001443 bitmap->events_cleared < bitmap->mddev->events) {
1444 bitmap->events_cleared = bitmap->mddev->events;
1445 bitmap->need_sync = 1;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001446 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001447 }
1448
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001449 if (!success && !NEEDED(*bmc))
NeilBrown32a76272005-06-21 17:17:14 -07001450 *bmc |= NEEDED_MASK;
1451
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001452 if (COUNTER(*bmc) == COUNTER_MAX)
Neil Brownda6e1a32007-02-08 14:20:37 -08001453 wake_up(&bitmap->overflow_wait);
1454
NeilBrown32a76272005-06-21 17:17:14 -07001455 (*bmc)--;
NeilBrown2585f3e2011-09-21 15:37:46 +10001456 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001457 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001458 bitmap->allclean = 0;
1459 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001460 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001461 offset += blocks;
1462 if (sectors > blocks)
1463 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001464 else
1465 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001466 }
1467}
NeilBrownac2f40b2010-06-01 19:37:31 +10001468EXPORT_SYMBOL(bitmap_endwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001469
NeilBrown57dab0b2010-10-19 10:03:39 +11001470static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001471 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001472{
1473 bitmap_counter_t *bmc;
1474 int rv;
1475 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1476 *blocks = 1024;
1477 return 1; /* always resync if no bitmap */
1478 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001479 spin_lock_irq(&bitmap->counts.lock);
1480 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001481 rv = 0;
1482 if (bmc) {
1483 /* locked */
1484 if (RESYNC(*bmc))
1485 rv = 1;
1486 else if (NEEDED(*bmc)) {
1487 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001488 if (!degraded) { /* don't set/clear bits if degraded */
1489 *bmc |= RESYNC_MASK;
1490 *bmc &= ~NEEDED_MASK;
1491 }
NeilBrown32a76272005-06-21 17:17:14 -07001492 }
1493 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001494 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001495 return rv;
1496}
1497
NeilBrown57dab0b2010-10-19 10:03:39 +11001498int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001499 int degraded)
1500{
1501 /* bitmap_start_sync must always report on multiples of whole
1502 * pages, otherwise resync (which is very PAGE_SIZE based) will
1503 * get confused.
1504 * So call __bitmap_start_sync repeatedly (if needed) until
1505 * At least PAGE_SIZE>>9 blocks are covered.
1506 * Return the 'or' of the result.
1507 */
1508 int rv = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001509 sector_t blocks1;
NeilBrown1187cf02009-03-31 14:27:02 +11001510
1511 *blocks = 0;
1512 while (*blocks < (PAGE_SIZE>>9)) {
1513 rv |= __bitmap_start_sync(bitmap, offset,
1514 &blocks1, degraded);
1515 offset += blocks1;
1516 *blocks += blocks1;
1517 }
1518 return rv;
1519}
NeilBrownac2f40b2010-06-01 19:37:31 +10001520EXPORT_SYMBOL(bitmap_start_sync);
NeilBrown1187cf02009-03-31 14:27:02 +11001521
NeilBrown57dab0b2010-10-19 10:03:39 +11001522void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted)
NeilBrown32a76272005-06-21 17:17:14 -07001523{
1524 bitmap_counter_t *bmc;
1525 unsigned long flags;
NeilBrownac2f40b2010-06-01 19:37:31 +10001526
1527 if (bitmap == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001528 *blocks = 1024;
1529 return;
1530 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001531 spin_lock_irqsave(&bitmap->counts.lock, flags);
1532 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001533 if (bmc == NULL)
1534 goto unlock;
1535 /* locked */
NeilBrown32a76272005-06-21 17:17:14 -07001536 if (RESYNC(*bmc)) {
1537 *bmc &= ~RESYNC_MASK;
1538
1539 if (!NEEDED(*bmc) && aborted)
1540 *bmc |= NEEDED_MASK;
1541 else {
NeilBrown2585f3e2011-09-21 15:37:46 +10001542 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001543 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001544 bitmap->allclean = 0;
1545 }
NeilBrown32a76272005-06-21 17:17:14 -07001546 }
1547 }
1548 unlock:
NeilBrown40cffcc2012-05-22 13:55:24 +10001549 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001550}
NeilBrownac2f40b2010-06-01 19:37:31 +10001551EXPORT_SYMBOL(bitmap_end_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001552
1553void bitmap_close_sync(struct bitmap *bitmap)
1554{
1555 /* Sync has finished, and any bitmap chunks that weren't synced
1556 * properly have been aborted. It remains to us to clear the
1557 * RESYNC bit wherever it is still on
1558 */
1559 sector_t sector = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001560 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001561 if (!bitmap)
1562 return;
NeilBrown32a76272005-06-21 17:17:14 -07001563 while (sector < bitmap->mddev->resync_max_sectors) {
1564 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001565 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001566 }
1567}
NeilBrownac2f40b2010-06-01 19:37:31 +10001568EXPORT_SYMBOL(bitmap_close_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001569
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001570void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector, bool force)
NeilBrownb47490c2008-02-06 01:39:50 -08001571{
1572 sector_t s = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001573 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001574
1575 if (!bitmap)
1576 return;
1577 if (sector == 0) {
1578 bitmap->last_end_sync = jiffies;
1579 return;
1580 }
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001581 if (!force && time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001582 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001583 return;
1584 wait_event(bitmap->mddev->recovery_wait,
1585 atomic_read(&bitmap->mddev->recovery_active) == 0);
1586
NeilBrown75d3da42011-01-14 09:14:34 +11001587 bitmap->mddev->curr_resync_completed = sector;
NeilBrown070dc6d2010-08-30 17:33:34 +10001588 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrown40cffcc2012-05-22 13:55:24 +10001589 sector &= ~((1ULL << bitmap->counts.chunkshift) - 1);
NeilBrownb47490c2008-02-06 01:39:50 -08001590 s = 0;
1591 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1592 bitmap_end_sync(bitmap, s, &blocks, 0);
1593 s += blocks;
1594 }
1595 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001596 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001597}
NeilBrownac2f40b2010-06-01 19:37:31 +10001598EXPORT_SYMBOL(bitmap_cond_end_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001599
NeilBrown6a079972005-09-09 16:23:44 -07001600static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001601{
1602 /* For each chunk covered by any of these sectors, set the
NeilBrownef99bf42012-05-22 13:55:08 +10001603 * counter to 2 and possibly set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001604 * be 0 at this point
1605 */
NeilBrown193f1c92005-08-04 12:53:33 -07001606
NeilBrown57dab0b2010-10-19 10:03:39 +11001607 sector_t secs;
NeilBrown193f1c92005-08-04 12:53:33 -07001608 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001609 spin_lock_irq(&bitmap->counts.lock);
1610 bmc = bitmap_get_counter(&bitmap->counts, offset, &secs, 1);
NeilBrown193f1c92005-08-04 12:53:33 -07001611 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001612 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001613 return;
NeilBrown32a76272005-06-21 17:17:14 -07001614 }
NeilBrownac2f40b2010-06-01 19:37:31 +10001615 if (!*bmc) {
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001616 *bmc = 2;
NeilBrown40cffcc2012-05-22 13:55:24 +10001617 bitmap_count_page(&bitmap->counts, offset, 1);
1618 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001619 bitmap->allclean = 0;
NeilBrown193f1c92005-08-04 12:53:33 -07001620 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001621 if (needed)
1622 *bmc |= NEEDED_MASK;
NeilBrown40cffcc2012-05-22 13:55:24 +10001623 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001624}
1625
Paul Clements9b1d1da2006-10-03 01:15:49 -07001626/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1627void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1628{
1629 unsigned long chunk;
1630
1631 for (chunk = s; chunk <= e; chunk++) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001632 sector_t sec = (sector_t)chunk << bitmap->counts.chunkshift;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001633 bitmap_set_memory_bits(bitmap, sec, 1);
1634 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001635 if (sec < bitmap->mddev->recovery_cp)
1636 /* We are asserting that the array is dirty,
1637 * so move the recovery_cp address back so
1638 * that it is obvious that it is dirty
1639 */
1640 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001641 }
1642}
1643
NeilBrown32a76272005-06-21 17:17:14 -07001644/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001645 * flush out any pending updates
1646 */
NeilBrownfd01b882011-10-11 16:47:53 +11001647void bitmap_flush(struct mddev *mddev)
NeilBrown6b8b3e82005-08-04 12:53:35 -07001648{
1649 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001650 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001651
1652 if (!bitmap) /* there was no bitmap */
1653 return;
1654
1655 /* run the daemon_work three time to ensure everything is flushed
1656 * that can be
1657 */
NeilBrown1b04be92009-12-14 12:49:53 +11001658 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001659 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001660 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001661 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001662 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001663 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001664 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001665 bitmap_update_sb(bitmap);
1666}
1667
1668/*
NeilBrown32a76272005-06-21 17:17:14 -07001669 * free memory that was allocated
1670 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001671static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001672{
1673 unsigned long k, pages;
1674 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001675
1676 if (!bitmap) /* there was no bitmap */
1677 return;
1678
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001679 if (bitmap->sysfs_can_clear)
1680 sysfs_put(bitmap->sysfs_can_clear);
1681
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001682 if (mddev_is_clustered(bitmap->mddev) && bitmap->mddev->cluster_info &&
1683 bitmap->cluster_slot == md_cluster_ops->slot_number(bitmap->mddev))
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001684 md_cluster_stop(bitmap->mddev);
1685
NeilBrownfae7d322012-05-22 13:55:21 +10001686 /* Shouldn't be needed - but just in case.... */
1687 wait_event(bitmap->write_wait,
1688 atomic_read(&bitmap->pending_writes) == 0);
1689
1690 /* release the bitmap file */
1691 bitmap_file_unmap(&bitmap->storage);
NeilBrown32a76272005-06-21 17:17:14 -07001692
NeilBrown40cffcc2012-05-22 13:55:24 +10001693 bp = bitmap->counts.bp;
1694 pages = bitmap->counts.pages;
NeilBrown32a76272005-06-21 17:17:14 -07001695
1696 /* free all allocated memory */
1697
NeilBrown32a76272005-06-21 17:17:14 -07001698 if (bp) /* deallocate the page memory */
1699 for (k = 0; k < pages; k++)
1700 if (bp[k].map && !bp[k].hijacked)
1701 kfree(bp[k].map);
1702 kfree(bp);
1703 kfree(bitmap);
1704}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001705
NeilBrownfd01b882011-10-11 16:47:53 +11001706void bitmap_destroy(struct mddev *mddev)
NeilBrown3178b0d2005-09-09 16:23:50 -07001707{
1708 struct bitmap *bitmap = mddev->bitmap;
1709
1710 if (!bitmap) /* there was no bitmap */
1711 return;
1712
NeilBrownc3d97142009-12-14 12:49:52 +11001713 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown978a7a42014-12-15 12:56:58 +11001714 spin_lock(&mddev->lock);
NeilBrown3178b0d2005-09-09 16:23:50 -07001715 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrown978a7a42014-12-15 12:56:58 +11001716 spin_unlock(&mddev->lock);
NeilBrownc3d97142009-12-14 12:49:52 +11001717 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001718 if (mddev->thread)
1719 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001720
1721 bitmap_free(bitmap);
1722}
NeilBrown32a76272005-06-21 17:17:14 -07001723
1724/*
1725 * initialize the bitmap structure
1726 * if this returns an error, bitmap_destroy must be called to do clean up
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001727 * once mddev->bitmap is set
NeilBrown32a76272005-06-21 17:17:14 -07001728 */
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001729struct bitmap *bitmap_create(struct mddev *mddev, int slot)
NeilBrown32a76272005-06-21 17:17:14 -07001730{
1731 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001732 sector_t blocks = mddev->resync_max_sectors;
NeilBrownc3d97142009-12-14 12:49:52 +11001733 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001734 int err;
Tejun Heo324a56e2013-12-11 14:11:53 -05001735 struct kernfs_node *bm = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001736
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001737 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001738
NeilBrownc3d97142009-12-14 12:49:52 +11001739 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001740
NeilBrown9ffae0c2006-01-06 00:20:32 -08001741 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001742 if (!bitmap)
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001743 return ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -07001744
NeilBrown40cffcc2012-05-22 13:55:24 +10001745 spin_lock_init(&bitmap->counts.lock);
NeilBrownce25c312006-06-26 00:27:49 -07001746 atomic_set(&bitmap->pending_writes, 0);
1747 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001748 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrowne5551902010-03-31 11:21:44 +11001749 init_waitqueue_head(&bitmap->behind_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001750
NeilBrown32a76272005-06-21 17:17:14 -07001751 bitmap->mddev = mddev;
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001752 bitmap->cluster_slot = slot;
NeilBrown32a76272005-06-21 17:17:14 -07001753
NeilBrown5ff5aff2010-06-01 19:37:32 +10001754 if (mddev->kobj.sd)
Tejun Heo388975c2013-09-11 23:19:13 -04001755 bm = sysfs_get_dirent(mddev->kobj.sd, "bitmap");
NeilBrownece5cff2009-12-14 12:49:56 +11001756 if (bm) {
Tejun Heo388975c2013-09-11 23:19:13 -04001757 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, "can_clear");
NeilBrownece5cff2009-12-14 12:49:56 +11001758 sysfs_put(bm);
1759 } else
1760 bitmap->sysfs_can_clear = NULL;
1761
NeilBrown1ec885c2012-05-22 13:55:10 +10001762 bitmap->storage.file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001763 if (file) {
1764 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001765 /* As future accesses to this file will use bmap,
1766 * and bypass the page cache, we must sync the file
1767 * first.
1768 */
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001769 vfs_fsync(file, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001770 }
NeilBrown42a04b52009-12-14 12:49:53 +11001771 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
Jonathan Brassow9c810752011-06-08 17:59:30 -05001772 if (!mddev->bitmap_info.external) {
1773 /*
1774 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1775 * instructing us to create a new on-disk bitmap instance.
1776 */
1777 if (test_and_clear_bit(MD_ARRAY_FIRST_USE, &mddev->flags))
1778 err = bitmap_new_disk_sb(bitmap);
1779 else
1780 err = bitmap_read_sb(bitmap);
1781 } else {
NeilBrownece5cff2009-12-14 12:49:56 +11001782 err = 0;
1783 if (mddev->bitmap_info.chunksize == 0 ||
1784 mddev->bitmap_info.daemon_sleep == 0)
1785 /* chunksize and time_base need to be
1786 * set first. */
1787 err = -EINVAL;
1788 }
NeilBrown32a76272005-06-21 17:17:14 -07001789 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001790 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001791
NeilBrown624ce4f2009-12-14 12:49:56 +11001792 bitmap->daemon_lastrun = jiffies;
NeilBrownd60b4792012-05-22 13:55:25 +10001793 err = bitmap_resize(bitmap, blocks, mddev->bitmap_info.chunksize, 1);
1794 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001795 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001796
NeilBrown69e51b42010-06-01 19:37:35 +10001797 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
NeilBrownd60b4792012-05-22 13:55:25 +10001798 bitmap->counts.pages, bmname(bitmap));
NeilBrown69e51b42010-06-01 19:37:35 +10001799
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001800 err = test_bit(BITMAP_WRITE_ERROR, &bitmap->flags) ? -EIO : 0;
1801 if (err)
1802 goto error;
NeilBrown69e51b42010-06-01 19:37:35 +10001803
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001804 return bitmap;
NeilBrown69e51b42010-06-01 19:37:35 +10001805 error:
1806 bitmap_free(bitmap);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001807 return ERR_PTR(err);
NeilBrown69e51b42010-06-01 19:37:35 +10001808}
1809
NeilBrownfd01b882011-10-11 16:47:53 +11001810int bitmap_load(struct mddev *mddev)
NeilBrown69e51b42010-06-01 19:37:35 +10001811{
1812 int err = 0;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001813 sector_t start = 0;
NeilBrown69e51b42010-06-01 19:37:35 +10001814 sector_t sector = 0;
1815 struct bitmap *bitmap = mddev->bitmap;
1816
1817 if (!bitmap)
1818 goto out;
1819
1820 /* Clear out old bitmap info first: Either there is none, or we
1821 * are resuming after someone else has possibly changed things,
1822 * so we should forget old cached info.
1823 * All chunks should be clean, but some might need_sync.
1824 */
1825 while (sector < mddev->resync_max_sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001826 sector_t blocks;
NeilBrown69e51b42010-06-01 19:37:35 +10001827 bitmap_start_sync(bitmap, sector, &blocks, 0);
1828 sector += blocks;
1829 }
1830 bitmap_close_sync(bitmap);
1831
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001832 if (mddev->degraded == 0
1833 || bitmap->events_cleared == mddev->events)
1834 /* no need to keep dirty bits to optimise a
1835 * re-add of a missing device */
1836 start = mddev->recovery_cp;
NeilBrown69e51b42010-06-01 19:37:35 +10001837
NeilBrownafbaa902012-04-12 16:05:06 +10001838 mutex_lock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001839 err = bitmap_init_from_disk(bitmap, start);
NeilBrownafbaa902012-04-12 16:05:06 +10001840 mutex_unlock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001841
NeilBrown32a76272005-06-21 17:17:14 -07001842 if (err)
NeilBrown69e51b42010-06-01 19:37:35 +10001843 goto out;
NeilBrownb405fe92012-05-22 13:55:15 +10001844 clear_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +10001845
1846 /* Kick recovery in case any bits were set */
1847 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
NeilBrown3178b0d2005-09-09 16:23:50 -07001848
NeilBrown1b04be92009-12-14 12:49:53 +11001849 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001850 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001851
NeilBrown4ad13662007-07-17 04:06:13 -07001852 bitmap_update_sb(bitmap);
1853
NeilBrownb405fe92012-05-22 13:55:15 +10001854 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown69e51b42010-06-01 19:37:35 +10001855 err = -EIO;
1856out:
NeilBrown3178b0d2005-09-09 16:23:50 -07001857 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001858}
NeilBrown69e51b42010-06-01 19:37:35 +10001859EXPORT_SYMBOL_GPL(bitmap_load);
NeilBrown32a76272005-06-21 17:17:14 -07001860
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001861/* Loads the bitmap associated with slot and copies the resync information
1862 * to our bitmap
1863 */
1864int bitmap_copy_from_slot(struct mddev *mddev, int slot,
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001865 sector_t *low, sector_t *high, bool clear_bits)
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001866{
1867 int rv = 0, i, j;
1868 sector_t block, lo = 0, hi = 0;
1869 struct bitmap_counts *counts;
1870 struct bitmap *bitmap = bitmap_create(mddev, slot);
1871
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001872 if (IS_ERR(bitmap)) {
1873 bitmap_free(bitmap);
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001874 return PTR_ERR(bitmap);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001875 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001876
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001877 rv = bitmap_init_from_disk(bitmap, 0);
1878 if (rv)
1879 goto err;
1880
1881 counts = &bitmap->counts;
1882 for (j = 0; j < counts->chunks; j++) {
1883 block = (sector_t)j << counts->chunkshift;
1884 if (bitmap_file_test_bit(bitmap, block)) {
1885 if (!lo)
1886 lo = block;
1887 hi = block;
1888 bitmap_file_clear_bit(bitmap, block);
1889 bitmap_set_memory_bits(mddev->bitmap, block, 1);
1890 bitmap_file_set_bit(mddev->bitmap, block);
1891 }
1892 }
1893
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001894 if (clear_bits) {
1895 bitmap_update_sb(bitmap);
1896 /* Setting this for the ev_page should be enough.
1897 * And we do not require both write_all and PAGE_DIRT either
1898 */
1899 for (i = 0; i < bitmap->storage.file_pages; i++)
1900 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
1901 bitmap_write_all(bitmap);
1902 bitmap_unplug(bitmap);
1903 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001904 *low = lo;
1905 *high = hi;
1906err:
1907 bitmap_free(bitmap);
1908 return rv;
1909}
1910EXPORT_SYMBOL_GPL(bitmap_copy_from_slot);
1911
1912
NeilBrown57148962012-03-19 12:46:40 +11001913void bitmap_status(struct seq_file *seq, struct bitmap *bitmap)
1914{
1915 unsigned long chunk_kb;
NeilBrown40cffcc2012-05-22 13:55:24 +10001916 struct bitmap_counts *counts;
NeilBrown57148962012-03-19 12:46:40 +11001917
1918 if (!bitmap)
1919 return;
1920
NeilBrown40cffcc2012-05-22 13:55:24 +10001921 counts = &bitmap->counts;
1922
NeilBrown57148962012-03-19 12:46:40 +11001923 chunk_kb = bitmap->mddev->bitmap_info.chunksize >> 10;
1924 seq_printf(seq, "bitmap: %lu/%lu pages [%luKB], "
1925 "%lu%s chunk",
NeilBrown40cffcc2012-05-22 13:55:24 +10001926 counts->pages - counts->missing_pages,
1927 counts->pages,
1928 (counts->pages - counts->missing_pages)
NeilBrown57148962012-03-19 12:46:40 +11001929 << (PAGE_SHIFT - 10),
1930 chunk_kb ? chunk_kb : bitmap->mddev->bitmap_info.chunksize,
1931 chunk_kb ? "KB" : "B");
NeilBrown1ec885c2012-05-22 13:55:10 +10001932 if (bitmap->storage.file) {
NeilBrown57148962012-03-19 12:46:40 +11001933 seq_printf(seq, ", file: ");
Miklos Szeredi2726d562015-06-19 10:30:28 +02001934 seq_file_path(seq, bitmap->storage.file, " \t\n");
NeilBrown57148962012-03-19 12:46:40 +11001935 }
1936
1937 seq_printf(seq, "\n");
NeilBrown57148962012-03-19 12:46:40 +11001938}
1939
NeilBrownd60b4792012-05-22 13:55:25 +10001940int bitmap_resize(struct bitmap *bitmap, sector_t blocks,
1941 int chunksize, int init)
1942{
1943 /* If chunk_size is 0, choose an appropriate chunk size.
1944 * Then possibly allocate new storage space.
1945 * Then quiesce, copy bits, replace bitmap, and re-start
1946 *
1947 * This function is called both to set up the initial bitmap
1948 * and to resize the bitmap while the array is active.
1949 * If this happens as a result of the array being resized,
1950 * chunksize will be zero, and we need to choose a suitable
1951 * chunksize, otherwise we use what we are given.
1952 */
1953 struct bitmap_storage store;
1954 struct bitmap_counts old_counts;
1955 unsigned long chunks;
1956 sector_t block;
1957 sector_t old_blocks, new_blocks;
1958 int chunkshift;
1959 int ret = 0;
1960 long pages;
1961 struct bitmap_page *new_bp;
1962
1963 if (chunksize == 0) {
1964 /* If there is enough space, leave the chunk size unchanged,
1965 * else increase by factor of two until there is enough space.
1966 */
1967 long bytes;
1968 long space = bitmap->mddev->bitmap_info.space;
1969
1970 if (space == 0) {
1971 /* We don't know how much space there is, so limit
1972 * to current size - in sectors.
1973 */
1974 bytes = DIV_ROUND_UP(bitmap->counts.chunks, 8);
1975 if (!bitmap->mddev->bitmap_info.external)
1976 bytes += sizeof(bitmap_super_t);
1977 space = DIV_ROUND_UP(bytes, 512);
1978 bitmap->mddev->bitmap_info.space = space;
1979 }
1980 chunkshift = bitmap->counts.chunkshift;
1981 chunkshift--;
1982 do {
1983 /* 'chunkshift' is shift from block size to chunk size */
1984 chunkshift++;
1985 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1986 bytes = DIV_ROUND_UP(chunks, 8);
1987 if (!bitmap->mddev->bitmap_info.external)
1988 bytes += sizeof(bitmap_super_t);
1989 } while (bytes > (space << 9));
1990 } else
1991 chunkshift = ffz(~chunksize) - BITMAP_BLOCK_SHIFT;
1992
1993 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1994 memset(&store, 0, sizeof(store));
1995 if (bitmap->mddev->bitmap_info.offset || bitmap->mddev->bitmap_info.file)
1996 ret = bitmap_storage_alloc(&store, chunks,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001997 !bitmap->mddev->bitmap_info.external,
NeilBrownda6fb7a2015-10-01 16:03:38 +10001998 mddev_is_clustered(bitmap->mddev)
1999 ? bitmap->cluster_slot : 0);
NeilBrownd60b4792012-05-22 13:55:25 +10002000 if (ret)
2001 goto err;
2002
2003 pages = DIV_ROUND_UP(chunks, PAGE_COUNTER_RATIO);
2004
2005 new_bp = kzalloc(pages * sizeof(*new_bp), GFP_KERNEL);
2006 ret = -ENOMEM;
2007 if (!new_bp) {
2008 bitmap_file_unmap(&store);
2009 goto err;
2010 }
2011
2012 if (!init)
2013 bitmap->mddev->pers->quiesce(bitmap->mddev, 1);
2014
2015 store.file = bitmap->storage.file;
2016 bitmap->storage.file = NULL;
2017
2018 if (store.sb_page && bitmap->storage.sb_page)
2019 memcpy(page_address(store.sb_page),
2020 page_address(bitmap->storage.sb_page),
2021 sizeof(bitmap_super_t));
2022 bitmap_file_unmap(&bitmap->storage);
2023 bitmap->storage = store;
2024
2025 old_counts = bitmap->counts;
2026 bitmap->counts.bp = new_bp;
2027 bitmap->counts.pages = pages;
2028 bitmap->counts.missing_pages = pages;
2029 bitmap->counts.chunkshift = chunkshift;
2030 bitmap->counts.chunks = chunks;
2031 bitmap->mddev->bitmap_info.chunksize = 1 << (chunkshift +
2032 BITMAP_BLOCK_SHIFT);
2033
2034 blocks = min(old_counts.chunks << old_counts.chunkshift,
2035 chunks << chunkshift);
2036
2037 spin_lock_irq(&bitmap->counts.lock);
Guoqing Jiangc9d65032016-05-02 11:50:11 -04002038 /* For cluster raid, need to pre-allocate bitmap */
2039 if (mddev_is_clustered(bitmap->mddev)) {
2040 unsigned long page;
2041 for (page = 0; page < pages; page++) {
2042 ret = bitmap_checkpage(&bitmap->counts, page, 1, 1);
2043 if (ret) {
2044 unsigned long k;
2045
2046 /* deallocate the page memory */
2047 for (k = 0; k < page; k++) {
2048 if (new_bp[k].map)
2049 kfree(new_bp[k].map);
2050 }
2051
2052 /* restore some fields from old_counts */
2053 bitmap->counts.bp = old_counts.bp;
2054 bitmap->counts.pages = old_counts.pages;
2055 bitmap->counts.missing_pages = old_counts.pages;
2056 bitmap->counts.chunkshift = old_counts.chunkshift;
2057 bitmap->counts.chunks = old_counts.chunks;
2058 bitmap->mddev->bitmap_info.chunksize = 1 << (old_counts.chunkshift +
2059 BITMAP_BLOCK_SHIFT);
2060 blocks = old_counts.chunks << old_counts.chunkshift;
2061 pr_err("Could not pre-allocate in-memory bitmap for cluster raid\n");
2062 break;
2063 } else
2064 bitmap->counts.bp[page].count += 1;
2065 }
2066 }
2067
NeilBrownd60b4792012-05-22 13:55:25 +10002068 for (block = 0; block < blocks; ) {
2069 bitmap_counter_t *bmc_old, *bmc_new;
2070 int set;
2071
2072 bmc_old = bitmap_get_counter(&old_counts, block,
2073 &old_blocks, 0);
2074 set = bmc_old && NEEDED(*bmc_old);
2075
2076 if (set) {
2077 bmc_new = bitmap_get_counter(&bitmap->counts, block,
2078 &new_blocks, 1);
2079 if (*bmc_new == 0) {
2080 /* need to set on-disk bits too. */
2081 sector_t end = block + new_blocks;
2082 sector_t start = block >> chunkshift;
2083 start <<= chunkshift;
2084 while (start < end) {
2085 bitmap_file_set_bit(bitmap, block);
2086 start += 1 << chunkshift;
2087 }
2088 *bmc_new = 2;
2089 bitmap_count_page(&bitmap->counts,
2090 block, 1);
2091 bitmap_set_pending(&bitmap->counts,
2092 block);
2093 }
2094 *bmc_new |= NEEDED_MASK;
2095 if (new_blocks < old_blocks)
2096 old_blocks = new_blocks;
2097 }
2098 block += old_blocks;
2099 }
2100
2101 if (!init) {
2102 int i;
2103 while (block < (chunks << chunkshift)) {
2104 bitmap_counter_t *bmc;
2105 bmc = bitmap_get_counter(&bitmap->counts, block,
2106 &new_blocks, 1);
2107 if (bmc) {
2108 /* new space. It needs to be resynced, so
2109 * we set NEEDED_MASK.
2110 */
2111 if (*bmc == 0) {
2112 *bmc = NEEDED_MASK | 2;
2113 bitmap_count_page(&bitmap->counts,
2114 block, 1);
2115 bitmap_set_pending(&bitmap->counts,
2116 block);
2117 }
2118 }
2119 block += new_blocks;
2120 }
2121 for (i = 0; i < bitmap->storage.file_pages; i++)
2122 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
2123 }
2124 spin_unlock_irq(&bitmap->counts.lock);
2125
2126 if (!init) {
2127 bitmap_unplug(bitmap);
2128 bitmap->mddev->pers->quiesce(bitmap->mddev, 0);
2129 }
2130 ret = 0;
2131err:
2132 return ret;
2133}
2134EXPORT_SYMBOL_GPL(bitmap_resize);
2135
NeilBrown43a70502009-12-14 12:49:55 +11002136static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002137location_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002138{
2139 ssize_t len;
NeilBrownac2f40b2010-06-01 19:37:31 +10002140 if (mddev->bitmap_info.file)
NeilBrown43a70502009-12-14 12:49:55 +11002141 len = sprintf(page, "file");
NeilBrownac2f40b2010-06-01 19:37:31 +10002142 else if (mddev->bitmap_info.offset)
NeilBrown43a70502009-12-14 12:49:55 +11002143 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10002144 else
NeilBrown43a70502009-12-14 12:49:55 +11002145 len = sprintf(page, "none");
2146 len += sprintf(page+len, "\n");
2147 return len;
2148}
2149
2150static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002151location_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002152{
2153
2154 if (mddev->pers) {
2155 if (!mddev->pers->quiesce)
2156 return -EBUSY;
2157 if (mddev->recovery || mddev->sync_thread)
2158 return -EBUSY;
2159 }
2160
2161 if (mddev->bitmap || mddev->bitmap_info.file ||
2162 mddev->bitmap_info.offset) {
2163 /* bitmap already configured. Only option is to clear it */
2164 if (strncmp(buf, "none", 4) != 0)
2165 return -EBUSY;
2166 if (mddev->pers) {
2167 mddev->pers->quiesce(mddev, 1);
2168 bitmap_destroy(mddev);
2169 mddev->pers->quiesce(mddev, 0);
2170 }
2171 mddev->bitmap_info.offset = 0;
2172 if (mddev->bitmap_info.file) {
2173 struct file *f = mddev->bitmap_info.file;
2174 mddev->bitmap_info.file = NULL;
NeilBrown43a70502009-12-14 12:49:55 +11002175 fput(f);
2176 }
2177 } else {
2178 /* No bitmap, OK to set a location */
2179 long long offset;
2180 if (strncmp(buf, "none", 4) == 0)
2181 /* nothing to be done */;
2182 else if (strncmp(buf, "file:", 5) == 0) {
2183 /* Not supported yet */
2184 return -EINVAL;
2185 } else {
2186 int rv;
2187 if (buf[0] == '+')
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002188 rv = kstrtoll(buf+1, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002189 else
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002190 rv = kstrtoll(buf, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002191 if (rv)
2192 return rv;
2193 if (offset == 0)
2194 return -EINVAL;
NeilBrownece5cff2009-12-14 12:49:56 +11002195 if (mddev->bitmap_info.external == 0 &&
2196 mddev->major_version == 0 &&
NeilBrown43a70502009-12-14 12:49:55 +11002197 offset != mddev->bitmap_info.default_offset)
2198 return -EINVAL;
2199 mddev->bitmap_info.offset = offset;
2200 if (mddev->pers) {
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002201 struct bitmap *bitmap;
NeilBrown43a70502009-12-14 12:49:55 +11002202 mddev->pers->quiesce(mddev, 1);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002203 bitmap = bitmap_create(mddev, -1);
2204 if (IS_ERR(bitmap))
2205 rv = PTR_ERR(bitmap);
2206 else {
2207 mddev->bitmap = bitmap;
NeilBrown4474ca42012-03-19 12:46:37 +11002208 rv = bitmap_load(mddev);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002209 if (rv)
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002210 mddev->bitmap_info.offset = 0;
NeilBrown43a70502009-12-14 12:49:55 +11002211 }
2212 mddev->pers->quiesce(mddev, 0);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002213 if (rv) {
2214 bitmap_destroy(mddev);
NeilBrown43a70502009-12-14 12:49:55 +11002215 return rv;
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002216 }
NeilBrown43a70502009-12-14 12:49:55 +11002217 }
2218 }
2219 }
2220 if (!mddev->external) {
2221 /* Ensure new bitmap info is stored in
2222 * metadata promptly.
2223 */
2224 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2225 md_wakeup_thread(mddev->thread);
2226 }
2227 return len;
2228}
2229
2230static struct md_sysfs_entry bitmap_location =
2231__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
2232
NeilBrown6409bb02012-05-22 13:55:07 +10002233/* 'bitmap/space' is the space available at 'location' for the
2234 * bitmap. This allows the kernel to know when it is safe to
2235 * resize the bitmap to match a resized array.
2236 */
2237static ssize_t
2238space_show(struct mddev *mddev, char *page)
2239{
2240 return sprintf(page, "%lu\n", mddev->bitmap_info.space);
2241}
2242
2243static ssize_t
2244space_store(struct mddev *mddev, const char *buf, size_t len)
2245{
2246 unsigned long sectors;
2247 int rv;
2248
2249 rv = kstrtoul(buf, 10, &sectors);
2250 if (rv)
2251 return rv;
2252
2253 if (sectors == 0)
2254 return -EINVAL;
2255
2256 if (mddev->bitmap &&
NeilBrown9b1215c2012-05-22 13:55:11 +10002257 sectors < (mddev->bitmap->storage.bytes + 511) >> 9)
NeilBrown6409bb02012-05-22 13:55:07 +10002258 return -EFBIG; /* Bitmap is too big for this small space */
2259
2260 /* could make sure it isn't too big, but that isn't really
2261 * needed - user-space should be careful.
2262 */
2263 mddev->bitmap_info.space = sectors;
2264 return len;
2265}
2266
2267static struct md_sysfs_entry bitmap_space =
2268__ATTR(space, S_IRUGO|S_IWUSR, space_show, space_store);
2269
NeilBrown43a70502009-12-14 12:49:55 +11002270static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002271timeout_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002272{
2273 ssize_t len;
2274 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
2275 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
NeilBrownac2f40b2010-06-01 19:37:31 +10002276
NeilBrown43a70502009-12-14 12:49:55 +11002277 len = sprintf(page, "%lu", secs);
2278 if (jifs)
2279 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
2280 len += sprintf(page+len, "\n");
2281 return len;
2282}
2283
2284static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002285timeout_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002286{
2287 /* timeout can be set at any time */
2288 unsigned long timeout;
2289 int rv = strict_strtoul_scaled(buf, &timeout, 4);
2290 if (rv)
2291 return rv;
2292
2293 /* just to make sure we don't overflow... */
2294 if (timeout >= LONG_MAX / HZ)
2295 return -EINVAL;
2296
2297 timeout = timeout * HZ / 10000;
2298
2299 if (timeout >= MAX_SCHEDULE_TIMEOUT)
2300 timeout = MAX_SCHEDULE_TIMEOUT-1;
2301 if (timeout < 1)
2302 timeout = 1;
2303 mddev->bitmap_info.daemon_sleep = timeout;
2304 if (mddev->thread) {
2305 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
2306 * the bitmap is all clean and we don't need to
2307 * adjust the timeout right now
2308 */
2309 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
2310 mddev->thread->timeout = timeout;
2311 md_wakeup_thread(mddev->thread);
2312 }
2313 }
2314 return len;
2315}
2316
2317static struct md_sysfs_entry bitmap_timeout =
2318__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
2319
2320static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002321backlog_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002322{
2323 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
2324}
2325
2326static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002327backlog_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002328{
2329 unsigned long backlog;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002330 int rv = kstrtoul(buf, 10, &backlog);
NeilBrown43a70502009-12-14 12:49:55 +11002331 if (rv)
2332 return rv;
2333 if (backlog > COUNTER_MAX)
2334 return -EINVAL;
2335 mddev->bitmap_info.max_write_behind = backlog;
2336 return len;
2337}
2338
2339static struct md_sysfs_entry bitmap_backlog =
2340__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
2341
2342static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002343chunksize_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002344{
2345 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
2346}
2347
2348static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002349chunksize_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002350{
2351 /* Can only be changed when no bitmap is active */
2352 int rv;
2353 unsigned long csize;
2354 if (mddev->bitmap)
2355 return -EBUSY;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002356 rv = kstrtoul(buf, 10, &csize);
NeilBrown43a70502009-12-14 12:49:55 +11002357 if (rv)
2358 return rv;
2359 if (csize < 512 ||
2360 !is_power_of_2(csize))
2361 return -EINVAL;
2362 mddev->bitmap_info.chunksize = csize;
2363 return len;
2364}
2365
2366static struct md_sysfs_entry bitmap_chunksize =
2367__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2368
NeilBrownfd01b882011-10-11 16:47:53 +11002369static ssize_t metadata_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002370{
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002371 if (mddev_is_clustered(mddev))
2372 return sprintf(page, "clustered\n");
NeilBrownece5cff2009-12-14 12:49:56 +11002373 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2374 ? "external" : "internal"));
2375}
2376
NeilBrownfd01b882011-10-11 16:47:53 +11002377static ssize_t metadata_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002378{
2379 if (mddev->bitmap ||
2380 mddev->bitmap_info.file ||
2381 mddev->bitmap_info.offset)
2382 return -EBUSY;
2383 if (strncmp(buf, "external", 8) == 0)
2384 mddev->bitmap_info.external = 1;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002385 else if ((strncmp(buf, "internal", 8) == 0) ||
2386 (strncmp(buf, "clustered", 9) == 0))
NeilBrownece5cff2009-12-14 12:49:56 +11002387 mddev->bitmap_info.external = 0;
2388 else
2389 return -EINVAL;
2390 return len;
2391}
2392
2393static struct md_sysfs_entry bitmap_metadata =
2394__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2395
NeilBrownfd01b882011-10-11 16:47:53 +11002396static ssize_t can_clear_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002397{
2398 int len;
NeilBrownb7b17c92014-12-15 12:56:59 +11002399 spin_lock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002400 if (mddev->bitmap)
2401 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2402 "false" : "true"));
2403 else
2404 len = sprintf(page, "\n");
NeilBrownb7b17c92014-12-15 12:56:59 +11002405 spin_unlock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002406 return len;
2407}
2408
NeilBrownfd01b882011-10-11 16:47:53 +11002409static ssize_t can_clear_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002410{
2411 if (mddev->bitmap == NULL)
2412 return -ENOENT;
2413 if (strncmp(buf, "false", 5) == 0)
2414 mddev->bitmap->need_sync = 1;
2415 else if (strncmp(buf, "true", 4) == 0) {
2416 if (mddev->degraded)
2417 return -EBUSY;
2418 mddev->bitmap->need_sync = 0;
2419 } else
2420 return -EINVAL;
2421 return len;
2422}
2423
2424static struct md_sysfs_entry bitmap_can_clear =
2425__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2426
Paul Clements696fcd52010-03-08 16:02:37 +11002427static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002428behind_writes_used_show(struct mddev *mddev, char *page)
Paul Clements696fcd52010-03-08 16:02:37 +11002429{
NeilBrownb7b17c92014-12-15 12:56:59 +11002430 ssize_t ret;
2431 spin_lock(&mddev->lock);
Paul Clements696fcd52010-03-08 16:02:37 +11002432 if (mddev->bitmap == NULL)
NeilBrownb7b17c92014-12-15 12:56:59 +11002433 ret = sprintf(page, "0\n");
2434 else
2435 ret = sprintf(page, "%lu\n",
2436 mddev->bitmap->behind_writes_used);
2437 spin_unlock(&mddev->lock);
2438 return ret;
Paul Clements696fcd52010-03-08 16:02:37 +11002439}
2440
2441static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002442behind_writes_used_reset(struct mddev *mddev, const char *buf, size_t len)
Paul Clements696fcd52010-03-08 16:02:37 +11002443{
2444 if (mddev->bitmap)
2445 mddev->bitmap->behind_writes_used = 0;
2446 return len;
2447}
2448
2449static struct md_sysfs_entry max_backlog_used =
2450__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2451 behind_writes_used_show, behind_writes_used_reset);
2452
NeilBrown43a70502009-12-14 12:49:55 +11002453static struct attribute *md_bitmap_attrs[] = {
2454 &bitmap_location.attr,
NeilBrown6409bb02012-05-22 13:55:07 +10002455 &bitmap_space.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002456 &bitmap_timeout.attr,
2457 &bitmap_backlog.attr,
2458 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002459 &bitmap_metadata.attr,
2460 &bitmap_can_clear.attr,
Paul Clements696fcd52010-03-08 16:02:37 +11002461 &max_backlog_used.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002462 NULL
2463};
2464struct attribute_group md_bitmap_group = {
2465 .name = "bitmap",
2466 .attrs = md_bitmap_attrs,
2467};
2468