2 * linux/fs/ext4/resize.c
4 * Support for resizing an ext4 filesystem while it is mounted.
6 * Copyright (C) 2001, 2002 Andreas Dilger <adilger@clusterfs.com>
8 * This could probably be made into a module, because it is not often in use.
14 #include <linux/ext4_jbd2.h>
16 #include <linux/errno.h>
17 #include <linux/slab.h>
21 #define outside(b, first, last) ((b) < (first) || (b) >= (last))
22 #define inside(b, first, last) ((b) >= (first) && (b) < (last))
24 static int verify_group_input(struct super_block *sb,
25 struct ext4_new_group_data *input)
27 struct ext4_sb_info *sbi = EXT4_SB(sb);
28 struct ext4_super_block *es = sbi->s_es;
29 ext4_fsblk_t start = ext4_blocks_count(es);
30 ext4_fsblk_t end = start + input->blocks_count;
31 unsigned group = input->group;
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) +
35 le16_to_cpu(es->s_reserved_gdt_blocks)) : 0;
36 ext4_fsblk_t metaend = start + overhead;
37 struct buffer_head *bh = NULL;
38 ext4_grpblk_t free_blocks_count, offset;
41 input->free_blocks_count = free_blocks_count =
42 input->blocks_count - 2 - overhead - sbi->s_itb_per_group;
44 if (test_opt(sb, DEBUG))
45 printk(KERN_DEBUG "EXT4-fs: adding %s group %u: %u blocks "
46 "(%d free, %u reserved)\n",
47 ext4_bg_has_super(sb, input->group) ? "normal" :
48 "no-super", input->group, input->blocks_count,
49 free_blocks_count, input->reserved_blocks);
51 ext4_get_group_no_and_offset(sb, start, NULL, &offset);
52 if (group != sbi->s_groups_count)
53 ext4_warning(sb, __FUNCTION__,
54 "Cannot add at group %u (only %lu groups)",
55 input->group, sbi->s_groups_count);
57 ext4_warning(sb, __FUNCTION__, "Last group not full");
58 else if (input->reserved_blocks > input->blocks_count / 5)
59 ext4_warning(sb, __FUNCTION__, "Reserved blocks too high (%u)",
60 input->reserved_blocks);
61 else if (free_blocks_count < 0)
62 ext4_warning(sb, __FUNCTION__, "Bad blocks count %u",
64 else if (!(bh = sb_bread(sb, end - 1)))
65 ext4_warning(sb, __FUNCTION__,
66 "Cannot read last block (%llu)",
68 else if (outside(input->block_bitmap, start, end))
69 ext4_warning(sb, __FUNCTION__,
70 "Block bitmap not in group (block %llu)",
71 (unsigned long long)input->block_bitmap);
72 else if (outside(input->inode_bitmap, start, end))
73 ext4_warning(sb, __FUNCTION__,
74 "Inode bitmap not in group (block %llu)",
75 (unsigned long long)input->inode_bitmap);
76 else if (outside(input->inode_table, start, end) ||
77 outside(itend - 1, start, end))
78 ext4_warning(sb, __FUNCTION__,
79 "Inode table not in group (blocks %llu-%llu)",
80 (unsigned long long)input->inode_table, itend - 1);
81 else if (input->inode_bitmap == input->block_bitmap)
82 ext4_warning(sb, __FUNCTION__,
83 "Block bitmap same as inode bitmap (%llu)",
84 (unsigned long long)input->block_bitmap);
85 else if (inside(input->block_bitmap, input->inode_table, itend))
86 ext4_warning(sb, __FUNCTION__,
87 "Block bitmap (%llu) in inode table (%llu-%llu)",
88 (unsigned long long)input->block_bitmap,
89 (unsigned long long)input->inode_table, itend - 1);
90 else if (inside(input->inode_bitmap, input->inode_table, itend))
91 ext4_warning(sb, __FUNCTION__,
92 "Inode bitmap (%llu) in inode table (%llu-%llu)",
93 (unsigned long long)input->inode_bitmap,
94 (unsigned long long)input->inode_table, itend - 1);
95 else if (inside(input->block_bitmap, start, metaend))
96 ext4_warning(sb, __FUNCTION__,
97 "Block bitmap (%llu) in GDT table"
99 (unsigned long long)input->block_bitmap,
101 else if (inside(input->inode_bitmap, start, metaend))
102 ext4_warning(sb, __FUNCTION__,
103 "Inode bitmap (%llu) in GDT table"
105 (unsigned long long)input->inode_bitmap,
107 else if (inside(input->inode_table, start, metaend) ||
108 inside(itend - 1, start, metaend))
109 ext4_warning(sb, __FUNCTION__,
110 "Inode table (%llu-%llu) overlaps"
111 "GDT table (%llu-%llu)",
112 (unsigned long long)input->inode_table,
113 itend - 1, start, metaend - 1);
121 static struct buffer_head *bclean(handle_t *handle, struct super_block *sb,
124 struct buffer_head *bh;
127 bh = sb_getblk(sb, blk);
129 return ERR_PTR(-EIO);
130 if ((err = ext4_journal_get_write_access(handle, bh))) {
135 memset(bh->b_data, 0, sb->s_blocksize);
136 set_buffer_uptodate(bh);
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.
150 static int setup_new_group_blocks(struct super_block *sb,
151 struct ext4_new_group_data *input)
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) ?
156 le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) : 0;
157 unsigned long gdblocks = ext4_bg_num_gdb(sb, input->group);
158 struct buffer_head *bh;
165 handle = ext4_journal_start_sb(sb, reserved_gdb + gdblocks +
166 2 + sbi->s_itb_per_group);
168 return PTR_ERR(handle);
171 if (input->group != sbi->s_groups_count) {
176 if (IS_ERR(bh = bclean(handle, sb, input->block_bitmap))) {
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);
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;
191 ext4_debug("update backup group %#04lx (+%d)\n", block, bit);
193 gdb = sb_getblk(sb, block);
198 if ((err = ext4_journal_get_write_access(handle, gdb))) {
203 memcpy(gdb->b_data, sbi->s_group_desc[i]->b_data, bh->b_size);
204 set_buffer_uptodate(gdb);
206 ext4_journal_dirty_metadata(handle, gdb);
207 ext4_set_bit(bit, bh->b_data);
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;
216 ext4_debug("clear reserved block %#04lx (+%d)\n", block, bit);
218 if (IS_ERR(gdb = bclean(handle, sb, block))) {
222 ext4_journal_dirty_metadata(handle, gdb);
223 ext4_set_bit(bit, bh->b_data);
226 ext4_debug("mark block bitmap %#04x (+%ld)\n", input->block_bitmap,
227 input->block_bitmap - start);
228 ext4_set_bit(input->block_bitmap - start, bh->b_data);
229 ext4_debug("mark inode bitmap %#04x (+%ld)\n", input->inode_bitmap,
230 input->inode_bitmap - start);
231 ext4_set_bit(input->inode_bitmap - start, bh->b_data);
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;
238 ext4_debug("clear inode block %#04lx (+%d)\n", block, bit);
239 if (IS_ERR(it = bclean(handle, sb, block))) {
243 ext4_journal_dirty_metadata(handle, it);
245 ext4_set_bit(bit, bh->b_data);
247 mark_bitmap_end(input->blocks_count, EXT4_BLOCKS_PER_GROUP(sb),
249 ext4_journal_dirty_metadata(handle, bh);
252 /* Mark unused entries in inode bitmap used */
253 ext4_debug("clear inode bitmap %#04x (+%ld)\n",
254 input->inode_bitmap, input->inode_bitmap - start);
255 if (IS_ERR(bh = bclean(handle, sb, input->inode_bitmap))) {
260 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), EXT4_BLOCKS_PER_GROUP(sb),
262 ext4_journal_dirty_metadata(handle, bh);
268 if ((err2 = ext4_journal_stop(handle)) && !err)
276 * Iterate through the groups which hold BACKUP superblock/GDT copies in an
277 * ext4 filesystem. The counters should be initialized to 1, 5, and 7 before
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, ...
282 static unsigned ext4_list_backups(struct super_block *sb, unsigned *three,
283 unsigned *five, unsigned *seven)
285 unsigned *min = three;
289 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
290 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
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.
316 static int verify_reserved_gdb(struct super_block *sb,
317 struct buffer_head *primary)
319 const ext4_fsblk_t blk = primary->b_blocknr;
320 const unsigned long end = EXT4_SB(sb)->s_groups_count;
325 __le32 *p = (__le32 *)primary->b_data;
328 while ((grp = ext4_list_backups(sb, &three, &five, &seven)) < end) {
329 if (le32_to_cpu(*p++) !=
330 grp * EXT4_BLOCKS_PER_GROUP(sb) + blk){
331 ext4_warning(sb, __FUNCTION__,
333 " missing grp %d (%llu)",
336 (ext4_fsblk_t)EXT4_BLOCKS_PER_GROUP(sb) +
340 if (++gdbackups > EXT4_ADDR_PER_BLOCK(sb))
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.
355 * Don't need to update the block bitmaps because the blocks are still in use.
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.
360 static int add_new_gdb(handle_t *handle, struct inode *inode,
361 struct ext4_new_group_data *input,
362 struct buffer_head **primary)
364 struct super_block *sb = inode->i_sb;
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;
368 struct buffer_head **o_group_desc, **n_group_desc;
369 struct buffer_head *dind;
371 struct ext4_iloc iloc;
375 if (test_opt(sb, DEBUG))
377 "EXT4-fs: ext4_add_new_gdb: adding group block %lu\n",
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.
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__,
388 "won't resize using backup superblock at %llu",
389 (unsigned long long)EXT4_SB(sb)->s_sbh->b_blocknr);
393 *primary = sb_bread(sb, gdblock);
397 if ((gdbackups = verify_reserved_gdb(sb, *primary)) < 0) {
402 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
403 dind = sb_bread(sb, le32_to_cpu(*data));
409 data = (__le32 *)dind->b_data;
410 if (le32_to_cpu(data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)]) != gdblock) {
411 ext4_warning(sb, __FUNCTION__,
412 "new group %u GDT block %llu not reserved",
413 input->group, gdblock);
418 if ((err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh)))
421 if ((err = ext4_journal_get_write_access(handle, *primary)))
424 if ((err = ext4_journal_get_write_access(handle, dind)))
427 /* ext4_reserve_inode_write() gets a reference on the iloc */
428 if ((err = ext4_reserve_inode_write(handle, inode, &iloc)))
431 n_group_desc = kmalloc((gdb_num + 1) * sizeof(struct buffer_head *),
435 ext4_warning (sb, __FUNCTION__,
436 "not enough memory for %lu groups", gdb_num + 1);
441 * Finally, we have all of the possible failures behind us...
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).
449 data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)] = 0;
450 ext4_journal_dirty_metadata(handle, dind);
452 inode->i_blocks -= (gdbackups + 1) * sb->s_blocksize >> 9;
453 ext4_mark_iloc_dirty(handle, inode, &iloc);
454 memset((*primary)->b_data, 0, sb->s_blocksize);
455 ext4_journal_dirty_metadata(handle, *primary);
457 o_group_desc = EXT4_SB(sb)->s_group_desc;
458 memcpy(n_group_desc, o_group_desc,
459 EXT4_SB(sb)->s_gdb_count * sizeof(struct buffer_head *));
460 n_group_desc[gdb_num] = *primary;
461 EXT4_SB(sb)->s_group_desc = n_group_desc;
462 EXT4_SB(sb)->s_gdb_count++;
465 es->s_reserved_gdt_blocks =
466 cpu_to_le16(le16_to_cpu(es->s_reserved_gdt_blocks) - 1);
467 ext4_journal_dirty_metadata(handle, EXT4_SB(sb)->s_sbh);
472 //ext4_journal_release_buffer(handle, iloc.bh);
475 //ext4_journal_release_buffer(handle, dind);
477 //ext4_journal_release_buffer(handle, *primary);
479 //ext4_journal_release_buffer(handle, *primary);
485 ext4_debug("leaving with error %d\n", err);
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.
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.
502 static int reserve_backup_gdb(handle_t *handle, struct inode *inode,
503 struct ext4_new_group_data *input)
505 struct super_block *sb = inode->i_sb;
506 int reserved_gdb =le16_to_cpu(EXT4_SB(sb)->s_es->s_reserved_gdt_blocks);
507 struct buffer_head **primary;
508 struct buffer_head *dind;
509 struct ext4_iloc iloc;
516 primary = kmalloc(reserved_gdb * sizeof(*primary), GFP_KERNEL);
520 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
521 dind = sb_bread(sb, le32_to_cpu(*data));
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);
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) {
534 ext4_warning(sb, __FUNCTION__,
535 "reserved block %llu"
536 " not at offset %ld",
538 (long)(data - (__le32 *)dind->b_data));
542 primary[res] = sb_bread(sb, blk);
547 if ((gdbackups = verify_reserved_gdb(sb, primary[res])) < 0) {
548 brelse(primary[res]);
553 data = (__le32 *)dind->b_data;
556 for (i = 0; i < reserved_gdb; i++) {
557 if ((err = ext4_journal_get_write_access(handle, primary[i]))) {
560 for (j = 0; j < i; j++)
561 ext4_journal_release_buffer(handle, primary[j]);
567 if ((err = ext4_reserve_inode_write(handle, inode, &iloc)))
571 * Finally we can add each of the reserved backup GDT blocks from
572 * the new group to its reserved primary GDT block.
574 blk = input->group * EXT4_BLOCKS_PER_GROUP(sb);
575 for (i = 0; i < reserved_gdb; i++) {
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);
582 err2 = ext4_journal_dirty_metadata(handle, primary[i]);
586 inode->i_blocks += reserved_gdb * sb->s_blocksize >> 9;
587 ext4_mark_iloc_dirty(handle, inode, &iloc);
591 brelse(primary[res]);
601 * Update the backup copies of the ext4 metadata. These don't need to be part
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.
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.
615 static void update_backups(struct super_block *sb,
616 int blk_off, char *data, int size)
618 struct ext4_sb_info *sbi = EXT4_SB(sb);
619 const unsigned long last = sbi->s_groups_count;
620 const int bpg = EXT4_BLOCKS_PER_GROUP(sb);
625 int rest = sb->s_blocksize - size;
629 handle = ext4_journal_start_sb(sb, EXT4_MAX_TRANS_DATA);
630 if (IS_ERR(handle)) {
632 err = PTR_ERR(handle);
636 while ((group = ext4_list_backups(sb, &three, &five, &seven)) < last) {
637 struct buffer_head *bh;
639 /* Out of journal space, and can't get more - abort - so sad */
640 if (handle->h_buffer_credits == 0 &&
641 ext4_journal_extend(handle, EXT4_MAX_TRANS_DATA) &&
642 (err = ext4_journal_restart(handle, EXT4_MAX_TRANS_DATA)))
645 bh = sb_getblk(sb, group * bpg + blk_off);
650 ext4_debug("update metadata backup %#04lx\n",
651 (unsigned long)bh->b_blocknr);
652 if ((err = ext4_journal_get_write_access(handle, bh)))
655 memcpy(bh->b_data, data, size);
657 memset(bh->b_data + size, 0, rest);
658 set_buffer_uptodate(bh);
660 ext4_journal_dirty_metadata(handle, bh);
663 if ((err2 = ext4_journal_stop(handle)) && !err)
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).
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.
678 ext4_warning(sb, __FUNCTION__,
679 "can't update backup for group %d (err %d), "
680 "forcing fsck on next reboot", group, err);
681 sbi->s_mount_state &= ~EXT4_VALID_FS;
682 sbi->s_es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
683 mark_buffer_dirty(sbi->s_sbh);
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.
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.
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.
700 int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input)
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) ?
705 le16_to_cpu(es->s_reserved_gdt_blocks) : 0;
706 struct buffer_head *primary = NULL;
707 struct ext4_group_desc *gdp;
708 struct inode *inode = NULL;
710 int gdb_off, gdb_num;
713 gdb_num = input->group / EXT4_DESC_PER_BLOCK(sb);
714 gdb_off = input->group % EXT4_DESC_PER_BLOCK(sb);
716 if (gdb_off == 0 && !EXT4_HAS_RO_COMPAT_FEATURE(sb,
717 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
718 ext4_warning(sb, __FUNCTION__,
719 "Can't resize non-sparse filesystem further");
723 if (ext4_blocks_count(es) + input->blocks_count <
724 ext4_blocks_count(es)) {
725 ext4_warning(sb, __FUNCTION__, "blocks_count overflow\n");
729 if (le32_to_cpu(es->s_inodes_count) + EXT4_INODES_PER_GROUP(sb) <
730 le32_to_cpu(es->s_inodes_count)) {
731 ext4_warning(sb, __FUNCTION__, "inodes_count overflow\n");
735 if (reserved_gdb || gdb_off == 0) {
736 if (!EXT4_HAS_COMPAT_FEATURE(sb,
737 EXT4_FEATURE_COMPAT_RESIZE_INODE)){
738 ext4_warning(sb, __FUNCTION__,
739 "No reserved GDT blocks, can't resize");
742 inode = iget(sb, EXT4_RESIZE_INO);
743 if (!inode || is_bad_inode(inode)) {
744 ext4_warning(sb, __FUNCTION__,
745 "Error opening resize inode");
751 if ((err = verify_group_input(sb, input)))
754 if ((err = setup_new_group_blocks(sb, input)))
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.
764 handle = ext4_journal_start_sb(sb,
765 ext4_bg_has_super(sb, input->group) ?
766 3 + reserved_gdb : 4);
767 if (IS_ERR(handle)) {
768 err = PTR_ERR(handle);
773 if (input->group != sbi->s_groups_count) {
774 ext4_warning(sb, __FUNCTION__,
775 "multiple resizers run on filesystem!");
780 if ((err = ext4_journal_get_write_access(handle, sbi->s_sbh)))
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.
790 primary = sbi->s_group_desc[gdb_num];
791 if ((err = ext4_journal_get_write_access(handle, primary)))
794 if (reserved_gdb && ext4_bg_num_gdb(sb, input->group) &&
795 (err = reserve_backup_gdb(handle, inode, input)))
797 } else if ((err = add_new_gdb(handle, inode, input, &primary)))
801 * OK, now we've set up the new group. Time to make it active.
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.
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
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.
819 /* Update group descriptor block for new group */
820 gdp = (struct ext4_group_desc *)primary->b_data + gdb_off;
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 */
825 gdp->bg_free_blocks_count = cpu_to_le16(input->free_blocks_count);
826 gdp->bg_free_inodes_count = cpu_to_le16(EXT4_INODES_PER_GROUP(sb));
827 gdp->bg_checksum = ext4_group_desc_csum(sbi, input->group, gdp);
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.
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.
839 ext4_blocks_count_set(es, ext4_blocks_count(es) +
840 input->blocks_count);
841 es->s_inodes_count = cpu_to_le32(le32_to_cpu(es->s_inodes_count) +
842 EXT4_INODES_PER_GROUP(sb));
845 * We need to protect s_groups_count against other CPUs seeing
846 * inconsistent state in the superblock.
848 * The precise rules we use are:
850 * * Writers of s_groups_count *must* hold lock_super
852 * * Writers must perform a smp_wmb() after updating all dependent
853 * data and before modifying the groups count
855 * * Readers must hold lock_super() over the access
857 * * Readers must perform an smp_rmb() after reading the groups count
858 * and before reading any dependent data.
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
868 /* Update the global fs size fields */
869 sbi->s_groups_count++;
871 ext4_journal_dirty_metadata(handle, primary);
873 /* Update the reserved block counts only once the new group is
875 ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
876 input->reserved_blocks);
878 /* Update the free space counts */
879 percpu_counter_add(&sbi->s_freeblocks_counter,
880 input->free_blocks_count);
881 percpu_counter_add(&sbi->s_freeinodes_counter,
882 EXT4_INODES_PER_GROUP(sb));
884 ext4_journal_dirty_metadata(handle, sbi->s_sbh);
889 if ((err2 = ext4_journal_stop(handle)) && !err)
892 update_backups(sb, sbi->s_sbh->b_blocknr, (char *)es,
893 sizeof(struct ext4_super_block));
894 update_backups(sb, primary->b_blocknr, primary->b_data,
900 } /* ext4_group_add */
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).
907 * If we _really_ wanted, we could use default values to call ext4_group_add()
908 * allow the "remount" trick to work for arbitrary resizing, assuming enough
909 * GDT blocks are reserved to grow to the desired size.
911 int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es,
912 ext4_fsblk_t n_blocks_count)
914 ext4_fsblk_t o_blocks_count;
915 unsigned long o_groups_count;
918 struct buffer_head * bh;
921 unsigned long freed_blocks;
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. */
926 o_blocks_count = ext4_blocks_count(es);
927 o_groups_count = EXT4_SB(sb)->s_groups_count;
929 if (test_opt(sb, DEBUG))
930 printk(KERN_DEBUG "EXT4-fs: extending last group from %llu uto %llu blocks\n",
931 o_blocks_count, n_blocks_count);
933 if (n_blocks_count == 0 || n_blocks_count == o_blocks_count)
936 if (n_blocks_count > (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
937 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
938 " too large to resize to %llu blocks safely\n",
939 sb->s_id, n_blocks_count);
940 if (sizeof(sector_t) < 8)
941 ext4_warning(sb, __FUNCTION__,
942 "CONFIG_LBD not enabled\n");
946 if (n_blocks_count < o_blocks_count) {
947 ext4_warning(sb, __FUNCTION__,
948 "can't shrink FS - resize aborted");
952 /* Handle the remaining blocks in the last group only. */
953 ext4_get_group_no_and_offset(sb, o_blocks_count, NULL, &last);
956 ext4_warning(sb, __FUNCTION__,
957 "need to use ext2online to resize further");
961 add = EXT4_BLOCKS_PER_GROUP(sb) - last;
963 if (o_blocks_count + add < o_blocks_count) {
964 ext4_warning(sb, __FUNCTION__, "blocks_count overflow");
968 if (o_blocks_count + add > n_blocks_count)
969 add = n_blocks_count - o_blocks_count;
971 if (o_blocks_count + add < n_blocks_count)
972 ext4_warning(sb, __FUNCTION__,
973 "will only finish group (%llu"
975 o_blocks_count + add, add);
977 /* See if the device is actually as big as what was requested */
978 bh = sb_bread(sb, o_blocks_count + add -1);
980 ext4_warning(sb, __FUNCTION__,
981 "can't read last block, resize aborted");
986 /* We will update the superblock, one block bitmap, and
987 * one group descriptor via ext4_free_blocks().
989 handle = ext4_journal_start_sb(sb, 3);
990 if (IS_ERR(handle)) {
991 err = PTR_ERR(handle);
992 ext4_warning(sb, __FUNCTION__, "error %d on journal start",err);
997 if (o_blocks_count != ext4_blocks_count(es)) {
998 ext4_warning(sb, __FUNCTION__,
999 "multiple resizers run on filesystem!");
1005 if ((err = ext4_journal_get_write_access(handle,
1006 EXT4_SB(sb)->s_sbh))) {
1007 ext4_warning(sb, __FUNCTION__,
1008 "error %d on journal write access", err);
1010 ext4_journal_stop(handle);
1013 ext4_blocks_count_set(es, o_blocks_count + add);
1014 ext4_journal_dirty_metadata(handle, EXT4_SB(sb)->s_sbh);
1017 ext4_debug("freeing blocks %lu through %llu\n", o_blocks_count,
1018 o_blocks_count + add);
1019 ext4_free_blocks_sb(handle, sb, o_blocks_count, add, &freed_blocks);
1020 ext4_debug("freed blocks %llu through %llu\n", o_blocks_count,
1021 o_blocks_count + add);
1022 if ((err = ext4_journal_stop(handle)))
1024 if (test_opt(sb, DEBUG))
1025 printk(KERN_DEBUG "EXT4-fs: extended group to %llu blocks\n",
1026 ext4_blocks_count(es));
1027 update_backups(sb, EXT4_SB(sb)->s_sbh->b_blocknr, (char *)es,
1028 sizeof(struct ext4_super_block));
1031 } /* ext4_group_extend */