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