]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blobdiff - resize/main.c
Merge branch 'maint' into next
[thirdparty/e2fsprogs.git] / resize / main.c
index 983d8c25883a129002841cf86748e8b66609e85b..600e820a68103b59bb3f44e8d254bbaab7764036 100644 (file)
  * %End-Header%
  */
 
+#ifndef _LARGEFILE_SOURCE
 #define _LARGEFILE_SOURCE
+#endif
+#ifndef _LARGEFILE64_SOURCE
 #define _LARGEFILE64_SOURCE
+#endif
 
 #include "config.h"
 #ifdef HAVE_GETOPT_H
@@ -29,6 +33,7 @@ extern int optind;
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+#include <libgen.h>
 
 #include "e2p/e2p.h"
 
@@ -42,7 +47,9 @@ static char *device_name, *io_options;
 static void usage (char *prog)
 {
        fprintf (stderr, _("Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] "
-                          "[-p] device [new_size]\n\n"), prog);
+                          "[-p] device [-b|-s|new_size] [-S RAID-stride] "
+                          "[-z undo_file]\n\n"),
+                prog);
 
        exit (1);
 }
@@ -105,6 +112,7 @@ static void determine_fs_stride(ext2_filsys fs)
        unsigned long long sum;
        unsigned int    has_sb, prev_has_sb = 0, num;
        int             i_stride, b_stride;
+       int             flexbg_size = 1 << fs->super->s_log_groups_per_flex;
 
        if (fs->stride)
                return;
@@ -120,7 +128,8 @@ static void determine_fs_stride(ext2_filsys fs)
                        ext2fs_inode_bitmap_loc(fs, group - 1) -
                        fs->super->s_blocks_per_group;
                if (b_stride != i_stride ||
-                   b_stride < 0)
+                   b_stride < 0 ||
+                   (flexbg_size > 1 && (group % flexbg_size == 0)))
                        goto next;
 
                /* printf("group %d has stride %d\n", group, b_stride); */
@@ -150,8 +159,7 @@ static void determine_fs_stride(ext2_filsys fs)
 
 static void bigalloc_check(ext2_filsys fs, int force)
 {
-       if (!force && EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
-                               EXT4_FEATURE_RO_COMPAT_BIGALLOC)) {
+       if (!force && ext2fs_has_feature_bigalloc(fs->super)) {
                fprintf(stderr, "%s", _("\nResizing bigalloc file systems has "
                                        "not been fully tested.  Proceed at\n"
                                        "your own risk!  Use the force option "
@@ -160,6 +168,82 @@ static void bigalloc_check(ext2_filsys fs, int force)
        }
 }
 
+static int resize2fs_setup_tdb(const char *device, char *undo_file,
+                              io_manager *io_ptr)
+{
+       errcode_t retval = ENOMEM;
+       const char *tdb_dir = NULL;
+       char *tdb_file = NULL;
+       char *dev_name, *tmp_name;
+
+       /* (re)open a specific undo file */
+       if (undo_file && undo_file[0] != 0) {
+               retval = set_undo_io_backing_manager(*io_ptr);
+               if (retval)
+                       goto err;
+               *io_ptr = undo_io_manager;
+               retval = set_undo_io_backup_file(undo_file);
+               if (retval)
+                       goto err;
+               printf(_("Overwriting existing filesystem; this can be undone "
+                        "using the command:\n"
+                        "    e2undo %s %s\n\n"),
+                       undo_file, device);
+               return retval;
+       }
+
+       /*
+        * Configuration via a conf file would be
+        * nice
+        */
+       tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
+       if (!tdb_dir)
+               tdb_dir = "/var/lib/e2fsprogs";
+
+       if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
+           access(tdb_dir, W_OK))
+               return 0;
+
+       tmp_name = strdup(device);
+       if (!tmp_name)
+               goto errout;
+       dev_name = basename(tmp_name);
+       tdb_file = malloc(strlen(tdb_dir) + 11 + strlen(dev_name) + 7 + 1);
+       if (!tdb_file) {
+               free(tmp_name);
+               goto errout;
+       }
+       sprintf(tdb_file, "%s/resize2fs-%s.e2undo", tdb_dir, dev_name);
+       free(tmp_name);
+
+       if ((unlink(tdb_file) < 0) && (errno != ENOENT)) {
+               retval = errno;
+               com_err(program_name, retval,
+                       _("while trying to delete %s"), tdb_file);
+               goto errout;
+       }
+
+       retval = set_undo_io_backing_manager(*io_ptr);
+       if (retval)
+               goto errout;
+       *io_ptr = undo_io_manager;
+       retval = set_undo_io_backup_file(tdb_file);
+       if (retval)
+               goto errout;
+       printf(_("Overwriting existing filesystem; this can be undone "
+                "using the command:\n"
+                "    e2undo %s %s\n\n"), tdb_file, device);
+
+       free(tdb_file);
+       return 0;
+errout:
+       free(tdb_file);
+err:
+       com_err(program_name, retval, "%s",
+               _("while trying to setup undo file\n"));
+       return retval;
+}
+
 int main (int argc, char ** argv)
 {
        errcode_t       retval;
@@ -184,7 +268,7 @@ int main (int argc, char ** argv)
        unsigned int    blocksize;
        long            sysval;
        int             len, mount_flags;
-       char            *mtpt;
+       char            *mtpt, *undo_file = NULL;
 
 #ifdef ENABLE_NLS
        setlocale(LC_MESSAGES, "");
@@ -201,7 +285,7 @@ int main (int argc, char ** argv)
        if (argc && *argv)
                program_name = *argv;
 
-       while ((c = getopt (argc, argv, "d:fFhMPpS:")) != EOF) {
+       while ((c = getopt(argc, argv, "d:fFhMPpS:bsz:")) != EOF) {
                switch (c) {
                case 'h':
                        usage(program_name);
@@ -227,6 +311,15 @@ int main (int argc, char ** argv)
                case 'S':
                        use_stride = atoi(optarg);
                        break;
+               case 'b':
+                       flags |= RESIZE_ENABLE_64BIT;
+                       break;
+               case 's':
+                       flags |= RESIZE_DISABLE_64BIT;
+                       break;
+               case 'z':
+                       undo_file = optarg;
+                       break;
                default:
                        usage(program_name);
                }
@@ -310,7 +403,11 @@ int main (int argc, char ** argv)
                io_flags = EXT2_FLAG_RW | EXT2_FLAG_EXCLUSIVE;
 
        io_flags |= EXT2_FLAG_64BITS;
-
+       if (undo_file) {
+               retval = resize2fs_setup_tdb(device_name, undo_file, &io_ptr);
+               if (retval)
+                       exit(1);
+       }
        retval = ext2fs_open2(device_name, io_options, io_flags,
                              0, 0, io_ptr, &fs);
        if (retval) {
@@ -321,10 +418,35 @@ int main (int argc, char ** argv)
        }
        fs->default_bitmap_type = EXT2FS_BMAP64_RBTREE;
 
-       if (!(mount_flags & EXT2_MF_MOUNTED)) {
-               if (!force && ((fs->super->s_lastcheck < fs->super->s_mtime) ||
-                              (fs->super->s_state & EXT2_ERROR_FS) ||
-                              ((fs->super->s_state & EXT2_VALID_FS) == 0))) {
+       /*
+        * Before acting on an unmounted filesystem, make sure it's ok,
+        * unless the user is forcing it.
+        *
+        * We do ERROR and VALID checks even if we're only printing the
+        * minimum size, because traversal of a badly damaged filesystem
+        * can cause issues as well.  We don't require it to be fscked after
+        * the last mount time in this case, though, as this is a bit less
+        * risky.
+        */
+       if (!force && !(mount_flags & EXT2_MF_MOUNTED)) {
+               int checkit = 0;
+
+               if (fs->super->s_state & EXT2_ERROR_FS)
+                       checkit = 1;
+
+               if ((fs->super->s_state & EXT2_VALID_FS) == 0)
+                       checkit = 1;
+
+               if ((fs->super->s_lastcheck < fs->super->s_mtime) &&
+                   !print_min_size)
+                       checkit = 1;
+
+               if ((ext2fs_free_blocks_count(fs->super) >
+                    ext2fs_blocks_count(fs->super)) ||
+                   (fs->super->s_free_inodes_count > fs->super->s_inodes_count))
+                       checkit = 1;
+
+               if (checkit) {
                        fprintf(stderr,
                                _("Please run 'e2fsck -f %s' first.\n\n"),
                                device_name);
@@ -389,10 +511,13 @@ int main (int argc, char ** argv)
                new_size = max_size;
                /* Round down to an even multiple of a pagesize */
                if (sys_page_size > blocksize)
-                       new_size &= ~((sys_page_size / blocksize)-1);
+                       new_size &= ~((blk64_t)((sys_page_size / blocksize)-1));
+       }
+       /* If changing 64bit, don't change the filesystem size. */
+       if (flags & (RESIZE_DISABLE_64BIT | RESIZE_ENABLE_64BIT)) {
+               new_size = ext2fs_blocks_count(fs->super);
        }
-       if (!EXT2_HAS_INCOMPAT_FEATURE(fs->super,
-                                      EXT4_FEATURE_INCOMPAT_64BIT)) {
+       if (!ext2fs_has_feature_64bit(fs->super)) {
                /* Take 16T down to 2^32-1 blocks */
                if (new_size == (1ULL << 32))
                        new_size--;
@@ -442,20 +567,57 @@ int main (int argc, char ** argv)
                        blocksize / 1024, new_size);
                exit(1);
        }
-       if (new_size == ext2fs_blocks_count(fs->super)) {
+       if ((flags & RESIZE_DISABLE_64BIT) && (flags & RESIZE_ENABLE_64BIT)) {
+               fprintf(stderr, _("Cannot set and unset 64bit feature.\n"));
+               exit(1);
+       } else if (flags & (RESIZE_DISABLE_64BIT | RESIZE_ENABLE_64BIT)) {
+               if (new_size >= (1ULL << 32)) {
+                       fprintf(stderr, _("Cannot change the 64bit feature "
+                               "on a filesystem that is larger than "
+                               "2^32 blocks.\n"));
+                       exit(1);
+               }
+               if (mount_flags & EXT2_MF_MOUNTED) {
+                       fprintf(stderr, _("Cannot change the 64bit feature "
+                               "while the filesystem is mounted.\n"));
+                       exit(1);
+               }
+               if (flags & RESIZE_ENABLE_64BIT &&
+                   !ext2fs_has_feature_extents(fs->super)) {
+                       fprintf(stderr, _("Please enable the extents feature "
+                               "with tune2fs before enabling the 64bit "
+                               "feature.\n"));
+                       exit(1);
+               }
+       } else if (new_size == ext2fs_blocks_count(fs->super)) {
                fprintf(stderr, _("The filesystem is already %llu (%dk) "
                        "blocks long.  Nothing to do!\n\n"), new_size,
                        blocksize / 1024);
                exit(0);
        }
+       if ((flags & RESIZE_ENABLE_64BIT) &&
+           ext2fs_has_feature_64bit(fs->super)) {
+               fprintf(stderr, _("The filesystem is already 64-bit.\n"));
+               exit(0);
+       }
+       if ((flags & RESIZE_DISABLE_64BIT) &&
+           !ext2fs_has_feature_64bit(fs->super)) {
+               fprintf(stderr, _("The filesystem is already 32-bit.\n"));
+               exit(0);
+       }
        if (mount_flags & EXT2_MF_MOUNTED) {
                bigalloc_check(fs, force);
                retval = online_resize_fs(fs, mtpt, &new_size, flags);
        } else {
                bigalloc_check(fs, force);
-               printf(_("Resizing the filesystem on "
-                        "%s to %llu (%dk) blocks.\n"),
-                      device_name, new_size, blocksize / 1024);
+               if (flags & RESIZE_ENABLE_64BIT)
+                       printf(_("Converting the filesystem to 64-bit.\n"));
+               else if (flags & RESIZE_DISABLE_64BIT)
+                       printf(_("Converting the filesystem to 32-bit.\n"));
+               else
+                       printf(_("Resizing the filesystem on "
+                                "%s to %llu (%dk) blocks.\n"),
+                              device_name, new_size, blocksize / 1024);
                retval = resize_fs(fs, &new_size, flags,
                                   ((flags & RESIZE_PERCENT_COMPLETE) ?
                                    resize_progress_func : 0));