blob: 23563f54565146d1d6e819555df0603fbb2aec26 [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)),
Mike Christie796a5cf2016-06-05 14:32:07 -0500165 page, REQ_OP_READ, 0, 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);
Mike Christie2a222ca2016-06-05 14:31:43 -0500300 submit_bh(REQ_OP_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);
Mike Christie2a222ca2016-06-05 14:31:43 -0500395 submit_bh(REQ_OP_READ, 0, 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)
NeilBrownec0cc222016-11-02 14:16:49 +1100408 pr_err("md: bitmap read error: (%dB @ %llu): %d\n",
409 (int)PAGE_SIZE,
410 (unsigned long long)index << PAGE_SHIFT,
411 ret);
NeilBrown27581e52012-05-22 13:55:08 +1000412 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);
NeilBrownec0cc222016-11-02 14:16:49 +1100458 pr_debug("%s: bitmap file superblock:\n", bmname(bitmap));
459 pr_debug(" magic: %08x\n", le32_to_cpu(sb->magic));
460 pr_debug(" version: %d\n", le32_to_cpu(sb->version));
461 pr_debug(" uuid: %08x.%08x.%08x.%08x\n",
462 *(__u32 *)(sb->uuid+0),
463 *(__u32 *)(sb->uuid+4),
464 *(__u32 *)(sb->uuid+8),
465 *(__u32 *)(sb->uuid+12));
466 pr_debug(" events: %llu\n",
467 (unsigned long long) le64_to_cpu(sb->events));
468 pr_debug("events cleared: %llu\n",
469 (unsigned long long) le64_to_cpu(sb->events_cleared));
470 pr_debug(" state: %08x\n", le32_to_cpu(sb->state));
471 pr_debug(" chunksize: %d B\n", le32_to_cpu(sb->chunksize));
472 pr_debug(" daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
473 pr_debug(" sync size: %llu KB\n",
474 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
475 pr_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);
NeilBrownec0cc222016-11-02 14:16:49 +1100509 pr_warn("bitmap chunksize not a power of 2\n");
Jonathan Brassow9c810752011-06-08 17:59:30 -0500510 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)) {
NeilBrownec0cc222016-11-02 14:16:49 +1100516 pr_debug("Choosing daemon_sleep default (5 sec)\n");
Jonathan Brassow9c810752011-06-08 17:59:30 -0500517 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));
NeilBrownec0cc222016-11-02 14:16:49 +1100587 pr_debug("%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) {
NeilBrownec0cc222016-11-02 14:16:49 +1100637 pr_warn("%s: invalid bitmap file superblock: %s\n",
NeilBrown32a76272005-06-21 17:17:14 -0700638 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)) {
NeilBrownec0cc222016-11-02 14:16:49 +1100651 pr_warn("%s: bitmap superblock UUID mismatch\n",
652 bmname(bitmap));
NeilBrown278c1ca2012-03-19 12:46:40 +1100653 goto out;
654 }
655 events = le64_to_cpu(sb->events);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500656 if (!nodes && (events < bitmap->mddev->events)) {
NeilBrownec0cc222016-11-02 14:16:49 +1100657 pr_warn("%s: bitmap file is out of date (%llu < %llu) -- forcing full recovery\n",
658 bmname(bitmap), events,
659 (unsigned long long) bitmap->mddev->events);
NeilBrownb405fe92012-05-22 13:55:15 +1000660 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown278c1ca2012-03-19 12:46:40 +1100661 }
662 }
NeilBrown32a76272005-06-21 17:17:14 -0700663
NeilBrown32a76272005-06-21 17:17:14 -0700664 /* assign fields using values from superblock */
NeilBrown4f2e6392006-10-21 10:24:09 -0700665 bitmap->flags |= le32_to_cpu(sb->state);
NeilBrownbd926c62005-11-08 21:39:32 -0800666 if (le32_to_cpu(sb->version) == BITMAP_MAJOR_HOSTENDIAN)
NeilBrownb405fe92012-05-22 13:55:15 +1000667 set_bit(BITMAP_HOSTENDIAN, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -0700668 bitmap->events_cleared = le64_to_cpu(sb->events_cleared);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500669 strlcpy(bitmap->mddev->bitmap_info.cluster_name, sb->cluster_name, 64);
NeilBrown32a76272005-06-21 17:17:14 -0700670 err = 0;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500671
NeilBrown32a76272005-06-21 17:17:14 -0700672out:
Cong Wangb2f46e62011-11-28 13:25:44 +0800673 kunmap_atomic(sb);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500674 /* Assiging chunksize is required for "re_read" */
675 bitmap->mddev->bitmap_info.chunksize = chunksize;
Goldwyn Rodriguesf7357272015-07-22 12:09:16 -0500676 if (err == 0 && nodes && (bitmap->cluster_slot < 0)) {
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500677 err = md_setup_cluster(bitmap->mddev, nodes);
678 if (err) {
NeilBrownec0cc222016-11-02 14:16:49 +1100679 pr_warn("%s: Could not setup cluster service (%d)\n",
680 bmname(bitmap), err);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500681 goto out_no_sb;
682 }
683 bitmap->cluster_slot = md_cluster_ops->slot_number(bitmap->mddev);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500684 goto re_read;
685 }
686
687
NeilBrownef99bf42012-05-22 13:55:08 +1000688out_no_sb:
NeilBrownb405fe92012-05-22 13:55:15 +1000689 if (test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000690 bitmap->events_cleared = bitmap->mddev->events;
691 bitmap->mddev->bitmap_info.chunksize = chunksize;
692 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
693 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500694 bitmap->mddev->bitmap_info.nodes = nodes;
NeilBrown1dff2b82012-05-22 13:55:34 +1000695 if (bitmap->mddev->bitmap_info.space == 0 ||
696 bitmap->mddev->bitmap_info.space > sectors_reserved)
697 bitmap->mddev->bitmap_info.space = sectors_reserved;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500698 if (err) {
NeilBrown32a76272005-06-21 17:17:14 -0700699 bitmap_print_sb(bitmap);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500700 if (bitmap->cluster_slot < 0)
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500701 md_cluster_stop(bitmap->mddev);
702 }
NeilBrown32a76272005-06-21 17:17:14 -0700703 return err;
704}
705
NeilBrown32a76272005-06-21 17:17:14 -0700706/*
707 * general bitmap file operations
708 */
709
NeilBrownece5cff2009-12-14 12:49:56 +1100710/*
711 * on-disk bitmap:
712 *
713 * Use one bit per "chunk" (block set). We do the disk I/O on the bitmap
714 * file a page at a time. There's a superblock at the start of the file.
715 */
NeilBrown32a76272005-06-21 17:17:14 -0700716/* calculate the index of the page that contains this bit */
NeilBrown1ec885c2012-05-22 13:55:10 +1000717static inline unsigned long file_page_index(struct bitmap_storage *store,
718 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700719{
NeilBrown1ec885c2012-05-22 13:55:10 +1000720 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100721 chunk += sizeof(bitmap_super_t) << 3;
722 return chunk >> PAGE_BIT_SHIFT;
NeilBrown32a76272005-06-21 17:17:14 -0700723}
724
725/* calculate the (bit) offset of this bit within a page */
NeilBrown1ec885c2012-05-22 13:55:10 +1000726static inline unsigned long file_page_offset(struct bitmap_storage *store,
727 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700728{
NeilBrown1ec885c2012-05-22 13:55:10 +1000729 if (store->sb_page)
NeilBrownece5cff2009-12-14 12:49:56 +1100730 chunk += sizeof(bitmap_super_t) << 3;
731 return chunk & (PAGE_BITS - 1);
NeilBrown32a76272005-06-21 17:17:14 -0700732}
733
734/*
735 * return a pointer to the page in the filemap that contains the given bit
736 *
NeilBrown32a76272005-06-21 17:17:14 -0700737 */
NeilBrown1ec885c2012-05-22 13:55:10 +1000738static inline struct page *filemap_get_page(struct bitmap_storage *store,
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000739 unsigned long chunk)
NeilBrown32a76272005-06-21 17:17:14 -0700740{
NeilBrown1ec885c2012-05-22 13:55:10 +1000741 if (file_page_index(store, chunk) >= store->file_pages)
NeilBrownac2f40b2010-06-01 19:37:31 +1000742 return NULL;
NeilBrownf2e06c52014-05-28 13:39:23 +1000743 return store->filemap[file_page_index(store, chunk)];
NeilBrown32a76272005-06-21 17:17:14 -0700744}
745
NeilBrownd1244cb2012-05-22 13:55:12 +1000746static int bitmap_storage_alloc(struct bitmap_storage *store,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500747 unsigned long chunks, int with_super,
748 int slot_number)
NeilBrownd1244cb2012-05-22 13:55:12 +1000749{
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500750 int pnum, offset = 0;
NeilBrownd1244cb2012-05-22 13:55:12 +1000751 unsigned long num_pages;
752 unsigned long bytes;
753
754 bytes = DIV_ROUND_UP(chunks, 8);
755 if (with_super)
756 bytes += sizeof(bitmap_super_t);
757
758 num_pages = DIV_ROUND_UP(bytes, PAGE_SIZE);
Guoqing Jiang7f86ffe2016-05-02 11:50:13 -0400759 offset = slot_number * num_pages;
NeilBrownd1244cb2012-05-22 13:55:12 +1000760
761 store->filemap = kmalloc(sizeof(struct page *)
762 * num_pages, GFP_KERNEL);
763 if (!store->filemap)
764 return -ENOMEM;
765
766 if (with_super && !store->sb_page) {
NeilBrownd60b4792012-05-22 13:55:25 +1000767 store->sb_page = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000768 if (store->sb_page == NULL)
769 return -ENOMEM;
NeilBrownd1244cb2012-05-22 13:55:12 +1000770 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500771
NeilBrownd1244cb2012-05-22 13:55:12 +1000772 pnum = 0;
773 if (store->sb_page) {
774 store->filemap[0] = store->sb_page;
775 pnum = 1;
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500776 store->sb_page->index = offset;
NeilBrownd1244cb2012-05-22 13:55:12 +1000777 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500778
NeilBrownd1244cb2012-05-22 13:55:12 +1000779 for ( ; pnum < num_pages; pnum++) {
NeilBrownd60b4792012-05-22 13:55:25 +1000780 store->filemap[pnum] = alloc_page(GFP_KERNEL|__GFP_ZERO);
NeilBrownd1244cb2012-05-22 13:55:12 +1000781 if (!store->filemap[pnum]) {
782 store->file_pages = pnum;
783 return -ENOMEM;
784 }
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500785 store->filemap[pnum]->index = pnum + offset;
NeilBrownd1244cb2012-05-22 13:55:12 +1000786 }
787 store->file_pages = pnum;
788
789 /* We need 4 bits per page, rounded up to a multiple
790 * of sizeof(unsigned long) */
791 store->filemap_attr = kzalloc(
792 roundup(DIV_ROUND_UP(num_pages*4, 8), sizeof(unsigned long)),
793 GFP_KERNEL);
794 if (!store->filemap_attr)
795 return -ENOMEM;
796
797 store->bytes = bytes;
798
799 return 0;
800}
801
NeilBrownfae7d322012-05-22 13:55:21 +1000802static void bitmap_file_unmap(struct bitmap_storage *store)
NeilBrown32a76272005-06-21 17:17:14 -0700803{
804 struct page **map, *sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700805 int pages;
NeilBrownfae7d322012-05-22 13:55:21 +1000806 struct file *file;
NeilBrown32a76272005-06-21 17:17:14 -0700807
NeilBrownfae7d322012-05-22 13:55:21 +1000808 file = store->file;
NeilBrown1ec885c2012-05-22 13:55:10 +1000809 map = store->filemap;
NeilBrown1ec885c2012-05-22 13:55:10 +1000810 pages = store->file_pages;
NeilBrown1ec885c2012-05-22 13:55:10 +1000811 sb_page = store->sb_page;
NeilBrown32a76272005-06-21 17:17:14 -0700812
813 while (pages--)
NeilBrownece5cff2009-12-14 12:49:56 +1100814 if (map[pages] != sb_page) /* 0 is sb_page, release it below */
NeilBrownd785a062006-06-26 00:27:48 -0700815 free_buffers(map[pages]);
NeilBrown32a76272005-06-21 17:17:14 -0700816 kfree(map);
NeilBrownfae7d322012-05-22 13:55:21 +1000817 kfree(store->filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700818
NeilBrownd785a062006-06-26 00:27:48 -0700819 if (sb_page)
820 free_buffers(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700821
NeilBrownd785a062006-06-26 00:27:48 -0700822 if (file) {
Al Viro496ad9a2013-01-23 17:07:38 -0500823 struct inode *inode = file_inode(file);
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800824 invalidate_mapping_pages(inode->i_mapping, 0, -1);
NeilBrown32a76272005-06-21 17:17:14 -0700825 fput(file);
NeilBrownd785a062006-06-26 00:27:48 -0700826 }
NeilBrown32a76272005-06-21 17:17:14 -0700827}
828
NeilBrown32a76272005-06-21 17:17:14 -0700829/*
830 * bitmap_file_kick - if an error occurs while manipulating the bitmap file
831 * then it is no longer reliable, so we stop using it and we mark the file
832 * as failed in the superblock
833 */
834static void bitmap_file_kick(struct bitmap *bitmap)
835{
836 char *path, *ptr = NULL;
837
NeilBrownb405fe92012-05-22 13:55:15 +1000838 if (!test_and_set_bit(BITMAP_STALE, &bitmap->flags)) {
NeilBrown4ad13662007-07-17 04:06:13 -0700839 bitmap_update_sb(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700840
NeilBrown1ec885c2012-05-22 13:55:10 +1000841 if (bitmap->storage.file) {
NeilBrown4ad13662007-07-17 04:06:13 -0700842 path = kmalloc(PAGE_SIZE, GFP_KERNEL);
843 if (path)
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +0200844 ptr = file_path(bitmap->storage.file,
NeilBrown1ec885c2012-05-22 13:55:10 +1000845 path, PAGE_SIZE);
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700846
NeilBrownec0cc222016-11-02 14:16:49 +1100847 pr_warn("%s: kicking failed bitmap file %s from array!\n",
848 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700849
NeilBrown4ad13662007-07-17 04:06:13 -0700850 kfree(path);
851 } else
NeilBrownec0cc222016-11-02 14:16:49 +1100852 pr_warn("%s: disabling internal bitmap due to errors\n",
853 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700854 }
NeilBrown32a76272005-06-21 17:17:14 -0700855}
856
857enum bitmap_page_attr {
NeilBrownac2f40b2010-06-01 19:37:31 +1000858 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
NeilBrown5a537df2011-09-21 15:37:46 +1000859 BITMAP_PAGE_PENDING = 1, /* there are bits that are being cleaned.
860 * i.e. counter is 1 or 2. */
NeilBrownac2f40b2010-06-01 19:37:31 +1000861 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
NeilBrown32a76272005-06-21 17:17:14 -0700862};
863
NeilBrownd1891222012-05-22 13:55:09 +1000864static inline void set_page_attr(struct bitmap *bitmap, int pnum,
865 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700866{
NeilBrownbdfd1142012-05-22 13:55:22 +1000867 set_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700868}
869
NeilBrownd1891222012-05-22 13:55:09 +1000870static inline void clear_page_attr(struct bitmap *bitmap, int pnum,
871 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700872{
NeilBrownbdfd1142012-05-22 13:55:22 +1000873 clear_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700874}
875
NeilBrownbdfd1142012-05-22 13:55:22 +1000876static inline int test_page_attr(struct bitmap *bitmap, int pnum,
877 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700878{
NeilBrown1ec885c2012-05-22 13:55:10 +1000879 return test_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700880}
881
NeilBrownbdfd1142012-05-22 13:55:22 +1000882static inline int test_and_clear_page_attr(struct bitmap *bitmap, int pnum,
883 enum bitmap_page_attr attr)
884{
885 return test_and_clear_bit((pnum<<2) + attr,
886 bitmap->storage.filemap_attr);
887}
NeilBrown32a76272005-06-21 17:17:14 -0700888/*
889 * bitmap_file_set_bit -- called before performing a write to the md device
890 * to set (and eventually sync) a particular bit in the bitmap file
891 *
892 * we set the bit immediately, then we record the page number so that
893 * when an unplug occurs, we can flush the dirty pages out to disk
894 */
895static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
896{
897 unsigned long bit;
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000898 struct page *page;
NeilBrown32a76272005-06-21 17:17:14 -0700899 void *kaddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000900 unsigned long chunk = block >> bitmap->counts.chunkshift;
Guoqing Jiang23cea66a2016-05-02 11:50:14 -0400901 struct bitmap_storage *store = &bitmap->storage;
902 unsigned long node_offset = 0;
903
904 if (mddev_is_clustered(bitmap->mddev))
905 node_offset = bitmap->cluster_slot * store->file_pages;
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 */
Guoqing Jiang23cea66a2016-05-02 11:50:14 -0400921 set_page_attr(bitmap, page->index - node_offset, 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;
Guoqing Jiang23cea66a2016-05-02 11:50:14 -0400930 struct bitmap_storage *store = &bitmap->storage;
931 unsigned long node_offset = 0;
932
933 if (mddev_is_clustered(bitmap->mddev))
934 node_offset = bitmap->cluster_slot * store->file_pages;
NeilBrownef99bf42012-05-22 13:55:08 +1000935
NeilBrown1ec885c2012-05-22 13:55:10 +1000936 page = filemap_get_page(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000937 if (!page)
938 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000939 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000940 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000941 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000942 clear_bit(bit, paddr);
943 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000944 clear_bit_le(bit, paddr);
NeilBrownef99bf42012-05-22 13:55:08 +1000945 kunmap_atomic(paddr);
Guoqing Jiang23cea66a2016-05-02 11:50:14 -0400946 if (!test_page_attr(bitmap, page->index - node_offset, BITMAP_PAGE_NEEDWRITE)) {
947 set_page_attr(bitmap, page->index - node_offset, BITMAP_PAGE_PENDING);
NeilBrownef99bf42012-05-22 13:55:08 +1000948 bitmap->allclean = 0;
949 }
950}
951
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -0500952static int bitmap_file_test_bit(struct bitmap *bitmap, sector_t block)
953{
954 unsigned long bit;
955 struct page *page;
956 void *paddr;
957 unsigned long chunk = block >> bitmap->counts.chunkshift;
958 int set = 0;
959
960 page = filemap_get_page(&bitmap->storage, chunk);
961 if (!page)
962 return -EINVAL;
963 bit = file_page_offset(&bitmap->storage, chunk);
964 paddr = kmap_atomic(page);
965 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
966 set = test_bit(bit, paddr);
967 else
968 set = test_bit_le(bit, paddr);
969 kunmap_atomic(paddr);
970 return set;
971}
972
973
NeilBrown32a76272005-06-21 17:17:14 -0700974/* this gets called when the md device is ready to unplug its underlying
975 * (slave) device queues -- before we let any writes go down, we need to
976 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700977void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700978{
NeilBrown74667122012-05-22 13:55:19 +1000979 unsigned long i;
NeilBrownec7a3192006-06-26 00:27:45 -0700980 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700981
NeilBrown62f82fa2012-05-22 13:55:21 +1000982 if (!bitmap || !bitmap->storage.filemap ||
983 test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700984 return;
NeilBrown32a76272005-06-21 17:17:14 -0700985
986 /* look at each page to see if there are any set bits that need to be
987 * flushed out to disk */
NeilBrown1ec885c2012-05-22 13:55:10 +1000988 for (i = 0; i < bitmap->storage.file_pages; i++) {
NeilBrownbdfd1142012-05-22 13:55:22 +1000989 if (!bitmap->storage.filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700990 return;
NeilBrownbdfd1142012-05-22 13:55:22 +1000991 dirty = test_and_clear_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
992 need_write = test_and_clear_page_attr(bitmap, i,
993 BITMAP_PAGE_NEEDWRITE);
994 if (dirty || need_write) {
NeilBrownd1891222012-05-22 13:55:09 +1000995 clear_page_attr(bitmap, i, BITMAP_PAGE_PENDING);
NeilBrownbdfd1142012-05-22 13:55:22 +1000996 write_page(bitmap, bitmap->storage.filemap[i], 0);
997 }
NeilBrown32a76272005-06-21 17:17:14 -0700998 }
NeilBrown4b5060d2014-09-09 14:13:51 +1000999 if (bitmap->storage.file)
1000 wait_event(bitmap->write_wait,
1001 atomic_read(&bitmap->pending_writes)==0);
1002 else
1003 md_super_wait(bitmap->mddev);
1004
NeilBrownb405fe92012-05-22 13:55:15 +10001005 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrownd785a062006-06-26 00:27:48 -07001006 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -07001007}
NeilBrownac2f40b2010-06-01 19:37:31 +10001008EXPORT_SYMBOL(bitmap_unplug);
NeilBrown32a76272005-06-21 17:17:14 -07001009
NeilBrown6a079972005-09-09 16:23:44 -07001010static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -07001011/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
1012 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
1013 * memory mapping of the bitmap file
1014 * Special cases:
1015 * if there's no bitmap file, or if the bitmap file had been
1016 * previously kicked from the array, we mark all the bits as
1017 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -07001018 *
1019 * We ignore all bits for sectors that end earlier than 'start'.
1020 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -07001021 */
NeilBrown6a079972005-09-09 16:23:44 -07001022static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -07001023{
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001024 unsigned long i, chunks, index, oldindex, bit, node_offset = 0;
NeilBrown27581e52012-05-22 13:55:08 +10001025 struct page *page = NULL;
NeilBrownd1244cb2012-05-22 13:55:12 +10001026 unsigned long bit_cnt = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001027 struct file *file;
NeilBrownd1244cb2012-05-22 13:55:12 +10001028 unsigned long offset;
NeilBrown32a76272005-06-21 17:17:14 -07001029 int outofdate;
1030 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -08001031 void *paddr;
NeilBrown1ec885c2012-05-22 13:55:10 +10001032 struct bitmap_storage *store = &bitmap->storage;
NeilBrown32a76272005-06-21 17:17:14 -07001033
NeilBrown40cffcc2012-05-22 13:55:24 +10001034 chunks = bitmap->counts.chunks;
NeilBrown1ec885c2012-05-22 13:55:10 +10001035 file = store->file;
NeilBrown32a76272005-06-21 17:17:14 -07001036
NeilBrownef99bf42012-05-22 13:55:08 +10001037 if (!file && !bitmap->mddev->bitmap_info.offset) {
1038 /* No permanent bitmap - fill with '1s'. */
NeilBrown1ec885c2012-05-22 13:55:10 +10001039 store->filemap = NULL;
1040 store->file_pages = 0;
NeilBrownef99bf42012-05-22 13:55:08 +10001041 for (i = 0; i < chunks ; i++) {
1042 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001043 int needed = ((sector_t)(i+1) << (bitmap->counts.chunkshift)
NeilBrownef99bf42012-05-22 13:55:08 +10001044 >= start);
1045 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001046 (sector_t)i << bitmap->counts.chunkshift,
NeilBrownef99bf42012-05-22 13:55:08 +10001047 needed);
1048 }
1049 return 0;
1050 }
NeilBrown32a76272005-06-21 17:17:14 -07001051
NeilBrownb405fe92012-05-22 13:55:15 +10001052 outofdate = test_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -07001053 if (outofdate)
NeilBrownec0cc222016-11-02 14:16:49 +11001054 pr_warn("%s: bitmap file is out of date, doing full recovery\n", bmname(bitmap));
NeilBrown32a76272005-06-21 17:17:14 -07001055
NeilBrownd1244cb2012-05-22 13:55:12 +10001056 if (file && i_size_read(file->f_mapping->host) < store->bytes) {
NeilBrownec0cc222016-11-02 14:16:49 +11001057 pr_warn("%s: bitmap file too short %lu < %lu\n",
1058 bmname(bitmap),
1059 (unsigned long) i_size_read(file->f_mapping->host),
1060 store->bytes);
NeilBrown4ad13662007-07-17 04:06:13 -07001061 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001062 }
NeilBrownbc7f77d2005-06-21 17:17:17 -07001063
NeilBrown32a76272005-06-21 17:17:14 -07001064 oldindex = ~0L;
NeilBrownd1244cb2012-05-22 13:55:12 +10001065 offset = 0;
1066 if (!bitmap->mddev->bitmap_info.external)
1067 offset = sizeof(bitmap_super_t);
NeilBrown32a76272005-06-21 17:17:14 -07001068
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001069 if (mddev_is_clustered(bitmap->mddev))
1070 node_offset = bitmap->cluster_slot * (DIV_ROUND_UP(store->bytes, PAGE_SIZE));
1071
NeilBrown32a76272005-06-21 17:17:14 -07001072 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -08001073 int b;
NeilBrown1ec885c2012-05-22 13:55:10 +10001074 index = file_page_index(&bitmap->storage, i);
1075 bit = file_page_offset(&bitmap->storage, i);
NeilBrown32a76272005-06-21 17:17:14 -07001076 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -07001077 int count;
NeilBrown32a76272005-06-21 17:17:14 -07001078 /* unmap the old page, we're done with it */
NeilBrownd1244cb2012-05-22 13:55:12 +10001079 if (index == store->file_pages-1)
1080 count = store->bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -07001081 else
1082 count = PAGE_SIZE;
NeilBrown1ec885c2012-05-22 13:55:10 +10001083 page = store->filemap[index];
NeilBrown27581e52012-05-22 13:55:08 +10001084 if (file)
1085 ret = read_page(file, index, bitmap,
1086 count, page);
1087 else
1088 ret = read_sb_page(
1089 bitmap->mddev,
1090 bitmap->mddev->bitmap_info.offset,
1091 page,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001092 index + node_offset, count);
NeilBrown27581e52012-05-22 13:55:08 +10001093
1094 if (ret)
NeilBrown4ad13662007-07-17 04:06:13 -07001095 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001096
NeilBrown32a76272005-06-21 17:17:14 -07001097 oldindex = index;
NeilBrown32a76272005-06-21 17:17:14 -07001098
1099 if (outofdate) {
1100 /*
1101 * if bitmap is out of date, dirty the
NeilBrownac2f40b2010-06-01 19:37:31 +10001102 * whole page and write it out
NeilBrown32a76272005-06-21 17:17:14 -07001103 */
Cong Wangb2f46e62011-11-28 13:25:44 +08001104 paddr = kmap_atomic(page);
NeilBrownea03aff2006-01-06 00:20:34 -08001105 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001106 PAGE_SIZE - offset);
Cong Wangb2f46e62011-11-28 13:25:44 +08001107 kunmap_atomic(paddr);
NeilBrown4ad13662007-07-17 04:06:13 -07001108 write_page(bitmap, page, 1);
1109
1110 ret = -EIO;
NeilBrownb405fe92012-05-22 13:55:15 +10001111 if (test_bit(BITMAP_WRITE_ERROR,
1112 &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -07001113 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001114 }
NeilBrown32a76272005-06-21 17:17:14 -07001115 }
Cong Wangb2f46e62011-11-28 13:25:44 +08001116 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +10001117 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownea03aff2006-01-06 00:20:34 -08001118 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001119 else
Akinobu Mita6b33aff2011-03-23 16:42:13 -07001120 b = test_bit_le(bit, paddr);
Cong Wangb2f46e62011-11-28 13:25:44 +08001121 kunmap_atomic(paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001122 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001123 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001124 int needed = ((sector_t)(i+1) << bitmap->counts.chunkshift
NeilBrowndb305e52009-05-07 12:49:06 +10001125 >= start);
1126 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001127 (sector_t)i << bitmap->counts.chunkshift,
NeilBrowndb305e52009-05-07 12:49:06 +10001128 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001129 bit_cnt++;
1130 }
NeilBrown27581e52012-05-22 13:55:08 +10001131 offset = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001132 }
1133
NeilBrownec0cc222016-11-02 14:16:49 +11001134 pr_debug("%s: bitmap initialized from disk: read %lu pages, set %lu of %lu bits\n",
1135 bmname(bitmap), store->file_pages,
1136 bit_cnt, chunks);
NeilBrown32a76272005-06-21 17:17:14 -07001137
NeilBrown4ad13662007-07-17 04:06:13 -07001138 return 0;
1139
1140 err:
NeilBrownec0cc222016-11-02 14:16:49 +11001141 pr_warn("%s: bitmap initialisation failed: %d\n",
1142 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001143 return ret;
1144}
1145
NeilBrowna654b9d82005-06-21 17:17:27 -07001146void bitmap_write_all(struct bitmap *bitmap)
1147{
1148 /* We don't actually write all bitmap blocks here,
1149 * just flag them as needing to be written
1150 */
NeilBrownec7a3192006-06-26 00:27:45 -07001151 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001152
NeilBrown1ec885c2012-05-22 13:55:10 +10001153 if (!bitmap || !bitmap->storage.filemap)
NeilBrownef99bf42012-05-22 13:55:08 +10001154 return;
NeilBrown1ec885c2012-05-22 13:55:10 +10001155 if (bitmap->storage.file)
NeilBrownef99bf42012-05-22 13:55:08 +10001156 /* Only one copy, so nothing needed */
1157 return;
1158
NeilBrown1ec885c2012-05-22 13:55:10 +10001159 for (i = 0; i < bitmap->storage.file_pages; i++)
NeilBrownd1891222012-05-22 13:55:09 +10001160 set_page_attr(bitmap, i,
NeilBrownec7a3192006-06-26 00:27:45 -07001161 BITMAP_PAGE_NEEDWRITE);
NeilBrown2585f3e2011-09-21 15:37:46 +10001162 bitmap->allclean = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -07001163}
1164
NeilBrown40cffcc2012-05-22 13:55:24 +10001165static void bitmap_count_page(struct bitmap_counts *bitmap,
1166 sector_t offset, int inc)
NeilBrown32a76272005-06-21 17:17:14 -07001167{
NeilBrown61a0d802012-03-19 12:46:41 +11001168 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001169 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1170 bitmap->bp[page].count += inc;
NeilBrown32a76272005-06-21 17:17:14 -07001171 bitmap_checkfree(bitmap, page);
1172}
NeilBrownbf07bb72012-05-22 13:55:06 +10001173
NeilBrown40cffcc2012-05-22 13:55:24 +10001174static void bitmap_set_pending(struct bitmap_counts *bitmap, sector_t offset)
NeilBrownbf07bb72012-05-22 13:55:06 +10001175{
1176 sector_t chunk = offset >> bitmap->chunkshift;
1177 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1178 struct bitmap_page *bp = &bitmap->bp[page];
1179
1180 if (!bp->pending)
1181 bp->pending = 1;
1182}
1183
NeilBrown40cffcc2012-05-22 13:55:24 +10001184static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001185 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001186 int create);
1187
1188/*
1189 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1190 * out to disk
1191 */
1192
NeilBrownfd01b882011-10-11 16:47:53 +11001193void bitmap_daemon_work(struct mddev *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001194{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001195 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001196 unsigned long j;
NeilBrownbf07bb72012-05-22 13:55:06 +10001197 unsigned long nextpage;
NeilBrown57dab0b2010-10-19 10:03:39 +11001198 sector_t blocks;
NeilBrown40cffcc2012-05-22 13:55:24 +10001199 struct bitmap_counts *counts;
NeilBrown32a76272005-06-21 17:17:14 -07001200
NeilBrownaa5cbd12009-12-14 12:49:46 +11001201 /* Use a mutex to guard daemon_work against
1202 * bitmap_destroy.
1203 */
NeilBrownc3d97142009-12-14 12:49:52 +11001204 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001205 bitmap = mddev->bitmap;
1206 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001207 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001208 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001209 }
NeilBrown42a04b52009-12-14 12:49:53 +11001210 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown2e61ebb2011-12-23 10:17:50 +11001211 + mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001212 goto done;
1213
NeilBrown32a76272005-06-21 17:17:14 -07001214 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001215 if (bitmap->allclean) {
NeilBrown2e61ebb2011-12-23 10:17:50 +11001216 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001217 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001218 }
1219 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001220
NeilBrownbf07bb72012-05-22 13:55:06 +10001221 /* Any file-page which is PENDING now needs to be written.
1222 * So set NEEDWRITE now, then after we make any last-minute changes
1223 * we will write it.
1224 */
NeilBrown1ec885c2012-05-22 13:55:10 +10001225 for (j = 0; j < bitmap->storage.file_pages; j++)
NeilBrownbdfd1142012-05-22 13:55:22 +10001226 if (test_and_clear_page_attr(bitmap, j,
1227 BITMAP_PAGE_PENDING))
NeilBrownd1891222012-05-22 13:55:09 +10001228 set_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001229 BITMAP_PAGE_NEEDWRITE);
NeilBrownbf07bb72012-05-22 13:55:06 +10001230
1231 if (bitmap->need_sync &&
1232 mddev->bitmap_info.external == 0) {
1233 /* Arrange for superblock update as well as
1234 * other changes */
1235 bitmap_super_t *sb;
1236 bitmap->need_sync = 0;
NeilBrown1ec885c2012-05-22 13:55:10 +10001237 if (bitmap->storage.filemap) {
1238 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrownef99bf42012-05-22 13:55:08 +10001239 sb->events_cleared =
1240 cpu_to_le64(bitmap->events_cleared);
1241 kunmap_atomic(sb);
NeilBrownd1891222012-05-22 13:55:09 +10001242 set_page_attr(bitmap, 0,
NeilBrownef99bf42012-05-22 13:55:08 +10001243 BITMAP_PAGE_NEEDWRITE);
1244 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001245 }
1246 /* Now look at the bitmap counters and if any are '2' or '1',
1247 * decrement and handle accordingly.
1248 */
NeilBrown40cffcc2012-05-22 13:55:24 +10001249 counts = &bitmap->counts;
1250 spin_lock_irq(&counts->lock);
NeilBrownbf07bb72012-05-22 13:55:06 +10001251 nextpage = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001252 for (j = 0; j < counts->chunks; j++) {
NeilBrown32a76272005-06-21 17:17:14 -07001253 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001254 sector_t block = (sector_t)j << counts->chunkshift;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001255
NeilBrownbf07bb72012-05-22 13:55:06 +10001256 if (j == nextpage) {
1257 nextpage += PAGE_COUNTER_RATIO;
NeilBrown40cffcc2012-05-22 13:55:24 +10001258 if (!counts->bp[j >> PAGE_COUNTER_SHIFT].pending) {
NeilBrownbf07bb72012-05-22 13:55:06 +10001259 j |= PAGE_COUNTER_MASK;
NeilBrownaa3163f2005-06-21 17:17:22 -07001260 continue;
1261 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001262 counts->bp[j >> PAGE_COUNTER_SHIFT].pending = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001263 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001264 bmc = bitmap_get_counter(counts,
NeilBrownef99bf42012-05-22 13:55:08 +10001265 block,
NeilBrowndb305e52009-05-07 12:49:06 +10001266 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001267
NeilBrownbf07bb72012-05-22 13:55:06 +10001268 if (!bmc) {
1269 j |= PAGE_COUNTER_MASK;
1270 continue;
1271 }
1272 if (*bmc == 1 && !bitmap->need_sync) {
1273 /* We can clear the bit */
NeilBrownbf07bb72012-05-22 13:55:06 +10001274 *bmc = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001275 bitmap_count_page(counts, block, -1);
NeilBrownef99bf42012-05-22 13:55:08 +10001276 bitmap_file_clear_bit(bitmap, block);
NeilBrownbf07bb72012-05-22 13:55:06 +10001277 } else if (*bmc && *bmc <= 2) {
1278 *bmc = 1;
NeilBrown40cffcc2012-05-22 13:55:24 +10001279 bitmap_set_pending(counts, block);
NeilBrown2585f3e2011-09-21 15:37:46 +10001280 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001281 }
NeilBrown32a76272005-06-21 17:17:14 -07001282 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001283 spin_unlock_irq(&counts->lock);
NeilBrown32a76272005-06-21 17:17:14 -07001284
NeilBrownbf07bb72012-05-22 13:55:06 +10001285 /* Now start writeout on any page in NEEDWRITE that isn't DIRTY.
1286 * DIRTY pages need to be written by bitmap_unplug so it can wait
1287 * for them.
1288 * If we find any DIRTY page we stop there and let bitmap_unplug
1289 * handle all the rest. This is important in the case where
1290 * the first blocking holds the superblock and it has been updated.
1291 * We mustn't write any other blocks before the superblock.
1292 */
NeilBrown62f82fa2012-05-22 13:55:21 +10001293 for (j = 0;
1294 j < bitmap->storage.file_pages
1295 && !test_bit(BITMAP_STALE, &bitmap->flags);
1296 j++) {
NeilBrownd1891222012-05-22 13:55:09 +10001297 if (test_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001298 BITMAP_PAGE_DIRTY))
1299 /* bitmap_unplug will handle the rest */
1300 break;
NeilBrownbdfd1142012-05-22 13:55:22 +10001301 if (test_and_clear_page_attr(bitmap, j,
1302 BITMAP_PAGE_NEEDWRITE)) {
NeilBrown1ec885c2012-05-22 13:55:10 +10001303 write_page(bitmap, bitmap->storage.filemap[j], 0);
NeilBrownbf07bb72012-05-22 13:55:06 +10001304 }
1305 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001306
NeilBrown7be3dfe2008-03-10 11:43:48 -07001307 done:
NeilBrown8311c292008-03-04 14:29:30 -08001308 if (bitmap->allclean == 0)
NeilBrown2e61ebb2011-12-23 10:17:50 +11001309 mddev->thread->timeout =
1310 mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001311 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001312}
1313
NeilBrown40cffcc2012-05-22 13:55:24 +10001314static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001315 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001316 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001317__releases(bitmap->lock)
1318__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001319{
1320 /* If 'create', we might release the lock and reclaim it.
1321 * The lock must have been taken with interrupts enabled.
1322 * If !create, we don't release the lock.
1323 */
NeilBrown61a0d802012-03-19 12:46:41 +11001324 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001325 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1326 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1327 sector_t csize;
NeilBrownef425672010-06-01 19:37:33 +10001328 int err;
NeilBrown32a76272005-06-21 17:17:14 -07001329
Guoqing Jiangc9d65032016-05-02 11:50:11 -04001330 err = bitmap_checkpage(bitmap, page, create, 0);
NeilBrownef425672010-06-01 19:37:33 +10001331
1332 if (bitmap->bp[page].hijacked ||
1333 bitmap->bp[page].map == NULL)
NeilBrown61a0d802012-03-19 12:46:41 +11001334 csize = ((sector_t)1) << (bitmap->chunkshift +
NeilBrownef425672010-06-01 19:37:33 +10001335 PAGE_COUNTER_SHIFT - 1);
1336 else
NeilBrown61a0d802012-03-19 12:46:41 +11001337 csize = ((sector_t)1) << bitmap->chunkshift;
NeilBrownef425672010-06-01 19:37:33 +10001338 *blocks = csize - (offset & (csize - 1));
1339
1340 if (err < 0)
NeilBrown32a76272005-06-21 17:17:14 -07001341 return NULL;
NeilBrownef425672010-06-01 19:37:33 +10001342
NeilBrown32a76272005-06-21 17:17:14 -07001343 /* now locked ... */
1344
1345 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1346 /* should we use the first or second counter field
1347 * of the hijacked pointer? */
1348 int hi = (pageoff > PAGE_COUNTER_MASK);
NeilBrown32a76272005-06-21 17:17:14 -07001349 return &((bitmap_counter_t *)
1350 &bitmap->bp[page].map)[hi];
NeilBrownef425672010-06-01 19:37:33 +10001351 } else /* page is allocated */
NeilBrown32a76272005-06-21 17:17:14 -07001352 return (bitmap_counter_t *)
1353 &(bitmap->bp[page].map[pageoff]);
NeilBrown32a76272005-06-21 17:17:14 -07001354}
1355
NeilBrown4b6d2872005-09-09 16:23:47 -07001356int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001357{
NeilBrownac2f40b2010-06-01 19:37:31 +10001358 if (!bitmap)
1359 return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001360
1361 if (behind) {
Paul Clements696fcd52010-03-08 16:02:37 +11001362 int bw;
NeilBrown4b6d2872005-09-09 16:23:47 -07001363 atomic_inc(&bitmap->behind_writes);
Paul Clements696fcd52010-03-08 16:02:37 +11001364 bw = atomic_read(&bitmap->behind_writes);
1365 if (bw > bitmap->behind_writes_used)
1366 bitmap->behind_writes_used = bw;
1367
NeilBrown36a4e1f2011-10-07 14:23:17 +11001368 pr_debug("inc write-behind count %d/%lu\n",
1369 bw, bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001370 }
1371
NeilBrown32a76272005-06-21 17:17:14 -07001372 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001373 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001374 bitmap_counter_t *bmc;
1375
NeilBrown40cffcc2012-05-22 13:55:24 +10001376 spin_lock_irq(&bitmap->counts.lock);
1377 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001378 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001379 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001380 return 0;
1381 }
1382
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001383 if (unlikely(COUNTER(*bmc) == COUNTER_MAX)) {
Neil Brownda6e1a32007-02-08 14:20:37 -08001384 DEFINE_WAIT(__wait);
1385 /* note that it is safe to do the prepare_to_wait
1386 * after the test as long as we do it before dropping
1387 * the spinlock.
1388 */
1389 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1390 TASK_UNINTERRUPTIBLE);
NeilBrown40cffcc2012-05-22 13:55:24 +10001391 spin_unlock_irq(&bitmap->counts.lock);
NeilBrownf54a9d02012-08-02 08:33:20 +10001392 schedule();
Neil Brownda6e1a32007-02-08 14:20:37 -08001393 finish_wait(&bitmap->overflow_wait, &__wait);
1394 continue;
1395 }
1396
NeilBrownac2f40b2010-06-01 19:37:31 +10001397 switch (*bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001398 case 0:
1399 bitmap_file_set_bit(bitmap, offset);
NeilBrown40cffcc2012-05-22 13:55:24 +10001400 bitmap_count_page(&bitmap->counts, offset, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001401 /* fall through */
1402 case 1:
1403 *bmc = 2;
1404 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001405
NeilBrown32a76272005-06-21 17:17:14 -07001406 (*bmc)++;
1407
NeilBrown40cffcc2012-05-22 13:55:24 +10001408 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001409
1410 offset += blocks;
1411 if (sectors > blocks)
1412 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001413 else
1414 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001415 }
1416 return 0;
1417}
NeilBrownac2f40b2010-06-01 19:37:31 +10001418EXPORT_SYMBOL(bitmap_startwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001419
1420void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001421 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001422{
NeilBrownac2f40b2010-06-01 19:37:31 +10001423 if (!bitmap)
1424 return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001425 if (behind) {
NeilBrowne5551902010-03-31 11:21:44 +11001426 if (atomic_dec_and_test(&bitmap->behind_writes))
1427 wake_up(&bitmap->behind_wait);
NeilBrown36a4e1f2011-10-07 14:23:17 +11001428 pr_debug("dec write-behind count %d/%lu\n",
1429 atomic_read(&bitmap->behind_writes),
1430 bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001431 }
1432
NeilBrown32a76272005-06-21 17:17:14 -07001433 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001434 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001435 unsigned long flags;
1436 bitmap_counter_t *bmc;
1437
NeilBrown40cffcc2012-05-22 13:55:24 +10001438 spin_lock_irqsave(&bitmap->counts.lock, flags);
1439 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001440 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001441 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001442 return;
1443 }
1444
NeilBrown961902c2011-12-23 09:57:48 +11001445 if (success && !bitmap->mddev->degraded &&
Neil Browna0da84f2008-06-28 08:31:22 +10001446 bitmap->events_cleared < bitmap->mddev->events) {
1447 bitmap->events_cleared = bitmap->mddev->events;
1448 bitmap->need_sync = 1;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001449 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001450 }
1451
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001452 if (!success && !NEEDED(*bmc))
NeilBrown32a76272005-06-21 17:17:14 -07001453 *bmc |= NEEDED_MASK;
1454
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001455 if (COUNTER(*bmc) == COUNTER_MAX)
Neil Brownda6e1a32007-02-08 14:20:37 -08001456 wake_up(&bitmap->overflow_wait);
1457
NeilBrown32a76272005-06-21 17:17:14 -07001458 (*bmc)--;
NeilBrown2585f3e2011-09-21 15:37:46 +10001459 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001460 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001461 bitmap->allclean = 0;
1462 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001463 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001464 offset += blocks;
1465 if (sectors > blocks)
1466 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001467 else
1468 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001469 }
1470}
NeilBrownac2f40b2010-06-01 19:37:31 +10001471EXPORT_SYMBOL(bitmap_endwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001472
NeilBrown57dab0b2010-10-19 10:03:39 +11001473static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001474 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001475{
1476 bitmap_counter_t *bmc;
1477 int rv;
1478 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1479 *blocks = 1024;
1480 return 1; /* always resync if no bitmap */
1481 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001482 spin_lock_irq(&bitmap->counts.lock);
1483 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001484 rv = 0;
1485 if (bmc) {
1486 /* locked */
1487 if (RESYNC(*bmc))
1488 rv = 1;
1489 else if (NEEDED(*bmc)) {
1490 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001491 if (!degraded) { /* don't set/clear bits if degraded */
1492 *bmc |= RESYNC_MASK;
1493 *bmc &= ~NEEDED_MASK;
1494 }
NeilBrown32a76272005-06-21 17:17:14 -07001495 }
1496 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001497 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001498 return rv;
1499}
1500
NeilBrown57dab0b2010-10-19 10:03:39 +11001501int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001502 int degraded)
1503{
1504 /* bitmap_start_sync must always report on multiples of whole
1505 * pages, otherwise resync (which is very PAGE_SIZE based) will
1506 * get confused.
1507 * So call __bitmap_start_sync repeatedly (if needed) until
1508 * At least PAGE_SIZE>>9 blocks are covered.
1509 * Return the 'or' of the result.
1510 */
1511 int rv = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001512 sector_t blocks1;
NeilBrown1187cf02009-03-31 14:27:02 +11001513
1514 *blocks = 0;
1515 while (*blocks < (PAGE_SIZE>>9)) {
1516 rv |= __bitmap_start_sync(bitmap, offset,
1517 &blocks1, degraded);
1518 offset += blocks1;
1519 *blocks += blocks1;
1520 }
1521 return rv;
1522}
NeilBrownac2f40b2010-06-01 19:37:31 +10001523EXPORT_SYMBOL(bitmap_start_sync);
NeilBrown1187cf02009-03-31 14:27:02 +11001524
NeilBrown57dab0b2010-10-19 10:03:39 +11001525void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted)
NeilBrown32a76272005-06-21 17:17:14 -07001526{
1527 bitmap_counter_t *bmc;
1528 unsigned long flags;
NeilBrownac2f40b2010-06-01 19:37:31 +10001529
1530 if (bitmap == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001531 *blocks = 1024;
1532 return;
1533 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001534 spin_lock_irqsave(&bitmap->counts.lock, flags);
1535 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001536 if (bmc == NULL)
1537 goto unlock;
1538 /* locked */
NeilBrown32a76272005-06-21 17:17:14 -07001539 if (RESYNC(*bmc)) {
1540 *bmc &= ~RESYNC_MASK;
1541
1542 if (!NEEDED(*bmc) && aborted)
1543 *bmc |= NEEDED_MASK;
1544 else {
NeilBrown2585f3e2011-09-21 15:37:46 +10001545 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001546 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001547 bitmap->allclean = 0;
1548 }
NeilBrown32a76272005-06-21 17:17:14 -07001549 }
1550 }
1551 unlock:
NeilBrown40cffcc2012-05-22 13:55:24 +10001552 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001553}
NeilBrownac2f40b2010-06-01 19:37:31 +10001554EXPORT_SYMBOL(bitmap_end_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001555
1556void bitmap_close_sync(struct bitmap *bitmap)
1557{
1558 /* Sync has finished, and any bitmap chunks that weren't synced
1559 * properly have been aborted. It remains to us to clear the
1560 * RESYNC bit wherever it is still on
1561 */
1562 sector_t sector = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001563 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001564 if (!bitmap)
1565 return;
NeilBrown32a76272005-06-21 17:17:14 -07001566 while (sector < bitmap->mddev->resync_max_sectors) {
1567 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001568 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001569 }
1570}
NeilBrownac2f40b2010-06-01 19:37:31 +10001571EXPORT_SYMBOL(bitmap_close_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001572
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001573void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector, bool force)
NeilBrownb47490c2008-02-06 01:39:50 -08001574{
1575 sector_t s = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001576 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001577
1578 if (!bitmap)
1579 return;
1580 if (sector == 0) {
1581 bitmap->last_end_sync = jiffies;
1582 return;
1583 }
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001584 if (!force && time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001585 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001586 return;
1587 wait_event(bitmap->mddev->recovery_wait,
1588 atomic_read(&bitmap->mddev->recovery_active) == 0);
1589
NeilBrown75d3da42011-01-14 09:14:34 +11001590 bitmap->mddev->curr_resync_completed = sector;
NeilBrown070dc6d2010-08-30 17:33:34 +10001591 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrown40cffcc2012-05-22 13:55:24 +10001592 sector &= ~((1ULL << bitmap->counts.chunkshift) - 1);
NeilBrownb47490c2008-02-06 01:39:50 -08001593 s = 0;
1594 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1595 bitmap_end_sync(bitmap, s, &blocks, 0);
1596 s += blocks;
1597 }
1598 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001599 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001600}
NeilBrownac2f40b2010-06-01 19:37:31 +10001601EXPORT_SYMBOL(bitmap_cond_end_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001602
Guoqing Jiang18c9ff72016-05-02 11:50:12 -04001603void bitmap_sync_with_cluster(struct mddev *mddev,
1604 sector_t old_lo, sector_t old_hi,
1605 sector_t new_lo, sector_t new_hi)
1606{
1607 struct bitmap *bitmap = mddev->bitmap;
1608 sector_t sector, blocks = 0;
1609
1610 for (sector = old_lo; sector < new_lo; ) {
1611 bitmap_end_sync(bitmap, sector, &blocks, 0);
1612 sector += blocks;
1613 }
1614 WARN((blocks > new_lo) && old_lo, "alignment is not correct for lo\n");
1615
1616 for (sector = old_hi; sector < new_hi; ) {
1617 bitmap_start_sync(bitmap, sector, &blocks, 0);
1618 sector += blocks;
1619 }
1620 WARN((blocks > new_hi) && old_hi, "alignment is not correct for hi\n");
1621}
1622EXPORT_SYMBOL(bitmap_sync_with_cluster);
1623
NeilBrown6a079972005-09-09 16:23:44 -07001624static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001625{
1626 /* For each chunk covered by any of these sectors, set the
NeilBrownef99bf42012-05-22 13:55:08 +10001627 * counter to 2 and possibly set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001628 * be 0 at this point
1629 */
NeilBrown193f1c92005-08-04 12:53:33 -07001630
NeilBrown57dab0b2010-10-19 10:03:39 +11001631 sector_t secs;
NeilBrown193f1c92005-08-04 12:53:33 -07001632 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001633 spin_lock_irq(&bitmap->counts.lock);
1634 bmc = bitmap_get_counter(&bitmap->counts, offset, &secs, 1);
NeilBrown193f1c92005-08-04 12:53:33 -07001635 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001636 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001637 return;
NeilBrown32a76272005-06-21 17:17:14 -07001638 }
NeilBrownac2f40b2010-06-01 19:37:31 +10001639 if (!*bmc) {
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001640 *bmc = 2;
NeilBrown40cffcc2012-05-22 13:55:24 +10001641 bitmap_count_page(&bitmap->counts, offset, 1);
1642 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001643 bitmap->allclean = 0;
NeilBrown193f1c92005-08-04 12:53:33 -07001644 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001645 if (needed)
1646 *bmc |= NEEDED_MASK;
NeilBrown40cffcc2012-05-22 13:55:24 +10001647 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001648}
1649
Paul Clements9b1d1da2006-10-03 01:15:49 -07001650/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1651void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1652{
1653 unsigned long chunk;
1654
1655 for (chunk = s; chunk <= e; chunk++) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001656 sector_t sec = (sector_t)chunk << bitmap->counts.chunkshift;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001657 bitmap_set_memory_bits(bitmap, sec, 1);
1658 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001659 if (sec < bitmap->mddev->recovery_cp)
1660 /* We are asserting that the array is dirty,
1661 * so move the recovery_cp address back so
1662 * that it is obvious that it is dirty
1663 */
1664 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001665 }
1666}
1667
NeilBrown32a76272005-06-21 17:17:14 -07001668/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001669 * flush out any pending updates
1670 */
NeilBrownfd01b882011-10-11 16:47:53 +11001671void bitmap_flush(struct mddev *mddev)
NeilBrown6b8b3e82005-08-04 12:53:35 -07001672{
1673 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001674 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001675
1676 if (!bitmap) /* there was no bitmap */
1677 return;
1678
1679 /* run the daemon_work three time to ensure everything is flushed
1680 * that can be
1681 */
NeilBrown1b04be92009-12-14 12:49:53 +11001682 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001683 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001684 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001685 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001686 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001687 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001688 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001689 bitmap_update_sb(bitmap);
1690}
1691
1692/*
NeilBrown32a76272005-06-21 17:17:14 -07001693 * free memory that was allocated
1694 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001695static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001696{
1697 unsigned long k, pages;
1698 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001699
1700 if (!bitmap) /* there was no bitmap */
1701 return;
1702
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001703 if (bitmap->sysfs_can_clear)
1704 sysfs_put(bitmap->sysfs_can_clear);
1705
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001706 if (mddev_is_clustered(bitmap->mddev) && bitmap->mddev->cluster_info &&
1707 bitmap->cluster_slot == md_cluster_ops->slot_number(bitmap->mddev))
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001708 md_cluster_stop(bitmap->mddev);
1709
NeilBrownfae7d322012-05-22 13:55:21 +10001710 /* Shouldn't be needed - but just in case.... */
1711 wait_event(bitmap->write_wait,
1712 atomic_read(&bitmap->pending_writes) == 0);
1713
1714 /* release the bitmap file */
1715 bitmap_file_unmap(&bitmap->storage);
NeilBrown32a76272005-06-21 17:17:14 -07001716
NeilBrown40cffcc2012-05-22 13:55:24 +10001717 bp = bitmap->counts.bp;
1718 pages = bitmap->counts.pages;
NeilBrown32a76272005-06-21 17:17:14 -07001719
1720 /* free all allocated memory */
1721
NeilBrown32a76272005-06-21 17:17:14 -07001722 if (bp) /* deallocate the page memory */
1723 for (k = 0; k < pages; k++)
1724 if (bp[k].map && !bp[k].hijacked)
1725 kfree(bp[k].map);
1726 kfree(bp);
1727 kfree(bitmap);
1728}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001729
NeilBrownfd01b882011-10-11 16:47:53 +11001730void bitmap_destroy(struct mddev *mddev)
NeilBrown3178b0d2005-09-09 16:23:50 -07001731{
1732 struct bitmap *bitmap = mddev->bitmap;
1733
1734 if (!bitmap) /* there was no bitmap */
1735 return;
1736
NeilBrownc3d97142009-12-14 12:49:52 +11001737 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown978a7a42014-12-15 12:56:58 +11001738 spin_lock(&mddev->lock);
NeilBrown3178b0d2005-09-09 16:23:50 -07001739 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrown978a7a42014-12-15 12:56:58 +11001740 spin_unlock(&mddev->lock);
NeilBrownc3d97142009-12-14 12:49:52 +11001741 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001742 if (mddev->thread)
1743 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001744
1745 bitmap_free(bitmap);
1746}
NeilBrown32a76272005-06-21 17:17:14 -07001747
1748/*
1749 * initialize the bitmap structure
1750 * if this returns an error, bitmap_destroy must be called to do clean up
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001751 * once mddev->bitmap is set
NeilBrown32a76272005-06-21 17:17:14 -07001752 */
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001753struct bitmap *bitmap_create(struct mddev *mddev, int slot)
NeilBrown32a76272005-06-21 17:17:14 -07001754{
1755 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001756 sector_t blocks = mddev->resync_max_sectors;
NeilBrownc3d97142009-12-14 12:49:52 +11001757 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001758 int err;
Tejun Heo324a56e2013-12-11 14:11:53 -05001759 struct kernfs_node *bm = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001760
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001761 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001762
NeilBrownc3d97142009-12-14 12:49:52 +11001763 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001764
NeilBrown9ffae0c2006-01-06 00:20:32 -08001765 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001766 if (!bitmap)
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001767 return ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -07001768
NeilBrown40cffcc2012-05-22 13:55:24 +10001769 spin_lock_init(&bitmap->counts.lock);
NeilBrownce25c312006-06-26 00:27:49 -07001770 atomic_set(&bitmap->pending_writes, 0);
1771 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001772 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrowne5551902010-03-31 11:21:44 +11001773 init_waitqueue_head(&bitmap->behind_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001774
NeilBrown32a76272005-06-21 17:17:14 -07001775 bitmap->mddev = mddev;
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001776 bitmap->cluster_slot = slot;
NeilBrown32a76272005-06-21 17:17:14 -07001777
NeilBrown5ff5aff2010-06-01 19:37:32 +10001778 if (mddev->kobj.sd)
Tejun Heo388975c2013-09-11 23:19:13 -04001779 bm = sysfs_get_dirent(mddev->kobj.sd, "bitmap");
NeilBrownece5cff2009-12-14 12:49:56 +11001780 if (bm) {
Tejun Heo388975c2013-09-11 23:19:13 -04001781 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, "can_clear");
NeilBrownece5cff2009-12-14 12:49:56 +11001782 sysfs_put(bm);
1783 } else
1784 bitmap->sysfs_can_clear = NULL;
1785
NeilBrown1ec885c2012-05-22 13:55:10 +10001786 bitmap->storage.file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001787 if (file) {
1788 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001789 /* As future accesses to this file will use bmap,
1790 * and bypass the page cache, we must sync the file
1791 * first.
1792 */
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001793 vfs_fsync(file, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001794 }
NeilBrown42a04b52009-12-14 12:49:53 +11001795 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
Jonathan Brassow9c810752011-06-08 17:59:30 -05001796 if (!mddev->bitmap_info.external) {
1797 /*
1798 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1799 * instructing us to create a new on-disk bitmap instance.
1800 */
1801 if (test_and_clear_bit(MD_ARRAY_FIRST_USE, &mddev->flags))
1802 err = bitmap_new_disk_sb(bitmap);
1803 else
1804 err = bitmap_read_sb(bitmap);
1805 } else {
NeilBrownece5cff2009-12-14 12:49:56 +11001806 err = 0;
1807 if (mddev->bitmap_info.chunksize == 0 ||
1808 mddev->bitmap_info.daemon_sleep == 0)
1809 /* chunksize and time_base need to be
1810 * set first. */
1811 err = -EINVAL;
1812 }
NeilBrown32a76272005-06-21 17:17:14 -07001813 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001814 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001815
NeilBrown624ce4f2009-12-14 12:49:56 +11001816 bitmap->daemon_lastrun = jiffies;
NeilBrownd60b4792012-05-22 13:55:25 +10001817 err = bitmap_resize(bitmap, blocks, mddev->bitmap_info.chunksize, 1);
1818 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001819 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001820
NeilBrownec0cc222016-11-02 14:16:49 +11001821 pr_debug("created bitmap (%lu pages) for device %s\n",
1822 bitmap->counts.pages, bmname(bitmap));
NeilBrown69e51b42010-06-01 19:37:35 +10001823
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001824 err = test_bit(BITMAP_WRITE_ERROR, &bitmap->flags) ? -EIO : 0;
1825 if (err)
1826 goto error;
NeilBrown69e51b42010-06-01 19:37:35 +10001827
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001828 return bitmap;
NeilBrown69e51b42010-06-01 19:37:35 +10001829 error:
1830 bitmap_free(bitmap);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001831 return ERR_PTR(err);
NeilBrown69e51b42010-06-01 19:37:35 +10001832}
1833
NeilBrownfd01b882011-10-11 16:47:53 +11001834int bitmap_load(struct mddev *mddev)
NeilBrown69e51b42010-06-01 19:37:35 +10001835{
1836 int err = 0;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001837 sector_t start = 0;
NeilBrown69e51b42010-06-01 19:37:35 +10001838 sector_t sector = 0;
1839 struct bitmap *bitmap = mddev->bitmap;
1840
1841 if (!bitmap)
1842 goto out;
1843
Guoqing Jiang51e453a2016-05-04 02:17:09 -04001844 if (mddev_is_clustered(mddev))
1845 md_cluster_ops->load_bitmaps(mddev, mddev->bitmap_info.nodes);
1846
NeilBrown69e51b42010-06-01 19:37:35 +10001847 /* Clear out old bitmap info first: Either there is none, or we
1848 * are resuming after someone else has possibly changed things,
1849 * so we should forget old cached info.
1850 * All chunks should be clean, but some might need_sync.
1851 */
1852 while (sector < mddev->resync_max_sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001853 sector_t blocks;
NeilBrown69e51b42010-06-01 19:37:35 +10001854 bitmap_start_sync(bitmap, sector, &blocks, 0);
1855 sector += blocks;
1856 }
1857 bitmap_close_sync(bitmap);
1858
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001859 if (mddev->degraded == 0
1860 || bitmap->events_cleared == mddev->events)
1861 /* no need to keep dirty bits to optimise a
1862 * re-add of a missing device */
1863 start = mddev->recovery_cp;
NeilBrown69e51b42010-06-01 19:37:35 +10001864
NeilBrownafbaa902012-04-12 16:05:06 +10001865 mutex_lock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001866 err = bitmap_init_from_disk(bitmap, start);
NeilBrownafbaa902012-04-12 16:05:06 +10001867 mutex_unlock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001868
NeilBrown32a76272005-06-21 17:17:14 -07001869 if (err)
NeilBrown69e51b42010-06-01 19:37:35 +10001870 goto out;
NeilBrownb405fe92012-05-22 13:55:15 +10001871 clear_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +10001872
1873 /* Kick recovery in case any bits were set */
1874 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
NeilBrown3178b0d2005-09-09 16:23:50 -07001875
NeilBrown1b04be92009-12-14 12:49:53 +11001876 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001877 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001878
NeilBrown4ad13662007-07-17 04:06:13 -07001879 bitmap_update_sb(bitmap);
1880
NeilBrownb405fe92012-05-22 13:55:15 +10001881 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown69e51b42010-06-01 19:37:35 +10001882 err = -EIO;
1883out:
NeilBrown3178b0d2005-09-09 16:23:50 -07001884 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001885}
NeilBrown69e51b42010-06-01 19:37:35 +10001886EXPORT_SYMBOL_GPL(bitmap_load);
NeilBrown32a76272005-06-21 17:17:14 -07001887
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001888/* Loads the bitmap associated with slot and copies the resync information
1889 * to our bitmap
1890 */
1891int bitmap_copy_from_slot(struct mddev *mddev, int slot,
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001892 sector_t *low, sector_t *high, bool clear_bits)
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001893{
1894 int rv = 0, i, j;
1895 sector_t block, lo = 0, hi = 0;
1896 struct bitmap_counts *counts;
1897 struct bitmap *bitmap = bitmap_create(mddev, slot);
1898
Shaohua Lif71f1cf2016-09-13 10:28:00 -07001899 if (IS_ERR(bitmap))
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001900 return PTR_ERR(bitmap);
1901
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001902 rv = bitmap_init_from_disk(bitmap, 0);
1903 if (rv)
1904 goto err;
1905
1906 counts = &bitmap->counts;
1907 for (j = 0; j < counts->chunks; j++) {
1908 block = (sector_t)j << counts->chunkshift;
1909 if (bitmap_file_test_bit(bitmap, block)) {
1910 if (!lo)
1911 lo = block;
1912 hi = block;
1913 bitmap_file_clear_bit(bitmap, block);
1914 bitmap_set_memory_bits(mddev->bitmap, block, 1);
1915 bitmap_file_set_bit(mddev->bitmap, block);
1916 }
1917 }
1918
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001919 if (clear_bits) {
1920 bitmap_update_sb(bitmap);
Guoqing Jiangc84400c2016-05-02 11:50:15 -04001921 /* BITMAP_PAGE_PENDING is set, but bitmap_unplug needs
1922 * BITMAP_PAGE_DIRTY or _NEEDWRITE to write ... */
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001923 for (i = 0; i < bitmap->storage.file_pages; i++)
Guoqing Jiangc84400c2016-05-02 11:50:15 -04001924 if (test_page_attr(bitmap, i, BITMAP_PAGE_PENDING))
1925 set_page_attr(bitmap, i, BITMAP_PAGE_NEEDWRITE);
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001926 bitmap_unplug(bitmap);
1927 }
Guoqing Jiangc84400c2016-05-02 11:50:15 -04001928 bitmap_unplug(mddev->bitmap);
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001929 *low = lo;
1930 *high = hi;
1931err:
1932 bitmap_free(bitmap);
1933 return rv;
1934}
1935EXPORT_SYMBOL_GPL(bitmap_copy_from_slot);
1936
1937
NeilBrown57148962012-03-19 12:46:40 +11001938void bitmap_status(struct seq_file *seq, struct bitmap *bitmap)
1939{
1940 unsigned long chunk_kb;
NeilBrown40cffcc2012-05-22 13:55:24 +10001941 struct bitmap_counts *counts;
NeilBrown57148962012-03-19 12:46:40 +11001942
1943 if (!bitmap)
1944 return;
1945
NeilBrown40cffcc2012-05-22 13:55:24 +10001946 counts = &bitmap->counts;
1947
NeilBrown57148962012-03-19 12:46:40 +11001948 chunk_kb = bitmap->mddev->bitmap_info.chunksize >> 10;
1949 seq_printf(seq, "bitmap: %lu/%lu pages [%luKB], "
1950 "%lu%s chunk",
NeilBrown40cffcc2012-05-22 13:55:24 +10001951 counts->pages - counts->missing_pages,
1952 counts->pages,
1953 (counts->pages - counts->missing_pages)
NeilBrown57148962012-03-19 12:46:40 +11001954 << (PAGE_SHIFT - 10),
1955 chunk_kb ? chunk_kb : bitmap->mddev->bitmap_info.chunksize,
1956 chunk_kb ? "KB" : "B");
NeilBrown1ec885c2012-05-22 13:55:10 +10001957 if (bitmap->storage.file) {
NeilBrown57148962012-03-19 12:46:40 +11001958 seq_printf(seq, ", file: ");
Miklos Szeredi2726d562015-06-19 10:30:28 +02001959 seq_file_path(seq, bitmap->storage.file, " \t\n");
NeilBrown57148962012-03-19 12:46:40 +11001960 }
1961
1962 seq_printf(seq, "\n");
NeilBrown57148962012-03-19 12:46:40 +11001963}
1964
NeilBrownd60b4792012-05-22 13:55:25 +10001965int bitmap_resize(struct bitmap *bitmap, sector_t blocks,
1966 int chunksize, int init)
1967{
1968 /* If chunk_size is 0, choose an appropriate chunk size.
1969 * Then possibly allocate new storage space.
1970 * Then quiesce, copy bits, replace bitmap, and re-start
1971 *
1972 * This function is called both to set up the initial bitmap
1973 * and to resize the bitmap while the array is active.
1974 * If this happens as a result of the array being resized,
1975 * chunksize will be zero, and we need to choose a suitable
1976 * chunksize, otherwise we use what we are given.
1977 */
1978 struct bitmap_storage store;
1979 struct bitmap_counts old_counts;
1980 unsigned long chunks;
1981 sector_t block;
1982 sector_t old_blocks, new_blocks;
1983 int chunkshift;
1984 int ret = 0;
1985 long pages;
1986 struct bitmap_page *new_bp;
1987
1988 if (chunksize == 0) {
1989 /* If there is enough space, leave the chunk size unchanged,
1990 * else increase by factor of two until there is enough space.
1991 */
1992 long bytes;
1993 long space = bitmap->mddev->bitmap_info.space;
1994
1995 if (space == 0) {
1996 /* We don't know how much space there is, so limit
1997 * to current size - in sectors.
1998 */
1999 bytes = DIV_ROUND_UP(bitmap->counts.chunks, 8);
2000 if (!bitmap->mddev->bitmap_info.external)
2001 bytes += sizeof(bitmap_super_t);
2002 space = DIV_ROUND_UP(bytes, 512);
2003 bitmap->mddev->bitmap_info.space = space;
2004 }
2005 chunkshift = bitmap->counts.chunkshift;
2006 chunkshift--;
2007 do {
2008 /* 'chunkshift' is shift from block size to chunk size */
2009 chunkshift++;
2010 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
2011 bytes = DIV_ROUND_UP(chunks, 8);
2012 if (!bitmap->mddev->bitmap_info.external)
2013 bytes += sizeof(bitmap_super_t);
2014 } while (bytes > (space << 9));
2015 } else
2016 chunkshift = ffz(~chunksize) - BITMAP_BLOCK_SHIFT;
2017
2018 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
2019 memset(&store, 0, sizeof(store));
2020 if (bitmap->mddev->bitmap_info.offset || bitmap->mddev->bitmap_info.file)
2021 ret = bitmap_storage_alloc(&store, chunks,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05002022 !bitmap->mddev->bitmap_info.external,
NeilBrownda6fb7a2015-10-01 16:03:38 +10002023 mddev_is_clustered(bitmap->mddev)
2024 ? bitmap->cluster_slot : 0);
Guoqing Jiangcbb38732016-10-31 10:19:00 +08002025 if (ret) {
2026 bitmap_file_unmap(&store);
NeilBrownd60b4792012-05-22 13:55:25 +10002027 goto err;
Guoqing Jiangcbb38732016-10-31 10:19:00 +08002028 }
NeilBrownd60b4792012-05-22 13:55:25 +10002029
2030 pages = DIV_ROUND_UP(chunks, PAGE_COUNTER_RATIO);
2031
2032 new_bp = kzalloc(pages * sizeof(*new_bp), GFP_KERNEL);
2033 ret = -ENOMEM;
2034 if (!new_bp) {
2035 bitmap_file_unmap(&store);
2036 goto err;
2037 }
2038
2039 if (!init)
2040 bitmap->mddev->pers->quiesce(bitmap->mddev, 1);
2041
2042 store.file = bitmap->storage.file;
2043 bitmap->storage.file = NULL;
2044
2045 if (store.sb_page && bitmap->storage.sb_page)
2046 memcpy(page_address(store.sb_page),
2047 page_address(bitmap->storage.sb_page),
2048 sizeof(bitmap_super_t));
2049 bitmap_file_unmap(&bitmap->storage);
2050 bitmap->storage = store;
2051
2052 old_counts = bitmap->counts;
2053 bitmap->counts.bp = new_bp;
2054 bitmap->counts.pages = pages;
2055 bitmap->counts.missing_pages = pages;
2056 bitmap->counts.chunkshift = chunkshift;
2057 bitmap->counts.chunks = chunks;
2058 bitmap->mddev->bitmap_info.chunksize = 1 << (chunkshift +
2059 BITMAP_BLOCK_SHIFT);
2060
2061 blocks = min(old_counts.chunks << old_counts.chunkshift,
2062 chunks << chunkshift);
2063
2064 spin_lock_irq(&bitmap->counts.lock);
Guoqing Jiangc9d65032016-05-02 11:50:11 -04002065 /* For cluster raid, need to pre-allocate bitmap */
2066 if (mddev_is_clustered(bitmap->mddev)) {
2067 unsigned long page;
2068 for (page = 0; page < pages; page++) {
2069 ret = bitmap_checkpage(&bitmap->counts, page, 1, 1);
2070 if (ret) {
2071 unsigned long k;
2072
2073 /* deallocate the page memory */
2074 for (k = 0; k < page; k++) {
kbuild test robotbc47e842016-05-02 11:50:16 -04002075 kfree(new_bp[k].map);
Guoqing Jiangc9d65032016-05-02 11:50:11 -04002076 }
2077
2078 /* restore some fields from old_counts */
2079 bitmap->counts.bp = old_counts.bp;
2080 bitmap->counts.pages = old_counts.pages;
2081 bitmap->counts.missing_pages = old_counts.pages;
2082 bitmap->counts.chunkshift = old_counts.chunkshift;
2083 bitmap->counts.chunks = old_counts.chunks;
2084 bitmap->mddev->bitmap_info.chunksize = 1 << (old_counts.chunkshift +
2085 BITMAP_BLOCK_SHIFT);
2086 blocks = old_counts.chunks << old_counts.chunkshift;
NeilBrownec0cc222016-11-02 14:16:49 +11002087 pr_warn("Could not pre-allocate in-memory bitmap for cluster raid\n");
Guoqing Jiangc9d65032016-05-02 11:50:11 -04002088 break;
2089 } else
2090 bitmap->counts.bp[page].count += 1;
2091 }
2092 }
2093
NeilBrownd60b4792012-05-22 13:55:25 +10002094 for (block = 0; block < blocks; ) {
2095 bitmap_counter_t *bmc_old, *bmc_new;
2096 int set;
2097
2098 bmc_old = bitmap_get_counter(&old_counts, block,
2099 &old_blocks, 0);
2100 set = bmc_old && NEEDED(*bmc_old);
2101
2102 if (set) {
2103 bmc_new = bitmap_get_counter(&bitmap->counts, block,
2104 &new_blocks, 1);
2105 if (*bmc_new == 0) {
2106 /* need to set on-disk bits too. */
2107 sector_t end = block + new_blocks;
2108 sector_t start = block >> chunkshift;
2109 start <<= chunkshift;
2110 while (start < end) {
2111 bitmap_file_set_bit(bitmap, block);
2112 start += 1 << chunkshift;
2113 }
2114 *bmc_new = 2;
2115 bitmap_count_page(&bitmap->counts,
2116 block, 1);
2117 bitmap_set_pending(&bitmap->counts,
2118 block);
2119 }
2120 *bmc_new |= NEEDED_MASK;
2121 if (new_blocks < old_blocks)
2122 old_blocks = new_blocks;
2123 }
2124 block += old_blocks;
2125 }
2126
2127 if (!init) {
2128 int i;
2129 while (block < (chunks << chunkshift)) {
2130 bitmap_counter_t *bmc;
2131 bmc = bitmap_get_counter(&bitmap->counts, block,
2132 &new_blocks, 1);
2133 if (bmc) {
2134 /* new space. It needs to be resynced, so
2135 * we set NEEDED_MASK.
2136 */
2137 if (*bmc == 0) {
2138 *bmc = NEEDED_MASK | 2;
2139 bitmap_count_page(&bitmap->counts,
2140 block, 1);
2141 bitmap_set_pending(&bitmap->counts,
2142 block);
2143 }
2144 }
2145 block += new_blocks;
2146 }
2147 for (i = 0; i < bitmap->storage.file_pages; i++)
2148 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
2149 }
2150 spin_unlock_irq(&bitmap->counts.lock);
2151
2152 if (!init) {
2153 bitmap_unplug(bitmap);
2154 bitmap->mddev->pers->quiesce(bitmap->mddev, 0);
2155 }
2156 ret = 0;
2157err:
2158 return ret;
2159}
2160EXPORT_SYMBOL_GPL(bitmap_resize);
2161
NeilBrown43a70502009-12-14 12:49:55 +11002162static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002163location_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002164{
2165 ssize_t len;
NeilBrownac2f40b2010-06-01 19:37:31 +10002166 if (mddev->bitmap_info.file)
NeilBrown43a70502009-12-14 12:49:55 +11002167 len = sprintf(page, "file");
NeilBrownac2f40b2010-06-01 19:37:31 +10002168 else if (mddev->bitmap_info.offset)
NeilBrown43a70502009-12-14 12:49:55 +11002169 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10002170 else
NeilBrown43a70502009-12-14 12:49:55 +11002171 len = sprintf(page, "none");
2172 len += sprintf(page+len, "\n");
2173 return len;
2174}
2175
2176static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002177location_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002178{
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002179 int rv;
NeilBrown43a70502009-12-14 12:49:55 +11002180
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002181 rv = mddev_lock(mddev);
2182 if (rv)
2183 return rv;
NeilBrown43a70502009-12-14 12:49:55 +11002184 if (mddev->pers) {
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002185 if (!mddev->pers->quiesce) {
2186 rv = -EBUSY;
2187 goto out;
2188 }
2189 if (mddev->recovery || mddev->sync_thread) {
2190 rv = -EBUSY;
2191 goto out;
2192 }
NeilBrown43a70502009-12-14 12:49:55 +11002193 }
2194
2195 if (mddev->bitmap || mddev->bitmap_info.file ||
2196 mddev->bitmap_info.offset) {
2197 /* bitmap already configured. Only option is to clear it */
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002198 if (strncmp(buf, "none", 4) != 0) {
2199 rv = -EBUSY;
2200 goto out;
2201 }
NeilBrown43a70502009-12-14 12:49:55 +11002202 if (mddev->pers) {
2203 mddev->pers->quiesce(mddev, 1);
2204 bitmap_destroy(mddev);
2205 mddev->pers->quiesce(mddev, 0);
2206 }
2207 mddev->bitmap_info.offset = 0;
2208 if (mddev->bitmap_info.file) {
2209 struct file *f = mddev->bitmap_info.file;
2210 mddev->bitmap_info.file = NULL;
NeilBrown43a70502009-12-14 12:49:55 +11002211 fput(f);
2212 }
2213 } else {
2214 /* No bitmap, OK to set a location */
2215 long long offset;
2216 if (strncmp(buf, "none", 4) == 0)
2217 /* nothing to be done */;
2218 else if (strncmp(buf, "file:", 5) == 0) {
2219 /* Not supported yet */
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002220 rv = -EINVAL;
2221 goto out;
NeilBrown43a70502009-12-14 12:49:55 +11002222 } else {
NeilBrown43a70502009-12-14 12:49:55 +11002223 if (buf[0] == '+')
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002224 rv = kstrtoll(buf+1, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002225 else
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002226 rv = kstrtoll(buf, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002227 if (rv)
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002228 goto out;
2229 if (offset == 0) {
2230 rv = -EINVAL;
2231 goto out;
2232 }
NeilBrownece5cff2009-12-14 12:49:56 +11002233 if (mddev->bitmap_info.external == 0 &&
2234 mddev->major_version == 0 &&
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002235 offset != mddev->bitmap_info.default_offset) {
2236 rv = -EINVAL;
2237 goto out;
2238 }
NeilBrown43a70502009-12-14 12:49:55 +11002239 mddev->bitmap_info.offset = offset;
2240 if (mddev->pers) {
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002241 struct bitmap *bitmap;
NeilBrown43a70502009-12-14 12:49:55 +11002242 mddev->pers->quiesce(mddev, 1);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002243 bitmap = bitmap_create(mddev, -1);
2244 if (IS_ERR(bitmap))
2245 rv = PTR_ERR(bitmap);
2246 else {
2247 mddev->bitmap = bitmap;
NeilBrown4474ca42012-03-19 12:46:37 +11002248 rv = bitmap_load(mddev);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002249 if (rv)
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002250 mddev->bitmap_info.offset = 0;
NeilBrown43a70502009-12-14 12:49:55 +11002251 }
2252 mddev->pers->quiesce(mddev, 0);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002253 if (rv) {
2254 bitmap_destroy(mddev);
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002255 goto out;
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002256 }
NeilBrown43a70502009-12-14 12:49:55 +11002257 }
2258 }
2259 }
2260 if (!mddev->external) {
2261 /* Ensure new bitmap info is stored in
2262 * metadata promptly.
2263 */
2264 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2265 md_wakeup_thread(mddev->thread);
2266 }
Shaohua Lid9dd26b2016-07-30 10:05:31 -07002267 rv = 0;
2268out:
2269 mddev_unlock(mddev);
2270 if (rv)
2271 return rv;
NeilBrown43a70502009-12-14 12:49:55 +11002272 return len;
2273}
2274
2275static struct md_sysfs_entry bitmap_location =
2276__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
2277
NeilBrown6409bb02012-05-22 13:55:07 +10002278/* 'bitmap/space' is the space available at 'location' for the
2279 * bitmap. This allows the kernel to know when it is safe to
2280 * resize the bitmap to match a resized array.
2281 */
2282static ssize_t
2283space_show(struct mddev *mddev, char *page)
2284{
2285 return sprintf(page, "%lu\n", mddev->bitmap_info.space);
2286}
2287
2288static ssize_t
2289space_store(struct mddev *mddev, const char *buf, size_t len)
2290{
2291 unsigned long sectors;
2292 int rv;
2293
2294 rv = kstrtoul(buf, 10, &sectors);
2295 if (rv)
2296 return rv;
2297
2298 if (sectors == 0)
2299 return -EINVAL;
2300
2301 if (mddev->bitmap &&
NeilBrown9b1215c2012-05-22 13:55:11 +10002302 sectors < (mddev->bitmap->storage.bytes + 511) >> 9)
NeilBrown6409bb02012-05-22 13:55:07 +10002303 return -EFBIG; /* Bitmap is too big for this small space */
2304
2305 /* could make sure it isn't too big, but that isn't really
2306 * needed - user-space should be careful.
2307 */
2308 mddev->bitmap_info.space = sectors;
2309 return len;
2310}
2311
2312static struct md_sysfs_entry bitmap_space =
2313__ATTR(space, S_IRUGO|S_IWUSR, space_show, space_store);
2314
NeilBrown43a70502009-12-14 12:49:55 +11002315static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002316timeout_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002317{
2318 ssize_t len;
2319 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
2320 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
NeilBrownac2f40b2010-06-01 19:37:31 +10002321
NeilBrown43a70502009-12-14 12:49:55 +11002322 len = sprintf(page, "%lu", secs);
2323 if (jifs)
2324 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
2325 len += sprintf(page+len, "\n");
2326 return len;
2327}
2328
2329static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002330timeout_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002331{
2332 /* timeout can be set at any time */
2333 unsigned long timeout;
2334 int rv = strict_strtoul_scaled(buf, &timeout, 4);
2335 if (rv)
2336 return rv;
2337
2338 /* just to make sure we don't overflow... */
2339 if (timeout >= LONG_MAX / HZ)
2340 return -EINVAL;
2341
2342 timeout = timeout * HZ / 10000;
2343
2344 if (timeout >= MAX_SCHEDULE_TIMEOUT)
2345 timeout = MAX_SCHEDULE_TIMEOUT-1;
2346 if (timeout < 1)
2347 timeout = 1;
2348 mddev->bitmap_info.daemon_sleep = timeout;
2349 if (mddev->thread) {
2350 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
2351 * the bitmap is all clean and we don't need to
2352 * adjust the timeout right now
2353 */
2354 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
2355 mddev->thread->timeout = timeout;
2356 md_wakeup_thread(mddev->thread);
2357 }
2358 }
2359 return len;
2360}
2361
2362static struct md_sysfs_entry bitmap_timeout =
2363__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
2364
2365static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002366backlog_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002367{
2368 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
2369}
2370
2371static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002372backlog_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002373{
2374 unsigned long backlog;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002375 int rv = kstrtoul(buf, 10, &backlog);
NeilBrown43a70502009-12-14 12:49:55 +11002376 if (rv)
2377 return rv;
2378 if (backlog > COUNTER_MAX)
2379 return -EINVAL;
2380 mddev->bitmap_info.max_write_behind = backlog;
2381 return len;
2382}
2383
2384static struct md_sysfs_entry bitmap_backlog =
2385__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
2386
2387static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002388chunksize_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002389{
2390 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
2391}
2392
2393static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002394chunksize_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002395{
2396 /* Can only be changed when no bitmap is active */
2397 int rv;
2398 unsigned long csize;
2399 if (mddev->bitmap)
2400 return -EBUSY;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002401 rv = kstrtoul(buf, 10, &csize);
NeilBrown43a70502009-12-14 12:49:55 +11002402 if (rv)
2403 return rv;
2404 if (csize < 512 ||
2405 !is_power_of_2(csize))
2406 return -EINVAL;
2407 mddev->bitmap_info.chunksize = csize;
2408 return len;
2409}
2410
2411static struct md_sysfs_entry bitmap_chunksize =
2412__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2413
NeilBrownfd01b882011-10-11 16:47:53 +11002414static ssize_t metadata_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002415{
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002416 if (mddev_is_clustered(mddev))
2417 return sprintf(page, "clustered\n");
NeilBrownece5cff2009-12-14 12:49:56 +11002418 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2419 ? "external" : "internal"));
2420}
2421
NeilBrownfd01b882011-10-11 16:47:53 +11002422static ssize_t metadata_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002423{
2424 if (mddev->bitmap ||
2425 mddev->bitmap_info.file ||
2426 mddev->bitmap_info.offset)
2427 return -EBUSY;
2428 if (strncmp(buf, "external", 8) == 0)
2429 mddev->bitmap_info.external = 1;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002430 else if ((strncmp(buf, "internal", 8) == 0) ||
2431 (strncmp(buf, "clustered", 9) == 0))
NeilBrownece5cff2009-12-14 12:49:56 +11002432 mddev->bitmap_info.external = 0;
2433 else
2434 return -EINVAL;
2435 return len;
2436}
2437
2438static struct md_sysfs_entry bitmap_metadata =
2439__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2440
NeilBrownfd01b882011-10-11 16:47:53 +11002441static ssize_t can_clear_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002442{
2443 int len;
NeilBrownb7b17c92014-12-15 12:56:59 +11002444 spin_lock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002445 if (mddev->bitmap)
2446 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2447 "false" : "true"));
2448 else
2449 len = sprintf(page, "\n");
NeilBrownb7b17c92014-12-15 12:56:59 +11002450 spin_unlock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002451 return len;
2452}
2453
NeilBrownfd01b882011-10-11 16:47:53 +11002454static ssize_t can_clear_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002455{
2456 if (mddev->bitmap == NULL)
2457 return -ENOENT;
2458 if (strncmp(buf, "false", 5) == 0)
2459 mddev->bitmap->need_sync = 1;
2460 else if (strncmp(buf, "true", 4) == 0) {
2461 if (mddev->degraded)
2462 return -EBUSY;
2463 mddev->bitmap->need_sync = 0;
2464 } else
2465 return -EINVAL;
2466 return len;
2467}
2468
2469static struct md_sysfs_entry bitmap_can_clear =
2470__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2471
Paul Clements696fcd52010-03-08 16:02:37 +11002472static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002473behind_writes_used_show(struct mddev *mddev, char *page)
Paul Clements696fcd52010-03-08 16:02:37 +11002474{
NeilBrownb7b17c92014-12-15 12:56:59 +11002475 ssize_t ret;
2476 spin_lock(&mddev->lock);
Paul Clements696fcd52010-03-08 16:02:37 +11002477 if (mddev->bitmap == NULL)
NeilBrownb7b17c92014-12-15 12:56:59 +11002478 ret = sprintf(page, "0\n");
2479 else
2480 ret = sprintf(page, "%lu\n",
2481 mddev->bitmap->behind_writes_used);
2482 spin_unlock(&mddev->lock);
2483 return ret;
Paul Clements696fcd52010-03-08 16:02:37 +11002484}
2485
2486static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002487behind_writes_used_reset(struct mddev *mddev, const char *buf, size_t len)
Paul Clements696fcd52010-03-08 16:02:37 +11002488{
2489 if (mddev->bitmap)
2490 mddev->bitmap->behind_writes_used = 0;
2491 return len;
2492}
2493
2494static struct md_sysfs_entry max_backlog_used =
2495__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2496 behind_writes_used_show, behind_writes_used_reset);
2497
NeilBrown43a70502009-12-14 12:49:55 +11002498static struct attribute *md_bitmap_attrs[] = {
2499 &bitmap_location.attr,
NeilBrown6409bb02012-05-22 13:55:07 +10002500 &bitmap_space.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002501 &bitmap_timeout.attr,
2502 &bitmap_backlog.attr,
2503 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002504 &bitmap_metadata.attr,
2505 &bitmap_can_clear.attr,
Paul Clements696fcd52010-03-08 16:02:37 +11002506 &max_backlog_used.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002507 NULL
2508};
2509struct attribute_group md_bitmap_group = {
2510 .name = "bitmap",
2511 .attrs = md_bitmap_attrs,
2512};
2513