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