Whamcloud - gitweb
Shorten compile commands run by the build system
[tools/e2fsprogs.git] / misc / tune2fs.c
index d2d1539..11ef095 100644 (file)
@@ -27,6 +27,7 @@
 
 #define _XOPEN_SOURCE 600 /* for inclusion of strptime() */
 #define _BSD_SOURCE /* for inclusion of strcasecmp() */
+#include "config.h"
 #include <fcntl.h>
 #include <grp.h>
 #ifdef HAVE_GETOPT_H
@@ -55,21 +56,28 @@ extern int optind;
 #include "jfs_user.h"
 #include "util.h"
 #include "blkid/blkid.h"
+#include "quota/mkquota.h"
 
 #include "../version.h"
 #include "nls-enable.h"
 
+#define QOPT_ENABLE    (1)
+#define QOPT_DISABLE   (-1)
+
+extern int ask_yn(const char *string, int def);
+
 const char *program_name = "tune2fs";
 char *device_name;
 char *new_label, *new_last_mounted, *new_UUID;
 char *io_options;
 static int c_flag, C_flag, e_flag, f_flag, g_flag, i_flag, l_flag, L_flag;
-static int m_flag, M_flag, r_flag, s_flag = -1, u_flag, U_flag, T_flag;
+static int m_flag, M_flag, Q_flag, r_flag, s_flag = -1, u_flag, U_flag, T_flag;
 static int I_flag;
 static time_t last_check_time;
 static int print_label;
 static int max_mount_count, mount_count, mount_flags;
-static unsigned long interval, reserved_blocks;
+static unsigned long interval;
+static blk64_t reserved_blocks;
 static double reserved_ratio;
 static unsigned long resgid, resuid;
 static unsigned short errors;
@@ -80,6 +88,8 @@ static int stride, stripe_width;
 static int stride_set, stripe_width_set;
 static char *extended_cmd;
 static unsigned long new_inode_size;
+static char *ext_mount_opts;
+static int usrquota, grpquota;
 
 int journal_size, journal_flags;
 char *journal_device;
@@ -88,8 +98,8 @@ static struct list_head blk_move_list;
 
 struct blk_move {
        struct list_head list;
-       blk_t old_loc;
-       blk_t new_loc;
+       blk64_t old_loc;
+       blk64_t new_loc;
 };
 
 
@@ -129,7 +139,8 @@ static __u32 ok_features[3] = {
                EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
                EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
                EXT4_FEATURE_RO_COMPAT_GDT_CSUM |
-               EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER
+               EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER |
+               EXT4_FEATURE_RO_COMPAT_QUOTA
 };
 
 static __u32 clear_ok_features[3] = {
@@ -145,7 +156,8 @@ static __u32 clear_ok_features[3] = {
                EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
                EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
                EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
-               EXT4_FEATURE_RO_COMPAT_GDT_CSUM
+               EXT4_FEATURE_RO_COMPAT_GDT_CSUM |
+               EXT4_FEATURE_RO_COMPAT_QUOTA
 };
 
 /*
@@ -197,7 +209,7 @@ static void remove_journal_device(ext2_filsys fs)
        }
 
        /* Get the journal superblock */
-       if ((retval = io_channel_read_blk(jfs->io, 1, -1024, buf))) {
+       if ((retval = io_channel_read_blk64(jfs->io, 1, -1024, buf))) {
                com_err(program_name, retval,
                        _("while reading journal superblock"));
                goto no_valid_journal;
@@ -229,7 +241,7 @@ static void remove_journal_device(ext2_filsys fs)
        jsb->s_nr_users = htonl(nr_users);
 
        /* Write back the journal superblock */
-       if ((retval = io_channel_write_blk(jfs->io, 1, -1024, buf))) {
+       if ((retval = io_channel_write_blk64(jfs->io, 1, -1024, buf))) {
                com_err(program_name, retval,
                        "while writing journal superblock.");
                goto no_valid_journal;
@@ -250,19 +262,21 @@ no_valid_journal:
 }
 
 /* Helper function for remove_journal_inode */
-static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
-                              int blockcnt EXT2FS_ATTR((unused)),
+static int release_blocks_proc(ext2_filsys fs, blk64_t *blocknr,
+                              e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
+                              blk64_t ref_block EXT2FS_ATTR((unused)),
+                              int ref_offset EXT2FS_ATTR((unused)),
                               void *private EXT2FS_ATTR((unused)))
 {
-       blk_t   block;
+       blk64_t block;
        int     group;
 
        block = *blocknr;
-       ext2fs_unmark_block_bitmap(fs->block_map, block);
-       group = ext2fs_group_of_blk(fs, block);
-       fs->group_desc[group].bg_free_blocks_count++;
+       ext2fs_unmark_block_bitmap2(fs->block_map, block);
+       group = ext2fs_group_of_blk2(fs, block);
+       ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) + 1);
        ext2fs_group_desc_csum_set(fs, group);
-       fs->super->s_free_blocks_count++;
+       ext2fs_free_blocks_count_add(fs->super, EXT2FS_CLUSTER_RATIO(fs));
        return 0;
 }
 
@@ -288,9 +302,9 @@ static void remove_journal_inode(ext2_filsys fs)
                                _("while reading bitmaps"));
                        exit(1);
                }
-               retval = ext2fs_block_iterate(fs, ino,
-                                             BLOCK_FLAG_READ_ONLY, NULL,
-                                             release_blocks_proc, NULL);
+               retval = ext2fs_block_iterate3(fs, ino,
+                                              BLOCK_FLAG_READ_ONLY, NULL,
+                                              release_blocks_proc, NULL);
                if (retval) {
                        com_err(program_name, retval,
                                _("while clearing journal inode"));
@@ -326,14 +340,27 @@ static void update_mntopts(ext2_filsys fs, char *mntopts)
        ext2fs_mark_super_dirty(fs);
 }
 
+static void request_fsck_afterwards(ext2_filsys fs)
+{
+       static int requested = 0;
+
+       if (requested++)
+               return;
+       fs->super->s_state &= ~EXT2_VALID_FS;
+       printf("\n%s\n", _(please_fsck));
+       if (mount_flags & EXT2_MF_READONLY)
+               printf(_("(and reboot afterwards!)\n"));
+}
+
 /*
  * Update the feature set as provided by the user.
  */
 static void update_feature_set(ext2_filsys fs, char *features)
 {
        struct ext2_super_block *sb = fs->super;
+       struct ext2_group_desc *gd;
        __u32           old_features[3];
-       int             type_err;
+       int             i, type_err;
        unsigned int    mask_err;
 
 #define FEATURE_ON(type, mask) (!(old_features[(type)] & (mask)) && \
@@ -430,6 +457,66 @@ static void update_feature_set(ext2_filsys fs, char *features)
                }
        }
 
+       if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT,
+                      EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
+               for (i = 0; i < fs->group_desc_count; i++) {
+                       gd = ext2fs_group_desc(fs, fs->group_desc, i);
+                       gd->bg_itable_unused = 0;
+                       gd->bg_flags = EXT2_BG_INODE_ZEROED;
+                       ext2fs_group_desc_csum_set(fs, i);
+               }
+               fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
+       }
+
+       if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
+                       EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
+               for (i = 0; i < fs->group_desc_count; i++) {
+                       gd = ext2fs_group_desc(fs, fs->group_desc, i);
+                       if ((gd->bg_flags & EXT2_BG_INODE_ZEROED) == 0) {
+                               /* 
+                                * XXX what we really should do is zap
+                                * uninitialized inode tables instead.
+                                */
+                               request_fsck_afterwards(fs);
+                               break;
+                       }
+                       gd->bg_itable_unused = 0;
+                       gd->bg_flags = 0;
+                       gd->bg_checksum = 0;
+               }
+               fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
+       }
+
+       if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT,
+                               EXT4_FEATURE_RO_COMPAT_QUOTA)) {
+               /*
+                * Set the Q_flag here and handle the quota options in the code
+                * below.
+                */
+               if (!Q_flag) {
+                       Q_flag = 1;
+                       /* Enable both user quota and group quota by default */
+                       usrquota = QOPT_ENABLE;
+                       grpquota = QOPT_ENABLE;
+               }
+               sb->s_feature_ro_compat &= ~EXT4_FEATURE_RO_COMPAT_QUOTA;
+       }
+
+       if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
+                               EXT4_FEATURE_RO_COMPAT_QUOTA)) {
+               /*
+                * Set the Q_flag here and handle the quota options in the code
+                * below.
+                */
+               if (Q_flag)
+                       fputs(_("\nWarning: '^quota' option overrides '-Q'"
+                               "arguments.\n"), stderr);
+               Q_flag = 1;
+               /* Disable both user quota and group quota by default */
+               usrquota = QOPT_DISABLE;
+               grpquota = QOPT_DISABLE;
+       }
+
        if (sb->s_rev_level == EXT2_GOOD_OLD_REV &&
            (sb->s_feature_compat || sb->s_feature_ro_compat ||
             sb->s_feature_incompat))
@@ -437,8 +524,6 @@ static void update_feature_set(ext2_filsys fs, char *features)
 
        if (FEATURE_CHANGED(E2P_FEATURE_RO_INCOMPAT,
                            EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) ||
-           FEATURE_CHANGED(E2P_FEATURE_RO_INCOMPAT,
-                           EXT4_FEATURE_RO_COMPAT_GDT_CSUM) ||
            FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
                        EXT4_FEATURE_RO_COMPAT_HUGE_FILE) ||
            FEATURE_CHANGED(E2P_FEATURE_INCOMPAT,
@@ -446,12 +531,8 @@ static void update_feature_set(ext2_filsys fs, char *features)
            FEATURE_CHANGED(E2P_FEATURE_COMPAT,
                            EXT2_FEATURE_COMPAT_RESIZE_INODE) ||
            FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
-                       EXT2_FEATURE_RO_COMPAT_LARGE_FILE)) {
-               sb->s_state &= ~EXT2_VALID_FS;
-               printf("\n%s\n", _(please_fsck));
-               if (mount_flags & EXT2_MF_READONLY)
-                       printf(_("(and reboot afterwards!)\n"));
-       }
+                       EXT2_FEATURE_RO_COMPAT_LARGE_FILE))
+               request_fsck_afterwards(fs);
 
        if ((old_features[E2P_FEATURE_COMPAT] != sb->s_feature_compat) ||
            (old_features[E2P_FEATURE_INCOMPAT] != sb->s_feature_incompat) ||
@@ -527,7 +608,8 @@ static void add_journal(ext2_filsys fs)
                if ((mount_flags & EXT2_MF_MOUNTED) == 0)
                        fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
        }
-       print_check_message(fs);
+       print_check_message(fs->super->s_max_mnt_count,
+                           fs->super->s_checkinterval);
        return;
 
 err:
@@ -535,6 +617,93 @@ err:
        exit(1);
 }
 
+void handle_quota_options(ext2_filsys fs)
+{
+       quota_ctx_t qctx;
+       errcode_t retval;
+       ext2_ino_t qf_ino;
+
+       if (!usrquota && !grpquota)
+               /* Nothing to do. */
+               return;
+
+       init_quota_context(&qctx, fs, -1);
+
+       if (usrquota == QOPT_ENABLE && !fs->super->s_usr_quota_inum) {
+               if ((qf_ino = quota_file_exists(fs, USRQUOTA, QFMT_VFS_V1)) > 0)
+                       set_sb_quota_inum(fs, qf_ino, USRQUOTA);
+               else
+                       write_quota_inode(qctx, USRQUOTA);
+       } else if (usrquota == QOPT_DISABLE) {
+               remove_quota_inode(fs, USRQUOTA);
+       }
+
+       if (grpquota == QOPT_ENABLE && !fs->super->s_grp_quota_inum) {
+               if ((qf_ino = quota_file_exists(fs, GRPQUOTA, QFMT_VFS_V1)) > 0)
+                       set_sb_quota_inum(fs, qf_ino, GRPQUOTA);
+               else
+                       write_quota_inode(qctx, GRPQUOTA);
+       } else if (grpquota == QOPT_DISABLE) {
+               remove_quota_inode(fs, GRPQUOTA);
+       }
+
+       release_quota_context(&qctx);
+
+       if ((usrquota == QOPT_ENABLE) || (grpquota == QOPT_ENABLE)) {
+               fs->super->s_feature_ro_compat |= EXT4_FEATURE_RO_COMPAT_QUOTA;
+               ext2fs_mark_super_dirty(fs);
+       } else if ((usrquota == QOPT_DISABLE) && (grpquota == QOPT_DISABLE)) {
+               fs->super->s_feature_ro_compat &= ~EXT4_FEATURE_RO_COMPAT_QUOTA;
+               ext2fs_mark_super_dirty(fs);
+       }
+
+       return;
+}
+
+void parse_quota_opts(const char *opts)
+{
+       char    *buf, *token, *next, *p, *arg;
+       int     len;
+
+       len = strlen(opts);
+       buf = malloc(len+1);
+       if (!buf) {
+               fputs(_("Couldn't allocate memory to parse quota "
+                       "options!\n"), stderr);
+               exit(1);
+       }
+       strcpy(buf, opts);
+       for (token = buf; token && *token; token = next) {
+               p = strchr(token, ',');
+               next = 0;
+               if (p) {
+                       *p = 0;
+                       next = p+1;
+               }
+
+               if (strcmp(token, "usrquota") == 0) {
+                       usrquota = QOPT_ENABLE;
+               } else if (strcmp(token, "^usrquota") == 0) {
+                       usrquota = QOPT_DISABLE;
+               } else if (strcmp(token, "grpquota") == 0) {
+                       grpquota = QOPT_ENABLE;
+               } else if (strcmp(token, "^grpquota") == 0) {
+                       grpquota = QOPT_DISABLE;
+               } else {
+                       fputs(_("\nBad quota options specified.\n\n"
+                               "Following valid quota options are available "
+                               "(pass by separating with comma):\n"
+                               "\t[^]usrquota\n"
+                               "\t[^]grpquota\n"
+                               "\n\n"), stderr);
+                       free(buf);
+                       exit(1);
+               }
+       }
+       free(buf);
+}
+
+
 
 static void parse_e2label_options(int argc, char ** argv)
 {
@@ -600,7 +769,7 @@ static void parse_tune2fs_options(int argc, char **argv)
        open_flag = 0;
 
        printf("tune2fs %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE);
-       while ((c = getopt(argc, argv, "c:e:fg:i:jlm:o:r:s:u:C:E:I:J:L:M:O:T:U:")) != EOF)
+       while ((c = getopt(argc, argv, "c:e:fg:i:jlm:o:r:s:u:C:E:I:J:L:M:O:Q:T:U:")) != EOF)
                switch (c) {
                case 'c':
                        max_mount_count = strtol(optarg, &tmp, 0);
@@ -755,6 +924,11 @@ static void parse_tune2fs_options(int argc, char **argv)
                        features_cmd = optarg;
                        open_flag = EXT2_FLAG_RW;
                        break;
+               case 'Q':
+                       Q_flag = 1;
+                       parse_quota_opts(optarg);
+                       open_flag = EXT2_FLAG_RW;
+                       break;
                case 'r':
                        reserved_blocks = strtoul(optarg, &tmp, 0);
                        if (*tmp) {
@@ -899,7 +1073,7 @@ static void parse_extended_opts(ext2_filsys fs, const char *opts)
                                continue;
                        }
                        stride = strtoul(arg, &p, 0);
-                       if (*p || (stride == 0)) {
+                       if (*p) {
                                fprintf(stderr,
                                       _("Invalid RAID stride: %s\n"),
                                        arg);
@@ -914,7 +1088,7 @@ static void parse_extended_opts(ext2_filsys fs, const char *opts)
                                continue;
                        }
                        stripe_width = strtoul(arg, &p, 0);
-                       if (*p || (stripe_width == 0)) {
+                       if (*p) {
                                fprintf(stderr,
                                        _("Invalid RAID stripe-width: %s\n"),
                                        arg);
@@ -941,6 +1115,17 @@ static void parse_extended_opts(ext2_filsys fs, const char *opts)
                                 "to %s (%d)\n"),
                               arg, hash_alg);
                        ext2fs_mark_super_dirty(fs);
+               } else if (!strcmp(token, "mount_opts")) {
+                       if (!arg) {
+                               r_usage++;
+                               continue;
+                       }
+                       if (strlen(arg) >= sizeof(fs->super->s_mount_opts)) {
+                               fprintf(stderr,
+                                       "Extended mount options too long\n");
+                               continue;
+                       }
+                       ext_mount_opts = strdup(arg);
                } else
                        r_usage++;
        }
@@ -950,9 +1135,10 @@ static void parse_extended_opts(ext2_filsys fs, const char *opts)
                        "and may take an argument which\n"
                        "\tis set off by an equals ('=') sign.\n\n"
                        "Valid extended options are:\n"
+                       "\thash_alg=<hash algorithm>\n"
+                       "\tmount_opts=<extended default mount options>\n"
                        "\tstride=<RAID per-disk chunk size in blocks>\n"
                        "\tstripe_width=<RAID stride*data disks in blocks>\n"
-                       "\thash_alg=<hash algorithm>\n"
                        "\ttest_fs\n"
                        "\t^test_fs\n"));
                free(buf);
@@ -969,45 +1155,85 @@ static int get_move_bitmaps(ext2_filsys fs, int new_ino_blks_per_grp,
                            ext2fs_block_bitmap bmap)
 {
        dgrp_t i;
-       blk_t j, needed_blocks = 0;
-       blk_t start_blk, end_blk;
+       int retval;
+       ext2_badblocks_list bb_list = 0;
+       blk64_t j, needed_blocks = 0;
+       blk64_t start_blk, end_blk;
+
+       retval = ext2fs_read_bb_inode(fs, &bb_list);
+       if (retval)
+               return retval;
 
        for (i = 0; i < fs->group_desc_count; i++) {
-               start_blk = fs->group_desc[i].bg_inode_table +
+               start_blk = ext2fs_inode_table_loc(fs, i) +
                                        fs->inode_blocks_per_group;
 
-               end_blk = fs->group_desc[i].bg_inode_table +
+               end_blk = ext2fs_inode_table_loc(fs, i) +
                                        new_ino_blks_per_grp;
 
                for (j = start_blk; j < end_blk; j++) {
-                       if (ext2fs_test_block_bitmap(fs->block_map, j)) {
-                               /* FIXME!!
-                                * What happens if the block is marked
-                                * as a bad block
+                       if (ext2fs_test_block_bitmap2(fs->block_map, j)) {
+                               /*
+                                * IF the block is a bad block we fail
                                 */
-                               ext2fs_mark_block_bitmap(bmap, j);
+                               if (ext2fs_badblocks_list_test(bb_list, j)) {
+                                       ext2fs_badblocks_list_free(bb_list);
+                                       return ENOSPC;
+                               }
+
+                               ext2fs_mark_block_bitmap2(bmap, j);
                        } else {
                                /*
                                 * We are going to use this block for
                                 * inode table. So mark them used.
                                 */
-                               ext2fs_mark_block_bitmap(fs->block_map, j);
+                               ext2fs_mark_block_bitmap2(fs->block_map, j);
                        }
                }
                needed_blocks += end_blk - start_blk;
        }
 
-       if (needed_blocks > fs->super->s_free_blocks_count)
+       ext2fs_badblocks_list_free(bb_list);
+       if (needed_blocks > ext2fs_free_blocks_count(fs->super))
                return ENOSPC;
 
        return 0;
 }
 
+static int ext2fs_is_meta_block(ext2_filsys fs, blk_t blk)
+{
+       dgrp_t group;
+       group = ext2fs_group_of_blk(fs, blk);
+       if (ext2fs_block_bitmap_loc(fs, group) == blk)
+               return 1;
+       if (ext2fs_inode_bitmap_loc(fs, group) == blk)
+               return 1;
+       return 0;
+}
+
+static int ext2fs_is_block_in_group(ext2_filsys fs, dgrp_t group, blk_t blk)
+{
+       blk_t start_blk, end_blk;
+       start_blk = fs->super->s_first_data_block +
+                       EXT2_BLOCKS_PER_GROUP(fs->super) * group;
+       /*
+        * We cannot get new block beyond end_blk for for the last block group
+        * so we can check with EXT2_BLOCKS_PER_GROUP even for last block group
+        */
+       end_blk   = start_blk + EXT2_BLOCKS_PER_GROUP(fs->super);
+       if (blk >= start_blk && blk <= end_blk)
+               return 1;
+       return 0;
+}
+
 static int move_block(ext2_filsys fs, ext2fs_block_bitmap bmap)
 {
+
        char *buf;
+       dgrp_t group = 0;
        errcode_t retval;
-       blk_t blk, new_blk, goal;
+       int meta_data = 0;
+       blk64_t blk, new_blk, goal;
        struct blk_move *bmv;
 
        retval = ext2fs_get_mem(fs->blocksize, &buf);
@@ -1015,17 +1241,37 @@ static int move_block(ext2_filsys fs, ext2fs_block_bitmap bmap)
                return retval;
 
        for (new_blk = blk = fs->super->s_first_data_block;
-            blk < fs->super->s_blocks_count; blk++) {
-               if (!ext2fs_test_block_bitmap(bmap, blk))
+            blk < ext2fs_blocks_count(fs->super); blk++) {
+               if (!ext2fs_test_block_bitmap2(bmap, blk))
                        continue;
 
-               goal = new_blk;
-               retval = ext2fs_new_block(fs, goal, NULL, &new_blk);
+               if (ext2fs_is_meta_block(fs, blk)) {
+                       /*
+                        * If the block is mapping a fs meta data block
+                        * like group desc/block bitmap/inode bitmap. We
+                        * should find a block in the same group and fix
+                        * the respective fs metadata pointers. Otherwise
+                        * fail
+                        */
+                       group = ext2fs_group_of_blk(fs, blk);
+                       goal = ext2fs_group_first_block2(fs, group);
+                       meta_data = 1;
+
+               } else {
+                       goal = new_blk;
+               }
+               retval = ext2fs_new_block2(fs, goal, NULL, &new_blk);
                if (retval)
                        goto err_out;
 
+               /* new fs meta data block should be in the same group */
+               if (meta_data && !ext2fs_is_block_in_group(fs, group, new_blk)) {
+                       retval = ENOSPC;
+                       goto err_out;
+               }
+
                /* Mark this block as allocated */
-               ext2fs_mark_block_bitmap(fs->block_map, new_blk);
+               ext2fs_mark_block_bitmap2(fs->block_map, new_blk);
 
                /* Add it to block move list */
                retval = ext2fs_get_mem(sizeof(struct blk_move), &bmv);
@@ -1037,11 +1283,11 @@ static int move_block(ext2_filsys fs, ext2fs_block_bitmap bmap)
 
                list_add(&(bmv->list), &blk_move_list);
 
-               retval = io_channel_read_blk(fs->io, blk, 1, buf);
+               retval = io_channel_read_blk64(fs->io, blk, 1, buf);
                if (retval)
                        goto err_out;
 
-               retval = io_channel_write_blk(fs->io, new_blk, 1, buf);
+               retval = io_channel_write_blk64(fs->io, new_blk, 1, buf);
                if (retval)
                        goto err_out;
        }
@@ -1051,7 +1297,7 @@ err_out:
        return retval;
 }
 
-static blk_t translate_block(blk_t blk)
+static blk64_t translate_block(blk64_t blk)
 {
        struct list_head *entry;
        struct blk_move *bmv;
@@ -1066,17 +1312,17 @@ static blk_t translate_block(blk_t blk)
 }
 
 static int process_block(ext2_filsys fs EXT2FS_ATTR((unused)),
-                        blk_t *block_nr,
+                        blk64_t *block_nr,
                         e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
-                        blk_t ref_block EXT2FS_ATTR((unused)),
+                        blk64_t ref_block EXT2FS_ATTR((unused)),
                         int ref_offset EXT2FS_ATTR((unused)),
                         void *priv_data)
 {
        int ret = 0;
-       blk_t new_blk;
+       blk64_t new_blk;
        ext2fs_block_bitmap bmap = (ext2fs_block_bitmap) priv_data;
 
-       if (!ext2fs_test_block_bitmap(bmap, *block_nr))
+       if (!ext2fs_test_block_bitmap2(bmap, *block_nr))
                return 0;
        new_blk = translate_block(*block_nr);
        if (new_blk) {
@@ -1094,7 +1340,7 @@ static int inode_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
 {
        errcode_t retval = 0;
        ext2_ino_t ino;
-       blk_t blk;
+       blk64_t blk;
        char *block_buf = 0;
        struct ext2_inode inode;
        ext2_inode_scan scan = NULL;
@@ -1125,13 +1371,14 @@ static int inode_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
                 * Do we need to fix this ??
                 */
 
-               if (inode.i_file_acl &&
-                   ext2fs_test_block_bitmap(bmap, inode.i_file_acl)) {
-                       blk = translate_block(inode.i_file_acl);
+               if (ext2fs_file_acl_block(&inode) &&
+                   ext2fs_test_block_bitmap2(bmap,
+                                             ext2fs_file_acl_block(&inode))) {
+                       blk = translate_block(ext2fs_file_acl_block(&inode));
                        if (!blk)
                                continue;
 
-                       inode.i_file_acl = blk;
+                       ext2fs_file_acl_block_set(&inode, blk);
 
                        /*
                         * Write the inode to disk so that inode table
@@ -1145,7 +1392,7 @@ static int inode_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
                if (!ext2fs_inode_has_valid_blocks(&inode))
                        continue;
 
-               retval = ext2fs_block_iterate2(fs, ino, 0, block_buf,
+               retval = ext2fs_block_iterate3(fs, ino, 0, block_buf,
                                               process_block, bmap);
                if (retval)
                        goto err_out;
@@ -1158,10 +1405,40 @@ err_out:
        return retval;
 }
 
+/*
+ * We need to scan for inode and block bitmaps that may need to be
+ * moved.  This can take place if the filesystem was formatted for
+ * RAID arrays using the mke2fs's extended option "stride".
+ */
+static int group_desc_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
+{
+       dgrp_t i;
+       blk_t blk, new_blk;
+
+       for (i = 0; i < fs->group_desc_count; i++) {
+               blk = ext2fs_block_bitmap_loc(fs, i);
+               if (ext2fs_test_block_bitmap2(bmap, blk)) {
+                       new_blk = translate_block(blk);
+                       if (!new_blk)
+                               continue;
+                       ext2fs_block_bitmap_loc_set(fs, i, new_blk);
+               }
+
+               blk = ext2fs_inode_bitmap_loc(fs, i);
+               if (ext2fs_test_block_bitmap2(bmap, blk)) {
+                       new_blk = translate_block(blk);
+                       if (!new_blk)
+                               continue;
+                       ext2fs_inode_bitmap_loc_set(fs, i, new_blk);
+               }
+       }
+       return 0;
+}
+
 static int expand_inode_table(ext2_filsys fs, unsigned long new_ino_size)
 {
        dgrp_t i;
-       blk_t blk;
+       blk64_t blk;
        errcode_t retval;
        int new_ino_blks_per_grp;
        unsigned int j;
@@ -1192,8 +1469,8 @@ static int expand_inode_table(ext2_filsys fs, unsigned long new_ino_size)
        tmp_new_itable = new_itable;
 
        for (i = 0; i < fs->group_desc_count; i++) {
-               blk = fs->group_desc[i].bg_inode_table;
-               retval = io_channel_read_blk(fs->io, blk,
+               blk = ext2fs_inode_table_loc(fs, i);
+               retval = io_channel_read_blk64(fs->io, blk,
                                fs->inode_blocks_per_group, old_itable);
                if (retval)
                        goto err_out;
@@ -1212,7 +1489,7 @@ static int expand_inode_table(ext2_filsys fs, unsigned long new_ino_size)
                old_itable = tmp_old_itable;
                new_itable = tmp_new_itable;
 
-               retval = io_channel_write_blk(fs->io, blk,
+               retval = io_channel_write_blk64(fs->io, blk,
                                        new_ino_blks_per_grp, new_itable);
                if (retval)
                        goto err_out;
@@ -1234,7 +1511,7 @@ err_out:
 
 static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs)
 {
-       blk_t           blk;
+       blk64_t         blk;
        ext2_ino_t      ino;
        unsigned int    group = 0;
        unsigned int    count = 0;
@@ -1245,21 +1522,22 @@ static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs)
         * First calculate the block statistics
         */
        for (blk = fs->super->s_first_data_block;
-            blk < fs->super->s_blocks_count; blk++) {
-               if (!ext2fs_fast_test_block_bitmap(fs->block_map, blk)) {
+            blk < ext2fs_blocks_count(fs->super); blk++) {
+               if (!ext2fs_fast_test_block_bitmap2(fs->block_map, blk)) {
                        group_free++;
                        total_free++;
                }
                count++;
                if ((count == fs->super->s_blocks_per_group) ||
-                   (blk == fs->super->s_blocks_count-1)) {
-                       fs->group_desc[group++].bg_free_blocks_count =
-                               group_free;
+                   (blk == ext2fs_blocks_count(fs->super)-1)) {
+                       ext2fs_bg_free_blocks_count_set(fs, group++,
+                                                       group_free);
                        count = 0;
                        group_free = 0;
                }
        }
-       fs->super->s_free_blocks_count = total_free;
+       total_free = EXT2FS_C2B(fs, total_free);
+       ext2fs_free_blocks_count_set(fs->super, total_free);
 
        /*
         * Next, calculate the inode statistics
@@ -1271,15 +1549,15 @@ static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs)
 
        /* Protect loop from wrap-around if s_inodes_count maxed */
        for (ino = 1; ino <= fs->super->s_inodes_count && ino > 0; ino++) {
-               if (!ext2fs_fast_test_inode_bitmap(fs->inode_map, ino)) {
+               if (!ext2fs_fast_test_inode_bitmap2(fs->inode_map, ino)) {
                        group_free++;
                        total_free++;
                }
                count++;
                if ((count == fs->super->s_inodes_per_group) ||
                    (ino == fs->super->s_inodes_count)) {
-                       fs->group_desc[group++].bg_free_inodes_count =
-                               group_free;
+                       ext2fs_bg_free_inodes_count_set(fs, group++,
+                                                       group_free);
                        count = 0;
                        group_free = 0;
                }
@@ -1312,8 +1590,16 @@ static int resize_inode(ext2_filsys fs, unsigned long new_size)
        int new_ino_blks_per_grp;
        ext2fs_block_bitmap bmap;
 
-       ext2fs_read_inode_bitmap(fs);
-       ext2fs_read_block_bitmap(fs);
+       retval = ext2fs_read_inode_bitmap(fs);
+       if (retval) {
+               fputs(_("Failed to read inode bitmap\n"), stderr);
+               return retval;
+       }
+       retval = ext2fs_read_block_bitmap(fs);
+       if (retval) {
+               fputs(_("Failed to read blockbitmap\n"), stderr);
+               return retval;
+       }
        INIT_LIST_HEAD(&blk_move_list);
 
 
@@ -1350,6 +1636,10 @@ static int resize_inode(ext2_filsys fs, unsigned long new_size)
        if (retval)
                goto err_out_undo;
 
+       retval = group_desc_scan_and_fix(fs, bmap);
+       if (retval)
+               goto err_out_undo;
+
        retval = expand_inode_table(fs, new_size);
        if (retval)
                goto err_out_undo;
@@ -1557,29 +1847,34 @@ retry_open:
                printf(_("Setting reserved blocks gid to %lu\n"), resgid);
        }
        if (i_flag) {
+               if (interval >= (1ULL << 32)) {
+                       com_err(program_name, 0,
+                               _("interval between checks is too big (%lu)"),
+                               interval);
+                       exit(1);
+               }
                sb->s_checkinterval = interval;
                ext2fs_mark_super_dirty(fs);
                printf(_("Setting interval between checks to %lu seconds\n"),
                       interval);
        }
        if (m_flag) {
-               sb->s_r_blocks_count = (unsigned int) (reserved_ratio *
-                                       sb->s_blocks_count / 100.0);
+               ext2fs_r_blocks_count_set(sb, reserved_ratio *
+                                         ext2fs_blocks_count(sb) / 100.0);
                ext2fs_mark_super_dirty(fs);
-               printf(_("Setting reserved blocks percentage to %g%% "
-                        "(%u blocks)\n"),
-                      reserved_ratio, sb->s_r_blocks_count);
+               printf (_("Setting reserved blocks percentage to %g%% (%llu blocks)\n"),
+                       reserved_ratio, ext2fs_r_blocks_count(sb));
        }
        if (r_flag) {
-               if (reserved_blocks >= sb->s_blocks_count/2) {
+               if (reserved_blocks > ext2fs_blocks_count(sb)/2) {
                        com_err(program_name, 0,
-                               _("reserved blocks count is too big (%lu)"),
+                               _("reserved blocks count is too big (%llu)"),
                                reserved_blocks);
                        exit(1);
                }
-               sb->s_r_blocks_count = reserved_blocks;
+               ext2fs_r_blocks_count_set(sb, reserved_blocks);
                ext2fs_mark_super_dirty(fs);
-               printf(_("Setting reserved blocks count to %lu\n"),
+               printf(_("Setting reserved blocks count to %llu\n"),
                       reserved_blocks);
        }
        if (s_flag == 1) {
@@ -1636,6 +1931,15 @@ retry_open:
        if (journal_size || journal_device)
                add_journal(fs);
 
+       if (Q_flag) {
+               if (mount_flags & EXT2_MF_MOUNTED) {
+                       fputs(_("The quota feature may only be changed when "
+                               "the filesystem is unmounted.\n"), stderr);
+                       exit(1);
+               }
+               handle_quota_options(fs);
+       }
+
        if (U_flag) {
                int set_csum = 0;
                dgrp_t i;
@@ -1694,6 +1998,9 @@ retry_open:
                if (resize_inode(fs, new_inode_size) == 0) {
                        printf(_("Setting inode size %lu\n"),
                                                        new_inode_size);
+               } else {
+                       printf(_("Failed to change inode size\n"));
+                       exit(1);
                }
        }
 
@@ -1709,6 +2016,15 @@ retry_open:
                ext2fs_mark_super_dirty(fs);
                printf(_("Setting stripe width to %d\n"), stripe_width);
        }
+       if (ext_mount_opts) {
+               strncpy(fs->super->s_mount_opts, ext_mount_opts,
+                       sizeof(fs->super->s_mount_opts));
+               fs->super->s_mount_opts[sizeof(fs->super->s_mount_opts)-1] = 0;
+               ext2fs_mark_super_dirty(fs);
+               printf(_("Setting extended default mount options to '%s'\n"),
+                      ext_mount_opts);
+               free(ext_mount_opts);
+       }
        free(device_name);
        remove_error_table(&et_ext2_error_table);
        return (ext2fs_close(fs) ? 1 : 0);