blob: 5b423f89efdac0bedff8c63319c8feaaeef98dec [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/resize.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
Mingming Cao617ba132006-10-11 01:20:53 -07004 * Support for resizing an ext4 filesystem while it is mounted.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005 *
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
Mingming Cao617ba132006-10-11 01:20:53 -070012#define EXT4FS_DEBUG
Dave Kleikampac27a0e2006-10-11 01:20:50 -070013
Dave Kleikampac27a0e2006-10-11 01:20:50 -070014#include <linux/errno.h>
15#include <linux/slab.h>
16
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040017#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070018
Yongqiang Yang8f82f842011-07-26 21:35:44 -040019int ext4_resize_begin(struct super_block *sb)
20{
21 int ret = 0;
22
23 if (!capable(CAP_SYS_RESOURCE))
24 return -EPERM;
25
Yongqiang Yangce723c32011-07-26 21:39:09 -040026 /*
27 * We are not allowed to do online-resizing on a filesystem mounted
28 * with error, because it can destroy the filesystem easily.
29 */
30 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
31 ext4_warning(sb, "There are errors in the filesystem, "
32 "so online resizing is not allowed\n");
33 return -EPERM;
34 }
35
Yongqiang Yang8f82f842011-07-26 21:35:44 -040036 if (test_and_set_bit_lock(EXT4_RESIZING, &EXT4_SB(sb)->s_resize_flags))
37 ret = -EBUSY;
38
39 return ret;
40}
41
42void ext4_resize_end(struct super_block *sb)
43{
44 clear_bit_unlock(EXT4_RESIZING, &EXT4_SB(sb)->s_resize_flags);
45 smp_mb__after_clear_bit();
46}
47
Dave Kleikampac27a0e2006-10-11 01:20:50 -070048#define outside(b, first, last) ((b) < (first) || (b) >= (last))
49#define inside(b, first, last) ((b) >= (first) && (b) < (last))
50
51static int verify_group_input(struct super_block *sb,
Mingming Cao617ba132006-10-11 01:20:53 -070052 struct ext4_new_group_data *input)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070053{
Mingming Cao617ba132006-10-11 01:20:53 -070054 struct ext4_sb_info *sbi = EXT4_SB(sb);
55 struct ext4_super_block *es = sbi->s_es;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070056 ext4_fsblk_t start = ext4_blocks_count(es);
Mingming Cao617ba132006-10-11 01:20:53 -070057 ext4_fsblk_t end = start + input->blocks_count;
Avantika Mathurfd2d4292008-01-28 23:58:27 -050058 ext4_group_t group = input->group;
Mingming Cao617ba132006-10-11 01:20:53 -070059 ext4_fsblk_t itend = input->inode_table + sbi->s_itb_per_group;
60 unsigned overhead = ext4_bg_has_super(sb, group) ?
61 (1 + ext4_bg_num_gdb(sb, group) +
Dave Kleikampac27a0e2006-10-11 01:20:50 -070062 le16_to_cpu(es->s_reserved_gdt_blocks)) : 0;
Mingming Cao617ba132006-10-11 01:20:53 -070063 ext4_fsblk_t metaend = start + overhead;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070064 struct buffer_head *bh = NULL;
Mingming Cao3a5b2ec2006-10-11 01:21:05 -070065 ext4_grpblk_t free_blocks_count, offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070066 int err = -EINVAL;
67
68 input->free_blocks_count = free_blocks_count =
69 input->blocks_count - 2 - overhead - sbi->s_itb_per_group;
70
71 if (test_opt(sb, DEBUG))
Mingming Cao617ba132006-10-11 01:20:53 -070072 printk(KERN_DEBUG "EXT4-fs: adding %s group %u: %u blocks "
Dave Kleikampac27a0e2006-10-11 01:20:50 -070073 "(%d free, %u reserved)\n",
Mingming Cao617ba132006-10-11 01:20:53 -070074 ext4_bg_has_super(sb, input->group) ? "normal" :
Dave Kleikampac27a0e2006-10-11 01:20:50 -070075 "no-super", input->group, input->blocks_count,
76 free_blocks_count, input->reserved_blocks);
77
Mingming Cao3a5b2ec2006-10-11 01:21:05 -070078 ext4_get_group_no_and_offset(sb, start, NULL, &offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070079 if (group != sbi->s_groups_count)
Eric Sandeen12062dd2010-02-15 14:19:27 -050080 ext4_warning(sb, "Cannot add at group %u (only %u groups)",
Dave Kleikampac27a0e2006-10-11 01:20:50 -070081 input->group, sbi->s_groups_count);
Mingming Cao3a5b2ec2006-10-11 01:21:05 -070082 else if (offset != 0)
Eric Sandeen12062dd2010-02-15 14:19:27 -050083 ext4_warning(sb, "Last group not full");
Dave Kleikampac27a0e2006-10-11 01:20:50 -070084 else if (input->reserved_blocks > input->blocks_count / 5)
Eric Sandeen12062dd2010-02-15 14:19:27 -050085 ext4_warning(sb, "Reserved blocks too high (%u)",
Dave Kleikampac27a0e2006-10-11 01:20:50 -070086 input->reserved_blocks);
87 else if (free_blocks_count < 0)
Eric Sandeen12062dd2010-02-15 14:19:27 -050088 ext4_warning(sb, "Bad blocks count %u",
Dave Kleikampac27a0e2006-10-11 01:20:50 -070089 input->blocks_count);
90 else if (!(bh = sb_bread(sb, end - 1)))
Eric Sandeen12062dd2010-02-15 14:19:27 -050091 ext4_warning(sb, "Cannot read last block (%llu)",
Dave Kleikampac27a0e2006-10-11 01:20:50 -070092 end - 1);
93 else if (outside(input->block_bitmap, start, end))
Eric Sandeen12062dd2010-02-15 14:19:27 -050094 ext4_warning(sb, "Block bitmap not in group (block %llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -070095 (unsigned long long)input->block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070096 else if (outside(input->inode_bitmap, start, end))
Eric Sandeen12062dd2010-02-15 14:19:27 -050097 ext4_warning(sb, "Inode bitmap not in group (block %llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -070098 (unsigned long long)input->inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070099 else if (outside(input->inode_table, start, end) ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400100 outside(itend - 1, start, end))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500101 ext4_warning(sb, "Inode table not in group (blocks %llu-%llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -0700102 (unsigned long long)input->inode_table, itend - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700103 else if (input->inode_bitmap == input->block_bitmap)
Eric Sandeen12062dd2010-02-15 14:19:27 -0500104 ext4_warning(sb, "Block bitmap same as inode bitmap (%llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -0700105 (unsigned long long)input->block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700106 else if (inside(input->block_bitmap, input->inode_table, itend))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500107 ext4_warning(sb, "Block bitmap (%llu) in inode table "
108 "(%llu-%llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -0700109 (unsigned long long)input->block_bitmap,
110 (unsigned long long)input->inode_table, itend - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700111 else if (inside(input->inode_bitmap, input->inode_table, itend))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500112 ext4_warning(sb, "Inode bitmap (%llu) in inode table "
113 "(%llu-%llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -0700114 (unsigned long long)input->inode_bitmap,
115 (unsigned long long)input->inode_table, itend - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700116 else if (inside(input->block_bitmap, start, metaend))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500117 ext4_warning(sb, "Block bitmap (%llu) in GDT table (%llu-%llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -0700118 (unsigned long long)input->block_bitmap,
119 start, metaend - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700120 else if (inside(input->inode_bitmap, start, metaend))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500121 ext4_warning(sb, "Inode bitmap (%llu) in GDT table (%llu-%llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -0700122 (unsigned long long)input->inode_bitmap,
123 start, metaend - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700124 else if (inside(input->inode_table, start, metaend) ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400125 inside(itend - 1, start, metaend))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500126 ext4_warning(sb, "Inode table (%llu-%llu) overlaps GDT table "
127 "(%llu-%llu)",
Randy Dunlap1939e492006-10-28 10:38:26 -0700128 (unsigned long long)input->inode_table,
129 itend - 1, start, metaend - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700130 else
131 err = 0;
132 brelse(bh);
133
134 return err;
135}
136
137static struct buffer_head *bclean(handle_t *handle, struct super_block *sb,
Mingming Cao617ba132006-10-11 01:20:53 -0700138 ext4_fsblk_t blk)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700139{
140 struct buffer_head *bh;
141 int err;
142
143 bh = sb_getblk(sb, blk);
144 if (!bh)
145 return ERR_PTR(-EIO);
Mingming Cao617ba132006-10-11 01:20:53 -0700146 if ((err = ext4_journal_get_write_access(handle, bh))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700147 brelse(bh);
148 bh = ERR_PTR(err);
149 } else {
150 lock_buffer(bh);
151 memset(bh->b_data, 0, sb->s_blocksize);
152 set_buffer_uptodate(bh);
153 unlock_buffer(bh);
154 }
155
156 return bh;
157}
158
159/*
Eric Sandeen14904102007-10-16 18:38:25 -0400160 * If we have fewer than thresh credits, extend by EXT4_MAX_TRANS_DATA.
161 * If that fails, restart the transaction & regain write access for the
162 * buffer head which is used for block_bitmap modifications.
163 */
Yongqiang Yang6d40bc52011-07-26 22:24:41 -0400164static int extend_or_restart_transaction(handle_t *handle, int thresh)
Eric Sandeen14904102007-10-16 18:38:25 -0400165{
166 int err;
167
Frank Mayhar03901312009-01-07 00:06:22 -0500168 if (ext4_handle_has_enough_credits(handle, thresh))
Eric Sandeen14904102007-10-16 18:38:25 -0400169 return 0;
170
171 err = ext4_journal_extend(handle, EXT4_MAX_TRANS_DATA);
172 if (err < 0)
173 return err;
174 if (err) {
Yongqiang Yang6d40bc52011-07-26 22:24:41 -0400175 err = ext4_journal_restart(handle, EXT4_MAX_TRANS_DATA);
176 if (err)
Eric Sandeen14904102007-10-16 18:38:25 -0400177 return err;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400178 }
Eric Sandeen14904102007-10-16 18:38:25 -0400179
180 return 0;
181}
182
183/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700184 * Set up the block and inode bitmaps, and the inode table for the new group.
185 * This doesn't need to be part of the main transaction, since we are only
186 * changing blocks outside the actual filesystem. We still do journaling to
187 * ensure the recovery is correct in case of a failure just after resize.
188 * If any part of this fails, we simply abort the resize.
189 */
190static int setup_new_group_blocks(struct super_block *sb,
Mingming Cao617ba132006-10-11 01:20:53 -0700191 struct ext4_new_group_data *input)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700192{
Mingming Cao617ba132006-10-11 01:20:53 -0700193 struct ext4_sb_info *sbi = EXT4_SB(sb);
194 ext4_fsblk_t start = ext4_group_first_block_no(sb, input->group);
195 int reserved_gdb = ext4_bg_has_super(sb, input->group) ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700196 le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) : 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700197 unsigned long gdblocks = ext4_bg_num_gdb(sb, input->group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700198 struct buffer_head *bh;
199 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -0700200 ext4_fsblk_t block;
201 ext4_grpblk_t bit;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700202 int i;
203 int err = 0, err2;
204
Eric Sandeen14904102007-10-16 18:38:25 -0400205 /* This transaction may be extended/restarted along the way */
206 handle = ext4_journal_start_sb(sb, EXT4_MAX_TRANS_DATA);
207
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700208 if (IS_ERR(handle))
209 return PTR_ERR(handle);
210
Yongqiang Yang8f82f842011-07-26 21:35:44 -0400211 BUG_ON(input->group != sbi->s_groups_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700212
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700213 /* Copy all of the GDT blocks into the backup in this group */
214 for (i = 0, bit = 1, block = start + 1;
215 i < gdblocks; i++, block++, bit++) {
216 struct buffer_head *gdb;
217
Eric Sandeenc549a952008-01-28 23:58:27 -0500218 ext4_debug("update backup group %#04llx (+%d)\n", block, bit);
Yongqiang Yang6d40bc52011-07-26 22:24:41 -0400219 err = extend_or_restart_transaction(handle, 1);
220 if (err)
221 goto exit_journal;
Eric Sandeen14904102007-10-16 18:38:25 -0400222
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700223 gdb = sb_getblk(sb, block);
224 if (!gdb) {
225 err = -EIO;
Yongqiang Yang6d40bc52011-07-26 22:24:41 -0400226 goto exit_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700227 }
Mingming Cao617ba132006-10-11 01:20:53 -0700228 if ((err = ext4_journal_get_write_access(handle, gdb))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229 brelse(gdb);
Yongqiang Yang6d40bc52011-07-26 22:24:41 -0400230 goto exit_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231 }
Eric Sandeen5b615282007-10-16 18:38:25 -0400232 lock_buffer(gdb);
233 memcpy(gdb->b_data, sbi->s_group_desc[i]->b_data, gdb->b_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700234 set_buffer_uptodate(gdb);
Eric Sandeen5b615282007-10-16 18:38:25 -0400235 unlock_buffer(gdb);
Theodore Ts'ob4097142011-01-10 12:46:59 -0500236 err = ext4_handle_dirty_metadata(handle, NULL, gdb);
237 if (unlikely(err)) {
238 brelse(gdb);
Yongqiang Yang6d40bc52011-07-26 22:24:41 -0400239 goto exit_journal;
Theodore Ts'ob4097142011-01-10 12:46:59 -0500240 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241 brelse(gdb);
242 }
243
244 /* Zero out all of the reserved backup group descriptor table blocks */
Theodore Ts'oda4889452011-02-21 20:39:58 -0500245 ext4_debug("clear inode table blocks %#04llx -> %#04lx\n",
Lukas Czernera31437b2010-10-27 21:30:05 -0400246 block, sbi->s_itb_per_group);
247 err = sb_issue_zeroout(sb, gdblocks + start + 1, reserved_gdb,
Theodore Ts'oa107e5a2010-10-27 23:44:47 -0400248 GFP_NOFS);
Lukas Czernera31437b2010-10-27 21:30:05 -0400249 if (err)
Yongqiang Yang6d40bc52011-07-26 22:24:41 -0400250 goto exit_journal;
251
252 err = extend_or_restart_transaction(handle, 2);
253 if (err)
254 goto exit_journal;
255
256 bh = bclean(handle, sb, input->block_bitmap);
257 if (IS_ERR(bh)) {
258 err = PTR_ERR(bh);
259 goto exit_journal;
260 }
Yongqiang Yangc3e94d12011-07-26 22:05:53 -0400261
262 if (ext4_bg_has_super(sb, input->group)) {
263 ext4_debug("mark backup group tables %#04llx (+0)\n", start);
264 ext4_set_bits(bh->b_data, 0, gdblocks + reserved_gdb + 1);
265 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266
Eric Sandeenc549a952008-01-28 23:58:27 -0500267 ext4_debug("mark block bitmap %#04llx (+%llu)\n", input->block_bitmap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268 input->block_bitmap - start);
Mingming Cao617ba132006-10-11 01:20:53 -0700269 ext4_set_bit(input->block_bitmap - start, bh->b_data);
Eric Sandeenc549a952008-01-28 23:58:27 -0500270 ext4_debug("mark inode bitmap %#04llx (+%llu)\n", input->inode_bitmap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700271 input->inode_bitmap - start);
Mingming Cao617ba132006-10-11 01:20:53 -0700272 ext4_set_bit(input->inode_bitmap - start, bh->b_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700273
274 /* Zero out all of the inode table blocks */
Lukas Czernera31437b2010-10-27 21:30:05 -0400275 block = input->inode_table;
Theodore Ts'oda4889452011-02-21 20:39:58 -0500276 ext4_debug("clear inode table blocks %#04llx -> %#04lx\n",
Lukas Czernera31437b2010-10-27 21:30:05 -0400277 block, sbi->s_itb_per_group);
Theodore Ts'oa107e5a2010-10-27 23:44:47 -0400278 err = sb_issue_zeroout(sb, block, sbi->s_itb_per_group, GFP_NOFS);
Lukas Czernera31437b2010-10-27 21:30:05 -0400279 if (err)
280 goto exit_bh;
Yongqiang Yangc3e94d12011-07-26 22:05:53 -0400281 ext4_set_bits(bh->b_data, input->inode_table - start,
282 sbi->s_itb_per_group);
Eric Sandeen14904102007-10-16 18:38:25 -0400283
Eric Sandeen14904102007-10-16 18:38:25 -0400284
Theodore Ts'o61d08672010-10-27 21:30:15 -0400285 ext4_mark_bitmap_end(input->blocks_count, sb->s_blocksize * 8,
286 bh->b_data);
Theodore Ts'ob4097142011-01-10 12:46:59 -0500287 err = ext4_handle_dirty_metadata(handle, NULL, bh);
288 if (unlikely(err)) {
289 ext4_std_error(sb, err);
290 goto exit_bh;
291 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700292 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700293 /* Mark unused entries in inode bitmap used */
Eric Sandeenc549a952008-01-28 23:58:27 -0500294 ext4_debug("clear inode bitmap %#04llx (+%llu)\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700295 input->inode_bitmap, input->inode_bitmap - start);
296 if (IS_ERR(bh = bclean(handle, sb, input->inode_bitmap))) {
297 err = PTR_ERR(bh);
298 goto exit_journal;
299 }
300
Theodore Ts'o61d08672010-10-27 21:30:15 -0400301 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
302 bh->b_data);
Theodore Ts'ob4097142011-01-10 12:46:59 -0500303 err = ext4_handle_dirty_metadata(handle, NULL, bh);
304 if (unlikely(err))
305 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306exit_bh:
307 brelse(bh);
308
309exit_journal:
Mingming Cao617ba132006-10-11 01:20:53 -0700310 if ((err2 = ext4_journal_stop(handle)) && !err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700311 err = err2;
312
313 return err;
314}
315
316/*
317 * Iterate through the groups which hold BACKUP superblock/GDT copies in an
Mingming Cao617ba132006-10-11 01:20:53 -0700318 * ext4 filesystem. The counters should be initialized to 1, 5, and 7 before
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700319 * calling this for the first time. In a sparse filesystem it will be the
320 * sequence of powers of 3, 5, and 7: 1, 3, 5, 7, 9, 25, 27, 49, 81, ...
321 * For a non-sparse filesystem it will be every group: 1, 2, 3, 4, ...
322 */
Mingming Cao617ba132006-10-11 01:20:53 -0700323static unsigned ext4_list_backups(struct super_block *sb, unsigned *three,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700324 unsigned *five, unsigned *seven)
325{
326 unsigned *min = three;
327 int mult = 3;
328 unsigned ret;
329
Mingming Cao617ba132006-10-11 01:20:53 -0700330 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
331 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700332 ret = *min;
333 *min += 1;
334 return ret;
335 }
336
337 if (*five < *min) {
338 min = five;
339 mult = 5;
340 }
341 if (*seven < *min) {
342 min = seven;
343 mult = 7;
344 }
345
346 ret = *min;
347 *min *= mult;
348
349 return ret;
350}
351
352/*
353 * Check that all of the backup GDT blocks are held in the primary GDT block.
354 * It is assumed that they are stored in group order. Returns the number of
355 * groups in current filesystem that have BACKUPS, or -ve error code.
356 */
357static int verify_reserved_gdb(struct super_block *sb,
358 struct buffer_head *primary)
359{
Mingming Cao617ba132006-10-11 01:20:53 -0700360 const ext4_fsblk_t blk = primary->b_blocknr;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500361 const ext4_group_t end = EXT4_SB(sb)->s_groups_count;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700362 unsigned three = 1;
363 unsigned five = 5;
364 unsigned seven = 7;
365 unsigned grp;
366 __le32 *p = (__le32 *)primary->b_data;
367 int gdbackups = 0;
368
Mingming Cao617ba132006-10-11 01:20:53 -0700369 while ((grp = ext4_list_backups(sb, &three, &five, &seven)) < end) {
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700370 if (le32_to_cpu(*p++) !=
371 grp * EXT4_BLOCKS_PER_GROUP(sb) + blk){
Eric Sandeen12062dd2010-02-15 14:19:27 -0500372 ext4_warning(sb, "reserved GDT %llu"
Mingming Cao2ae02102006-10-11 01:21:11 -0700373 " missing grp %d (%llu)",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700374 blk, grp,
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700375 grp *
376 (ext4_fsblk_t)EXT4_BLOCKS_PER_GROUP(sb) +
377 blk);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700378 return -EINVAL;
379 }
Mingming Cao617ba132006-10-11 01:20:53 -0700380 if (++gdbackups > EXT4_ADDR_PER_BLOCK(sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700381 return -EFBIG;
382 }
383
384 return gdbackups;
385}
386
387/*
388 * Called when we need to bring a reserved group descriptor table block into
389 * use from the resize inode. The primary copy of the new GDT block currently
390 * is an indirect block (under the double indirect block in the resize inode).
391 * The new backup GDT blocks will be stored as leaf blocks in this indirect
392 * block, in group order. Even though we know all the block numbers we need,
393 * we check to ensure that the resize inode has actually reserved these blocks.
394 *
395 * Don't need to update the block bitmaps because the blocks are still in use.
396 *
397 * We get all of the error cases out of the way, so that we are sure to not
398 * fail once we start modifying the data on disk, because JBD has no rollback.
399 */
400static int add_new_gdb(handle_t *handle, struct inode *inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700401 struct ext4_new_group_data *input,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700402 struct buffer_head **primary)
403{
404 struct super_block *sb = inode->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -0700405 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
406 unsigned long gdb_num = input->group / EXT4_DESC_PER_BLOCK(sb);
407 ext4_fsblk_t gdblock = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + gdb_num;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700408 struct buffer_head **o_group_desc, **n_group_desc;
409 struct buffer_head *dind;
410 int gdbackups;
Mingming Cao617ba132006-10-11 01:20:53 -0700411 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700412 __le32 *data;
413 int err;
414
415 if (test_opt(sb, DEBUG))
416 printk(KERN_DEBUG
Mingming Cao617ba132006-10-11 01:20:53 -0700417 "EXT4-fs: ext4_add_new_gdb: adding group block %lu\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700418 gdb_num);
419
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400420 /*
421 * If we are not using the primary superblock/GDT copy don't resize,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400422 * because the user tools have no way of handling this. Probably a
423 * bad time to do it anyways.
424 */
Mingming Cao617ba132006-10-11 01:20:53 -0700425 if (EXT4_SB(sb)->s_sbh->b_blocknr !=
426 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500427 ext4_warning(sb, "won't resize using backup superblock at %llu",
Mingming Cao617ba132006-10-11 01:20:53 -0700428 (unsigned long long)EXT4_SB(sb)->s_sbh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700429 return -EPERM;
430 }
431
432 *primary = sb_bread(sb, gdblock);
433 if (!*primary)
434 return -EIO;
435
436 if ((gdbackups = verify_reserved_gdb(sb, *primary)) < 0) {
437 err = gdbackups;
438 goto exit_bh;
439 }
440
Mingming Cao617ba132006-10-11 01:20:53 -0700441 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700442 dind = sb_bread(sb, le32_to_cpu(*data));
443 if (!dind) {
444 err = -EIO;
445 goto exit_bh;
446 }
447
448 data = (__le32 *)dind->b_data;
Mingming Cao617ba132006-10-11 01:20:53 -0700449 if (le32_to_cpu(data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)]) != gdblock) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500450 ext4_warning(sb, "new group %u GDT block %llu not reserved",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700451 input->group, gdblock);
452 err = -EINVAL;
453 goto exit_dind;
454 }
455
Theodore Ts'ob4097142011-01-10 12:46:59 -0500456 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
457 if (unlikely(err))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700458 goto exit_dind;
459
Theodore Ts'ob4097142011-01-10 12:46:59 -0500460 err = ext4_journal_get_write_access(handle, *primary);
461 if (unlikely(err))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700462 goto exit_sbh;
463
Theodore Ts'ob4097142011-01-10 12:46:59 -0500464 err = ext4_journal_get_write_access(handle, dind);
465 if (unlikely(err))
466 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700467
Mingming Cao617ba132006-10-11 01:20:53 -0700468 /* ext4_reserve_inode_write() gets a reference on the iloc */
Theodore Ts'ob4097142011-01-10 12:46:59 -0500469 err = ext4_reserve_inode_write(handle, inode, &iloc);
470 if (unlikely(err))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700471 goto exit_dindj;
472
473 n_group_desc = kmalloc((gdb_num + 1) * sizeof(struct buffer_head *),
Josef Bacik216553c2008-04-29 22:02:02 -0400474 GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700475 if (!n_group_desc) {
476 err = -ENOMEM;
Eric Sandeen12062dd2010-02-15 14:19:27 -0500477 ext4_warning(sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700478 "not enough memory for %lu groups", gdb_num + 1);
479 goto exit_inode;
480 }
481
482 /*
483 * Finally, we have all of the possible failures behind us...
484 *
485 * Remove new GDT block from inode double-indirect block and clear out
486 * the new GDT block for use (which also "frees" the backup GDT blocks
487 * from the reserved inode). We don't need to change the bitmaps for
488 * these blocks, because they are marked as in-use from being in the
489 * reserved inode, and will become GDT blocks (primary and backup).
490 */
Mingming Cao617ba132006-10-11 01:20:53 -0700491 data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)] = 0;
Theodore Ts'ob4097142011-01-10 12:46:59 -0500492 err = ext4_handle_dirty_metadata(handle, NULL, dind);
493 if (unlikely(err)) {
494 ext4_std_error(sb, err);
495 goto exit_inode;
496 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700497 inode->i_blocks -= (gdbackups + 1) * sb->s_blocksize >> 9;
Mingming Cao617ba132006-10-11 01:20:53 -0700498 ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700499 memset((*primary)->b_data, 0, sb->s_blocksize);
Theodore Ts'ob4097142011-01-10 12:46:59 -0500500 err = ext4_handle_dirty_metadata(handle, NULL, *primary);
501 if (unlikely(err)) {
502 ext4_std_error(sb, err);
503 goto exit_inode;
504 }
505 brelse(dind);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700506
Mingming Cao617ba132006-10-11 01:20:53 -0700507 o_group_desc = EXT4_SB(sb)->s_group_desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700508 memcpy(n_group_desc, o_group_desc,
Mingming Cao617ba132006-10-11 01:20:53 -0700509 EXT4_SB(sb)->s_gdb_count * sizeof(struct buffer_head *));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700510 n_group_desc[gdb_num] = *primary;
Mingming Cao617ba132006-10-11 01:20:53 -0700511 EXT4_SB(sb)->s_group_desc = n_group_desc;
512 EXT4_SB(sb)->s_gdb_count++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700513 kfree(o_group_desc);
514
Marcin Slusarze8546d02008-04-17 10:38:59 -0400515 le16_add_cpu(&es->s_reserved_gdt_blocks, -1);
Theodore Ts'ob4097142011-01-10 12:46:59 -0500516 err = ext4_handle_dirty_metadata(handle, NULL, EXT4_SB(sb)->s_sbh);
517 if (err)
518 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519
Theodore Ts'ob4097142011-01-10 12:46:59 -0500520 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700521
522exit_inode:
Amir Goldstein537a0312011-03-20 22:57:02 -0400523 /* ext4_handle_release_buffer(handle, iloc.bh); */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700524 brelse(iloc.bh);
525exit_dindj:
Amir Goldstein537a0312011-03-20 22:57:02 -0400526 /* ext4_handle_release_buffer(handle, dind); */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700527exit_sbh:
Amir Goldstein537a0312011-03-20 22:57:02 -0400528 /* ext4_handle_release_buffer(handle, EXT4_SB(sb)->s_sbh); */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700529exit_dind:
530 brelse(dind);
531exit_bh:
532 brelse(*primary);
533
Mingming Cao617ba132006-10-11 01:20:53 -0700534 ext4_debug("leaving with error %d\n", err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700535 return err;
536}
537
538/*
539 * Called when we are adding a new group which has a backup copy of each of
540 * the GDT blocks (i.e. sparse group) and there are reserved GDT blocks.
541 * We need to add these reserved backup GDT blocks to the resize inode, so
542 * that they are kept for future resizing and not allocated to files.
543 *
544 * Each reserved backup GDT block will go into a different indirect block.
545 * The indirect blocks are actually the primary reserved GDT blocks,
546 * so we know in advance what their block numbers are. We only get the
547 * double-indirect block to verify it is pointing to the primary reserved
548 * GDT blocks so we don't overwrite a data block by accident. The reserved
549 * backup GDT blocks are stored in their reserved primary GDT block.
550 */
551static int reserve_backup_gdb(handle_t *handle, struct inode *inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700552 struct ext4_new_group_data *input)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700553{
554 struct super_block *sb = inode->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -0700555 int reserved_gdb =le16_to_cpu(EXT4_SB(sb)->s_es->s_reserved_gdt_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700556 struct buffer_head **primary;
557 struct buffer_head *dind;
Mingming Cao617ba132006-10-11 01:20:53 -0700558 struct ext4_iloc iloc;
559 ext4_fsblk_t blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700560 __le32 *data, *end;
561 int gdbackups = 0;
562 int res, i;
563 int err;
564
Josef Bacik216553c2008-04-29 22:02:02 -0400565 primary = kmalloc(reserved_gdb * sizeof(*primary), GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700566 if (!primary)
567 return -ENOMEM;
568
Mingming Cao617ba132006-10-11 01:20:53 -0700569 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700570 dind = sb_bread(sb, le32_to_cpu(*data));
571 if (!dind) {
572 err = -EIO;
573 goto exit_free;
574 }
575
Mingming Cao617ba132006-10-11 01:20:53 -0700576 blk = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + EXT4_SB(sb)->s_gdb_count;
Josef Bacik94460092008-06-06 18:05:52 -0400577 data = (__le32 *)dind->b_data + (EXT4_SB(sb)->s_gdb_count %
578 EXT4_ADDR_PER_BLOCK(sb));
Mingming Cao617ba132006-10-11 01:20:53 -0700579 end = (__le32 *)dind->b_data + EXT4_ADDR_PER_BLOCK(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580
581 /* Get each reserved primary GDT block and verify it holds backups */
582 for (res = 0; res < reserved_gdb; res++, blk++) {
583 if (le32_to_cpu(*data) != blk) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500584 ext4_warning(sb, "reserved block %llu"
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700585 " not at offset %ld",
586 blk,
587 (long)(data - (__le32 *)dind->b_data));
588 err = -EINVAL;
589 goto exit_bh;
590 }
591 primary[res] = sb_bread(sb, blk);
592 if (!primary[res]) {
593 err = -EIO;
594 goto exit_bh;
595 }
596 if ((gdbackups = verify_reserved_gdb(sb, primary[res])) < 0) {
597 brelse(primary[res]);
598 err = gdbackups;
599 goto exit_bh;
600 }
601 if (++data >= end)
602 data = (__le32 *)dind->b_data;
603 }
604
605 for (i = 0; i < reserved_gdb; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -0700606 if ((err = ext4_journal_get_write_access(handle, primary[i]))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700607 /*
608 int j;
609 for (j = 0; j < i; j++)
Amir Goldstein537a0312011-03-20 22:57:02 -0400610 ext4_handle_release_buffer(handle, primary[j]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700611 */
612 goto exit_bh;
613 }
614 }
615
Mingming Cao617ba132006-10-11 01:20:53 -0700616 if ((err = ext4_reserve_inode_write(handle, inode, &iloc)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700617 goto exit_bh;
618
619 /*
620 * Finally we can add each of the reserved backup GDT blocks from
621 * the new group to its reserved primary GDT block.
622 */
Mingming Cao617ba132006-10-11 01:20:53 -0700623 blk = input->group * EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700624 for (i = 0; i < reserved_gdb; i++) {
625 int err2;
626 data = (__le32 *)primary[i]->b_data;
627 /* printk("reserving backup %lu[%u] = %lu\n",
628 primary[i]->b_blocknr, gdbackups,
629 blk + primary[i]->b_blocknr); */
630 data[gdbackups] = cpu_to_le32(blk + primary[i]->b_blocknr);
Frank Mayhar03901312009-01-07 00:06:22 -0500631 err2 = ext4_handle_dirty_metadata(handle, NULL, primary[i]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700632 if (!err)
633 err = err2;
634 }
635 inode->i_blocks += reserved_gdb * sb->s_blocksize >> 9;
Mingming Cao617ba132006-10-11 01:20:53 -0700636 ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700637
638exit_bh:
639 while (--res >= 0)
640 brelse(primary[res]);
641 brelse(dind);
642
643exit_free:
644 kfree(primary);
645
646 return err;
647}
648
649/*
Mingming Cao617ba132006-10-11 01:20:53 -0700650 * Update the backup copies of the ext4 metadata. These don't need to be part
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700651 * of the main resize transaction, because e2fsck will re-write them if there
652 * is a problem (basically only OOM will cause a problem). However, we
653 * _should_ update the backups if possible, in case the primary gets trashed
654 * for some reason and we need to run e2fsck from a backup superblock. The
655 * important part is that the new block and inode counts are in the backup
656 * superblocks, and the location of the new group metadata in the GDT backups.
657 *
Theodore Ts'o32ed5052009-04-25 22:53:39 -0400658 * We do not need take the s_resize_lock for this, because these
659 * blocks are not otherwise touched by the filesystem code when it is
660 * mounted. We don't need to worry about last changing from
661 * sbi->s_groups_count, because the worst that can happen is that we
662 * do not copy the full number of backups at this time. The resize
663 * which changed s_groups_count will backup again.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700664 */
665static void update_backups(struct super_block *sb,
666 int blk_off, char *data, int size)
667{
Mingming Cao617ba132006-10-11 01:20:53 -0700668 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500669 const ext4_group_t last = sbi->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700670 const int bpg = EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671 unsigned three = 1;
672 unsigned five = 5;
673 unsigned seven = 7;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500674 ext4_group_t group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700675 int rest = sb->s_blocksize - size;
676 handle_t *handle;
677 int err = 0, err2;
678
Mingming Cao617ba132006-10-11 01:20:53 -0700679 handle = ext4_journal_start_sb(sb, EXT4_MAX_TRANS_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700680 if (IS_ERR(handle)) {
681 group = 1;
682 err = PTR_ERR(handle);
683 goto exit_err;
684 }
685
Mingming Cao617ba132006-10-11 01:20:53 -0700686 while ((group = ext4_list_backups(sb, &three, &five, &seven)) < last) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700687 struct buffer_head *bh;
688
689 /* Out of journal space, and can't get more - abort - so sad */
Frank Mayhar03901312009-01-07 00:06:22 -0500690 if (ext4_handle_valid(handle) &&
691 handle->h_buffer_credits == 0 &&
Mingming Cao617ba132006-10-11 01:20:53 -0700692 ext4_journal_extend(handle, EXT4_MAX_TRANS_DATA) &&
693 (err = ext4_journal_restart(handle, EXT4_MAX_TRANS_DATA)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700694 break;
695
696 bh = sb_getblk(sb, group * bpg + blk_off);
697 if (!bh) {
698 err = -EIO;
699 break;
700 }
Mingming Cao617ba132006-10-11 01:20:53 -0700701 ext4_debug("update metadata backup %#04lx\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702 (unsigned long)bh->b_blocknr);
Mingming Cao617ba132006-10-11 01:20:53 -0700703 if ((err = ext4_journal_get_write_access(handle, bh)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700704 break;
705 lock_buffer(bh);
706 memcpy(bh->b_data, data, size);
707 if (rest)
708 memset(bh->b_data + size, 0, rest);
709 set_buffer_uptodate(bh);
710 unlock_buffer(bh);
Theodore Ts'ob4097142011-01-10 12:46:59 -0500711 err = ext4_handle_dirty_metadata(handle, NULL, bh);
712 if (unlikely(err))
713 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714 brelse(bh);
715 }
Mingming Cao617ba132006-10-11 01:20:53 -0700716 if ((err2 = ext4_journal_stop(handle)) && !err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717 err = err2;
718
719 /*
720 * Ugh! Need to have e2fsck write the backup copies. It is too
721 * late to revert the resize, we shouldn't fail just because of
722 * the backup copies (they are only needed in case of corruption).
723 *
724 * However, if we got here we have a journal problem too, so we
725 * can't really start a transaction to mark the superblock.
726 * Chicken out and just set the flag on the hope it will be written
727 * to disk, and if not - we will simply wait until next fsck.
728 */
729exit_err:
730 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500731 ext4_warning(sb, "can't update backup for group %u (err %d), "
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700732 "forcing fsck on next reboot", group, err);
Mingming Cao617ba132006-10-11 01:20:53 -0700733 sbi->s_mount_state &= ~EXT4_VALID_FS;
734 sbi->s_es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735 mark_buffer_dirty(sbi->s_sbh);
736 }
737}
738
739/* Add group descriptor data to an existing or new group descriptor block.
740 * Ensure we handle all possible error conditions _before_ we start modifying
741 * the filesystem, because we cannot abort the transaction and not have it
742 * write the data to disk.
743 *
744 * If we are on a GDT block boundary, we need to get the reserved GDT block.
745 * Otherwise, we may need to add backup GDT blocks for a sparse group.
746 *
747 * We only need to hold the superblock lock while we are actually adding
748 * in the new group's counts to the superblock. Prior to that we have
749 * not really "added" the group at all. We re-check that we are still
750 * adding in the last group in case things have changed since verifying.
751 */
Mingming Cao617ba132006-10-11 01:20:53 -0700752int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753{
Mingming Cao617ba132006-10-11 01:20:53 -0700754 struct ext4_sb_info *sbi = EXT4_SB(sb);
755 struct ext4_super_block *es = sbi->s_es;
756 int reserved_gdb = ext4_bg_has_super(sb, input->group) ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700757 le16_to_cpu(es->s_reserved_gdt_blocks) : 0;
758 struct buffer_head *primary = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700759 struct ext4_group_desc *gdp;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700760 struct inode *inode = NULL;
761 handle_t *handle;
762 int gdb_off, gdb_num;
763 int err, err2;
764
Mingming Cao617ba132006-10-11 01:20:53 -0700765 gdb_num = input->group / EXT4_DESC_PER_BLOCK(sb);
766 gdb_off = input->group % EXT4_DESC_PER_BLOCK(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700767
Mingming Cao617ba132006-10-11 01:20:53 -0700768 if (gdb_off == 0 && !EXT4_HAS_RO_COMPAT_FEATURE(sb,
769 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500770 ext4_warning(sb, "Can't resize non-sparse filesystem further");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700771 return -EPERM;
772 }
773
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700774 if (ext4_blocks_count(es) + input->blocks_count <
775 ext4_blocks_count(es)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500776 ext4_warning(sb, "blocks_count overflow");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777 return -EINVAL;
778 }
779
Mingming Cao617ba132006-10-11 01:20:53 -0700780 if (le32_to_cpu(es->s_inodes_count) + EXT4_INODES_PER_GROUP(sb) <
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700781 le32_to_cpu(es->s_inodes_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500782 ext4_warning(sb, "inodes_count overflow");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700783 return -EINVAL;
784 }
785
786 if (reserved_gdb || gdb_off == 0) {
Mingming Cao617ba132006-10-11 01:20:53 -0700787 if (!EXT4_HAS_COMPAT_FEATURE(sb,
Josef Bacik37609fd2008-08-19 22:13:41 -0400788 EXT4_FEATURE_COMPAT_RESIZE_INODE)
789 || !le16_to_cpu(es->s_reserved_gdt_blocks)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500790 ext4_warning(sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700791 "No reserved GDT blocks, can't resize");
792 return -EPERM;
793 }
David Howells1d1fe1e2008-02-07 00:15:37 -0800794 inode = ext4_iget(sb, EXT4_RESIZE_INO);
795 if (IS_ERR(inode)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500796 ext4_warning(sb, "Error opening resize inode");
David Howells1d1fe1e2008-02-07 00:15:37 -0800797 return PTR_ERR(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700798 }
799 }
800
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -0500801
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700802 if ((err = verify_group_input(sb, input)))
803 goto exit_put;
804
805 if ((err = setup_new_group_blocks(sb, input)))
806 goto exit_put;
807
808 /*
809 * We will always be modifying at least the superblock and a GDT
810 * block. If we are adding a group past the last current GDT block,
811 * we will also modify the inode and the dindirect block. If we
812 * are adding a group with superblock/GDT backups we will also
813 * modify each of the reserved GDT dindirect blocks.
814 */
Mingming Cao617ba132006-10-11 01:20:53 -0700815 handle = ext4_journal_start_sb(sb,
816 ext4_bg_has_super(sb, input->group) ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700817 3 + reserved_gdb : 4);
818 if (IS_ERR(handle)) {
819 err = PTR_ERR(handle);
820 goto exit_put;
821 }
822
Mingming Cao617ba132006-10-11 01:20:53 -0700823 if ((err = ext4_journal_get_write_access(handle, sbi->s_sbh)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700824 goto exit_journal;
825
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400826 /*
827 * We will only either add reserved group blocks to a backup group
828 * or remove reserved blocks for the first group in a new group block.
829 * Doing both would be mean more complex code, and sane people don't
830 * use non-sparse filesystems anymore. This is already checked above.
831 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700832 if (gdb_off) {
833 primary = sbi->s_group_desc[gdb_num];
Mingming Cao617ba132006-10-11 01:20:53 -0700834 if ((err = ext4_journal_get_write_access(handle, primary)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835 goto exit_journal;
836
Mingming Cao617ba132006-10-11 01:20:53 -0700837 if (reserved_gdb && ext4_bg_num_gdb(sb, input->group) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700838 (err = reserve_backup_gdb(handle, inode, input)))
839 goto exit_journal;
840 } else if ((err = add_new_gdb(handle, inode, input, &primary)))
841 goto exit_journal;
842
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400843 /*
844 * OK, now we've set up the new group. Time to make it active.
845 *
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400846 * so we have to be safe wrt. concurrent accesses the group
847 * data. So we need to be careful to set all of the relevant
848 * group descriptor data etc. *before* we enable the group.
849 *
850 * The key field here is sbi->s_groups_count: as long as
851 * that retains its old value, nobody is going to access the new
852 * group.
853 *
854 * So first we update all the descriptor metadata for the new
855 * group; then we update the total disk blocks count; then we
856 * update the groups count to enable the group; then finally we
857 * update the free space counts so that the system can start
858 * using the new disk blocks.
859 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700860
861 /* Update group descriptor block for new group */
Frederic Bohe28569222008-06-20 11:48:48 -0400862 gdp = (struct ext4_group_desc *)((char *)primary->b_data +
863 gdb_off * EXT4_DESC_SIZE(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700864
Theodore Ts'ofdff73f2009-01-26 19:06:41 -0500865 memset(gdp, 0, EXT4_DESC_SIZE(sb));
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700866 ext4_block_bitmap_set(sb, gdp, input->block_bitmap); /* LV FIXME */
867 ext4_inode_bitmap_set(sb, gdp, input->inode_bitmap); /* LV FIXME */
868 ext4_inode_table_set(sb, gdp, input->inode_table); /* LV FIXME */
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500869 ext4_free_blks_set(sb, gdp, input->free_blocks_count);
870 ext4_free_inodes_set(sb, gdp, EXT4_INODES_PER_GROUP(sb));
Theodore Ts'ofdff73f2009-01-26 19:06:41 -0500871 gdp->bg_flags = cpu_to_le16(EXT4_BG_INODE_ZEROED);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400872 gdp->bg_checksum = ext4_group_desc_csum(sbi, input->group, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873
874 /*
Frederic Bohe5f21b0e2008-07-11 19:27:31 -0400875 * We can allocate memory for mb_alloc based on the new group
876 * descriptor
877 */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -0500878 err = ext4_mb_add_groupinfo(sb, input->group, gdp);
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -0400879 if (err)
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400880 goto exit_journal;
881
Frederic Bohe5f21b0e2008-07-11 19:27:31 -0400882 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700883 * Make the new blocks and inodes valid next. We do this before
884 * increasing the group count so that once the group is enabled,
885 * all of its blocks and inodes are already valid.
886 *
887 * We always allocate group-by-group, then block-by-block or
888 * inode-by-inode within a group, so enabling these
889 * blocks/inodes before the group is live won't actually let us
890 * allocate the new space yet.
891 */
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700892 ext4_blocks_count_set(es, ext4_blocks_count(es) +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700893 input->blocks_count);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400894 le32_add_cpu(&es->s_inodes_count, EXT4_INODES_PER_GROUP(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700895
896 /*
897 * We need to protect s_groups_count against other CPUs seeing
898 * inconsistent state in the superblock.
899 *
900 * The precise rules we use are:
901 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700902 * * Writers must perform a smp_wmb() after updating all dependent
903 * data and before modifying the groups count
904 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700905 * * Readers must perform an smp_rmb() after reading the groups count
906 * and before reading any dependent data.
907 *
908 * NB. These rules can be relaxed when checking the group count
909 * while freeing data, as we can only allocate from a block
910 * group after serialising against the group count, and we can
911 * only then free after serialising in turn against that
912 * allocation.
913 */
914 smp_wmb();
915
916 /* Update the global fs size fields */
917 sbi->s_groups_count++;
918
Theodore Ts'ob4097142011-01-10 12:46:59 -0500919 err = ext4_handle_dirty_metadata(handle, NULL, primary);
920 if (unlikely(err)) {
921 ext4_std_error(sb, err);
922 goto exit_journal;
923 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700924
925 /* Update the reserved block counts only once the new group is
926 * active. */
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700927 ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700928 input->reserved_blocks);
929
930 /* Update the free space counts */
Peter Zijlstraaa0dff22007-10-16 23:25:42 -0700931 percpu_counter_add(&sbi->s_freeblocks_counter,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700932 input->free_blocks_count);
Peter Zijlstraaa0dff22007-10-16 23:25:42 -0700933 percpu_counter_add(&sbi->s_freeinodes_counter,
Mingming Cao617ba132006-10-11 01:20:53 -0700934 EXT4_INODES_PER_GROUP(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935
Eric Sandeen42007ef2010-05-16 01:00:00 -0400936 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG) &&
937 sbi->s_log_groups_per_flex) {
Frederic Bohec62a11f2008-09-08 10:20:24 -0400938 ext4_group_t flex_group;
939 flex_group = ext4_flex_group(sbi, input->group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500940 atomic_add(input->free_blocks_count,
941 &sbi->s_flex_groups[flex_group].free_blocks);
942 atomic_add(EXT4_INODES_PER_GROUP(sb),
943 &sbi->s_flex_groups[flex_group].free_inodes);
Frederic Bohec62a11f2008-09-08 10:20:24 -0400944 }
945
Theodore Ts'oa0375152010-06-11 23:14:04 -0400946 ext4_handle_dirty_super(handle, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700947
948exit_journal:
Mingming Cao617ba132006-10-11 01:20:53 -0700949 if ((err2 = ext4_journal_stop(handle)) && !err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700950 err = err2;
951 if (!err) {
952 update_backups(sb, sbi->s_sbh->b_blocknr, (char *)es,
Mingming Cao617ba132006-10-11 01:20:53 -0700953 sizeof(struct ext4_super_block));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700954 update_backups(sb, primary->b_blocknr, primary->b_data,
955 primary->b_size);
956 }
957exit_put:
958 iput(inode);
959 return err;
Mingming Cao617ba132006-10-11 01:20:53 -0700960} /* ext4_group_add */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700961
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400962/*
963 * Extend the filesystem to the new number of blocks specified. This entry
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700964 * point is only used to extend the current filesystem to the end of the last
965 * existing group. It can be accessed via ioctl, or by "remount,resize=<size>"
966 * for emergencies (because it has no dependencies on reserved blocks).
967 *
Mingming Cao617ba132006-10-11 01:20:53 -0700968 * If we _really_ wanted, we could use default values to call ext4_group_add()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700969 * allow the "remount" trick to work for arbitrary resizing, assuming enough
970 * GDT blocks are reserved to grow to the desired size.
971 */
Mingming Cao617ba132006-10-11 01:20:53 -0700972int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es,
973 ext4_fsblk_t n_blocks_count)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974{
Mingming Cao617ba132006-10-11 01:20:53 -0700975 ext4_fsblk_t o_blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700976 ext4_grpblk_t last;
977 ext4_grpblk_t add;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400978 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700979 handle_t *handle;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -0400980 int err, err2;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -0400981 ext4_group_t group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700983 o_blocks_count = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700984
985 if (test_opt(sb, DEBUG))
Yongqiang Yang2b79b092011-07-26 21:53:35 -0400986 printk(KERN_DEBUG "EXT4-fs: extending last group from %llu to %llu blocks\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700987 o_blocks_count, n_blocks_count);
988
989 if (n_blocks_count == 0 || n_blocks_count == o_blocks_count)
990 return 0;
991
992 if (n_blocks_count > (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700993 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Mingming Cao2ae02102006-10-11 01:21:11 -0700994 " too large to resize to %llu blocks safely\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995 sb->s_id, n_blocks_count);
996 if (sizeof(sector_t) < 8)
Eric Sandeen12062dd2010-02-15 14:19:27 -0500997 ext4_warning(sb, "CONFIG_LBDAF not enabled");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998 return -EINVAL;
999 }
1000
1001 if (n_blocks_count < o_blocks_count) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001002 ext4_warning(sb, "can't shrink FS - resize aborted");
Yongqiang Yang8f82f842011-07-26 21:35:44 -04001003 return -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001004 }
1005
1006 /* Handle the remaining blocks in the last group only. */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04001007 ext4_get_group_no_and_offset(sb, o_blocks_count, &group, &last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001008
1009 if (last == 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001010 ext4_warning(sb, "need to use ext2online to resize further");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011 return -EPERM;
1012 }
1013
Mingming Cao617ba132006-10-11 01:20:53 -07001014 add = EXT4_BLOCKS_PER_GROUP(sb) - last;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001015
1016 if (o_blocks_count + add < o_blocks_count) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001017 ext4_warning(sb, "blocks_count overflow");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001018 return -EINVAL;
1019 }
1020
1021 if (o_blocks_count + add > n_blocks_count)
1022 add = n_blocks_count - o_blocks_count;
1023
1024 if (o_blocks_count + add < n_blocks_count)
Eric Sandeen12062dd2010-02-15 14:19:27 -05001025 ext4_warning(sb, "will only finish group (%llu blocks, %u new)",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001026 o_blocks_count + add, add);
1027
1028 /* See if the device is actually as big as what was requested */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001029 bh = sb_bread(sb, o_blocks_count + add - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001030 if (!bh) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001031 ext4_warning(sb, "can't read last block, resize aborted");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001032 return -ENOSPC;
1033 }
1034 brelse(bh);
1035
1036 /* We will update the superblock, one block bitmap, and
Mingming Cao617ba132006-10-11 01:20:53 -07001037 * one group descriptor via ext4_free_blocks().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001038 */
Mingming Cao617ba132006-10-11 01:20:53 -07001039 handle = ext4_journal_start_sb(sb, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001040 if (IS_ERR(handle)) {
1041 err = PTR_ERR(handle);
Eric Sandeen12062dd2010-02-15 14:19:27 -05001042 ext4_warning(sb, "error %d on journal start", err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001043 goto exit_put;
1044 }
1045
Mingming Cao617ba132006-10-11 01:20:53 -07001046 if ((err = ext4_journal_get_write_access(handle,
1047 EXT4_SB(sb)->s_sbh))) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001048 ext4_warning(sb, "error %d on journal write access", err);
Mingming Cao617ba132006-10-11 01:20:53 -07001049 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001050 goto exit_put;
1051 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001052 ext4_blocks_count_set(es, o_blocks_count + add);
Eric Sandeenc549a952008-01-28 23:58:27 -05001053 ext4_debug("freeing blocks %llu through %llu\n", o_blocks_count,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054 o_blocks_count + add);
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -05001055 /* We add the blocks to the bitmap and set the group need init bit */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04001056 err = ext4_group_add_blocks(handle, sb, o_blocks_count, add);
Theodore Ts'oa0375152010-06-11 23:14:04 -04001057 ext4_handle_dirty_super(handle, sb);
Mingming Cao2ae02102006-10-11 01:21:11 -07001058 ext4_debug("freed blocks %llu through %llu\n", o_blocks_count,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001059 o_blocks_count + add);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04001060 err2 = ext4_journal_stop(handle);
1061 if (!err && err2)
1062 err = err2;
1063
1064 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 goto exit_put;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04001066
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067 if (test_opt(sb, DEBUG))
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001068 printk(KERN_DEBUG "EXT4-fs: extended group to %llu blocks\n",
1069 ext4_blocks_count(es));
Mingming Cao617ba132006-10-11 01:20:53 -07001070 update_backups(sb, EXT4_SB(sb)->s_sbh->b_blocknr, (char *)es,
1071 sizeof(struct ext4_super_block));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001072exit_put:
1073 return err;
Mingming Cao617ba132006-10-11 01:20:53 -07001074} /* ext4_group_extend */