blob: 2a0362fc21077b7b81847f35e205ba44b7326962 [file] [log] [blame]
NeilBrown32a76272005-06-21 17:17:14 -07001/*
2 * bitmap.c two-level bitmap (C) Peter T. Breuer (ptb@ot.uc3m.es) 2003
3 *
4 * bitmap_create - sets up the bitmap structure
5 * bitmap_destroy - destroys the bitmap structure
6 *
7 * additions, Copyright (C) 2003-2004, Paul Clements, SteelEye Technology, Inc.:
8 * - added disk storage for bitmap
9 * - changes to allow various bitmap chunk sizes
NeilBrown32a76272005-06-21 17:17:14 -070010 */
11
12/*
13 * Still to do:
14 *
15 * flush after percent set rather than just time based. (maybe both).
NeilBrown32a76272005-06-21 17:17:14 -070016 */
17
NeilBrownbff61972009-03-31 14:33:13 +110018#include <linux/blkdev.h>
NeilBrown32a76272005-06-21 17:17:14 -070019#include <linux/module.h>
NeilBrown32a76272005-06-21 17:17:14 -070020#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/init.h>
NeilBrown32a76272005-06-21 17:17:14 -070023#include <linux/timer.h>
24#include <linux/sched.h>
25#include <linux/list.h>
26#include <linux/file.h>
27#include <linux/mount.h>
28#include <linux/buffer_head.h>
NeilBrown57148962012-03-19 12:46:40 +110029#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110030#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110031#include "bitmap.h"
NeilBrown32a76272005-06-21 17:17:14 -070032
NeilBrownac2f40b2010-06-01 19:37:31 +100033static inline char *bmname(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -070034{
35 return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
36}
37
NeilBrown32a76272005-06-21 17:17:14 -070038/*
NeilBrown32a76272005-06-21 17:17:14 -070039 * check a page and, if necessary, allocate it (or hijack it if the alloc fails)
40 *
41 * 1) check to see if this page is allocated, if it's not then try to alloc
42 * 2) if the alloc fails, set the page's hijacked flag so we'll use the
43 * page pointer directly as a counter
44 *
45 * if we find our page, we increment the page's refcount so that it stays
46 * allocated while we're using it
47 */
NeilBrown40cffcc2012-05-22 13:55:24 +100048static int bitmap_checkpage(struct bitmap_counts *bitmap,
NeilBrownac2f40b2010-06-01 19:37:31 +100049 unsigned long page, int create)
NeilBrownee305ac2009-09-23 18:06:44 +100050__releases(bitmap->lock)
51__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -070052{
53 unsigned char *mappage;
54
55 if (page >= bitmap->pages) {
NeilBrown1187cf02009-03-31 14:27:02 +110056 /* This can happen if bitmap_start_sync goes beyond
57 * End-of-device while looking for a whole page.
58 * It is harmless.
59 */
NeilBrown32a76272005-06-21 17:17:14 -070060 return -EINVAL;
61 }
62
NeilBrown32a76272005-06-21 17:17:14 -070063 if (bitmap->bp[page].hijacked) /* it's hijacked, don't try to alloc */
64 return 0;
65
66 if (bitmap->bp[page].map) /* page is already allocated, just return */
67 return 0;
68
69 if (!create)
70 return -ENOENT;
71
NeilBrown32a76272005-06-21 17:17:14 -070072 /* this page has not been allocated yet */
73
NeilBrownac2f40b2010-06-01 19:37:31 +100074 spin_unlock_irq(&bitmap->lock);
NeilBrownd9590142015-02-02 17:08:03 +110075 /* It is possible that this is being called inside a
76 * prepare_to_wait/finish_wait loop from raid5c:make_request().
77 * In general it is not permitted to sleep in that context as it
78 * can cause the loop to spin freely.
79 * That doesn't apply here as we can only reach this point
80 * once with any loop.
81 * When this function completes, either bp[page].map or
82 * bp[page].hijacked. In either case, this function will
83 * abort before getting to this point again. So there is
84 * no risk of a free-spin, and so it is safe to assert
85 * that sleeping here is allowed.
86 */
87 sched_annotate_sleep();
NeilBrown792a1d42012-03-19 12:46:41 +110088 mappage = kzalloc(PAGE_SIZE, GFP_NOIO);
NeilBrownac2f40b2010-06-01 19:37:31 +100089 spin_lock_irq(&bitmap->lock);
90
91 if (mappage == NULL) {
NeilBrown40cffcc2012-05-22 13:55:24 +100092 pr_debug("md/bitmap: map page allocation failed, hijacking\n");
NeilBrown32a76272005-06-21 17:17:14 -070093 /* failed - set the hijacked flag so that we can use the
94 * pointer as a counter */
NeilBrown32a76272005-06-21 17:17:14 -070095 if (!bitmap->bp[page].map)
96 bitmap->bp[page].hijacked = 1;
NeilBrownac2f40b2010-06-01 19:37:31 +100097 } else if (bitmap->bp[page].map ||
98 bitmap->bp[page].hijacked) {
NeilBrown32a76272005-06-21 17:17:14 -070099 /* somebody beat us to getting the page */
NeilBrown792a1d42012-03-19 12:46:41 +1100100 kfree(mappage);
NeilBrownac2f40b2010-06-01 19:37:31 +1000101 } else {
102
103 /* no page was in place and we have one, so install it */
104
105 bitmap->bp[page].map = mappage;
106 bitmap->missing_pages--;
NeilBrown32a76272005-06-21 17:17:14 -0700107 }
NeilBrown32a76272005-06-21 17:17:14 -0700108 return 0;
109}
110
NeilBrown32a76272005-06-21 17:17:14 -0700111/* if page is completely empty, put it back on the free list, or dealloc it */
112/* if page was hijacked, unmark the flag so it might get alloced next time */
113/* Note: lock should be held when calling this */
NeilBrown40cffcc2012-05-22 13:55:24 +1000114static void bitmap_checkfree(struct bitmap_counts *bitmap, unsigned long page)
NeilBrown32a76272005-06-21 17:17:14 -0700115{
116 char *ptr;
117
118 if (bitmap->bp[page].count) /* page is still busy */
119 return;
120
121 /* page is no longer in use, it can be released */
122
123 if (bitmap->bp[page].hijacked) { /* page was hijacked, undo this now */
124 bitmap->bp[page].hijacked = 0;
125 bitmap->bp[page].map = NULL;
NeilBrownac2f40b2010-06-01 19:37:31 +1000126 } else {
127 /* normal case, free the page */
128 ptr = bitmap->bp[page].map;
129 bitmap->bp[page].map = NULL;
130 bitmap->missing_pages++;
NeilBrown792a1d42012-03-19 12:46:41 +1100131 kfree(ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700132 }
NeilBrown32a76272005-06-21 17:17:14 -0700133}
134
NeilBrown32a76272005-06-21 17:17:14 -0700135/*
136 * bitmap file handling - read and write the bitmap file and its superblock
137 */
138
NeilBrown32a76272005-06-21 17:17:14 -0700139/*
140 * basic page I/O operations
141 */
142
NeilBrowna654b9d82005-06-21 17:17:27 -0700143/* IO operations when bitmap is stored near all superblocks */
NeilBrown27581e52012-05-22 13:55:08 +1000144static int read_sb_page(struct mddev *mddev, loff_t offset,
145 struct page *page,
146 unsigned long index, int size)
NeilBrowna654b9d82005-06-21 17:17:27 -0700147{
148 /* choose a good rdev and read the page from there */
149
NeilBrown3cb03002011-10-11 16:45:26 +1100150 struct md_rdev *rdev;
NeilBrowna654b9d82005-06-21 17:17:27 -0700151 sector_t target;
NeilBrowna654b9d82005-06-21 17:17:27 -0700152
NeilBrowndafb20f2012-03-19 12:46:39 +1100153 rdev_for_each(rdev, mddev) {
NeilBrownb2d444d2005-11-08 21:39:31 -0800154 if (! test_bit(In_sync, &rdev->flags)
155 || test_bit(Faulty, &rdev->flags))
NeilBrownab904d62005-09-09 16:23:52 -0700156 continue;
157
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100158 target = offset + index * (PAGE_SIZE/512);
NeilBrowna654b9d82005-06-21 17:17:27 -0700159
NeilBrown2b193362010-10-27 15:16:40 +1100160 if (sync_page_io(rdev, target,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400161 roundup(size, bdev_logical_block_size(rdev->bdev)),
Jonathan Brassowccebd4c2011-01-14 09:14:33 +1100162 page, READ, true)) {
NeilBrownab904d62005-09-09 16:23:52 -0700163 page->index = index;
NeilBrown27581e52012-05-22 13:55:08 +1000164 return 0;
NeilBrownab904d62005-09-09 16:23:52 -0700165 }
166 }
NeilBrown27581e52012-05-22 13:55:08 +1000167 return -EIO;
NeilBrowna654b9d82005-06-21 17:17:27 -0700168}
169
NeilBrownfd01b882011-10-11 16:47:53 +1100170static struct md_rdev *next_active_rdev(struct md_rdev *rdev, struct mddev *mddev)
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000171{
172 /* Iterate the disks of an mddev, using rcu to protect access to the
173 * linked list, and raising the refcount of devices we return to ensure
174 * they don't disappear while in use.
175 * As devices are only added or removed when raid_disk is < 0 and
176 * nr_pending is 0 and In_sync is clear, the entries we return will
177 * still be in the same position on the list when we re-enter
Michael Wangfd177482012-10-11 13:43:21 +1100178 * list_for_each_entry_continue_rcu.
NeilBrown8532e342015-05-20 15:05:09 +1000179 *
180 * Note that if entered with 'rdev == NULL' to start at the
181 * beginning, we temporarily assign 'rdev' to an address which
182 * isn't really an rdev, but which can be used by
183 * list_for_each_entry_continue_rcu() to find the first entry.
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000184 */
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000185 rcu_read_lock();
186 if (rdev == NULL)
187 /* start at the beginning */
NeilBrown8532e342015-05-20 15:05:09 +1000188 rdev = list_entry(&mddev->disks, struct md_rdev, same_set);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000189 else {
190 /* release the previous rdev and start from there. */
191 rdev_dec_pending(rdev, mddev);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000192 }
Michael Wangfd177482012-10-11 13:43:21 +1100193 list_for_each_entry_continue_rcu(rdev, &mddev->disks, same_set) {
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000194 if (rdev->raid_disk >= 0 &&
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000195 !test_bit(Faulty, &rdev->flags)) {
196 /* this is a usable devices */
197 atomic_inc(&rdev->nr_pending);
198 rcu_read_unlock();
199 return rdev;
200 }
201 }
202 rcu_read_unlock();
203 return NULL;
204}
205
NeilBrownab6085c2007-05-23 13:58:10 -0700206static int write_sb_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrowna654b9d82005-06-21 17:17:27 -0700207{
NeilBrown3cb03002011-10-11 16:45:26 +1100208 struct md_rdev *rdev = NULL;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100209 struct block_device *bdev;
NeilBrownfd01b882011-10-11 16:47:53 +1100210 struct mddev *mddev = bitmap->mddev;
NeilBrown1ec885c2012-05-22 13:55:10 +1000211 struct bitmap_storage *store = &bitmap->storage;
NeilBrowna654b9d82005-06-21 17:17:27 -0700212
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000213 while ((rdev = next_active_rdev(rdev, mddev)) != NULL) {
NeilBrownac2f40b2010-06-01 19:37:31 +1000214 int size = PAGE_SIZE;
215 loff_t offset = mddev->bitmap_info.offset;
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100216
217 bdev = (rdev->meta_bdev) ? rdev->meta_bdev : rdev->bdev;
218
NeilBrown9b1215c2012-05-22 13:55:11 +1000219 if (page->index == store->file_pages-1) {
220 int last_page_size = store->bytes & (PAGE_SIZE-1);
221 if (last_page_size == 0)
222 last_page_size = PAGE_SIZE;
223 size = roundup(last_page_size,
Jonathan Brassowa6ff7e02011-01-14 09:14:34 +1100224 bdev_logical_block_size(bdev));
NeilBrown9b1215c2012-05-22 13:55:11 +1000225 }
NeilBrownac2f40b2010-06-01 19:37:31 +1000226 /* Just make sure we aren't corrupting data or
227 * metadata
228 */
229 if (mddev->external) {
230 /* Bitmap could be anywhere. */
231 if (rdev->sb_start + offset + (page->index
232 * (PAGE_SIZE/512))
233 > rdev->data_offset
234 &&
235 rdev->sb_start + offset
236 < (rdev->data_offset + mddev->dev_sectors
237 + (PAGE_SIZE/512)))
238 goto bad_alignment;
239 } else if (offset < 0) {
240 /* DATA BITMAP METADATA */
241 if (offset
242 + (long)(page->index * (PAGE_SIZE/512))
243 + size/512 > 0)
244 /* bitmap runs in to metadata */
245 goto bad_alignment;
246 if (rdev->data_offset + mddev->dev_sectors
247 > rdev->sb_start + offset)
248 /* data runs in to bitmap */
249 goto bad_alignment;
250 } else if (rdev->sb_start < rdev->data_offset) {
251 /* METADATA BITMAP DATA */
252 if (rdev->sb_start
253 + offset
254 + page->index*(PAGE_SIZE/512) + size/512
255 > rdev->data_offset)
256 /* bitmap runs in to data */
257 goto bad_alignment;
258 } else {
259 /* DATA METADATA BITMAP - no problems */
260 }
261 md_super_write(mddev, rdev,
262 rdev->sb_start + offset
263 + page->index * (PAGE_SIZE/512),
264 size,
265 page);
NeilBrownb2d2c4c2008-09-01 12:48:13 +1000266 }
NeilBrowna654b9d82005-06-21 17:17:27 -0700267
268 if (wait)
NeilBrowna9701a32005-11-08 21:39:34 -0800269 md_super_wait(mddev);
NeilBrowna654b9d82005-06-21 17:17:27 -0700270 return 0;
NeilBrown4b809912008-07-21 17:05:25 +1000271
272 bad_alignment:
NeilBrown4b809912008-07-21 17:05:25 +1000273 return -EINVAL;
NeilBrowna654b9d82005-06-21 17:17:27 -0700274}
275
NeilBrown4ad13662007-07-17 04:06:13 -0700276static void bitmap_file_kick(struct bitmap *bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700277/*
NeilBrowna654b9d82005-06-21 17:17:27 -0700278 * write out a page to a file
NeilBrown32a76272005-06-21 17:17:14 -0700279 */
NeilBrown4ad13662007-07-17 04:06:13 -0700280static void write_page(struct bitmap *bitmap, struct page *page, int wait)
NeilBrown32a76272005-06-21 17:17:14 -0700281{
NeilBrownd785a062006-06-26 00:27:48 -0700282 struct buffer_head *bh;
NeilBrown32a76272005-06-21 17:17:14 -0700283
NeilBrown1ec885c2012-05-22 13:55:10 +1000284 if (bitmap->storage.file == NULL) {
NeilBrownf0d76d72007-07-17 04:06:12 -0700285 switch (write_sb_page(bitmap, page, wait)) {
286 case -EINVAL:
NeilBrownb405fe92012-05-22 13:55:15 +1000287 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownf0d76d72007-07-17 04:06:12 -0700288 }
NeilBrown4ad13662007-07-17 04:06:13 -0700289 } else {
NeilBrowna654b9d82005-06-21 17:17:27 -0700290
NeilBrown4ad13662007-07-17 04:06:13 -0700291 bh = page_buffers(page);
NeilBrownc7084432006-01-06 00:20:45 -0800292
NeilBrown4ad13662007-07-17 04:06:13 -0700293 while (bh && bh->b_blocknr) {
294 atomic_inc(&bitmap->pending_writes);
295 set_buffer_locked(bh);
296 set_buffer_mapped(bh);
Jens Axboe721a9602011-03-09 11:56:30 +0100297 submit_bh(WRITE | REQ_SYNC, bh);
NeilBrown4ad13662007-07-17 04:06:13 -0700298 bh = bh->b_this_page;
299 }
NeilBrown32a76272005-06-21 17:17:14 -0700300
NeilBrownac2f40b2010-06-01 19:37:31 +1000301 if (wait)
NeilBrown4ad13662007-07-17 04:06:13 -0700302 wait_event(bitmap->write_wait,
303 atomic_read(&bitmap->pending_writes)==0);
NeilBrown32a76272005-06-21 17:17:14 -0700304 }
NeilBrownb405fe92012-05-22 13:55:15 +1000305 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700306 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700307}
308
NeilBrownd785a062006-06-26 00:27:48 -0700309static void end_bitmap_write(struct buffer_head *bh, int uptodate)
NeilBrown32a76272005-06-21 17:17:14 -0700310{
NeilBrownd785a062006-06-26 00:27:48 -0700311 struct bitmap *bitmap = bh->b_private;
NeilBrownd785a062006-06-26 00:27:48 -0700312
NeilBrownb405fe92012-05-22 13:55:15 +1000313 if (!uptodate)
314 set_bit(BITMAP_WRITE_ERROR, &bitmap->flags);
NeilBrownd785a062006-06-26 00:27:48 -0700315 if (atomic_dec_and_test(&bitmap->pending_writes))
316 wake_up(&bitmap->write_wait);
317}
318
319/* copied from buffer.c */
320static void
321__clear_page_buffers(struct page *page)
322{
323 ClearPagePrivate(page);
324 set_page_private(page, 0);
325 page_cache_release(page);
326}
327static void free_buffers(struct page *page)
328{
NeilBrown27581e52012-05-22 13:55:08 +1000329 struct buffer_head *bh;
NeilBrownd785a062006-06-26 00:27:48 -0700330
NeilBrown27581e52012-05-22 13:55:08 +1000331 if (!PagePrivate(page))
332 return;
333
334 bh = page_buffers(page);
NeilBrownd785a062006-06-26 00:27:48 -0700335 while (bh) {
336 struct buffer_head *next = bh->b_this_page;
337 free_buffer_head(bh);
338 bh = next;
339 }
340 __clear_page_buffers(page);
341 put_page(page);
342}
343
344/* read a page from a file.
345 * We both read the page, and attach buffers to the page to record the
346 * address of each block (using bmap). These addresses will be used
347 * to write the block later, completely bypassing the filesystem.
348 * This usage is similar to how swap files are handled, and allows us
349 * to write to a file with no concerns of memory allocation failing.
350 */
NeilBrown27581e52012-05-22 13:55:08 +1000351static int read_page(struct file *file, unsigned long index,
352 struct bitmap *bitmap,
353 unsigned long count,
354 struct page *page)
NeilBrownd785a062006-06-26 00:27:48 -0700355{
NeilBrown27581e52012-05-22 13:55:08 +1000356 int ret = 0;
Al Viro496ad9a2013-01-23 17:07:38 -0500357 struct inode *inode = file_inode(file);
NeilBrownd785a062006-06-26 00:27:48 -0700358 struct buffer_head *bh;
359 sector_t block;
NeilBrown32a76272005-06-21 17:17:14 -0700360
NeilBrown36a4e1f2011-10-07 14:23:17 +1100361 pr_debug("read bitmap file (%dB @ %llu)\n", (int)PAGE_SIZE,
362 (unsigned long long)index << PAGE_SHIFT);
NeilBrown32a76272005-06-21 17:17:14 -0700363
NeilBrownd785a062006-06-26 00:27:48 -0700364 bh = alloc_page_buffers(page, 1<<inode->i_blkbits, 0);
365 if (!bh) {
NeilBrown27581e52012-05-22 13:55:08 +1000366 ret = -ENOMEM;
NeilBrownd785a062006-06-26 00:27:48 -0700367 goto out;
368 }
369 attach_page_buffers(page, bh);
370 block = index << (PAGE_SHIFT - inode->i_blkbits);
371 while (bh) {
372 if (count == 0)
373 bh->b_blocknr = 0;
374 else {
375 bh->b_blocknr = bmap(inode, block);
376 if (bh->b_blocknr == 0) {
377 /* Cannot use this file! */
NeilBrown27581e52012-05-22 13:55:08 +1000378 ret = -EINVAL;
NeilBrownd785a062006-06-26 00:27:48 -0700379 goto out;
380 }
381 bh->b_bdev = inode->i_sb->s_bdev;
382 if (count < (1<<inode->i_blkbits))
383 count = 0;
384 else
385 count -= (1<<inode->i_blkbits);
NeilBrown32a76272005-06-21 17:17:14 -0700386
NeilBrownd785a062006-06-26 00:27:48 -0700387 bh->b_end_io = end_bitmap_write;
388 bh->b_private = bitmap;
NeilBrownce25c312006-06-26 00:27:49 -0700389 atomic_inc(&bitmap->pending_writes);
390 set_buffer_locked(bh);
391 set_buffer_mapped(bh);
392 submit_bh(READ, bh);
NeilBrownd785a062006-06-26 00:27:48 -0700393 }
394 block++;
395 bh = bh->b_this_page;
396 }
NeilBrownd785a062006-06-26 00:27:48 -0700397 page->index = index;
NeilBrownce25c312006-06-26 00:27:49 -0700398
399 wait_event(bitmap->write_wait,
400 atomic_read(&bitmap->pending_writes)==0);
NeilBrownb405fe92012-05-22 13:55:15 +1000401 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown27581e52012-05-22 13:55:08 +1000402 ret = -EIO;
NeilBrown32a76272005-06-21 17:17:14 -0700403out:
NeilBrown27581e52012-05-22 13:55:08 +1000404 if (ret)
405 printk(KERN_ALERT "md: bitmap read error: (%dB @ %llu): %d\n",
NeilBrown2d1f3b52006-01-06 00:20:31 -0800406 (int)PAGE_SIZE,
407 (unsigned long long)index << PAGE_SHIFT,
NeilBrown27581e52012-05-22 13:55:08 +1000408 ret);
409 return ret;
NeilBrown32a76272005-06-21 17:17:14 -0700410}
411
412/*
413 * bitmap file superblock operations
414 */
415
416/* update the event counter and sync the superblock to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700417void bitmap_update_sb(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700418{
419 bitmap_super_t *sb;
NeilBrown32a76272005-06-21 17:17:14 -0700420
421 if (!bitmap || !bitmap->mddev) /* no bitmap for this array */
NeilBrown4ad13662007-07-17 04:06:13 -0700422 return;
NeilBrownece5cff2009-12-14 12:49:56 +1100423 if (bitmap->mddev->bitmap_info.external)
424 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000425 if (!bitmap->storage.sb_page) /* no superblock */
NeilBrown4ad13662007-07-17 04:06:13 -0700426 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000427 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700428 sb->events = cpu_to_le64(bitmap->mddev->events);
NeilBrown8258c532011-05-11 14:26:30 +1000429 if (bitmap->mddev->events < bitmap->events_cleared)
Neil Browna0da84f2008-06-28 08:31:22 +1000430 /* rocking back to read-only */
431 bitmap->events_cleared = bitmap->mddev->events;
NeilBrown8258c532011-05-11 14:26:30 +1000432 sb->events_cleared = cpu_to_le64(bitmap->events_cleared);
433 sb->state = cpu_to_le32(bitmap->flags);
NeilBrown43a70502009-12-14 12:49:55 +1100434 /* Just in case these have been changed via sysfs: */
435 sb->daemon_sleep = cpu_to_le32(bitmap->mddev->bitmap_info.daemon_sleep/HZ);
436 sb->write_behind = cpu_to_le32(bitmap->mddev->bitmap_info.max_write_behind);
NeilBrownb81a0402012-05-22 13:55:26 +1000437 /* This might have been changed by a reshape */
438 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
439 sb->chunksize = cpu_to_le32(bitmap->mddev->bitmap_info.chunksize);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500440 sb->nodes = cpu_to_le32(bitmap->mddev->bitmap_info.nodes);
NeilBrown1dff2b82012-05-22 13:55:34 +1000441 sb->sectors_reserved = cpu_to_le32(bitmap->mddev->
442 bitmap_info.space);
Cong Wangb2f46e62011-11-28 13:25:44 +0800443 kunmap_atomic(sb);
NeilBrown1ec885c2012-05-22 13:55:10 +1000444 write_page(bitmap, bitmap->storage.sb_page, 1);
NeilBrown32a76272005-06-21 17:17:14 -0700445}
446
447/* print out the bitmap file superblock */
448void bitmap_print_sb(struct bitmap *bitmap)
449{
450 bitmap_super_t *sb;
451
NeilBrown1ec885c2012-05-22 13:55:10 +1000452 if (!bitmap || !bitmap->storage.sb_page)
NeilBrown32a76272005-06-21 17:17:14 -0700453 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000454 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700455 printk(KERN_DEBUG "%s: bitmap file superblock:\n", bmname(bitmap));
NeilBrowna2cff262005-06-21 17:17:20 -0700456 printk(KERN_DEBUG " magic: %08x\n", le32_to_cpu(sb->magic));
457 printk(KERN_DEBUG " version: %d\n", le32_to_cpu(sb->version));
458 printk(KERN_DEBUG " uuid: %08x.%08x.%08x.%08x\n",
NeilBrown32a76272005-06-21 17:17:14 -0700459 *(__u32 *)(sb->uuid+0),
460 *(__u32 *)(sb->uuid+4),
461 *(__u32 *)(sb->uuid+8),
462 *(__u32 *)(sb->uuid+12));
NeilBrowna2cff262005-06-21 17:17:20 -0700463 printk(KERN_DEBUG " events: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700464 (unsigned long long) le64_to_cpu(sb->events));
NeilBrowna2cff262005-06-21 17:17:20 -0700465 printk(KERN_DEBUG "events cleared: %llu\n",
NeilBrown32a76272005-06-21 17:17:14 -0700466 (unsigned long long) le64_to_cpu(sb->events_cleared));
NeilBrowna2cff262005-06-21 17:17:20 -0700467 printk(KERN_DEBUG " state: %08x\n", le32_to_cpu(sb->state));
468 printk(KERN_DEBUG " chunksize: %d B\n", le32_to_cpu(sb->chunksize));
469 printk(KERN_DEBUG " daemon sleep: %ds\n", le32_to_cpu(sb->daemon_sleep));
470 printk(KERN_DEBUG " sync size: %llu KB\n",
471 (unsigned long long)le64_to_cpu(sb->sync_size)/2);
NeilBrown4b6d2872005-09-09 16:23:47 -0700472 printk(KERN_DEBUG "max write behind: %d\n", le32_to_cpu(sb->write_behind));
Cong Wangb2f46e62011-11-28 13:25:44 +0800473 kunmap_atomic(sb);
NeilBrown32a76272005-06-21 17:17:14 -0700474}
475
Jonathan Brassow9c810752011-06-08 17:59:30 -0500476/*
477 * bitmap_new_disk_sb
478 * @bitmap
479 *
480 * This function is somewhat the reverse of bitmap_read_sb. bitmap_read_sb
481 * reads and verifies the on-disk bitmap superblock and populates bitmap_info.
482 * This function verifies 'bitmap_info' and populates the on-disk bitmap
483 * structure, which is to be written to disk.
484 *
485 * Returns: 0 on success, -Exxx on error
486 */
487static int bitmap_new_disk_sb(struct bitmap *bitmap)
488{
489 bitmap_super_t *sb;
490 unsigned long chunksize, daemon_sleep, write_behind;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500491
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500492 bitmap->storage.sb_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
Jianpeng Ma582e2e02012-10-11 13:45:36 +1100493 if (bitmap->storage.sb_page == NULL)
494 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000495 bitmap->storage.sb_page->index = 0;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500496
NeilBrown1ec885c2012-05-22 13:55:10 +1000497 sb = kmap_atomic(bitmap->storage.sb_page);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500498
499 sb->magic = cpu_to_le32(BITMAP_MAGIC);
500 sb->version = cpu_to_le32(BITMAP_MAJOR_HI);
501
502 chunksize = bitmap->mddev->bitmap_info.chunksize;
503 BUG_ON(!chunksize);
504 if (!is_power_of_2(chunksize)) {
Cong Wangb2f46e62011-11-28 13:25:44 +0800505 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500506 printk(KERN_ERR "bitmap chunksize not a power of 2\n");
507 return -EINVAL;
508 }
509 sb->chunksize = cpu_to_le32(chunksize);
510
511 daemon_sleep = bitmap->mddev->bitmap_info.daemon_sleep;
Eric Engestromc97e0602016-03-07 12:01:05 +0000512 if (!daemon_sleep || (daemon_sleep > MAX_SCHEDULE_TIMEOUT)) {
Jonathan Brassow9c810752011-06-08 17:59:30 -0500513 printk(KERN_INFO "Choosing daemon_sleep default (5 sec)\n");
514 daemon_sleep = 5 * HZ;
515 }
516 sb->daemon_sleep = cpu_to_le32(daemon_sleep);
517 bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep;
518
519 /*
520 * FIXME: write_behind for RAID1. If not specified, what
521 * is a good choice? We choose COUNTER_MAX / 2 arbitrarily.
522 */
523 write_behind = bitmap->mddev->bitmap_info.max_write_behind;
524 if (write_behind > COUNTER_MAX)
525 write_behind = COUNTER_MAX / 2;
526 sb->write_behind = cpu_to_le32(write_behind);
527 bitmap->mddev->bitmap_info.max_write_behind = write_behind;
528
529 /* keep the array size field of the bitmap superblock up to date */
530 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
531
532 memcpy(sb->uuid, bitmap->mddev->uuid, 16);
533
NeilBrownb405fe92012-05-22 13:55:15 +1000534 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown84e92342012-05-22 13:55:14 +1000535 sb->state = cpu_to_le32(bitmap->flags);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500536 bitmap->events_cleared = bitmap->mddev->events;
537 sb->events_cleared = cpu_to_le64(bitmap->mddev->events);
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500538 bitmap->mddev->bitmap_info.nodes = 0;
Jonathan Brassow9c810752011-06-08 17:59:30 -0500539
Cong Wangb2f46e62011-11-28 13:25:44 +0800540 kunmap_atomic(sb);
Jonathan Brassow9c810752011-06-08 17:59:30 -0500541
542 return 0;
543}
544
NeilBrown32a76272005-06-21 17:17:14 -0700545/* read the superblock from the bitmap file and initialize some bitmap fields */
546static int bitmap_read_sb(struct bitmap *bitmap)
547{
548 char *reason = NULL;
549 bitmap_super_t *sb;
NeilBrown4b6d2872005-09-09 16:23:47 -0700550 unsigned long chunksize, daemon_sleep, write_behind;
NeilBrown32a76272005-06-21 17:17:14 -0700551 unsigned long long events;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500552 int nodes = 0;
NeilBrown1dff2b82012-05-22 13:55:34 +1000553 unsigned long sectors_reserved = 0;
NeilBrown32a76272005-06-21 17:17:14 -0700554 int err = -EINVAL;
NeilBrown27581e52012-05-22 13:55:08 +1000555 struct page *sb_page;
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000556 loff_t offset = bitmap->mddev->bitmap_info.offset;
NeilBrown32a76272005-06-21 17:17:14 -0700557
NeilBrown1ec885c2012-05-22 13:55:10 +1000558 if (!bitmap->storage.file && !bitmap->mddev->bitmap_info.offset) {
NeilBrownef99bf42012-05-22 13:55:08 +1000559 chunksize = 128 * 1024 * 1024;
560 daemon_sleep = 5 * HZ;
561 write_behind = 0;
NeilBrownb405fe92012-05-22 13:55:15 +1000562 set_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +1000563 err = 0;
564 goto out_no_sb;
565 }
NeilBrown32a76272005-06-21 17:17:14 -0700566 /* page 0 is the superblock, read it... */
NeilBrown27581e52012-05-22 13:55:08 +1000567 sb_page = alloc_page(GFP_KERNEL);
568 if (!sb_page)
569 return -ENOMEM;
NeilBrown1ec885c2012-05-22 13:55:10 +1000570 bitmap->storage.sb_page = sb_page;
NeilBrown27581e52012-05-22 13:55:08 +1000571
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500572re_read:
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500573 /* If cluster_slot is set, the cluster is setup */
574 if (bitmap->cluster_slot >= 0) {
Stephen Rothwell3b0e6aa2015-03-03 13:35:31 +1100575 sector_t bm_blocks = bitmap->mddev->resync_max_sectors;
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500576
Stephen Rothwell3b0e6aa2015-03-03 13:35:31 +1100577 sector_div(bm_blocks,
578 bitmap->mddev->bitmap_info.chunksize >> 9);
Goldwyn Rodrigues124eb762015-03-24 11:29:05 -0500579 /* bits to bytes */
580 bm_blocks = ((bm_blocks+7) >> 3) + sizeof(bitmap_super_t);
581 /* to 4k blocks */
NeilBrown935f3d42015-03-02 17:02:29 +1100582 bm_blocks = DIV_ROUND_UP_SECTOR_T(bm_blocks, 4096);
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000583 offset = bitmap->mddev->bitmap_info.offset + (bitmap->cluster_slot * (bm_blocks << 3));
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500584 pr_info("%s:%d bm slot: %d offset: %llu\n", __func__, __LINE__,
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000585 bitmap->cluster_slot, offset);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -0500586 }
587
NeilBrown1ec885c2012-05-22 13:55:10 +1000588 if (bitmap->storage.file) {
589 loff_t isize = i_size_read(bitmap->storage.file->f_mapping->host);
NeilBrownf49d5e62007-01-26 00:57:03 -0800590 int bytes = isize > PAGE_SIZE ? PAGE_SIZE : isize;
591
NeilBrown1ec885c2012-05-22 13:55:10 +1000592 err = read_page(bitmap->storage.file, 0,
NeilBrown27581e52012-05-22 13:55:08 +1000593 bitmap, bytes, sb_page);
NeilBrownf49d5e62007-01-26 00:57:03 -0800594 } else {
NeilBrown27581e52012-05-22 13:55:08 +1000595 err = read_sb_page(bitmap->mddev,
Goldwyn Rodrigues33e38ac2015-07-01 12:19:56 +1000596 offset,
NeilBrown27581e52012-05-22 13:55:08 +1000597 sb_page,
598 0, sizeof(bitmap_super_t));
NeilBrowna654b9d82005-06-21 17:17:27 -0700599 }
NeilBrown27581e52012-05-22 13:55:08 +1000600 if (err)
NeilBrown32a76272005-06-21 17:17:14 -0700601 return err;
NeilBrown32a76272005-06-21 17:17:14 -0700602
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500603 err = -EINVAL;
NeilBrown27581e52012-05-22 13:55:08 +1000604 sb = kmap_atomic(sb_page);
NeilBrown32a76272005-06-21 17:17:14 -0700605
NeilBrown32a76272005-06-21 17:17:14 -0700606 chunksize = le32_to_cpu(sb->chunksize);
NeilBrown1b04be92009-12-14 12:49:53 +1100607 daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ;
NeilBrown4b6d2872005-09-09 16:23:47 -0700608 write_behind = le32_to_cpu(sb->write_behind);
NeilBrown1dff2b82012-05-22 13:55:34 +1000609 sectors_reserved = le32_to_cpu(sb->sectors_reserved);
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000610 /* Setup nodes/clustername only if bitmap version is
611 * cluster-compatible
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500612 */
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000613 if (sb->version == cpu_to_le32(BITMAP_MAJOR_CLUSTERED)) {
Goldwyn Rodriguesd3b178a2015-07-22 12:09:17 -0500614 nodes = le32_to_cpu(sb->nodes);
615 strlcpy(bitmap->mddev->bitmap_info.cluster_name,
616 sb->cluster_name, 64);
617 }
NeilBrown32a76272005-06-21 17:17:14 -0700618
619 /* verify that the bitmap-specific fields are valid */
620 if (sb->magic != cpu_to_le32(BITMAP_MAGIC))
621 reason = "bad magic";
NeilBrownbd926c62005-11-08 21:39:32 -0800622 else if (le32_to_cpu(sb->version) < BITMAP_MAJOR_LO ||
Goldwyn Rodrigues3c462c82015-08-19 07:35:54 +1000623 le32_to_cpu(sb->version) > BITMAP_MAJOR_CLUSTERED)
NeilBrown32a76272005-06-21 17:17:14 -0700624 reason = "unrecognized superblock version";
NeilBrown1187cf02009-03-31 14:27:02 +1100625 else if (chunksize < 512)
NeilBrown7dd5d342006-01-06 00:20:39 -0800626 reason = "bitmap chunksize too small";
Jonathan Brassowd7445402011-06-08 18:01:10 -0500627 else if (!is_power_of_2(chunksize))
NeilBrown32a76272005-06-21 17:17:14 -0700628 reason = "bitmap chunksize not a power of 2";
NeilBrown1b04be92009-12-14 12:49:53 +1100629 else if (daemon_sleep < 1 || daemon_sleep > MAX_SCHEDULE_TIMEOUT)
NeilBrown7dd5d342006-01-06 00:20:39 -0800630 reason = "daemon sleep period out of range";
NeilBrown4b6d2872005-09-09 16:23:47 -0700631 else if (write_behind > COUNTER_MAX)
632 reason = "write-behind limit out of range (0 - 16383)";
NeilBrown32a76272005-06-21 17:17:14 -0700633 if (reason) {
634 printk(KERN_INFO "%s: invalid bitmap file superblock: %s\n",
635 bmname(bitmap), reason);
636 goto out;
637 }
638
639 /* keep the array size field of the bitmap superblock up to date */
640 sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors);
641
NeilBrown278c1ca2012-03-19 12:46:40 +1100642 if (bitmap->mddev->persistent) {
643 /*
644 * We have a persistent array superblock, so compare the
645 * bitmap's UUID and event counter to the mddev's
646 */
647 if (memcmp(sb->uuid, bitmap->mddev->uuid, 16)) {
648 printk(KERN_INFO
649 "%s: bitmap superblock UUID mismatch\n",
650 bmname(bitmap));
651 goto out;
652 }
653 events = le64_to_cpu(sb->events);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500654 if (!nodes && (events < bitmap->mddev->events)) {
NeilBrown278c1ca2012-03-19 12:46:40 +1100655 printk(KERN_INFO
656 "%s: bitmap file is out of date (%llu < %llu) "
657 "-- 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) {
679 pr_err("%s: Could not setup cluster service (%d)\n",
680 bmname(bitmap), err);
681 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);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500759 offset = slot_number * (num_pages - 1);
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
NeilBrown4ad13662007-07-17 04:06:13 -0700847 printk(KERN_ALERT
848 "%s: kicking failed bitmap file %s from array!\n",
Christoph Hellwig6bcfd602008-05-23 13:04:34 -0700849 bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
NeilBrown32a76272005-06-21 17:17:14 -0700850
NeilBrown4ad13662007-07-17 04:06:13 -0700851 kfree(path);
852 } else
853 printk(KERN_ALERT
854 "%s: disabling internal bitmap due to errors\n",
855 bmname(bitmap));
NeilBrowna654b9d82005-06-21 17:17:27 -0700856 }
NeilBrown32a76272005-06-21 17:17:14 -0700857}
858
859enum bitmap_page_attr {
NeilBrownac2f40b2010-06-01 19:37:31 +1000860 BITMAP_PAGE_DIRTY = 0, /* there are set bits that need to be synced */
NeilBrown5a537df2011-09-21 15:37:46 +1000861 BITMAP_PAGE_PENDING = 1, /* there are bits that are being cleaned.
862 * i.e. counter is 1 or 2. */
NeilBrownac2f40b2010-06-01 19:37:31 +1000863 BITMAP_PAGE_NEEDWRITE = 2, /* there are cleared bits that need to be synced */
NeilBrown32a76272005-06-21 17:17:14 -0700864};
865
NeilBrownd1891222012-05-22 13:55:09 +1000866static inline void set_page_attr(struct bitmap *bitmap, int pnum,
867 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700868{
NeilBrownbdfd1142012-05-22 13:55:22 +1000869 set_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700870}
871
NeilBrownd1891222012-05-22 13:55:09 +1000872static inline void clear_page_attr(struct bitmap *bitmap, int pnum,
873 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700874{
NeilBrownbdfd1142012-05-22 13:55:22 +1000875 clear_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700876}
877
NeilBrownbdfd1142012-05-22 13:55:22 +1000878static inline int test_page_attr(struct bitmap *bitmap, int pnum,
879 enum bitmap_page_attr attr)
NeilBrown32a76272005-06-21 17:17:14 -0700880{
NeilBrown1ec885c2012-05-22 13:55:10 +1000881 return test_bit((pnum<<2) + attr, bitmap->storage.filemap_attr);
NeilBrown32a76272005-06-21 17:17:14 -0700882}
883
NeilBrownbdfd1142012-05-22 13:55:22 +1000884static inline int test_and_clear_page_attr(struct bitmap *bitmap, int pnum,
885 enum bitmap_page_attr attr)
886{
887 return test_and_clear_bit((pnum<<2) + attr,
888 bitmap->storage.filemap_attr);
889}
NeilBrown32a76272005-06-21 17:17:14 -0700890/*
891 * bitmap_file_set_bit -- called before performing a write to the md device
892 * to set (and eventually sync) a particular bit in the bitmap file
893 *
894 * we set the bit immediately, then we record the page number so that
895 * when an unplug occurs, we can flush the dirty pages out to disk
896 */
897static void bitmap_file_set_bit(struct bitmap *bitmap, sector_t block)
898{
899 unsigned long bit;
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000900 struct page *page;
NeilBrown32a76272005-06-21 17:17:14 -0700901 void *kaddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000902 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -0700903
NeilBrown1ec885c2012-05-22 13:55:10 +1000904 page = filemap_get_page(&bitmap->storage, chunk);
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000905 if (!page)
906 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000907 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrown32a76272005-06-21 17:17:14 -0700908
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000909 /* set the bit */
Cong Wangb2f46e62011-11-28 13:25:44 +0800910 kaddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000911 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
Jonathan Brassow3520fa42011-07-27 11:00:37 +1000912 set_bit(bit, kaddr);
913 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000914 set_bit_le(bit, kaddr);
Cong Wangb2f46e62011-11-28 13:25:44 +0800915 kunmap_atomic(kaddr);
NeilBrown36a4e1f2011-10-07 14:23:17 +1100916 pr_debug("set file bit %lu page %lu\n", bit, page->index);
NeilBrown32a76272005-06-21 17:17:14 -0700917 /* record page number so it gets flushed to disk when unplug occurs */
NeilBrownd1891222012-05-22 13:55:09 +1000918 set_page_attr(bitmap, page->index, BITMAP_PAGE_DIRTY);
NeilBrown32a76272005-06-21 17:17:14 -0700919}
920
NeilBrownef99bf42012-05-22 13:55:08 +1000921static void bitmap_file_clear_bit(struct bitmap *bitmap, sector_t block)
922{
923 unsigned long bit;
924 struct page *page;
925 void *paddr;
NeilBrown40cffcc2012-05-22 13:55:24 +1000926 unsigned long chunk = block >> bitmap->counts.chunkshift;
NeilBrownef99bf42012-05-22 13:55:08 +1000927
NeilBrown1ec885c2012-05-22 13:55:10 +1000928 page = filemap_get_page(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000929 if (!page)
930 return;
NeilBrown1ec885c2012-05-22 13:55:10 +1000931 bit = file_page_offset(&bitmap->storage, chunk);
NeilBrownef99bf42012-05-22 13:55:08 +1000932 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +1000933 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownef99bf42012-05-22 13:55:08 +1000934 clear_bit(bit, paddr);
935 else
Akinobu Mita3f810b62013-04-24 11:42:41 +1000936 clear_bit_le(bit, paddr);
NeilBrownef99bf42012-05-22 13:55:08 +1000937 kunmap_atomic(paddr);
NeilBrownd1891222012-05-22 13:55:09 +1000938 if (!test_page_attr(bitmap, page->index, BITMAP_PAGE_NEEDWRITE)) {
939 set_page_attr(bitmap, page->index, BITMAP_PAGE_PENDING);
NeilBrownef99bf42012-05-22 13:55:08 +1000940 bitmap->allclean = 0;
941 }
942}
943
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -0500944static int bitmap_file_test_bit(struct bitmap *bitmap, sector_t block)
945{
946 unsigned long bit;
947 struct page *page;
948 void *paddr;
949 unsigned long chunk = block >> bitmap->counts.chunkshift;
950 int set = 0;
951
952 page = filemap_get_page(&bitmap->storage, chunk);
953 if (!page)
954 return -EINVAL;
955 bit = file_page_offset(&bitmap->storage, chunk);
956 paddr = kmap_atomic(page);
957 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
958 set = test_bit(bit, paddr);
959 else
960 set = test_bit_le(bit, paddr);
961 kunmap_atomic(paddr);
962 return set;
963}
964
965
NeilBrown32a76272005-06-21 17:17:14 -0700966/* this gets called when the md device is ready to unplug its underlying
967 * (slave) device queues -- before we let any writes go down, we need to
968 * sync the dirty pages of the bitmap file to disk */
NeilBrown4ad13662007-07-17 04:06:13 -0700969void bitmap_unplug(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -0700970{
NeilBrown74667122012-05-22 13:55:19 +1000971 unsigned long i;
NeilBrownec7a3192006-06-26 00:27:45 -0700972 int dirty, need_write;
NeilBrown32a76272005-06-21 17:17:14 -0700973
NeilBrown62f82fa2012-05-22 13:55:21 +1000974 if (!bitmap || !bitmap->storage.filemap ||
975 test_bit(BITMAP_STALE, &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -0700976 return;
NeilBrown32a76272005-06-21 17:17:14 -0700977
978 /* look at each page to see if there are any set bits that need to be
979 * flushed out to disk */
NeilBrown1ec885c2012-05-22 13:55:10 +1000980 for (i = 0; i < bitmap->storage.file_pages; i++) {
NeilBrownbdfd1142012-05-22 13:55:22 +1000981 if (!bitmap->storage.filemap)
NeilBrown4ad13662007-07-17 04:06:13 -0700982 return;
NeilBrownbdfd1142012-05-22 13:55:22 +1000983 dirty = test_and_clear_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
984 need_write = test_and_clear_page_attr(bitmap, i,
985 BITMAP_PAGE_NEEDWRITE);
986 if (dirty || need_write) {
NeilBrownd1891222012-05-22 13:55:09 +1000987 clear_page_attr(bitmap, i, BITMAP_PAGE_PENDING);
NeilBrownbdfd1142012-05-22 13:55:22 +1000988 write_page(bitmap, bitmap->storage.filemap[i], 0);
989 }
NeilBrown32a76272005-06-21 17:17:14 -0700990 }
NeilBrown4b5060d2014-09-09 14:13:51 +1000991 if (bitmap->storage.file)
992 wait_event(bitmap->write_wait,
993 atomic_read(&bitmap->pending_writes)==0);
994 else
995 md_super_wait(bitmap->mddev);
996
NeilBrownb405fe92012-05-22 13:55:15 +1000997 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrownd785a062006-06-26 00:27:48 -0700998 bitmap_file_kick(bitmap);
NeilBrown32a76272005-06-21 17:17:14 -0700999}
NeilBrownac2f40b2010-06-01 19:37:31 +10001000EXPORT_SYMBOL(bitmap_unplug);
NeilBrown32a76272005-06-21 17:17:14 -07001001
NeilBrown6a079972005-09-09 16:23:44 -07001002static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed);
NeilBrown32a76272005-06-21 17:17:14 -07001003/* * bitmap_init_from_disk -- called at bitmap_create time to initialize
1004 * the in-memory bitmap from the on-disk bitmap -- also, sets up the
1005 * memory mapping of the bitmap file
1006 * Special cases:
1007 * if there's no bitmap file, or if the bitmap file had been
1008 * previously kicked from the array, we mark all the bits as
1009 * 1's in order to cause a full resync.
NeilBrown6a079972005-09-09 16:23:44 -07001010 *
1011 * We ignore all bits for sectors that end earlier than 'start'.
1012 * This is used when reading an out-of-date bitmap...
NeilBrown32a76272005-06-21 17:17:14 -07001013 */
NeilBrown6a079972005-09-09 16:23:44 -07001014static int bitmap_init_from_disk(struct bitmap *bitmap, sector_t start)
NeilBrown32a76272005-06-21 17:17:14 -07001015{
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001016 unsigned long i, chunks, index, oldindex, bit, node_offset = 0;
NeilBrown27581e52012-05-22 13:55:08 +10001017 struct page *page = NULL;
NeilBrownd1244cb2012-05-22 13:55:12 +10001018 unsigned long bit_cnt = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001019 struct file *file;
NeilBrownd1244cb2012-05-22 13:55:12 +10001020 unsigned long offset;
NeilBrown32a76272005-06-21 17:17:14 -07001021 int outofdate;
1022 int ret = -ENOSPC;
NeilBrownea03aff2006-01-06 00:20:34 -08001023 void *paddr;
NeilBrown1ec885c2012-05-22 13:55:10 +10001024 struct bitmap_storage *store = &bitmap->storage;
NeilBrown32a76272005-06-21 17:17:14 -07001025
NeilBrown40cffcc2012-05-22 13:55:24 +10001026 chunks = bitmap->counts.chunks;
NeilBrown1ec885c2012-05-22 13:55:10 +10001027 file = store->file;
NeilBrown32a76272005-06-21 17:17:14 -07001028
NeilBrownef99bf42012-05-22 13:55:08 +10001029 if (!file && !bitmap->mddev->bitmap_info.offset) {
1030 /* No permanent bitmap - fill with '1s'. */
NeilBrown1ec885c2012-05-22 13:55:10 +10001031 store->filemap = NULL;
1032 store->file_pages = 0;
NeilBrownef99bf42012-05-22 13:55:08 +10001033 for (i = 0; i < chunks ; i++) {
1034 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001035 int needed = ((sector_t)(i+1) << (bitmap->counts.chunkshift)
NeilBrownef99bf42012-05-22 13:55:08 +10001036 >= start);
1037 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001038 (sector_t)i << bitmap->counts.chunkshift,
NeilBrownef99bf42012-05-22 13:55:08 +10001039 needed);
1040 }
1041 return 0;
1042 }
NeilBrown32a76272005-06-21 17:17:14 -07001043
NeilBrownb405fe92012-05-22 13:55:15 +10001044 outofdate = test_bit(BITMAP_STALE, &bitmap->flags);
NeilBrown32a76272005-06-21 17:17:14 -07001045 if (outofdate)
1046 printk(KERN_INFO "%s: bitmap file is out of date, doing full "
1047 "recovery\n", bmname(bitmap));
1048
NeilBrownd1244cb2012-05-22 13:55:12 +10001049 if (file && i_size_read(file->f_mapping->host) < store->bytes) {
NeilBrown32a76272005-06-21 17:17:14 -07001050 printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
NeilBrownd1244cb2012-05-22 13:55:12 +10001051 bmname(bitmap),
1052 (unsigned long) i_size_read(file->f_mapping->host),
1053 store->bytes);
NeilBrown4ad13662007-07-17 04:06:13 -07001054 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001055 }
NeilBrownbc7f77d2005-06-21 17:17:17 -07001056
NeilBrown32a76272005-06-21 17:17:14 -07001057 oldindex = ~0L;
NeilBrownd1244cb2012-05-22 13:55:12 +10001058 offset = 0;
1059 if (!bitmap->mddev->bitmap_info.external)
1060 offset = sizeof(bitmap_super_t);
NeilBrown32a76272005-06-21 17:17:14 -07001061
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001062 if (mddev_is_clustered(bitmap->mddev))
1063 node_offset = bitmap->cluster_slot * (DIV_ROUND_UP(store->bytes, PAGE_SIZE));
1064
NeilBrown32a76272005-06-21 17:17:14 -07001065 for (i = 0; i < chunks; i++) {
NeilBrownbd926c62005-11-08 21:39:32 -08001066 int b;
NeilBrown1ec885c2012-05-22 13:55:10 +10001067 index = file_page_index(&bitmap->storage, i);
1068 bit = file_page_offset(&bitmap->storage, i);
NeilBrown32a76272005-06-21 17:17:14 -07001069 if (index != oldindex) { /* this is a new page, read it in */
NeilBrownd785a062006-06-26 00:27:48 -07001070 int count;
NeilBrown32a76272005-06-21 17:17:14 -07001071 /* unmap the old page, we're done with it */
NeilBrownd1244cb2012-05-22 13:55:12 +10001072 if (index == store->file_pages-1)
1073 count = store->bytes - index * PAGE_SIZE;
NeilBrownd785a062006-06-26 00:27:48 -07001074 else
1075 count = PAGE_SIZE;
NeilBrown1ec885c2012-05-22 13:55:10 +10001076 page = store->filemap[index];
NeilBrown27581e52012-05-22 13:55:08 +10001077 if (file)
1078 ret = read_page(file, index, bitmap,
1079 count, page);
1080 else
1081 ret = read_sb_page(
1082 bitmap->mddev,
1083 bitmap->mddev->bitmap_info.offset,
1084 page,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001085 index + node_offset, count);
NeilBrown27581e52012-05-22 13:55:08 +10001086
1087 if (ret)
NeilBrown4ad13662007-07-17 04:06:13 -07001088 goto err;
NeilBrowna654b9d82005-06-21 17:17:27 -07001089
NeilBrown32a76272005-06-21 17:17:14 -07001090 oldindex = index;
NeilBrown32a76272005-06-21 17:17:14 -07001091
1092 if (outofdate) {
1093 /*
1094 * if bitmap is out of date, dirty the
NeilBrownac2f40b2010-06-01 19:37:31 +10001095 * whole page and write it out
NeilBrown32a76272005-06-21 17:17:14 -07001096 */
Cong Wangb2f46e62011-11-28 13:25:44 +08001097 paddr = kmap_atomic(page);
NeilBrownea03aff2006-01-06 00:20:34 -08001098 memset(paddr + offset, 0xff,
NeilBrown6a079972005-09-09 16:23:44 -07001099 PAGE_SIZE - offset);
Cong Wangb2f46e62011-11-28 13:25:44 +08001100 kunmap_atomic(paddr);
NeilBrown4ad13662007-07-17 04:06:13 -07001101 write_page(bitmap, page, 1);
1102
1103 ret = -EIO;
NeilBrownb405fe92012-05-22 13:55:15 +10001104 if (test_bit(BITMAP_WRITE_ERROR,
1105 &bitmap->flags))
NeilBrown4ad13662007-07-17 04:06:13 -07001106 goto err;
NeilBrown32a76272005-06-21 17:17:14 -07001107 }
NeilBrown32a76272005-06-21 17:17:14 -07001108 }
Cong Wangb2f46e62011-11-28 13:25:44 +08001109 paddr = kmap_atomic(page);
NeilBrownb405fe92012-05-22 13:55:15 +10001110 if (test_bit(BITMAP_HOSTENDIAN, &bitmap->flags))
NeilBrownea03aff2006-01-06 00:20:34 -08001111 b = test_bit(bit, paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001112 else
Akinobu Mita6b33aff2011-03-23 16:42:13 -07001113 b = test_bit_le(bit, paddr);
Cong Wangb2f46e62011-11-28 13:25:44 +08001114 kunmap_atomic(paddr);
NeilBrownbd926c62005-11-08 21:39:32 -08001115 if (b) {
NeilBrown32a76272005-06-21 17:17:14 -07001116 /* if the disk bit is set, set the memory bit */
NeilBrown40cffcc2012-05-22 13:55:24 +10001117 int needed = ((sector_t)(i+1) << bitmap->counts.chunkshift
NeilBrowndb305e52009-05-07 12:49:06 +10001118 >= start);
1119 bitmap_set_memory_bits(bitmap,
NeilBrown40cffcc2012-05-22 13:55:24 +10001120 (sector_t)i << bitmap->counts.chunkshift,
NeilBrowndb305e52009-05-07 12:49:06 +10001121 needed);
NeilBrown32a76272005-06-21 17:17:14 -07001122 bit_cnt++;
1123 }
NeilBrown27581e52012-05-22 13:55:08 +10001124 offset = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001125 }
1126
NeilBrown32a76272005-06-21 17:17:14 -07001127 printk(KERN_INFO "%s: bitmap initialized from disk: "
NeilBrownd1244cb2012-05-22 13:55:12 +10001128 "read %lu pages, set %lu of %lu bits\n",
NeilBrown1ec885c2012-05-22 13:55:10 +10001129 bmname(bitmap), store->file_pages,
NeilBrownd1244cb2012-05-22 13:55:12 +10001130 bit_cnt, chunks);
NeilBrown32a76272005-06-21 17:17:14 -07001131
NeilBrown4ad13662007-07-17 04:06:13 -07001132 return 0;
1133
1134 err:
1135 printk(KERN_INFO "%s: bitmap initialisation failed: %d\n",
1136 bmname(bitmap), ret);
NeilBrown32a76272005-06-21 17:17:14 -07001137 return ret;
1138}
1139
NeilBrowna654b9d82005-06-21 17:17:27 -07001140void bitmap_write_all(struct bitmap *bitmap)
1141{
1142 /* We don't actually write all bitmap blocks here,
1143 * just flag them as needing to be written
1144 */
NeilBrownec7a3192006-06-26 00:27:45 -07001145 int i;
NeilBrowna654b9d82005-06-21 17:17:27 -07001146
NeilBrown1ec885c2012-05-22 13:55:10 +10001147 if (!bitmap || !bitmap->storage.filemap)
NeilBrownef99bf42012-05-22 13:55:08 +10001148 return;
NeilBrown1ec885c2012-05-22 13:55:10 +10001149 if (bitmap->storage.file)
NeilBrownef99bf42012-05-22 13:55:08 +10001150 /* Only one copy, so nothing needed */
1151 return;
1152
NeilBrown1ec885c2012-05-22 13:55:10 +10001153 for (i = 0; i < bitmap->storage.file_pages; i++)
NeilBrownd1891222012-05-22 13:55:09 +10001154 set_page_attr(bitmap, i,
NeilBrownec7a3192006-06-26 00:27:45 -07001155 BITMAP_PAGE_NEEDWRITE);
NeilBrown2585f3e2011-09-21 15:37:46 +10001156 bitmap->allclean = 0;
NeilBrowna654b9d82005-06-21 17:17:27 -07001157}
1158
NeilBrown40cffcc2012-05-22 13:55:24 +10001159static void bitmap_count_page(struct bitmap_counts *bitmap,
1160 sector_t offset, int inc)
NeilBrown32a76272005-06-21 17:17:14 -07001161{
NeilBrown61a0d802012-03-19 12:46:41 +11001162 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001163 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1164 bitmap->bp[page].count += inc;
NeilBrown32a76272005-06-21 17:17:14 -07001165 bitmap_checkfree(bitmap, page);
1166}
NeilBrownbf07bb72012-05-22 13:55:06 +10001167
NeilBrown40cffcc2012-05-22 13:55:24 +10001168static void bitmap_set_pending(struct bitmap_counts *bitmap, sector_t offset)
NeilBrownbf07bb72012-05-22 13:55:06 +10001169{
1170 sector_t chunk = offset >> bitmap->chunkshift;
1171 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1172 struct bitmap_page *bp = &bitmap->bp[page];
1173
1174 if (!bp->pending)
1175 bp->pending = 1;
1176}
1177
NeilBrown40cffcc2012-05-22 13:55:24 +10001178static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001179 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001180 int create);
1181
1182/*
1183 * bitmap daemon -- periodically wakes up to clean bits and flush pages
1184 * out to disk
1185 */
1186
NeilBrownfd01b882011-10-11 16:47:53 +11001187void bitmap_daemon_work(struct mddev *mddev)
NeilBrown32a76272005-06-21 17:17:14 -07001188{
NeilBrownaa5cbd12009-12-14 12:49:46 +11001189 struct bitmap *bitmap;
NeilBrownaa3163f2005-06-21 17:17:22 -07001190 unsigned long j;
NeilBrownbf07bb72012-05-22 13:55:06 +10001191 unsigned long nextpage;
NeilBrown57dab0b2010-10-19 10:03:39 +11001192 sector_t blocks;
NeilBrown40cffcc2012-05-22 13:55:24 +10001193 struct bitmap_counts *counts;
NeilBrown32a76272005-06-21 17:17:14 -07001194
NeilBrownaa5cbd12009-12-14 12:49:46 +11001195 /* Use a mutex to guard daemon_work against
1196 * bitmap_destroy.
1197 */
NeilBrownc3d97142009-12-14 12:49:52 +11001198 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrownaa5cbd12009-12-14 12:49:46 +11001199 bitmap = mddev->bitmap;
1200 if (bitmap == NULL) {
NeilBrownc3d97142009-12-14 12:49:52 +11001201 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown4ad13662007-07-17 04:06:13 -07001202 return;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001203 }
NeilBrown42a04b52009-12-14 12:49:53 +11001204 if (time_before(jiffies, bitmap->daemon_lastrun
NeilBrown2e61ebb2011-12-23 10:17:50 +11001205 + mddev->bitmap_info.daemon_sleep))
NeilBrown7be3dfe2008-03-10 11:43:48 -07001206 goto done;
1207
NeilBrown32a76272005-06-21 17:17:14 -07001208 bitmap->daemon_lastrun = jiffies;
NeilBrown8311c292008-03-04 14:29:30 -08001209 if (bitmap->allclean) {
NeilBrown2e61ebb2011-12-23 10:17:50 +11001210 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001211 goto done;
NeilBrown8311c292008-03-04 14:29:30 -08001212 }
1213 bitmap->allclean = 1;
NeilBrown32a76272005-06-21 17:17:14 -07001214
NeilBrownbf07bb72012-05-22 13:55:06 +10001215 /* Any file-page which is PENDING now needs to be written.
1216 * So set NEEDWRITE now, then after we make any last-minute changes
1217 * we will write it.
1218 */
NeilBrown1ec885c2012-05-22 13:55:10 +10001219 for (j = 0; j < bitmap->storage.file_pages; j++)
NeilBrownbdfd1142012-05-22 13:55:22 +10001220 if (test_and_clear_page_attr(bitmap, j,
1221 BITMAP_PAGE_PENDING))
NeilBrownd1891222012-05-22 13:55:09 +10001222 set_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001223 BITMAP_PAGE_NEEDWRITE);
NeilBrownbf07bb72012-05-22 13:55:06 +10001224
1225 if (bitmap->need_sync &&
1226 mddev->bitmap_info.external == 0) {
1227 /* Arrange for superblock update as well as
1228 * other changes */
1229 bitmap_super_t *sb;
1230 bitmap->need_sync = 0;
NeilBrown1ec885c2012-05-22 13:55:10 +10001231 if (bitmap->storage.filemap) {
1232 sb = kmap_atomic(bitmap->storage.sb_page);
NeilBrownef99bf42012-05-22 13:55:08 +10001233 sb->events_cleared =
1234 cpu_to_le64(bitmap->events_cleared);
1235 kunmap_atomic(sb);
NeilBrownd1891222012-05-22 13:55:09 +10001236 set_page_attr(bitmap, 0,
NeilBrownef99bf42012-05-22 13:55:08 +10001237 BITMAP_PAGE_NEEDWRITE);
1238 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001239 }
1240 /* Now look at the bitmap counters and if any are '2' or '1',
1241 * decrement and handle accordingly.
1242 */
NeilBrown40cffcc2012-05-22 13:55:24 +10001243 counts = &bitmap->counts;
1244 spin_lock_irq(&counts->lock);
NeilBrownbf07bb72012-05-22 13:55:06 +10001245 nextpage = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001246 for (j = 0; j < counts->chunks; j++) {
NeilBrown32a76272005-06-21 17:17:14 -07001247 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001248 sector_t block = (sector_t)j << counts->chunkshift;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001249
NeilBrownbf07bb72012-05-22 13:55:06 +10001250 if (j == nextpage) {
1251 nextpage += PAGE_COUNTER_RATIO;
NeilBrown40cffcc2012-05-22 13:55:24 +10001252 if (!counts->bp[j >> PAGE_COUNTER_SHIFT].pending) {
NeilBrownbf07bb72012-05-22 13:55:06 +10001253 j |= PAGE_COUNTER_MASK;
NeilBrownaa3163f2005-06-21 17:17:22 -07001254 continue;
1255 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001256 counts->bp[j >> PAGE_COUNTER_SHIFT].pending = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001257 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001258 bmc = bitmap_get_counter(counts,
NeilBrownef99bf42012-05-22 13:55:08 +10001259 block,
NeilBrowndb305e52009-05-07 12:49:06 +10001260 &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001261
NeilBrownbf07bb72012-05-22 13:55:06 +10001262 if (!bmc) {
1263 j |= PAGE_COUNTER_MASK;
1264 continue;
1265 }
1266 if (*bmc == 1 && !bitmap->need_sync) {
1267 /* We can clear the bit */
NeilBrownbf07bb72012-05-22 13:55:06 +10001268 *bmc = 0;
NeilBrown40cffcc2012-05-22 13:55:24 +10001269 bitmap_count_page(counts, block, -1);
NeilBrownef99bf42012-05-22 13:55:08 +10001270 bitmap_file_clear_bit(bitmap, block);
NeilBrownbf07bb72012-05-22 13:55:06 +10001271 } else if (*bmc && *bmc <= 2) {
1272 *bmc = 1;
NeilBrown40cffcc2012-05-22 13:55:24 +10001273 bitmap_set_pending(counts, block);
NeilBrown2585f3e2011-09-21 15:37:46 +10001274 bitmap->allclean = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001275 }
NeilBrown32a76272005-06-21 17:17:14 -07001276 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001277 spin_unlock_irq(&counts->lock);
NeilBrown32a76272005-06-21 17:17:14 -07001278
NeilBrownbf07bb72012-05-22 13:55:06 +10001279 /* Now start writeout on any page in NEEDWRITE that isn't DIRTY.
1280 * DIRTY pages need to be written by bitmap_unplug so it can wait
1281 * for them.
1282 * If we find any DIRTY page we stop there and let bitmap_unplug
1283 * handle all the rest. This is important in the case where
1284 * the first blocking holds the superblock and it has been updated.
1285 * We mustn't write any other blocks before the superblock.
1286 */
NeilBrown62f82fa2012-05-22 13:55:21 +10001287 for (j = 0;
1288 j < bitmap->storage.file_pages
1289 && !test_bit(BITMAP_STALE, &bitmap->flags);
1290 j++) {
NeilBrownd1891222012-05-22 13:55:09 +10001291 if (test_page_attr(bitmap, j,
NeilBrownbf07bb72012-05-22 13:55:06 +10001292 BITMAP_PAGE_DIRTY))
1293 /* bitmap_unplug will handle the rest */
1294 break;
NeilBrownbdfd1142012-05-22 13:55:22 +10001295 if (test_and_clear_page_attr(bitmap, j,
1296 BITMAP_PAGE_NEEDWRITE)) {
NeilBrown1ec885c2012-05-22 13:55:10 +10001297 write_page(bitmap, bitmap->storage.filemap[j], 0);
NeilBrownbf07bb72012-05-22 13:55:06 +10001298 }
1299 }
NeilBrownbf07bb72012-05-22 13:55:06 +10001300
NeilBrown7be3dfe2008-03-10 11:43:48 -07001301 done:
NeilBrown8311c292008-03-04 14:29:30 -08001302 if (bitmap->allclean == 0)
NeilBrown2e61ebb2011-12-23 10:17:50 +11001303 mddev->thread->timeout =
1304 mddev->bitmap_info.daemon_sleep;
NeilBrownc3d97142009-12-14 12:49:52 +11001305 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrown32a76272005-06-21 17:17:14 -07001306}
1307
NeilBrown40cffcc2012-05-22 13:55:24 +10001308static bitmap_counter_t *bitmap_get_counter(struct bitmap_counts *bitmap,
NeilBrown57dab0b2010-10-19 10:03:39 +11001309 sector_t offset, sector_t *blocks,
NeilBrown32a76272005-06-21 17:17:14 -07001310 int create)
NeilBrownee305ac2009-09-23 18:06:44 +10001311__releases(bitmap->lock)
1312__acquires(bitmap->lock)
NeilBrown32a76272005-06-21 17:17:14 -07001313{
1314 /* If 'create', we might release the lock and reclaim it.
1315 * The lock must have been taken with interrupts enabled.
1316 * If !create, we don't release the lock.
1317 */
NeilBrown61a0d802012-03-19 12:46:41 +11001318 sector_t chunk = offset >> bitmap->chunkshift;
NeilBrown32a76272005-06-21 17:17:14 -07001319 unsigned long page = chunk >> PAGE_COUNTER_SHIFT;
1320 unsigned long pageoff = (chunk & PAGE_COUNTER_MASK) << COUNTER_BYTE_SHIFT;
1321 sector_t csize;
NeilBrownef425672010-06-01 19:37:33 +10001322 int err;
NeilBrown32a76272005-06-21 17:17:14 -07001323
NeilBrownef425672010-06-01 19:37:33 +10001324 err = bitmap_checkpage(bitmap, page, create);
1325
1326 if (bitmap->bp[page].hijacked ||
1327 bitmap->bp[page].map == NULL)
NeilBrown61a0d802012-03-19 12:46:41 +11001328 csize = ((sector_t)1) << (bitmap->chunkshift +
NeilBrownef425672010-06-01 19:37:33 +10001329 PAGE_COUNTER_SHIFT - 1);
1330 else
NeilBrown61a0d802012-03-19 12:46:41 +11001331 csize = ((sector_t)1) << bitmap->chunkshift;
NeilBrownef425672010-06-01 19:37:33 +10001332 *blocks = csize - (offset & (csize - 1));
1333
1334 if (err < 0)
NeilBrown32a76272005-06-21 17:17:14 -07001335 return NULL;
NeilBrownef425672010-06-01 19:37:33 +10001336
NeilBrown32a76272005-06-21 17:17:14 -07001337 /* now locked ... */
1338
1339 if (bitmap->bp[page].hijacked) { /* hijacked pointer */
1340 /* should we use the first or second counter field
1341 * of the hijacked pointer? */
1342 int hi = (pageoff > PAGE_COUNTER_MASK);
NeilBrown32a76272005-06-21 17:17:14 -07001343 return &((bitmap_counter_t *)
1344 &bitmap->bp[page].map)[hi];
NeilBrownef425672010-06-01 19:37:33 +10001345 } else /* page is allocated */
NeilBrown32a76272005-06-21 17:17:14 -07001346 return (bitmap_counter_t *)
1347 &(bitmap->bp[page].map[pageoff]);
NeilBrown32a76272005-06-21 17:17:14 -07001348}
1349
NeilBrown4b6d2872005-09-09 16:23:47 -07001350int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001351{
NeilBrownac2f40b2010-06-01 19:37:31 +10001352 if (!bitmap)
1353 return 0;
NeilBrown4b6d2872005-09-09 16:23:47 -07001354
1355 if (behind) {
Paul Clements696fcd52010-03-08 16:02:37 +11001356 int bw;
NeilBrown4b6d2872005-09-09 16:23:47 -07001357 atomic_inc(&bitmap->behind_writes);
Paul Clements696fcd52010-03-08 16:02:37 +11001358 bw = atomic_read(&bitmap->behind_writes);
1359 if (bw > bitmap->behind_writes_used)
1360 bitmap->behind_writes_used = bw;
1361
NeilBrown36a4e1f2011-10-07 14:23:17 +11001362 pr_debug("inc write-behind count %d/%lu\n",
1363 bw, bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001364 }
1365
NeilBrown32a76272005-06-21 17:17:14 -07001366 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001367 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001368 bitmap_counter_t *bmc;
1369
NeilBrown40cffcc2012-05-22 13:55:24 +10001370 spin_lock_irq(&bitmap->counts.lock);
1371 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001372 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001373 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001374 return 0;
1375 }
1376
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001377 if (unlikely(COUNTER(*bmc) == COUNTER_MAX)) {
Neil Brownda6e1a32007-02-08 14:20:37 -08001378 DEFINE_WAIT(__wait);
1379 /* note that it is safe to do the prepare_to_wait
1380 * after the test as long as we do it before dropping
1381 * the spinlock.
1382 */
1383 prepare_to_wait(&bitmap->overflow_wait, &__wait,
1384 TASK_UNINTERRUPTIBLE);
NeilBrown40cffcc2012-05-22 13:55:24 +10001385 spin_unlock_irq(&bitmap->counts.lock);
NeilBrownf54a9d02012-08-02 08:33:20 +10001386 schedule();
Neil Brownda6e1a32007-02-08 14:20:37 -08001387 finish_wait(&bitmap->overflow_wait, &__wait);
1388 continue;
1389 }
1390
NeilBrownac2f40b2010-06-01 19:37:31 +10001391 switch (*bmc) {
NeilBrown32a76272005-06-21 17:17:14 -07001392 case 0:
1393 bitmap_file_set_bit(bitmap, offset);
NeilBrown40cffcc2012-05-22 13:55:24 +10001394 bitmap_count_page(&bitmap->counts, offset, 1);
NeilBrown32a76272005-06-21 17:17:14 -07001395 /* fall through */
1396 case 1:
1397 *bmc = 2;
1398 }
Neil Brownda6e1a32007-02-08 14:20:37 -08001399
NeilBrown32a76272005-06-21 17:17:14 -07001400 (*bmc)++;
1401
NeilBrown40cffcc2012-05-22 13:55:24 +10001402 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001403
1404 offset += blocks;
1405 if (sectors > blocks)
1406 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001407 else
1408 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001409 }
1410 return 0;
1411}
NeilBrownac2f40b2010-06-01 19:37:31 +10001412EXPORT_SYMBOL(bitmap_startwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001413
1414void bitmap_endwrite(struct bitmap *bitmap, sector_t offset, unsigned long sectors,
NeilBrown4b6d2872005-09-09 16:23:47 -07001415 int success, int behind)
NeilBrown32a76272005-06-21 17:17:14 -07001416{
NeilBrownac2f40b2010-06-01 19:37:31 +10001417 if (!bitmap)
1418 return;
NeilBrown4b6d2872005-09-09 16:23:47 -07001419 if (behind) {
NeilBrowne5551902010-03-31 11:21:44 +11001420 if (atomic_dec_and_test(&bitmap->behind_writes))
1421 wake_up(&bitmap->behind_wait);
NeilBrown36a4e1f2011-10-07 14:23:17 +11001422 pr_debug("dec write-behind count %d/%lu\n",
1423 atomic_read(&bitmap->behind_writes),
1424 bitmap->mddev->bitmap_info.max_write_behind);
NeilBrown4b6d2872005-09-09 16:23:47 -07001425 }
1426
NeilBrown32a76272005-06-21 17:17:14 -07001427 while (sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001428 sector_t blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001429 unsigned long flags;
1430 bitmap_counter_t *bmc;
1431
NeilBrown40cffcc2012-05-22 13:55:24 +10001432 spin_lock_irqsave(&bitmap->counts.lock, flags);
1433 bmc = bitmap_get_counter(&bitmap->counts, offset, &blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001434 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001435 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001436 return;
1437 }
1438
NeilBrown961902c2011-12-23 09:57:48 +11001439 if (success && !bitmap->mddev->degraded &&
Neil Browna0da84f2008-06-28 08:31:22 +10001440 bitmap->events_cleared < bitmap->mddev->events) {
1441 bitmap->events_cleared = bitmap->mddev->events;
1442 bitmap->need_sync = 1;
NeilBrown5ff5aff2010-06-01 19:37:32 +10001443 sysfs_notify_dirent_safe(bitmap->sysfs_can_clear);
Neil Browna0da84f2008-06-28 08:31:22 +10001444 }
1445
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001446 if (!success && !NEEDED(*bmc))
NeilBrown32a76272005-06-21 17:17:14 -07001447 *bmc |= NEEDED_MASK;
1448
Namhyung Kim27d5ea02011-06-09 11:42:57 +10001449 if (COUNTER(*bmc) == COUNTER_MAX)
Neil Brownda6e1a32007-02-08 14:20:37 -08001450 wake_up(&bitmap->overflow_wait);
1451
NeilBrown32a76272005-06-21 17:17:14 -07001452 (*bmc)--;
NeilBrown2585f3e2011-09-21 15:37:46 +10001453 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001454 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001455 bitmap->allclean = 0;
1456 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001457 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001458 offset += blocks;
1459 if (sectors > blocks)
1460 sectors -= blocks;
NeilBrownac2f40b2010-06-01 19:37:31 +10001461 else
1462 sectors = 0;
NeilBrown32a76272005-06-21 17:17:14 -07001463 }
1464}
NeilBrownac2f40b2010-06-01 19:37:31 +10001465EXPORT_SYMBOL(bitmap_endwrite);
NeilBrown32a76272005-06-21 17:17:14 -07001466
NeilBrown57dab0b2010-10-19 10:03:39 +11001467static int __bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001468 int degraded)
NeilBrown32a76272005-06-21 17:17:14 -07001469{
1470 bitmap_counter_t *bmc;
1471 int rv;
1472 if (bitmap == NULL) {/* FIXME or bitmap set as 'failed' */
1473 *blocks = 1024;
1474 return 1; /* always resync if no bitmap */
1475 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001476 spin_lock_irq(&bitmap->counts.lock);
1477 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001478 rv = 0;
1479 if (bmc) {
1480 /* locked */
1481 if (RESYNC(*bmc))
1482 rv = 1;
1483 else if (NEEDED(*bmc)) {
1484 rv = 1;
NeilBrown6a806c52005-07-15 03:56:35 -07001485 if (!degraded) { /* don't set/clear bits if degraded */
1486 *bmc |= RESYNC_MASK;
1487 *bmc &= ~NEEDED_MASK;
1488 }
NeilBrown32a76272005-06-21 17:17:14 -07001489 }
1490 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001491 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001492 return rv;
1493}
1494
NeilBrown57dab0b2010-10-19 10:03:39 +11001495int bitmap_start_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks,
NeilBrown1187cf02009-03-31 14:27:02 +11001496 int degraded)
1497{
1498 /* bitmap_start_sync must always report on multiples of whole
1499 * pages, otherwise resync (which is very PAGE_SIZE based) will
1500 * get confused.
1501 * So call __bitmap_start_sync repeatedly (if needed) until
1502 * At least PAGE_SIZE>>9 blocks are covered.
1503 * Return the 'or' of the result.
1504 */
1505 int rv = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001506 sector_t blocks1;
NeilBrown1187cf02009-03-31 14:27:02 +11001507
1508 *blocks = 0;
1509 while (*blocks < (PAGE_SIZE>>9)) {
1510 rv |= __bitmap_start_sync(bitmap, offset,
1511 &blocks1, degraded);
1512 offset += blocks1;
1513 *blocks += blocks1;
1514 }
1515 return rv;
1516}
NeilBrownac2f40b2010-06-01 19:37:31 +10001517EXPORT_SYMBOL(bitmap_start_sync);
NeilBrown1187cf02009-03-31 14:27:02 +11001518
NeilBrown57dab0b2010-10-19 10:03:39 +11001519void bitmap_end_sync(struct bitmap *bitmap, sector_t offset, sector_t *blocks, int aborted)
NeilBrown32a76272005-06-21 17:17:14 -07001520{
1521 bitmap_counter_t *bmc;
1522 unsigned long flags;
NeilBrownac2f40b2010-06-01 19:37:31 +10001523
1524 if (bitmap == NULL) {
NeilBrown32a76272005-06-21 17:17:14 -07001525 *blocks = 1024;
1526 return;
1527 }
NeilBrown40cffcc2012-05-22 13:55:24 +10001528 spin_lock_irqsave(&bitmap->counts.lock, flags);
1529 bmc = bitmap_get_counter(&bitmap->counts, offset, blocks, 0);
NeilBrown32a76272005-06-21 17:17:14 -07001530 if (bmc == NULL)
1531 goto unlock;
1532 /* locked */
NeilBrown32a76272005-06-21 17:17:14 -07001533 if (RESYNC(*bmc)) {
1534 *bmc &= ~RESYNC_MASK;
1535
1536 if (!NEEDED(*bmc) && aborted)
1537 *bmc |= NEEDED_MASK;
1538 else {
NeilBrown2585f3e2011-09-21 15:37:46 +10001539 if (*bmc <= 2) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001540 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001541 bitmap->allclean = 0;
1542 }
NeilBrown32a76272005-06-21 17:17:14 -07001543 }
1544 }
1545 unlock:
NeilBrown40cffcc2012-05-22 13:55:24 +10001546 spin_unlock_irqrestore(&bitmap->counts.lock, flags);
NeilBrown32a76272005-06-21 17:17:14 -07001547}
NeilBrownac2f40b2010-06-01 19:37:31 +10001548EXPORT_SYMBOL(bitmap_end_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001549
1550void bitmap_close_sync(struct bitmap *bitmap)
1551{
1552 /* Sync has finished, and any bitmap chunks that weren't synced
1553 * properly have been aborted. It remains to us to clear the
1554 * RESYNC bit wherever it is still on
1555 */
1556 sector_t sector = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001557 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001558 if (!bitmap)
1559 return;
NeilBrown32a76272005-06-21 17:17:14 -07001560 while (sector < bitmap->mddev->resync_max_sectors) {
1561 bitmap_end_sync(bitmap, sector, &blocks, 0);
NeilBrownb47490c2008-02-06 01:39:50 -08001562 sector += blocks;
NeilBrown32a76272005-06-21 17:17:14 -07001563 }
1564}
NeilBrownac2f40b2010-06-01 19:37:31 +10001565EXPORT_SYMBOL(bitmap_close_sync);
NeilBrown32a76272005-06-21 17:17:14 -07001566
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001567void bitmap_cond_end_sync(struct bitmap *bitmap, sector_t sector, bool force)
NeilBrownb47490c2008-02-06 01:39:50 -08001568{
1569 sector_t s = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001570 sector_t blocks;
NeilBrownb47490c2008-02-06 01:39:50 -08001571
1572 if (!bitmap)
1573 return;
1574 if (sector == 0) {
1575 bitmap->last_end_sync = jiffies;
1576 return;
1577 }
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001578 if (!force && time_before(jiffies, (bitmap->last_end_sync
NeilBrown1b04be92009-12-14 12:49:53 +11001579 + bitmap->mddev->bitmap_info.daemon_sleep)))
NeilBrownb47490c2008-02-06 01:39:50 -08001580 return;
1581 wait_event(bitmap->mddev->recovery_wait,
1582 atomic_read(&bitmap->mddev->recovery_active) == 0);
1583
NeilBrown75d3da42011-01-14 09:14:34 +11001584 bitmap->mddev->curr_resync_completed = sector;
NeilBrown070dc6d2010-08-30 17:33:34 +10001585 set_bit(MD_CHANGE_CLEAN, &bitmap->mddev->flags);
NeilBrown40cffcc2012-05-22 13:55:24 +10001586 sector &= ~((1ULL << bitmap->counts.chunkshift) - 1);
NeilBrownb47490c2008-02-06 01:39:50 -08001587 s = 0;
1588 while (s < sector && s < bitmap->mddev->resync_max_sectors) {
1589 bitmap_end_sync(bitmap, s, &blocks, 0);
1590 s += blocks;
1591 }
1592 bitmap->last_end_sync = jiffies;
NeilBrownacb180b2009-04-14 16:28:34 +10001593 sysfs_notify(&bitmap->mddev->kobj, NULL, "sync_completed");
NeilBrownb47490c2008-02-06 01:39:50 -08001594}
NeilBrownac2f40b2010-06-01 19:37:31 +10001595EXPORT_SYMBOL(bitmap_cond_end_sync);
NeilBrownb47490c2008-02-06 01:39:50 -08001596
NeilBrown6a079972005-09-09 16:23:44 -07001597static void bitmap_set_memory_bits(struct bitmap *bitmap, sector_t offset, int needed)
NeilBrown32a76272005-06-21 17:17:14 -07001598{
1599 /* For each chunk covered by any of these sectors, set the
NeilBrownef99bf42012-05-22 13:55:08 +10001600 * counter to 2 and possibly set resync_needed. They should all
NeilBrown32a76272005-06-21 17:17:14 -07001601 * be 0 at this point
1602 */
NeilBrown193f1c92005-08-04 12:53:33 -07001603
NeilBrown57dab0b2010-10-19 10:03:39 +11001604 sector_t secs;
NeilBrown193f1c92005-08-04 12:53:33 -07001605 bitmap_counter_t *bmc;
NeilBrown40cffcc2012-05-22 13:55:24 +10001606 spin_lock_irq(&bitmap->counts.lock);
1607 bmc = bitmap_get_counter(&bitmap->counts, offset, &secs, 1);
NeilBrown193f1c92005-08-04 12:53:33 -07001608 if (!bmc) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001609 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown193f1c92005-08-04 12:53:33 -07001610 return;
NeilBrown32a76272005-06-21 17:17:14 -07001611 }
NeilBrownac2f40b2010-06-01 19:37:31 +10001612 if (!*bmc) {
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001613 *bmc = 2;
NeilBrown40cffcc2012-05-22 13:55:24 +10001614 bitmap_count_page(&bitmap->counts, offset, 1);
1615 bitmap_set_pending(&bitmap->counts, offset);
NeilBrown2585f3e2011-09-21 15:37:46 +10001616 bitmap->allclean = 0;
NeilBrown193f1c92005-08-04 12:53:33 -07001617 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001618 if (needed)
1619 *bmc |= NEEDED_MASK;
NeilBrown40cffcc2012-05-22 13:55:24 +10001620 spin_unlock_irq(&bitmap->counts.lock);
NeilBrown32a76272005-06-21 17:17:14 -07001621}
1622
Paul Clements9b1d1da2006-10-03 01:15:49 -07001623/* dirty the memory and file bits for bitmap chunks "s" to "e" */
1624void bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e)
1625{
1626 unsigned long chunk;
1627
1628 for (chunk = s; chunk <= e; chunk++) {
NeilBrown40cffcc2012-05-22 13:55:24 +10001629 sector_t sec = (sector_t)chunk << bitmap->counts.chunkshift;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001630 bitmap_set_memory_bits(bitmap, sec, 1);
1631 bitmap_file_set_bit(bitmap, sec);
NeilBrownffa23322009-12-14 12:49:56 +11001632 if (sec < bitmap->mddev->recovery_cp)
1633 /* We are asserting that the array is dirty,
1634 * so move the recovery_cp address back so
1635 * that it is obvious that it is dirty
1636 */
1637 bitmap->mddev->recovery_cp = sec;
Paul Clements9b1d1da2006-10-03 01:15:49 -07001638 }
1639}
1640
NeilBrown32a76272005-06-21 17:17:14 -07001641/*
NeilBrown6b8b3e82005-08-04 12:53:35 -07001642 * flush out any pending updates
1643 */
NeilBrownfd01b882011-10-11 16:47:53 +11001644void bitmap_flush(struct mddev *mddev)
NeilBrown6b8b3e82005-08-04 12:53:35 -07001645{
1646 struct bitmap *bitmap = mddev->bitmap;
NeilBrown42a04b52009-12-14 12:49:53 +11001647 long sleep;
NeilBrown6b8b3e82005-08-04 12:53:35 -07001648
1649 if (!bitmap) /* there was no bitmap */
1650 return;
1651
1652 /* run the daemon_work three time to ensure everything is flushed
1653 * that can be
1654 */
NeilBrown1b04be92009-12-14 12:49:53 +11001655 sleep = mddev->bitmap_info.daemon_sleep * 2;
NeilBrown42a04b52009-12-14 12:49:53 +11001656 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001657 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001658 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001659 bitmap_daemon_work(mddev);
NeilBrown42a04b52009-12-14 12:49:53 +11001660 bitmap->daemon_lastrun -= sleep;
NeilBrownaa5cbd12009-12-14 12:49:46 +11001661 bitmap_daemon_work(mddev);
NeilBrown6b8b3e82005-08-04 12:53:35 -07001662 bitmap_update_sb(bitmap);
1663}
1664
1665/*
NeilBrown32a76272005-06-21 17:17:14 -07001666 * free memory that was allocated
1667 */
NeilBrown3178b0d2005-09-09 16:23:50 -07001668static void bitmap_free(struct bitmap *bitmap)
NeilBrown32a76272005-06-21 17:17:14 -07001669{
1670 unsigned long k, pages;
1671 struct bitmap_page *bp;
NeilBrown32a76272005-06-21 17:17:14 -07001672
1673 if (!bitmap) /* there was no bitmap */
1674 return;
1675
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001676 if (bitmap->sysfs_can_clear)
1677 sysfs_put(bitmap->sysfs_can_clear);
1678
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001679 if (mddev_is_clustered(bitmap->mddev) && bitmap->mddev->cluster_info &&
1680 bitmap->cluster_slot == md_cluster_ops->slot_number(bitmap->mddev))
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001681 md_cluster_stop(bitmap->mddev);
1682
NeilBrownfae7d322012-05-22 13:55:21 +10001683 /* Shouldn't be needed - but just in case.... */
1684 wait_event(bitmap->write_wait,
1685 atomic_read(&bitmap->pending_writes) == 0);
1686
1687 /* release the bitmap file */
1688 bitmap_file_unmap(&bitmap->storage);
NeilBrown32a76272005-06-21 17:17:14 -07001689
NeilBrown40cffcc2012-05-22 13:55:24 +10001690 bp = bitmap->counts.bp;
1691 pages = bitmap->counts.pages;
NeilBrown32a76272005-06-21 17:17:14 -07001692
1693 /* free all allocated memory */
1694
NeilBrown32a76272005-06-21 17:17:14 -07001695 if (bp) /* deallocate the page memory */
1696 for (k = 0; k < pages; k++)
1697 if (bp[k].map && !bp[k].hijacked)
1698 kfree(bp[k].map);
1699 kfree(bp);
1700 kfree(bitmap);
1701}
NeilBrownaa5cbd12009-12-14 12:49:46 +11001702
NeilBrownfd01b882011-10-11 16:47:53 +11001703void bitmap_destroy(struct mddev *mddev)
NeilBrown3178b0d2005-09-09 16:23:50 -07001704{
1705 struct bitmap *bitmap = mddev->bitmap;
1706
1707 if (!bitmap) /* there was no bitmap */
1708 return;
1709
NeilBrownc3d97142009-12-14 12:49:52 +11001710 mutex_lock(&mddev->bitmap_info.mutex);
NeilBrown978a7a42014-12-15 12:56:58 +11001711 spin_lock(&mddev->lock);
NeilBrown3178b0d2005-09-09 16:23:50 -07001712 mddev->bitmap = NULL; /* disconnect from the md device */
NeilBrown978a7a42014-12-15 12:56:58 +11001713 spin_unlock(&mddev->lock);
NeilBrownc3d97142009-12-14 12:49:52 +11001714 mutex_unlock(&mddev->bitmap_info.mutex);
NeilBrownb15c2e52006-01-06 00:20:16 -08001715 if (mddev->thread)
1716 mddev->thread->timeout = MAX_SCHEDULE_TIMEOUT;
NeilBrown3178b0d2005-09-09 16:23:50 -07001717
1718 bitmap_free(bitmap);
1719}
NeilBrown32a76272005-06-21 17:17:14 -07001720
1721/*
1722 * initialize the bitmap structure
1723 * if this returns an error, bitmap_destroy must be called to do clean up
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001724 * once mddev->bitmap is set
NeilBrown32a76272005-06-21 17:17:14 -07001725 */
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001726struct bitmap *bitmap_create(struct mddev *mddev, int slot)
NeilBrown32a76272005-06-21 17:17:14 -07001727{
1728 struct bitmap *bitmap;
NeilBrown1f593902009-04-20 11:50:24 +10001729 sector_t blocks = mddev->resync_max_sectors;
NeilBrownc3d97142009-12-14 12:49:52 +11001730 struct file *file = mddev->bitmap_info.file;
NeilBrown32a76272005-06-21 17:17:14 -07001731 int err;
Tejun Heo324a56e2013-12-11 14:11:53 -05001732 struct kernfs_node *bm = NULL;
NeilBrown32a76272005-06-21 17:17:14 -07001733
Alexey Dobriyan5f6e3c832006-10-11 01:22:26 -07001734 BUILD_BUG_ON(sizeof(bitmap_super_t) != 256);
NeilBrown32a76272005-06-21 17:17:14 -07001735
NeilBrownc3d97142009-12-14 12:49:52 +11001736 BUG_ON(file && mddev->bitmap_info.offset);
NeilBrowna654b9d82005-06-21 17:17:27 -07001737
NeilBrown9ffae0c2006-01-06 00:20:32 -08001738 bitmap = kzalloc(sizeof(*bitmap), GFP_KERNEL);
NeilBrown32a76272005-06-21 17:17:14 -07001739 if (!bitmap)
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001740 return ERR_PTR(-ENOMEM);
NeilBrown32a76272005-06-21 17:17:14 -07001741
NeilBrown40cffcc2012-05-22 13:55:24 +10001742 spin_lock_init(&bitmap->counts.lock);
NeilBrownce25c312006-06-26 00:27:49 -07001743 atomic_set(&bitmap->pending_writes, 0);
1744 init_waitqueue_head(&bitmap->write_wait);
Neil Brownda6e1a32007-02-08 14:20:37 -08001745 init_waitqueue_head(&bitmap->overflow_wait);
NeilBrowne5551902010-03-31 11:21:44 +11001746 init_waitqueue_head(&bitmap->behind_wait);
NeilBrownce25c312006-06-26 00:27:49 -07001747
NeilBrown32a76272005-06-21 17:17:14 -07001748 bitmap->mddev = mddev;
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001749 bitmap->cluster_slot = slot;
NeilBrown32a76272005-06-21 17:17:14 -07001750
NeilBrown5ff5aff2010-06-01 19:37:32 +10001751 if (mddev->kobj.sd)
Tejun Heo388975c2013-09-11 23:19:13 -04001752 bm = sysfs_get_dirent(mddev->kobj.sd, "bitmap");
NeilBrownece5cff2009-12-14 12:49:56 +11001753 if (bm) {
Tejun Heo388975c2013-09-11 23:19:13 -04001754 bitmap->sysfs_can_clear = sysfs_get_dirent(bm, "can_clear");
NeilBrownece5cff2009-12-14 12:49:56 +11001755 sysfs_put(bm);
1756 } else
1757 bitmap->sysfs_can_clear = NULL;
1758
NeilBrown1ec885c2012-05-22 13:55:10 +10001759 bitmap->storage.file = file;
NeilBrownce25c312006-06-26 00:27:49 -07001760 if (file) {
1761 get_file(file);
NeilBrownae8fa282009-10-16 15:56:01 +11001762 /* As future accesses to this file will use bmap,
1763 * and bypass the page cache, we must sync the file
1764 * first.
1765 */
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001766 vfs_fsync(file, 1);
NeilBrownce25c312006-06-26 00:27:49 -07001767 }
NeilBrown42a04b52009-12-14 12:49:53 +11001768 /* read superblock from bitmap file (this sets mddev->bitmap_info.chunksize) */
Jonathan Brassow9c810752011-06-08 17:59:30 -05001769 if (!mddev->bitmap_info.external) {
1770 /*
1771 * If 'MD_ARRAY_FIRST_USE' is set, then device-mapper is
1772 * instructing us to create a new on-disk bitmap instance.
1773 */
1774 if (test_and_clear_bit(MD_ARRAY_FIRST_USE, &mddev->flags))
1775 err = bitmap_new_disk_sb(bitmap);
1776 else
1777 err = bitmap_read_sb(bitmap);
1778 } else {
NeilBrownece5cff2009-12-14 12:49:56 +11001779 err = 0;
1780 if (mddev->bitmap_info.chunksize == 0 ||
1781 mddev->bitmap_info.daemon_sleep == 0)
1782 /* chunksize and time_base need to be
1783 * set first. */
1784 err = -EINVAL;
1785 }
NeilBrown32a76272005-06-21 17:17:14 -07001786 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001787 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001788
NeilBrown624ce4f2009-12-14 12:49:56 +11001789 bitmap->daemon_lastrun = jiffies;
NeilBrownd60b4792012-05-22 13:55:25 +10001790 err = bitmap_resize(bitmap, blocks, mddev->bitmap_info.chunksize, 1);
1791 if (err)
NeilBrown3178b0d2005-09-09 16:23:50 -07001792 goto error;
NeilBrown32a76272005-06-21 17:17:14 -07001793
NeilBrown69e51b42010-06-01 19:37:35 +10001794 printk(KERN_INFO "created bitmap (%lu pages) for device %s\n",
NeilBrownd60b4792012-05-22 13:55:25 +10001795 bitmap->counts.pages, bmname(bitmap));
NeilBrown69e51b42010-06-01 19:37:35 +10001796
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001797 err = test_bit(BITMAP_WRITE_ERROR, &bitmap->flags) ? -EIO : 0;
1798 if (err)
1799 goto error;
NeilBrown69e51b42010-06-01 19:37:35 +10001800
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001801 return bitmap;
NeilBrown69e51b42010-06-01 19:37:35 +10001802 error:
1803 bitmap_free(bitmap);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05001804 return ERR_PTR(err);
NeilBrown69e51b42010-06-01 19:37:35 +10001805}
1806
NeilBrownfd01b882011-10-11 16:47:53 +11001807int bitmap_load(struct mddev *mddev)
NeilBrown69e51b42010-06-01 19:37:35 +10001808{
1809 int err = 0;
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001810 sector_t start = 0;
NeilBrown69e51b42010-06-01 19:37:35 +10001811 sector_t sector = 0;
1812 struct bitmap *bitmap = mddev->bitmap;
1813
1814 if (!bitmap)
1815 goto out;
1816
1817 /* Clear out old bitmap info first: Either there is none, or we
1818 * are resuming after someone else has possibly changed things,
1819 * so we should forget old cached info.
1820 * All chunks should be clean, but some might need_sync.
1821 */
1822 while (sector < mddev->resync_max_sectors) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001823 sector_t blocks;
NeilBrown69e51b42010-06-01 19:37:35 +10001824 bitmap_start_sync(bitmap, sector, &blocks, 0);
1825 sector += blocks;
1826 }
1827 bitmap_close_sync(bitmap);
1828
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001829 if (mddev->degraded == 0
1830 || bitmap->events_cleared == mddev->events)
1831 /* no need to keep dirty bits to optimise a
1832 * re-add of a missing device */
1833 start = mddev->recovery_cp;
NeilBrown69e51b42010-06-01 19:37:35 +10001834
NeilBrownafbaa902012-04-12 16:05:06 +10001835 mutex_lock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001836 err = bitmap_init_from_disk(bitmap, start);
NeilBrownafbaa902012-04-12 16:05:06 +10001837 mutex_unlock(&mddev->bitmap_info.mutex);
Jonathan Brassow3520fa42011-07-27 11:00:37 +10001838
NeilBrown32a76272005-06-21 17:17:14 -07001839 if (err)
NeilBrown69e51b42010-06-01 19:37:35 +10001840 goto out;
NeilBrownb405fe92012-05-22 13:55:15 +10001841 clear_bit(BITMAP_STALE, &bitmap->flags);
NeilBrownef99bf42012-05-22 13:55:08 +10001842
1843 /* Kick recovery in case any bits were set */
1844 set_bit(MD_RECOVERY_NEEDED, &bitmap->mddev->recovery);
NeilBrown3178b0d2005-09-09 16:23:50 -07001845
NeilBrown1b04be92009-12-14 12:49:53 +11001846 mddev->thread->timeout = mddev->bitmap_info.daemon_sleep;
NeilBrown9cd30fd2009-12-14 12:49:54 +11001847 md_wakeup_thread(mddev->thread);
NeilBrownb15c2e52006-01-06 00:20:16 -08001848
NeilBrown4ad13662007-07-17 04:06:13 -07001849 bitmap_update_sb(bitmap);
1850
NeilBrownb405fe92012-05-22 13:55:15 +10001851 if (test_bit(BITMAP_WRITE_ERROR, &bitmap->flags))
NeilBrown69e51b42010-06-01 19:37:35 +10001852 err = -EIO;
1853out:
NeilBrown3178b0d2005-09-09 16:23:50 -07001854 return err;
NeilBrown32a76272005-06-21 17:17:14 -07001855}
NeilBrown69e51b42010-06-01 19:37:35 +10001856EXPORT_SYMBOL_GPL(bitmap_load);
NeilBrown32a76272005-06-21 17:17:14 -07001857
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001858/* Loads the bitmap associated with slot and copies the resync information
1859 * to our bitmap
1860 */
1861int bitmap_copy_from_slot(struct mddev *mddev, int slot,
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001862 sector_t *low, sector_t *high, bool clear_bits)
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001863{
1864 int rv = 0, i, j;
1865 sector_t block, lo = 0, hi = 0;
1866 struct bitmap_counts *counts;
1867 struct bitmap *bitmap = bitmap_create(mddev, slot);
1868
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001869 if (IS_ERR(bitmap)) {
1870 bitmap_free(bitmap);
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001871 return PTR_ERR(bitmap);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08001872 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001873
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001874 rv = bitmap_init_from_disk(bitmap, 0);
1875 if (rv)
1876 goto err;
1877
1878 counts = &bitmap->counts;
1879 for (j = 0; j < counts->chunks; j++) {
1880 block = (sector_t)j << counts->chunkshift;
1881 if (bitmap_file_test_bit(bitmap, block)) {
1882 if (!lo)
1883 lo = block;
1884 hi = block;
1885 bitmap_file_clear_bit(bitmap, block);
1886 bitmap_set_memory_bits(mddev->bitmap, block, 1);
1887 bitmap_file_set_bit(mddev->bitmap, block);
1888 }
1889 }
1890
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001891 if (clear_bits) {
1892 bitmap_update_sb(bitmap);
1893 /* Setting this for the ev_page should be enough.
1894 * And we do not require both write_all and PAGE_DIRT either
1895 */
1896 for (i = 0; i < bitmap->storage.file_pages; i++)
1897 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
1898 bitmap_write_all(bitmap);
1899 bitmap_unplug(bitmap);
1900 }
Goldwyn Rodrigues11dd35d2014-06-07 00:36:26 -05001901 *low = lo;
1902 *high = hi;
1903err:
1904 bitmap_free(bitmap);
1905 return rv;
1906}
1907EXPORT_SYMBOL_GPL(bitmap_copy_from_slot);
1908
1909
NeilBrown57148962012-03-19 12:46:40 +11001910void bitmap_status(struct seq_file *seq, struct bitmap *bitmap)
1911{
1912 unsigned long chunk_kb;
NeilBrown40cffcc2012-05-22 13:55:24 +10001913 struct bitmap_counts *counts;
NeilBrown57148962012-03-19 12:46:40 +11001914
1915 if (!bitmap)
1916 return;
1917
NeilBrown40cffcc2012-05-22 13:55:24 +10001918 counts = &bitmap->counts;
1919
NeilBrown57148962012-03-19 12:46:40 +11001920 chunk_kb = bitmap->mddev->bitmap_info.chunksize >> 10;
1921 seq_printf(seq, "bitmap: %lu/%lu pages [%luKB], "
1922 "%lu%s chunk",
NeilBrown40cffcc2012-05-22 13:55:24 +10001923 counts->pages - counts->missing_pages,
1924 counts->pages,
1925 (counts->pages - counts->missing_pages)
NeilBrown57148962012-03-19 12:46:40 +11001926 << (PAGE_SHIFT - 10),
1927 chunk_kb ? chunk_kb : bitmap->mddev->bitmap_info.chunksize,
1928 chunk_kb ? "KB" : "B");
NeilBrown1ec885c2012-05-22 13:55:10 +10001929 if (bitmap->storage.file) {
NeilBrown57148962012-03-19 12:46:40 +11001930 seq_printf(seq, ", file: ");
Miklos Szeredi2726d562015-06-19 10:30:28 +02001931 seq_file_path(seq, bitmap->storage.file, " \t\n");
NeilBrown57148962012-03-19 12:46:40 +11001932 }
1933
1934 seq_printf(seq, "\n");
NeilBrown57148962012-03-19 12:46:40 +11001935}
1936
NeilBrownd60b4792012-05-22 13:55:25 +10001937int bitmap_resize(struct bitmap *bitmap, sector_t blocks,
1938 int chunksize, int init)
1939{
1940 /* If chunk_size is 0, choose an appropriate chunk size.
1941 * Then possibly allocate new storage space.
1942 * Then quiesce, copy bits, replace bitmap, and re-start
1943 *
1944 * This function is called both to set up the initial bitmap
1945 * and to resize the bitmap while the array is active.
1946 * If this happens as a result of the array being resized,
1947 * chunksize will be zero, and we need to choose a suitable
1948 * chunksize, otherwise we use what we are given.
1949 */
1950 struct bitmap_storage store;
1951 struct bitmap_counts old_counts;
1952 unsigned long chunks;
1953 sector_t block;
1954 sector_t old_blocks, new_blocks;
1955 int chunkshift;
1956 int ret = 0;
1957 long pages;
1958 struct bitmap_page *new_bp;
1959
1960 if (chunksize == 0) {
1961 /* If there is enough space, leave the chunk size unchanged,
1962 * else increase by factor of two until there is enough space.
1963 */
1964 long bytes;
1965 long space = bitmap->mddev->bitmap_info.space;
1966
1967 if (space == 0) {
1968 /* We don't know how much space there is, so limit
1969 * to current size - in sectors.
1970 */
1971 bytes = DIV_ROUND_UP(bitmap->counts.chunks, 8);
1972 if (!bitmap->mddev->bitmap_info.external)
1973 bytes += sizeof(bitmap_super_t);
1974 space = DIV_ROUND_UP(bytes, 512);
1975 bitmap->mddev->bitmap_info.space = space;
1976 }
1977 chunkshift = bitmap->counts.chunkshift;
1978 chunkshift--;
1979 do {
1980 /* 'chunkshift' is shift from block size to chunk size */
1981 chunkshift++;
1982 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1983 bytes = DIV_ROUND_UP(chunks, 8);
1984 if (!bitmap->mddev->bitmap_info.external)
1985 bytes += sizeof(bitmap_super_t);
1986 } while (bytes > (space << 9));
1987 } else
1988 chunkshift = ffz(~chunksize) - BITMAP_BLOCK_SHIFT;
1989
1990 chunks = DIV_ROUND_UP_SECTOR_T(blocks, 1 << chunkshift);
1991 memset(&store, 0, sizeof(store));
1992 if (bitmap->mddev->bitmap_info.offset || bitmap->mddev->bitmap_info.file)
1993 ret = bitmap_storage_alloc(&store, chunks,
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -05001994 !bitmap->mddev->bitmap_info.external,
NeilBrownda6fb7a2015-10-01 16:03:38 +10001995 mddev_is_clustered(bitmap->mddev)
1996 ? bitmap->cluster_slot : 0);
NeilBrownd60b4792012-05-22 13:55:25 +10001997 if (ret)
1998 goto err;
1999
2000 pages = DIV_ROUND_UP(chunks, PAGE_COUNTER_RATIO);
2001
2002 new_bp = kzalloc(pages * sizeof(*new_bp), GFP_KERNEL);
2003 ret = -ENOMEM;
2004 if (!new_bp) {
2005 bitmap_file_unmap(&store);
2006 goto err;
2007 }
2008
2009 if (!init)
2010 bitmap->mddev->pers->quiesce(bitmap->mddev, 1);
2011
2012 store.file = bitmap->storage.file;
2013 bitmap->storage.file = NULL;
2014
2015 if (store.sb_page && bitmap->storage.sb_page)
2016 memcpy(page_address(store.sb_page),
2017 page_address(bitmap->storage.sb_page),
2018 sizeof(bitmap_super_t));
2019 bitmap_file_unmap(&bitmap->storage);
2020 bitmap->storage = store;
2021
2022 old_counts = bitmap->counts;
2023 bitmap->counts.bp = new_bp;
2024 bitmap->counts.pages = pages;
2025 bitmap->counts.missing_pages = pages;
2026 bitmap->counts.chunkshift = chunkshift;
2027 bitmap->counts.chunks = chunks;
2028 bitmap->mddev->bitmap_info.chunksize = 1 << (chunkshift +
2029 BITMAP_BLOCK_SHIFT);
2030
2031 blocks = min(old_counts.chunks << old_counts.chunkshift,
2032 chunks << chunkshift);
2033
2034 spin_lock_irq(&bitmap->counts.lock);
2035 for (block = 0; block < blocks; ) {
2036 bitmap_counter_t *bmc_old, *bmc_new;
2037 int set;
2038
2039 bmc_old = bitmap_get_counter(&old_counts, block,
2040 &old_blocks, 0);
2041 set = bmc_old && NEEDED(*bmc_old);
2042
2043 if (set) {
2044 bmc_new = bitmap_get_counter(&bitmap->counts, block,
2045 &new_blocks, 1);
2046 if (*bmc_new == 0) {
2047 /* need to set on-disk bits too. */
2048 sector_t end = block + new_blocks;
2049 sector_t start = block >> chunkshift;
2050 start <<= chunkshift;
2051 while (start < end) {
2052 bitmap_file_set_bit(bitmap, block);
2053 start += 1 << chunkshift;
2054 }
2055 *bmc_new = 2;
2056 bitmap_count_page(&bitmap->counts,
2057 block, 1);
2058 bitmap_set_pending(&bitmap->counts,
2059 block);
2060 }
2061 *bmc_new |= NEEDED_MASK;
2062 if (new_blocks < old_blocks)
2063 old_blocks = new_blocks;
2064 }
2065 block += old_blocks;
2066 }
2067
2068 if (!init) {
2069 int i;
2070 while (block < (chunks << chunkshift)) {
2071 bitmap_counter_t *bmc;
2072 bmc = bitmap_get_counter(&bitmap->counts, block,
2073 &new_blocks, 1);
2074 if (bmc) {
2075 /* new space. It needs to be resynced, so
2076 * we set NEEDED_MASK.
2077 */
2078 if (*bmc == 0) {
2079 *bmc = NEEDED_MASK | 2;
2080 bitmap_count_page(&bitmap->counts,
2081 block, 1);
2082 bitmap_set_pending(&bitmap->counts,
2083 block);
2084 }
2085 }
2086 block += new_blocks;
2087 }
2088 for (i = 0; i < bitmap->storage.file_pages; i++)
2089 set_page_attr(bitmap, i, BITMAP_PAGE_DIRTY);
2090 }
2091 spin_unlock_irq(&bitmap->counts.lock);
2092
2093 if (!init) {
2094 bitmap_unplug(bitmap);
2095 bitmap->mddev->pers->quiesce(bitmap->mddev, 0);
2096 }
2097 ret = 0;
2098err:
2099 return ret;
2100}
2101EXPORT_SYMBOL_GPL(bitmap_resize);
2102
NeilBrown43a70502009-12-14 12:49:55 +11002103static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002104location_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002105{
2106 ssize_t len;
NeilBrownac2f40b2010-06-01 19:37:31 +10002107 if (mddev->bitmap_info.file)
NeilBrown43a70502009-12-14 12:49:55 +11002108 len = sprintf(page, "file");
NeilBrownac2f40b2010-06-01 19:37:31 +10002109 else if (mddev->bitmap_info.offset)
NeilBrown43a70502009-12-14 12:49:55 +11002110 len = sprintf(page, "%+lld", (long long)mddev->bitmap_info.offset);
NeilBrownac2f40b2010-06-01 19:37:31 +10002111 else
NeilBrown43a70502009-12-14 12:49:55 +11002112 len = sprintf(page, "none");
2113 len += sprintf(page+len, "\n");
2114 return len;
2115}
2116
2117static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002118location_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002119{
2120
2121 if (mddev->pers) {
2122 if (!mddev->pers->quiesce)
2123 return -EBUSY;
2124 if (mddev->recovery || mddev->sync_thread)
2125 return -EBUSY;
2126 }
2127
2128 if (mddev->bitmap || mddev->bitmap_info.file ||
2129 mddev->bitmap_info.offset) {
2130 /* bitmap already configured. Only option is to clear it */
2131 if (strncmp(buf, "none", 4) != 0)
2132 return -EBUSY;
2133 if (mddev->pers) {
2134 mddev->pers->quiesce(mddev, 1);
2135 bitmap_destroy(mddev);
2136 mddev->pers->quiesce(mddev, 0);
2137 }
2138 mddev->bitmap_info.offset = 0;
2139 if (mddev->bitmap_info.file) {
2140 struct file *f = mddev->bitmap_info.file;
2141 mddev->bitmap_info.file = NULL;
NeilBrown43a70502009-12-14 12:49:55 +11002142 fput(f);
2143 }
2144 } else {
2145 /* No bitmap, OK to set a location */
2146 long long offset;
2147 if (strncmp(buf, "none", 4) == 0)
2148 /* nothing to be done */;
2149 else if (strncmp(buf, "file:", 5) == 0) {
2150 /* Not supported yet */
2151 return -EINVAL;
2152 } else {
2153 int rv;
2154 if (buf[0] == '+')
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002155 rv = kstrtoll(buf+1, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002156 else
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002157 rv = kstrtoll(buf, 10, &offset);
NeilBrown43a70502009-12-14 12:49:55 +11002158 if (rv)
2159 return rv;
2160 if (offset == 0)
2161 return -EINVAL;
NeilBrownece5cff2009-12-14 12:49:56 +11002162 if (mddev->bitmap_info.external == 0 &&
2163 mddev->major_version == 0 &&
NeilBrown43a70502009-12-14 12:49:55 +11002164 offset != mddev->bitmap_info.default_offset)
2165 return -EINVAL;
2166 mddev->bitmap_info.offset = offset;
2167 if (mddev->pers) {
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002168 struct bitmap *bitmap;
NeilBrown43a70502009-12-14 12:49:55 +11002169 mddev->pers->quiesce(mddev, 1);
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002170 bitmap = bitmap_create(mddev, -1);
2171 if (IS_ERR(bitmap))
2172 rv = PTR_ERR(bitmap);
2173 else {
2174 mddev->bitmap = bitmap;
NeilBrown4474ca42012-03-19 12:46:37 +11002175 rv = bitmap_load(mddev);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002176 if (rv)
Goldwyn Rodriguesf9209a32014-06-06 12:43:49 -05002177 mddev->bitmap_info.offset = 0;
NeilBrown43a70502009-12-14 12:49:55 +11002178 }
2179 mddev->pers->quiesce(mddev, 0);
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002180 if (rv) {
2181 bitmap_destroy(mddev);
NeilBrown43a70502009-12-14 12:49:55 +11002182 return rv;
Guoqing Jiangf9a67b12016-04-01 17:08:49 +08002183 }
NeilBrown43a70502009-12-14 12:49:55 +11002184 }
2185 }
2186 }
2187 if (!mddev->external) {
2188 /* Ensure new bitmap info is stored in
2189 * metadata promptly.
2190 */
2191 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2192 md_wakeup_thread(mddev->thread);
2193 }
2194 return len;
2195}
2196
2197static struct md_sysfs_entry bitmap_location =
2198__ATTR(location, S_IRUGO|S_IWUSR, location_show, location_store);
2199
NeilBrown6409bb02012-05-22 13:55:07 +10002200/* 'bitmap/space' is the space available at 'location' for the
2201 * bitmap. This allows the kernel to know when it is safe to
2202 * resize the bitmap to match a resized array.
2203 */
2204static ssize_t
2205space_show(struct mddev *mddev, char *page)
2206{
2207 return sprintf(page, "%lu\n", mddev->bitmap_info.space);
2208}
2209
2210static ssize_t
2211space_store(struct mddev *mddev, const char *buf, size_t len)
2212{
2213 unsigned long sectors;
2214 int rv;
2215
2216 rv = kstrtoul(buf, 10, &sectors);
2217 if (rv)
2218 return rv;
2219
2220 if (sectors == 0)
2221 return -EINVAL;
2222
2223 if (mddev->bitmap &&
NeilBrown9b1215c2012-05-22 13:55:11 +10002224 sectors < (mddev->bitmap->storage.bytes + 511) >> 9)
NeilBrown6409bb02012-05-22 13:55:07 +10002225 return -EFBIG; /* Bitmap is too big for this small space */
2226
2227 /* could make sure it isn't too big, but that isn't really
2228 * needed - user-space should be careful.
2229 */
2230 mddev->bitmap_info.space = sectors;
2231 return len;
2232}
2233
2234static struct md_sysfs_entry bitmap_space =
2235__ATTR(space, S_IRUGO|S_IWUSR, space_show, space_store);
2236
NeilBrown43a70502009-12-14 12:49:55 +11002237static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002238timeout_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002239{
2240 ssize_t len;
2241 unsigned long secs = mddev->bitmap_info.daemon_sleep / HZ;
2242 unsigned long jifs = mddev->bitmap_info.daemon_sleep % HZ;
NeilBrownac2f40b2010-06-01 19:37:31 +10002243
NeilBrown43a70502009-12-14 12:49:55 +11002244 len = sprintf(page, "%lu", secs);
2245 if (jifs)
2246 len += sprintf(page+len, ".%03u", jiffies_to_msecs(jifs));
2247 len += sprintf(page+len, "\n");
2248 return len;
2249}
2250
2251static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002252timeout_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002253{
2254 /* timeout can be set at any time */
2255 unsigned long timeout;
2256 int rv = strict_strtoul_scaled(buf, &timeout, 4);
2257 if (rv)
2258 return rv;
2259
2260 /* just to make sure we don't overflow... */
2261 if (timeout >= LONG_MAX / HZ)
2262 return -EINVAL;
2263
2264 timeout = timeout * HZ / 10000;
2265
2266 if (timeout >= MAX_SCHEDULE_TIMEOUT)
2267 timeout = MAX_SCHEDULE_TIMEOUT-1;
2268 if (timeout < 1)
2269 timeout = 1;
2270 mddev->bitmap_info.daemon_sleep = timeout;
2271 if (mddev->thread) {
2272 /* if thread->timeout is MAX_SCHEDULE_TIMEOUT, then
2273 * the bitmap is all clean and we don't need to
2274 * adjust the timeout right now
2275 */
2276 if (mddev->thread->timeout < MAX_SCHEDULE_TIMEOUT) {
2277 mddev->thread->timeout = timeout;
2278 md_wakeup_thread(mddev->thread);
2279 }
2280 }
2281 return len;
2282}
2283
2284static struct md_sysfs_entry bitmap_timeout =
2285__ATTR(time_base, S_IRUGO|S_IWUSR, timeout_show, timeout_store);
2286
2287static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002288backlog_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002289{
2290 return sprintf(page, "%lu\n", mddev->bitmap_info.max_write_behind);
2291}
2292
2293static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002294backlog_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002295{
2296 unsigned long backlog;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002297 int rv = kstrtoul(buf, 10, &backlog);
NeilBrown43a70502009-12-14 12:49:55 +11002298 if (rv)
2299 return rv;
2300 if (backlog > COUNTER_MAX)
2301 return -EINVAL;
2302 mddev->bitmap_info.max_write_behind = backlog;
2303 return len;
2304}
2305
2306static struct md_sysfs_entry bitmap_backlog =
2307__ATTR(backlog, S_IRUGO|S_IWUSR, backlog_show, backlog_store);
2308
2309static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002310chunksize_show(struct mddev *mddev, char *page)
NeilBrown43a70502009-12-14 12:49:55 +11002311{
2312 return sprintf(page, "%lu\n", mddev->bitmap_info.chunksize);
2313}
2314
2315static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002316chunksize_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrown43a70502009-12-14 12:49:55 +11002317{
2318 /* Can only be changed when no bitmap is active */
2319 int rv;
2320 unsigned long csize;
2321 if (mddev->bitmap)
2322 return -EBUSY;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09002323 rv = kstrtoul(buf, 10, &csize);
NeilBrown43a70502009-12-14 12:49:55 +11002324 if (rv)
2325 return rv;
2326 if (csize < 512 ||
2327 !is_power_of_2(csize))
2328 return -EINVAL;
2329 mddev->bitmap_info.chunksize = csize;
2330 return len;
2331}
2332
2333static struct md_sysfs_entry bitmap_chunksize =
2334__ATTR(chunksize, S_IRUGO|S_IWUSR, chunksize_show, chunksize_store);
2335
NeilBrownfd01b882011-10-11 16:47:53 +11002336static ssize_t metadata_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002337{
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002338 if (mddev_is_clustered(mddev))
2339 return sprintf(page, "clustered\n");
NeilBrownece5cff2009-12-14 12:49:56 +11002340 return sprintf(page, "%s\n", (mddev->bitmap_info.external
2341 ? "external" : "internal"));
2342}
2343
NeilBrownfd01b882011-10-11 16:47:53 +11002344static ssize_t metadata_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002345{
2346 if (mddev->bitmap ||
2347 mddev->bitmap_info.file ||
2348 mddev->bitmap_info.offset)
2349 return -EBUSY;
2350 if (strncmp(buf, "external", 8) == 0)
2351 mddev->bitmap_info.external = 1;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05002352 else if ((strncmp(buf, "internal", 8) == 0) ||
2353 (strncmp(buf, "clustered", 9) == 0))
NeilBrownece5cff2009-12-14 12:49:56 +11002354 mddev->bitmap_info.external = 0;
2355 else
2356 return -EINVAL;
2357 return len;
2358}
2359
2360static struct md_sysfs_entry bitmap_metadata =
2361__ATTR(metadata, S_IRUGO|S_IWUSR, metadata_show, metadata_store);
2362
NeilBrownfd01b882011-10-11 16:47:53 +11002363static ssize_t can_clear_show(struct mddev *mddev, char *page)
NeilBrownece5cff2009-12-14 12:49:56 +11002364{
2365 int len;
NeilBrownb7b17c92014-12-15 12:56:59 +11002366 spin_lock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002367 if (mddev->bitmap)
2368 len = sprintf(page, "%s\n", (mddev->bitmap->need_sync ?
2369 "false" : "true"));
2370 else
2371 len = sprintf(page, "\n");
NeilBrownb7b17c92014-12-15 12:56:59 +11002372 spin_unlock(&mddev->lock);
NeilBrownece5cff2009-12-14 12:49:56 +11002373 return len;
2374}
2375
NeilBrownfd01b882011-10-11 16:47:53 +11002376static ssize_t can_clear_store(struct mddev *mddev, const char *buf, size_t len)
NeilBrownece5cff2009-12-14 12:49:56 +11002377{
2378 if (mddev->bitmap == NULL)
2379 return -ENOENT;
2380 if (strncmp(buf, "false", 5) == 0)
2381 mddev->bitmap->need_sync = 1;
2382 else if (strncmp(buf, "true", 4) == 0) {
2383 if (mddev->degraded)
2384 return -EBUSY;
2385 mddev->bitmap->need_sync = 0;
2386 } else
2387 return -EINVAL;
2388 return len;
2389}
2390
2391static struct md_sysfs_entry bitmap_can_clear =
2392__ATTR(can_clear, S_IRUGO|S_IWUSR, can_clear_show, can_clear_store);
2393
Paul Clements696fcd52010-03-08 16:02:37 +11002394static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002395behind_writes_used_show(struct mddev *mddev, char *page)
Paul Clements696fcd52010-03-08 16:02:37 +11002396{
NeilBrownb7b17c92014-12-15 12:56:59 +11002397 ssize_t ret;
2398 spin_lock(&mddev->lock);
Paul Clements696fcd52010-03-08 16:02:37 +11002399 if (mddev->bitmap == NULL)
NeilBrownb7b17c92014-12-15 12:56:59 +11002400 ret = sprintf(page, "0\n");
2401 else
2402 ret = sprintf(page, "%lu\n",
2403 mddev->bitmap->behind_writes_used);
2404 spin_unlock(&mddev->lock);
2405 return ret;
Paul Clements696fcd52010-03-08 16:02:37 +11002406}
2407
2408static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11002409behind_writes_used_reset(struct mddev *mddev, const char *buf, size_t len)
Paul Clements696fcd52010-03-08 16:02:37 +11002410{
2411 if (mddev->bitmap)
2412 mddev->bitmap->behind_writes_used = 0;
2413 return len;
2414}
2415
2416static struct md_sysfs_entry max_backlog_used =
2417__ATTR(max_backlog_used, S_IRUGO | S_IWUSR,
2418 behind_writes_used_show, behind_writes_used_reset);
2419
NeilBrown43a70502009-12-14 12:49:55 +11002420static struct attribute *md_bitmap_attrs[] = {
2421 &bitmap_location.attr,
NeilBrown6409bb02012-05-22 13:55:07 +10002422 &bitmap_space.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002423 &bitmap_timeout.attr,
2424 &bitmap_backlog.attr,
2425 &bitmap_chunksize.attr,
NeilBrownece5cff2009-12-14 12:49:56 +11002426 &bitmap_metadata.attr,
2427 &bitmap_can_clear.attr,
Paul Clements696fcd52010-03-08 16:02:37 +11002428 &max_backlog_used.attr,
NeilBrown43a70502009-12-14 12:49:55 +11002429 NULL
2430};
2431struct attribute_group md_bitmap_group = {
2432 .name = "bitmap",
2433 .attrs = md_bitmap_attrs,
2434};
2435