ext4: fix setup_new_group_blocks locking
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / ext4 / resize.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/resize.c
ac27a0ec 3 *
617ba13b 4 * Support for resizing an ext4 filesystem while it is mounted.
ac27a0ec
DK
5 *
6 * Copyright (C) 2001, 2002 Andreas Dilger <adilger@clusterfs.com>
7 *
8 * This could probably be made into a module, because it is not often in use.
9 */
10
11
617ba13b 12#define EXT4FS_DEBUG
ac27a0ec 13
dab291af 14#include <linux/ext4_jbd2.h>
ac27a0ec
DK
15
16#include <linux/errno.h>
17#include <linux/slab.h>
18
717d50e4 19#include "group.h"
ac27a0ec
DK
20
21#define outside(b, first, last) ((b) < (first) || (b) >= (last))
22#define inside(b, first, last) ((b) >= (first) && (b) < (last))
23
24static int verify_group_input(struct super_block *sb,
617ba13b 25 struct ext4_new_group_data *input)
ac27a0ec 26{
617ba13b
MC
27 struct ext4_sb_info *sbi = EXT4_SB(sb);
28 struct ext4_super_block *es = sbi->s_es;
bd81d8ee 29 ext4_fsblk_t start = ext4_blocks_count(es);
617ba13b 30 ext4_fsblk_t end = start + input->blocks_count;
ac27a0ec 31 unsigned group = input->group;
617ba13b
MC
32 ext4_fsblk_t itend = input->inode_table + sbi->s_itb_per_group;
33 unsigned overhead = ext4_bg_has_super(sb, group) ?
34 (1 + ext4_bg_num_gdb(sb, group) +
ac27a0ec 35 le16_to_cpu(es->s_reserved_gdt_blocks)) : 0;
617ba13b 36 ext4_fsblk_t metaend = start + overhead;
ac27a0ec 37 struct buffer_head *bh = NULL;
3a5b2ecd 38 ext4_grpblk_t free_blocks_count, offset;
ac27a0ec
DK
39 int err = -EINVAL;
40
41 input->free_blocks_count = free_blocks_count =
42 input->blocks_count - 2 - overhead - sbi->s_itb_per_group;
43
44 if (test_opt(sb, DEBUG))
617ba13b 45 printk(KERN_DEBUG "EXT4-fs: adding %s group %u: %u blocks "
ac27a0ec 46 "(%d free, %u reserved)\n",
617ba13b 47 ext4_bg_has_super(sb, input->group) ? "normal" :
ac27a0ec
DK
48 "no-super", input->group, input->blocks_count,
49 free_blocks_count, input->reserved_blocks);
50
3a5b2ecd 51 ext4_get_group_no_and_offset(sb, start, NULL, &offset);
ac27a0ec 52 if (group != sbi->s_groups_count)
617ba13b 53 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
54 "Cannot add at group %u (only %lu groups)",
55 input->group, sbi->s_groups_count);
3a5b2ecd
MC
56 else if (offset != 0)
57 ext4_warning(sb, __FUNCTION__, "Last group not full");
ac27a0ec 58 else if (input->reserved_blocks > input->blocks_count / 5)
617ba13b 59 ext4_warning(sb, __FUNCTION__, "Reserved blocks too high (%u)",
ac27a0ec
DK
60 input->reserved_blocks);
61 else if (free_blocks_count < 0)
617ba13b 62 ext4_warning(sb, __FUNCTION__, "Bad blocks count %u",
ac27a0ec
DK
63 input->blocks_count);
64 else if (!(bh = sb_bread(sb, end - 1)))
617ba13b 65 ext4_warning(sb, __FUNCTION__,
2ae02107 66 "Cannot read last block (%llu)",
ac27a0ec
DK
67 end - 1);
68 else if (outside(input->block_bitmap, start, end))
617ba13b 69 ext4_warning(sb, __FUNCTION__,
bd81d8ee 70 "Block bitmap not in group (block %llu)",
1939e49a 71 (unsigned long long)input->block_bitmap);
ac27a0ec 72 else if (outside(input->inode_bitmap, start, end))
617ba13b 73 ext4_warning(sb, __FUNCTION__,
bd81d8ee 74 "Inode bitmap not in group (block %llu)",
1939e49a 75 (unsigned long long)input->inode_bitmap);
ac27a0ec
DK
76 else if (outside(input->inode_table, start, end) ||
77 outside(itend - 1, start, end))
617ba13b 78 ext4_warning(sb, __FUNCTION__,
bd81d8ee 79 "Inode table not in group (blocks %llu-%llu)",
1939e49a 80 (unsigned long long)input->inode_table, itend - 1);
ac27a0ec 81 else if (input->inode_bitmap == input->block_bitmap)
617ba13b 82 ext4_warning(sb, __FUNCTION__,
bd81d8ee 83 "Block bitmap same as inode bitmap (%llu)",
1939e49a 84 (unsigned long long)input->block_bitmap);
ac27a0ec 85 else if (inside(input->block_bitmap, input->inode_table, itend))
617ba13b 86 ext4_warning(sb, __FUNCTION__,
bd81d8ee 87 "Block bitmap (%llu) in inode table (%llu-%llu)",
1939e49a
RD
88 (unsigned long long)input->block_bitmap,
89 (unsigned long long)input->inode_table, itend - 1);
ac27a0ec 90 else if (inside(input->inode_bitmap, input->inode_table, itend))
617ba13b 91 ext4_warning(sb, __FUNCTION__,
bd81d8ee 92 "Inode bitmap (%llu) in inode table (%llu-%llu)",
1939e49a
RD
93 (unsigned long long)input->inode_bitmap,
94 (unsigned long long)input->inode_table, itend - 1);
ac27a0ec 95 else if (inside(input->block_bitmap, start, metaend))
617ba13b 96 ext4_warning(sb, __FUNCTION__,
bd81d8ee 97 "Block bitmap (%llu) in GDT table"
2ae02107 98 " (%llu-%llu)",
1939e49a
RD
99 (unsigned long long)input->block_bitmap,
100 start, metaend - 1);
ac27a0ec 101 else if (inside(input->inode_bitmap, start, metaend))
617ba13b 102 ext4_warning(sb, __FUNCTION__,
bd81d8ee 103 "Inode bitmap (%llu) in GDT table"
2ae02107 104 " (%llu-%llu)",
1939e49a
RD
105 (unsigned long long)input->inode_bitmap,
106 start, metaend - 1);
ac27a0ec
DK
107 else if (inside(input->inode_table, start, metaend) ||
108 inside(itend - 1, start, metaend))
617ba13b 109 ext4_warning(sb, __FUNCTION__,
2ae02107
MC
110 "Inode table (%llu-%llu) overlaps"
111 "GDT table (%llu-%llu)",
1939e49a
RD
112 (unsigned long long)input->inode_table,
113 itend - 1, start, metaend - 1);
ac27a0ec
DK
114 else
115 err = 0;
116 brelse(bh);
117
118 return err;
119}
120
121static struct buffer_head *bclean(handle_t *handle, struct super_block *sb,
617ba13b 122 ext4_fsblk_t blk)
ac27a0ec
DK
123{
124 struct buffer_head *bh;
125 int err;
126
127 bh = sb_getblk(sb, blk);
128 if (!bh)
129 return ERR_PTR(-EIO);
617ba13b 130 if ((err = ext4_journal_get_write_access(handle, bh))) {
ac27a0ec
DK
131 brelse(bh);
132 bh = ERR_PTR(err);
133 } else {
134 lock_buffer(bh);
135 memset(bh->b_data, 0, sb->s_blocksize);
136 set_buffer_uptodate(bh);
137 unlock_buffer(bh);
138 }
139
140 return bh;
141}
142
ac27a0ec
DK
143/*
144 * Set up the block and inode bitmaps, and the inode table for the new group.
145 * This doesn't need to be part of the main transaction, since we are only
146 * changing blocks outside the actual filesystem. We still do journaling to
147 * ensure the recovery is correct in case of a failure just after resize.
148 * If any part of this fails, we simply abort the resize.
149 */
150static int setup_new_group_blocks(struct super_block *sb,
617ba13b 151 struct ext4_new_group_data *input)
ac27a0ec 152{
617ba13b
MC
153 struct ext4_sb_info *sbi = EXT4_SB(sb);
154 ext4_fsblk_t start = ext4_group_first_block_no(sb, input->group);
155 int reserved_gdb = ext4_bg_has_super(sb, input->group) ?
ac27a0ec 156 le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) : 0;
617ba13b 157 unsigned long gdblocks = ext4_bg_num_gdb(sb, input->group);
ac27a0ec
DK
158 struct buffer_head *bh;
159 handle_t *handle;
617ba13b
MC
160 ext4_fsblk_t block;
161 ext4_grpblk_t bit;
ac27a0ec
DK
162 int i;
163 int err = 0, err2;
164
617ba13b 165 handle = ext4_journal_start_sb(sb, reserved_gdb + gdblocks +
ac27a0ec
DK
166 2 + sbi->s_itb_per_group);
167 if (IS_ERR(handle))
168 return PTR_ERR(handle);
169
170 lock_super(sb);
171 if (input->group != sbi->s_groups_count) {
172 err = -EBUSY;
173 goto exit_journal;
174 }
175
176 if (IS_ERR(bh = bclean(handle, sb, input->block_bitmap))) {
177 err = PTR_ERR(bh);
178 goto exit_journal;
179 }
180
617ba13b
MC
181 if (ext4_bg_has_super(sb, input->group)) {
182 ext4_debug("mark backup superblock %#04lx (+0)\n", start);
183 ext4_set_bit(0, bh->b_data);
ac27a0ec
DK
184 }
185
186 /* Copy all of the GDT blocks into the backup in this group */
187 for (i = 0, bit = 1, block = start + 1;
188 i < gdblocks; i++, block++, bit++) {
189 struct buffer_head *gdb;
190
617ba13b 191 ext4_debug("update backup group %#04lx (+%d)\n", block, bit);
ac27a0ec
DK
192
193 gdb = sb_getblk(sb, block);
194 if (!gdb) {
195 err = -EIO;
196 goto exit_bh;
197 }
617ba13b 198 if ((err = ext4_journal_get_write_access(handle, gdb))) {
ac27a0ec
DK
199 brelse(gdb);
200 goto exit_bh;
201 }
5b615287
ES
202 lock_buffer(gdb);
203 memcpy(gdb->b_data, sbi->s_group_desc[i]->b_data, gdb->b_size);
ac27a0ec 204 set_buffer_uptodate(gdb);
5b615287 205 unlock_buffer(gdb);
617ba13b
MC
206 ext4_journal_dirty_metadata(handle, gdb);
207 ext4_set_bit(bit, bh->b_data);
ac27a0ec
DK
208 brelse(gdb);
209 }
210
211 /* Zero out all of the reserved backup group descriptor table blocks */
212 for (i = 0, bit = gdblocks + 1, block = start + bit;
213 i < reserved_gdb; i++, block++, bit++) {
214 struct buffer_head *gdb;
215
617ba13b 216 ext4_debug("clear reserved block %#04lx (+%d)\n", block, bit);
ac27a0ec
DK
217
218 if (IS_ERR(gdb = bclean(handle, sb, block))) {
219 err = PTR_ERR(bh);
220 goto exit_bh;
221 }
617ba13b
MC
222 ext4_journal_dirty_metadata(handle, gdb);
223 ext4_set_bit(bit, bh->b_data);
ac27a0ec
DK
224 brelse(gdb);
225 }
617ba13b 226 ext4_debug("mark block bitmap %#04x (+%ld)\n", input->block_bitmap,
ac27a0ec 227 input->block_bitmap - start);
617ba13b
MC
228 ext4_set_bit(input->block_bitmap - start, bh->b_data);
229 ext4_debug("mark inode bitmap %#04x (+%ld)\n", input->inode_bitmap,
ac27a0ec 230 input->inode_bitmap - start);
617ba13b 231 ext4_set_bit(input->inode_bitmap - start, bh->b_data);
ac27a0ec
DK
232
233 /* Zero out all of the inode table blocks */
234 for (i = 0, block = input->inode_table, bit = block - start;
235 i < sbi->s_itb_per_group; i++, bit++, block++) {
236 struct buffer_head *it;
237
617ba13b 238 ext4_debug("clear inode block %#04lx (+%d)\n", block, bit);
ac27a0ec
DK
239 if (IS_ERR(it = bclean(handle, sb, block))) {
240 err = PTR_ERR(it);
241 goto exit_bh;
242 }
617ba13b 243 ext4_journal_dirty_metadata(handle, it);
ac27a0ec 244 brelse(it);
617ba13b 245 ext4_set_bit(bit, bh->b_data);
ac27a0ec 246 }
617ba13b 247 mark_bitmap_end(input->blocks_count, EXT4_BLOCKS_PER_GROUP(sb),
ac27a0ec 248 bh->b_data);
617ba13b 249 ext4_journal_dirty_metadata(handle, bh);
ac27a0ec
DK
250 brelse(bh);
251
252 /* Mark unused entries in inode bitmap used */
617ba13b 253 ext4_debug("clear inode bitmap %#04x (+%ld)\n",
ac27a0ec
DK
254 input->inode_bitmap, input->inode_bitmap - start);
255 if (IS_ERR(bh = bclean(handle, sb, input->inode_bitmap))) {
256 err = PTR_ERR(bh);
257 goto exit_journal;
258 }
259
617ba13b 260 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), EXT4_BLOCKS_PER_GROUP(sb),
ac27a0ec 261 bh->b_data);
617ba13b 262 ext4_journal_dirty_metadata(handle, bh);
ac27a0ec
DK
263exit_bh:
264 brelse(bh);
265
266exit_journal:
267 unlock_super(sb);
617ba13b 268 if ((err2 = ext4_journal_stop(handle)) && !err)
ac27a0ec
DK
269 err = err2;
270
271 return err;
272}
273
bd81d8ee 274
ac27a0ec
DK
275/*
276 * Iterate through the groups which hold BACKUP superblock/GDT copies in an
617ba13b 277 * ext4 filesystem. The counters should be initialized to 1, 5, and 7 before
ac27a0ec
DK
278 * calling this for the first time. In a sparse filesystem it will be the
279 * sequence of powers of 3, 5, and 7: 1, 3, 5, 7, 9, 25, 27, 49, 81, ...
280 * For a non-sparse filesystem it will be every group: 1, 2, 3, 4, ...
281 */
617ba13b 282static unsigned ext4_list_backups(struct super_block *sb, unsigned *three,
ac27a0ec
DK
283 unsigned *five, unsigned *seven)
284{
285 unsigned *min = three;
286 int mult = 3;
287 unsigned ret;
288
617ba13b
MC
289 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
290 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
ac27a0ec
DK
291 ret = *min;
292 *min += 1;
293 return ret;
294 }
295
296 if (*five < *min) {
297 min = five;
298 mult = 5;
299 }
300 if (*seven < *min) {
301 min = seven;
302 mult = 7;
303 }
304
305 ret = *min;
306 *min *= mult;
307
308 return ret;
309}
310
311/*
312 * Check that all of the backup GDT blocks are held in the primary GDT block.
313 * It is assumed that they are stored in group order. Returns the number of
314 * groups in current filesystem that have BACKUPS, or -ve error code.
315 */
316static int verify_reserved_gdb(struct super_block *sb,
317 struct buffer_head *primary)
318{
617ba13b
MC
319 const ext4_fsblk_t blk = primary->b_blocknr;
320 const unsigned long end = EXT4_SB(sb)->s_groups_count;
ac27a0ec
DK
321 unsigned three = 1;
322 unsigned five = 5;
323 unsigned seven = 7;
324 unsigned grp;
325 __le32 *p = (__le32 *)primary->b_data;
326 int gdbackups = 0;
327
617ba13b 328 while ((grp = ext4_list_backups(sb, &three, &five, &seven)) < end) {
bd81d8ee
LV
329 if (le32_to_cpu(*p++) !=
330 grp * EXT4_BLOCKS_PER_GROUP(sb) + blk){
617ba13b 331 ext4_warning(sb, __FUNCTION__,
2ae02107
MC
332 "reserved GDT %llu"
333 " missing grp %d (%llu)",
ac27a0ec 334 blk, grp,
bd81d8ee
LV
335 grp *
336 (ext4_fsblk_t)EXT4_BLOCKS_PER_GROUP(sb) +
337 blk);
ac27a0ec
DK
338 return -EINVAL;
339 }
617ba13b 340 if (++gdbackups > EXT4_ADDR_PER_BLOCK(sb))
ac27a0ec
DK
341 return -EFBIG;
342 }
343
344 return gdbackups;
345}
346
347/*
348 * Called when we need to bring a reserved group descriptor table block into
349 * use from the resize inode. The primary copy of the new GDT block currently
350 * is an indirect block (under the double indirect block in the resize inode).
351 * The new backup GDT blocks will be stored as leaf blocks in this indirect
352 * block, in group order. Even though we know all the block numbers we need,
353 * we check to ensure that the resize inode has actually reserved these blocks.
354 *
355 * Don't need to update the block bitmaps because the blocks are still in use.
356 *
357 * We get all of the error cases out of the way, so that we are sure to not
358 * fail once we start modifying the data on disk, because JBD has no rollback.
359 */
360static int add_new_gdb(handle_t *handle, struct inode *inode,
617ba13b 361 struct ext4_new_group_data *input,
ac27a0ec
DK
362 struct buffer_head **primary)
363{
364 struct super_block *sb = inode->i_sb;
617ba13b
MC
365 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
366 unsigned long gdb_num = input->group / EXT4_DESC_PER_BLOCK(sb);
367 ext4_fsblk_t gdblock = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + gdb_num;
ac27a0ec
DK
368 struct buffer_head **o_group_desc, **n_group_desc;
369 struct buffer_head *dind;
370 int gdbackups;
617ba13b 371 struct ext4_iloc iloc;
ac27a0ec
DK
372 __le32 *data;
373 int err;
374
375 if (test_opt(sb, DEBUG))
376 printk(KERN_DEBUG
617ba13b 377 "EXT4-fs: ext4_add_new_gdb: adding group block %lu\n",
ac27a0ec
DK
378 gdb_num);
379
380 /*
381 * If we are not using the primary superblock/GDT copy don't resize,
382 * because the user tools have no way of handling this. Probably a
383 * bad time to do it anyways.
384 */
617ba13b
MC
385 if (EXT4_SB(sb)->s_sbh->b_blocknr !=
386 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block)) {
387 ext4_warning(sb, __FUNCTION__,
ac27a0ec 388 "won't resize using backup superblock at %llu",
617ba13b 389 (unsigned long long)EXT4_SB(sb)->s_sbh->b_blocknr);
ac27a0ec
DK
390 return -EPERM;
391 }
392
393 *primary = sb_bread(sb, gdblock);
394 if (!*primary)
395 return -EIO;
396
397 if ((gdbackups = verify_reserved_gdb(sb, *primary)) < 0) {
398 err = gdbackups;
399 goto exit_bh;
400 }
401
617ba13b 402 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
ac27a0ec
DK
403 dind = sb_bread(sb, le32_to_cpu(*data));
404 if (!dind) {
405 err = -EIO;
406 goto exit_bh;
407 }
408
409 data = (__le32 *)dind->b_data;
617ba13b
MC
410 if (le32_to_cpu(data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)]) != gdblock) {
411 ext4_warning(sb, __FUNCTION__,
2ae02107 412 "new group %u GDT block %llu not reserved",
ac27a0ec
DK
413 input->group, gdblock);
414 err = -EINVAL;
415 goto exit_dind;
416 }
417
617ba13b 418 if ((err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh)))
ac27a0ec
DK
419 goto exit_dind;
420
617ba13b 421 if ((err = ext4_journal_get_write_access(handle, *primary)))
ac27a0ec
DK
422 goto exit_sbh;
423
617ba13b 424 if ((err = ext4_journal_get_write_access(handle, dind)))
ac27a0ec
DK
425 goto exit_primary;
426
617ba13b
MC
427 /* ext4_reserve_inode_write() gets a reference on the iloc */
428 if ((err = ext4_reserve_inode_write(handle, inode, &iloc)))
ac27a0ec
DK
429 goto exit_dindj;
430
431 n_group_desc = kmalloc((gdb_num + 1) * sizeof(struct buffer_head *),
432 GFP_KERNEL);
433 if (!n_group_desc) {
434 err = -ENOMEM;
617ba13b 435 ext4_warning (sb, __FUNCTION__,
ac27a0ec
DK
436 "not enough memory for %lu groups", gdb_num + 1);
437 goto exit_inode;
438 }
439
440 /*
441 * Finally, we have all of the possible failures behind us...
442 *
443 * Remove new GDT block from inode double-indirect block and clear out
444 * the new GDT block for use (which also "frees" the backup GDT blocks
445 * from the reserved inode). We don't need to change the bitmaps for
446 * these blocks, because they are marked as in-use from being in the
447 * reserved inode, and will become GDT blocks (primary and backup).
448 */
617ba13b
MC
449 data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)] = 0;
450 ext4_journal_dirty_metadata(handle, dind);
ac27a0ec
DK
451 brelse(dind);
452 inode->i_blocks -= (gdbackups + 1) * sb->s_blocksize >> 9;
617ba13b 453 ext4_mark_iloc_dirty(handle, inode, &iloc);
ac27a0ec 454 memset((*primary)->b_data, 0, sb->s_blocksize);
617ba13b 455 ext4_journal_dirty_metadata(handle, *primary);
ac27a0ec 456
617ba13b 457 o_group_desc = EXT4_SB(sb)->s_group_desc;
ac27a0ec 458 memcpy(n_group_desc, o_group_desc,
617ba13b 459 EXT4_SB(sb)->s_gdb_count * sizeof(struct buffer_head *));
ac27a0ec 460 n_group_desc[gdb_num] = *primary;
617ba13b
MC
461 EXT4_SB(sb)->s_group_desc = n_group_desc;
462 EXT4_SB(sb)->s_gdb_count++;
ac27a0ec
DK
463 kfree(o_group_desc);
464
465 es->s_reserved_gdt_blocks =
466 cpu_to_le16(le16_to_cpu(es->s_reserved_gdt_blocks) - 1);
617ba13b 467 ext4_journal_dirty_metadata(handle, EXT4_SB(sb)->s_sbh);
ac27a0ec
DK
468
469 return 0;
470
471exit_inode:
617ba13b 472 //ext4_journal_release_buffer(handle, iloc.bh);
ac27a0ec
DK
473 brelse(iloc.bh);
474exit_dindj:
617ba13b 475 //ext4_journal_release_buffer(handle, dind);
ac27a0ec 476exit_primary:
617ba13b 477 //ext4_journal_release_buffer(handle, *primary);
ac27a0ec 478exit_sbh:
617ba13b 479 //ext4_journal_release_buffer(handle, *primary);
ac27a0ec
DK
480exit_dind:
481 brelse(dind);
482exit_bh:
483 brelse(*primary);
484
617ba13b 485 ext4_debug("leaving with error %d\n", err);
ac27a0ec
DK
486 return err;
487}
488
489/*
490 * Called when we are adding a new group which has a backup copy of each of
491 * the GDT blocks (i.e. sparse group) and there are reserved GDT blocks.
492 * We need to add these reserved backup GDT blocks to the resize inode, so
493 * that they are kept for future resizing and not allocated to files.
494 *
495 * Each reserved backup GDT block will go into a different indirect block.
496 * The indirect blocks are actually the primary reserved GDT blocks,
497 * so we know in advance what their block numbers are. We only get the
498 * double-indirect block to verify it is pointing to the primary reserved
499 * GDT blocks so we don't overwrite a data block by accident. The reserved
500 * backup GDT blocks are stored in their reserved primary GDT block.
501 */
502static int reserve_backup_gdb(handle_t *handle, struct inode *inode,
617ba13b 503 struct ext4_new_group_data *input)
ac27a0ec
DK
504{
505 struct super_block *sb = inode->i_sb;
617ba13b 506 int reserved_gdb =le16_to_cpu(EXT4_SB(sb)->s_es->s_reserved_gdt_blocks);
ac27a0ec
DK
507 struct buffer_head **primary;
508 struct buffer_head *dind;
617ba13b
MC
509 struct ext4_iloc iloc;
510 ext4_fsblk_t blk;
ac27a0ec
DK
511 __le32 *data, *end;
512 int gdbackups = 0;
513 int res, i;
514 int err;
515
516 primary = kmalloc(reserved_gdb * sizeof(*primary), GFP_KERNEL);
517 if (!primary)
518 return -ENOMEM;
519
617ba13b 520 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
ac27a0ec
DK
521 dind = sb_bread(sb, le32_to_cpu(*data));
522 if (!dind) {
523 err = -EIO;
524 goto exit_free;
525 }
526
617ba13b
MC
527 blk = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + EXT4_SB(sb)->s_gdb_count;
528 data = (__le32 *)dind->b_data + EXT4_SB(sb)->s_gdb_count;
529 end = (__le32 *)dind->b_data + EXT4_ADDR_PER_BLOCK(sb);
ac27a0ec
DK
530
531 /* Get each reserved primary GDT block and verify it holds backups */
532 for (res = 0; res < reserved_gdb; res++, blk++) {
533 if (le32_to_cpu(*data) != blk) {
617ba13b 534 ext4_warning(sb, __FUNCTION__,
2ae02107 535 "reserved block %llu"
ac27a0ec
DK
536 " not at offset %ld",
537 blk,
538 (long)(data - (__le32 *)dind->b_data));
539 err = -EINVAL;
540 goto exit_bh;
541 }
542 primary[res] = sb_bread(sb, blk);
543 if (!primary[res]) {
544 err = -EIO;
545 goto exit_bh;
546 }
547 if ((gdbackups = verify_reserved_gdb(sb, primary[res])) < 0) {
548 brelse(primary[res]);
549 err = gdbackups;
550 goto exit_bh;
551 }
552 if (++data >= end)
553 data = (__le32 *)dind->b_data;
554 }
555
556 for (i = 0; i < reserved_gdb; i++) {
617ba13b 557 if ((err = ext4_journal_get_write_access(handle, primary[i]))) {
ac27a0ec
DK
558 /*
559 int j;
560 for (j = 0; j < i; j++)
617ba13b 561 ext4_journal_release_buffer(handle, primary[j]);
ac27a0ec
DK
562 */
563 goto exit_bh;
564 }
565 }
566
617ba13b 567 if ((err = ext4_reserve_inode_write(handle, inode, &iloc)))
ac27a0ec
DK
568 goto exit_bh;
569
570 /*
571 * Finally we can add each of the reserved backup GDT blocks from
572 * the new group to its reserved primary GDT block.
573 */
617ba13b 574 blk = input->group * EXT4_BLOCKS_PER_GROUP(sb);
ac27a0ec
DK
575 for (i = 0; i < reserved_gdb; i++) {
576 int err2;
577 data = (__le32 *)primary[i]->b_data;
578 /* printk("reserving backup %lu[%u] = %lu\n",
579 primary[i]->b_blocknr, gdbackups,
580 blk + primary[i]->b_blocknr); */
581 data[gdbackups] = cpu_to_le32(blk + primary[i]->b_blocknr);
617ba13b 582 err2 = ext4_journal_dirty_metadata(handle, primary[i]);
ac27a0ec
DK
583 if (!err)
584 err = err2;
585 }
586 inode->i_blocks += reserved_gdb * sb->s_blocksize >> 9;
617ba13b 587 ext4_mark_iloc_dirty(handle, inode, &iloc);
ac27a0ec
DK
588
589exit_bh:
590 while (--res >= 0)
591 brelse(primary[res]);
592 brelse(dind);
593
594exit_free:
595 kfree(primary);
596
597 return err;
598}
599
600/*
617ba13b 601 * Update the backup copies of the ext4 metadata. These don't need to be part
ac27a0ec
DK
602 * of the main resize transaction, because e2fsck will re-write them if there
603 * is a problem (basically only OOM will cause a problem). However, we
604 * _should_ update the backups if possible, in case the primary gets trashed
605 * for some reason and we need to run e2fsck from a backup superblock. The
606 * important part is that the new block and inode counts are in the backup
607 * superblocks, and the location of the new group metadata in the GDT backups.
608 *
609 * We do not need lock_super() for this, because these blocks are not
610 * otherwise touched by the filesystem code when it is mounted. We don't
611 * need to worry about last changing from sbi->s_groups_count, because the
612 * worst that can happen is that we do not copy the full number of backups
613 * at this time. The resize which changed s_groups_count will backup again.
614 */
615static void update_backups(struct super_block *sb,
616 int blk_off, char *data, int size)
617{
617ba13b 618 struct ext4_sb_info *sbi = EXT4_SB(sb);
ac27a0ec 619 const unsigned long last = sbi->s_groups_count;
617ba13b 620 const int bpg = EXT4_BLOCKS_PER_GROUP(sb);
ac27a0ec
DK
621 unsigned three = 1;
622 unsigned five = 5;
623 unsigned seven = 7;
624 unsigned group;
625 int rest = sb->s_blocksize - size;
626 handle_t *handle;
627 int err = 0, err2;
628
617ba13b 629 handle = ext4_journal_start_sb(sb, EXT4_MAX_TRANS_DATA);
ac27a0ec
DK
630 if (IS_ERR(handle)) {
631 group = 1;
632 err = PTR_ERR(handle);
633 goto exit_err;
634 }
635
617ba13b 636 while ((group = ext4_list_backups(sb, &three, &five, &seven)) < last) {
ac27a0ec
DK
637 struct buffer_head *bh;
638
639 /* Out of journal space, and can't get more - abort - so sad */
640 if (handle->h_buffer_credits == 0 &&
617ba13b
MC
641 ext4_journal_extend(handle, EXT4_MAX_TRANS_DATA) &&
642 (err = ext4_journal_restart(handle, EXT4_MAX_TRANS_DATA)))
ac27a0ec
DK
643 break;
644
645 bh = sb_getblk(sb, group * bpg + blk_off);
646 if (!bh) {
647 err = -EIO;
648 break;
649 }
617ba13b 650 ext4_debug("update metadata backup %#04lx\n",
ac27a0ec 651 (unsigned long)bh->b_blocknr);
617ba13b 652 if ((err = ext4_journal_get_write_access(handle, bh)))
ac27a0ec
DK
653 break;
654 lock_buffer(bh);
655 memcpy(bh->b_data, data, size);
656 if (rest)
657 memset(bh->b_data + size, 0, rest);
658 set_buffer_uptodate(bh);
659 unlock_buffer(bh);
617ba13b 660 ext4_journal_dirty_metadata(handle, bh);
ac27a0ec
DK
661 brelse(bh);
662 }
617ba13b 663 if ((err2 = ext4_journal_stop(handle)) && !err)
ac27a0ec
DK
664 err = err2;
665
666 /*
667 * Ugh! Need to have e2fsck write the backup copies. It is too
668 * late to revert the resize, we shouldn't fail just because of
669 * the backup copies (they are only needed in case of corruption).
670 *
671 * However, if we got here we have a journal problem too, so we
672 * can't really start a transaction to mark the superblock.
673 * Chicken out and just set the flag on the hope it will be written
674 * to disk, and if not - we will simply wait until next fsck.
675 */
676exit_err:
677 if (err) {
617ba13b 678 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
679 "can't update backup for group %d (err %d), "
680 "forcing fsck on next reboot", group, err);
617ba13b
MC
681 sbi->s_mount_state &= ~EXT4_VALID_FS;
682 sbi->s_es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
ac27a0ec
DK
683 mark_buffer_dirty(sbi->s_sbh);
684 }
685}
686
687/* Add group descriptor data to an existing or new group descriptor block.
688 * Ensure we handle all possible error conditions _before_ we start modifying
689 * the filesystem, because we cannot abort the transaction and not have it
690 * write the data to disk.
691 *
692 * If we are on a GDT block boundary, we need to get the reserved GDT block.
693 * Otherwise, we may need to add backup GDT blocks for a sparse group.
694 *
695 * We only need to hold the superblock lock while we are actually adding
696 * in the new group's counts to the superblock. Prior to that we have
697 * not really "added" the group at all. We re-check that we are still
698 * adding in the last group in case things have changed since verifying.
699 */
617ba13b 700int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input)
ac27a0ec 701{
617ba13b
MC
702 struct ext4_sb_info *sbi = EXT4_SB(sb);
703 struct ext4_super_block *es = sbi->s_es;
704 int reserved_gdb = ext4_bg_has_super(sb, input->group) ?
ac27a0ec
DK
705 le16_to_cpu(es->s_reserved_gdt_blocks) : 0;
706 struct buffer_head *primary = NULL;
617ba13b 707 struct ext4_group_desc *gdp;
ac27a0ec
DK
708 struct inode *inode = NULL;
709 handle_t *handle;
710 int gdb_off, gdb_num;
711 int err, err2;
712
617ba13b
MC
713 gdb_num = input->group / EXT4_DESC_PER_BLOCK(sb);
714 gdb_off = input->group % EXT4_DESC_PER_BLOCK(sb);
ac27a0ec 715
617ba13b
MC
716 if (gdb_off == 0 && !EXT4_HAS_RO_COMPAT_FEATURE(sb,
717 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
718 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
719 "Can't resize non-sparse filesystem further");
720 return -EPERM;
721 }
722
bd81d8ee
LV
723 if (ext4_blocks_count(es) + input->blocks_count <
724 ext4_blocks_count(es)) {
617ba13b 725 ext4_warning(sb, __FUNCTION__, "blocks_count overflow\n");
ac27a0ec
DK
726 return -EINVAL;
727 }
728
617ba13b 729 if (le32_to_cpu(es->s_inodes_count) + EXT4_INODES_PER_GROUP(sb) <
ac27a0ec 730 le32_to_cpu(es->s_inodes_count)) {
617ba13b 731 ext4_warning(sb, __FUNCTION__, "inodes_count overflow\n");
ac27a0ec
DK
732 return -EINVAL;
733 }
734
735 if (reserved_gdb || gdb_off == 0) {
617ba13b
MC
736 if (!EXT4_HAS_COMPAT_FEATURE(sb,
737 EXT4_FEATURE_COMPAT_RESIZE_INODE)){
738 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
739 "No reserved GDT blocks, can't resize");
740 return -EPERM;
741 }
617ba13b 742 inode = iget(sb, EXT4_RESIZE_INO);
ac27a0ec 743 if (!inode || is_bad_inode(inode)) {
617ba13b 744 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
745 "Error opening resize inode");
746 iput(inode);
747 return -ENOENT;
748 }
749 }
750
751 if ((err = verify_group_input(sb, input)))
752 goto exit_put;
753
754 if ((err = setup_new_group_blocks(sb, input)))
755 goto exit_put;
756
757 /*
758 * We will always be modifying at least the superblock and a GDT
759 * block. If we are adding a group past the last current GDT block,
760 * we will also modify the inode and the dindirect block. If we
761 * are adding a group with superblock/GDT backups we will also
762 * modify each of the reserved GDT dindirect blocks.
763 */
617ba13b
MC
764 handle = ext4_journal_start_sb(sb,
765 ext4_bg_has_super(sb, input->group) ?
ac27a0ec
DK
766 3 + reserved_gdb : 4);
767 if (IS_ERR(handle)) {
768 err = PTR_ERR(handle);
769 goto exit_put;
770 }
771
772 lock_super(sb);
773 if (input->group != sbi->s_groups_count) {
617ba13b 774 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
775 "multiple resizers run on filesystem!");
776 err = -EBUSY;
777 goto exit_journal;
778 }
779
617ba13b 780 if ((err = ext4_journal_get_write_access(handle, sbi->s_sbh)))
ac27a0ec
DK
781 goto exit_journal;
782
783 /*
784 * We will only either add reserved group blocks to a backup group
785 * or remove reserved blocks for the first group in a new group block.
786 * Doing both would be mean more complex code, and sane people don't
787 * use non-sparse filesystems anymore. This is already checked above.
788 */
789 if (gdb_off) {
790 primary = sbi->s_group_desc[gdb_num];
617ba13b 791 if ((err = ext4_journal_get_write_access(handle, primary)))
ac27a0ec
DK
792 goto exit_journal;
793
617ba13b 794 if (reserved_gdb && ext4_bg_num_gdb(sb, input->group) &&
ac27a0ec
DK
795 (err = reserve_backup_gdb(handle, inode, input)))
796 goto exit_journal;
797 } else if ((err = add_new_gdb(handle, inode, input, &primary)))
798 goto exit_journal;
799
800 /*
801 * OK, now we've set up the new group. Time to make it active.
802 *
803 * Current kernels don't lock all allocations via lock_super(),
804 * so we have to be safe wrt. concurrent accesses the group
805 * data. So we need to be careful to set all of the relevant
806 * group descriptor data etc. *before* we enable the group.
807 *
808 * The key field here is sbi->s_groups_count: as long as
809 * that retains its old value, nobody is going to access the new
810 * group.
811 *
812 * So first we update all the descriptor metadata for the new
813 * group; then we update the total disk blocks count; then we
814 * update the groups count to enable the group; then finally we
815 * update the free space counts so that the system can start
816 * using the new disk blocks.
817 */
818
819 /* Update group descriptor block for new group */
617ba13b 820 gdp = (struct ext4_group_desc *)primary->b_data + gdb_off;
ac27a0ec 821
8fadc143
AR
822 ext4_block_bitmap_set(sb, gdp, input->block_bitmap); /* LV FIXME */
823 ext4_inode_bitmap_set(sb, gdp, input->inode_bitmap); /* LV FIXME */
824 ext4_inode_table_set(sb, gdp, input->inode_table); /* LV FIXME */
ac27a0ec 825 gdp->bg_free_blocks_count = cpu_to_le16(input->free_blocks_count);
617ba13b 826 gdp->bg_free_inodes_count = cpu_to_le16(EXT4_INODES_PER_GROUP(sb));
717d50e4 827 gdp->bg_checksum = ext4_group_desc_csum(sbi, input->group, gdp);
ac27a0ec
DK
828
829 /*
830 * Make the new blocks and inodes valid next. We do this before
831 * increasing the group count so that once the group is enabled,
832 * all of its blocks and inodes are already valid.
833 *
834 * We always allocate group-by-group, then block-by-block or
835 * inode-by-inode within a group, so enabling these
836 * blocks/inodes before the group is live won't actually let us
837 * allocate the new space yet.
838 */
bd81d8ee 839 ext4_blocks_count_set(es, ext4_blocks_count(es) +
ac27a0ec
DK
840 input->blocks_count);
841 es->s_inodes_count = cpu_to_le32(le32_to_cpu(es->s_inodes_count) +
617ba13b 842 EXT4_INODES_PER_GROUP(sb));
ac27a0ec
DK
843
844 /*
845 * We need to protect s_groups_count against other CPUs seeing
846 * inconsistent state in the superblock.
847 *
848 * The precise rules we use are:
849 *
850 * * Writers of s_groups_count *must* hold lock_super
851 * AND
852 * * Writers must perform a smp_wmb() after updating all dependent
853 * data and before modifying the groups count
854 *
855 * * Readers must hold lock_super() over the access
856 * OR
857 * * Readers must perform an smp_rmb() after reading the groups count
858 * and before reading any dependent data.
859 *
860 * NB. These rules can be relaxed when checking the group count
861 * while freeing data, as we can only allocate from a block
862 * group after serialising against the group count, and we can
863 * only then free after serialising in turn against that
864 * allocation.
865 */
866 smp_wmb();
867
868 /* Update the global fs size fields */
869 sbi->s_groups_count++;
870
617ba13b 871 ext4_journal_dirty_metadata(handle, primary);
ac27a0ec
DK
872
873 /* Update the reserved block counts only once the new group is
874 * active. */
bd81d8ee 875 ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
ac27a0ec
DK
876 input->reserved_blocks);
877
878 /* Update the free space counts */
aa0dff2d 879 percpu_counter_add(&sbi->s_freeblocks_counter,
ac27a0ec 880 input->free_blocks_count);
aa0dff2d 881 percpu_counter_add(&sbi->s_freeinodes_counter,
617ba13b 882 EXT4_INODES_PER_GROUP(sb));
ac27a0ec 883
617ba13b 884 ext4_journal_dirty_metadata(handle, sbi->s_sbh);
ac27a0ec
DK
885 sb->s_dirt = 1;
886
887exit_journal:
888 unlock_super(sb);
617ba13b 889 if ((err2 = ext4_journal_stop(handle)) && !err)
ac27a0ec
DK
890 err = err2;
891 if (!err) {
892 update_backups(sb, sbi->s_sbh->b_blocknr, (char *)es,
617ba13b 893 sizeof(struct ext4_super_block));
ac27a0ec
DK
894 update_backups(sb, primary->b_blocknr, primary->b_data,
895 primary->b_size);
896 }
897exit_put:
898 iput(inode);
899 return err;
617ba13b 900} /* ext4_group_add */
ac27a0ec
DK
901
902/* Extend the filesystem to the new number of blocks specified. This entry
903 * point is only used to extend the current filesystem to the end of the last
904 * existing group. It can be accessed via ioctl, or by "remount,resize=<size>"
905 * for emergencies (because it has no dependencies on reserved blocks).
906 *
617ba13b 907 * If we _really_ wanted, we could use default values to call ext4_group_add()
ac27a0ec
DK
908 * allow the "remount" trick to work for arbitrary resizing, assuming enough
909 * GDT blocks are reserved to grow to the desired size.
910 */
617ba13b
MC
911int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es,
912 ext4_fsblk_t n_blocks_count)
ac27a0ec 913{
617ba13b 914 ext4_fsblk_t o_blocks_count;
ac27a0ec 915 unsigned long o_groups_count;
617ba13b
MC
916 ext4_grpblk_t last;
917 ext4_grpblk_t add;
ac27a0ec
DK
918 struct buffer_head * bh;
919 handle_t *handle;
920 int err;
921 unsigned long freed_blocks;
922
923 /* We don't need to worry about locking wrt other resizers just
924 * yet: we're going to revalidate es->s_blocks_count after
925 * taking lock_super() below. */
bd81d8ee 926 o_blocks_count = ext4_blocks_count(es);
617ba13b 927 o_groups_count = EXT4_SB(sb)->s_groups_count;
ac27a0ec
DK
928
929 if (test_opt(sb, DEBUG))
2ae02107 930 printk(KERN_DEBUG "EXT4-fs: extending last group from %llu uto %llu blocks\n",
ac27a0ec
DK
931 o_blocks_count, n_blocks_count);
932
933 if (n_blocks_count == 0 || n_blocks_count == o_blocks_count)
934 return 0;
935
936 if (n_blocks_count > (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
617ba13b 937 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
2ae02107 938 " too large to resize to %llu blocks safely\n",
ac27a0ec
DK
939 sb->s_id, n_blocks_count);
940 if (sizeof(sector_t) < 8)
617ba13b 941 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
942 "CONFIG_LBD not enabled\n");
943 return -EINVAL;
944 }
945
946 if (n_blocks_count < o_blocks_count) {
617ba13b 947 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
948 "can't shrink FS - resize aborted");
949 return -EBUSY;
950 }
951
952 /* Handle the remaining blocks in the last group only. */
3a5b2ecd 953 ext4_get_group_no_and_offset(sb, o_blocks_count, NULL, &last);
ac27a0ec
DK
954
955 if (last == 0) {
617ba13b 956 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
957 "need to use ext2online to resize further");
958 return -EPERM;
959 }
960
617ba13b 961 add = EXT4_BLOCKS_PER_GROUP(sb) - last;
ac27a0ec
DK
962
963 if (o_blocks_count + add < o_blocks_count) {
617ba13b 964 ext4_warning(sb, __FUNCTION__, "blocks_count overflow");
ac27a0ec
DK
965 return -EINVAL;
966 }
967
968 if (o_blocks_count + add > n_blocks_count)
969 add = n_blocks_count - o_blocks_count;
970
971 if (o_blocks_count + add < n_blocks_count)
617ba13b 972 ext4_warning(sb, __FUNCTION__,
2ae02107 973 "will only finish group (%llu"
ac27a0ec
DK
974 " blocks, %u new)",
975 o_blocks_count + add, add);
976
977 /* See if the device is actually as big as what was requested */
978 bh = sb_bread(sb, o_blocks_count + add -1);
979 if (!bh) {
617ba13b 980 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
981 "can't read last block, resize aborted");
982 return -ENOSPC;
983 }
984 brelse(bh);
985
986 /* We will update the superblock, one block bitmap, and
617ba13b 987 * one group descriptor via ext4_free_blocks().
ac27a0ec 988 */
617ba13b 989 handle = ext4_journal_start_sb(sb, 3);
ac27a0ec
DK
990 if (IS_ERR(handle)) {
991 err = PTR_ERR(handle);
617ba13b 992 ext4_warning(sb, __FUNCTION__, "error %d on journal start",err);
ac27a0ec
DK
993 goto exit_put;
994 }
995
996 lock_super(sb);
bd81d8ee 997 if (o_blocks_count != ext4_blocks_count(es)) {
617ba13b 998 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
999 "multiple resizers run on filesystem!");
1000 unlock_super(sb);
1001 err = -EBUSY;
1002 goto exit_put;
1003 }
1004
617ba13b
MC
1005 if ((err = ext4_journal_get_write_access(handle,
1006 EXT4_SB(sb)->s_sbh))) {
1007 ext4_warning(sb, __FUNCTION__,
ac27a0ec
DK
1008 "error %d on journal write access", err);
1009 unlock_super(sb);
617ba13b 1010 ext4_journal_stop(handle);
ac27a0ec
DK
1011 goto exit_put;
1012 }
bd81d8ee 1013 ext4_blocks_count_set(es, o_blocks_count + add);
617ba13b 1014 ext4_journal_dirty_metadata(handle, EXT4_SB(sb)->s_sbh);
ac27a0ec
DK
1015 sb->s_dirt = 1;
1016 unlock_super(sb);
2ae02107 1017 ext4_debug("freeing blocks %lu through %llu\n", o_blocks_count,
ac27a0ec 1018 o_blocks_count + add);
617ba13b 1019 ext4_free_blocks_sb(handle, sb, o_blocks_count, add, &freed_blocks);
2ae02107 1020 ext4_debug("freed blocks %llu through %llu\n", o_blocks_count,
ac27a0ec 1021 o_blocks_count + add);
617ba13b 1022 if ((err = ext4_journal_stop(handle)))
ac27a0ec
DK
1023 goto exit_put;
1024 if (test_opt(sb, DEBUG))
bd81d8ee
LV
1025 printk(KERN_DEBUG "EXT4-fs: extended group to %llu blocks\n",
1026 ext4_blocks_count(es));
617ba13b
MC
1027 update_backups(sb, EXT4_SB(sb)->s_sbh->b_blocknr, (char *)es,
1028 sizeof(struct ext4_super_block));
ac27a0ec
DK
1029exit_put:
1030 return err;
617ba13b 1031} /* ext4_group_extend */