Whamcloud - gitweb
debian: add Multi-Arch hints to the Debian packages
[tools/e2fsprogs.git] / resize / main.c
1 /*
2  * main.c --- ext2 resizer main program
3  *
4  * Copyright (C) 1997, 1998 by Theodore Ts'o and
5  *      PowerQuest, Inc.
6  *
7  * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 by Theodore Ts'o
8  *
9  * %Begin-Header%
10  * This file may be redistributed under the terms of the GNU Public
11  * License.
12  * %End-Header%
13  */
14
15 #ifndef _LARGEFILE_SOURCE
16 #define _LARGEFILE_SOURCE
17 #endif
18 #ifndef _LARGEFILE64_SOURCE
19 #define _LARGEFILE64_SOURCE
20 #endif
21
22 #include "config.h"
23 #ifdef HAVE_GETOPT_H
24 #include <getopt.h>
25 #else
26 extern char *optarg;
27 extern int optind;
28 #endif
29 #include <unistd.h>
30 #ifdef HAVE_STDLIB_H
31 #include <stdlib.h>
32 #endif
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <fcntl.h>
36 #include <libgen.h>
37
38 #include "e2p/e2p.h"
39
40 #include "resize2fs.h"
41
42 #include "../version.h"
43
44 char *program_name;
45 static char *device_name, *io_options;
46
47 static void usage (char *prog)
48 {
49         fprintf (stderr, _("Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] "
50                            "[-p] device [-b|-s|new_size] [-z undo_file]\n\n"),
51                  prog);
52
53         exit (1);
54 }
55
56 static errcode_t resize_progress_func(ext2_resize_t rfs, int pass,
57                                       unsigned long cur, unsigned long max)
58 {
59         ext2_sim_progmeter progress;
60         const char      *label;
61         errcode_t       retval;
62
63         progress = (ext2_sim_progmeter) rfs->prog_data;
64         if (max == 0)
65                 return 0;
66         if (cur == 0) {
67                 if (progress)
68                         ext2fs_progress_close(progress);
69                 progress = 0;
70                 switch (pass) {
71                 case E2_RSZ_EXTEND_ITABLE_PASS:
72                         label = _("Extending the inode table");
73                         break;
74                 case E2_RSZ_BLOCK_RELOC_PASS:
75                         label = _("Relocating blocks");
76                         break;
77                 case E2_RSZ_INODE_SCAN_PASS:
78                         label = _("Scanning inode table");
79                         break;
80                 case E2_RSZ_INODE_REF_UPD_PASS:
81                         label = _("Updating inode references");
82                         break;
83                 case E2_RSZ_MOVE_ITABLE_PASS:
84                         label = _("Moving inode table");
85                         break;
86                 default:
87                         label = _("Unknown pass?!?");
88                         break;
89                 }
90                 printf(_("Begin pass %d (max = %lu)\n"), pass, max);
91                 retval = ext2fs_progress_init(&progress, label, 30,
92                                               40, max, 0);
93                 if (retval)
94                         progress = 0;
95                 rfs->prog_data = (void *) progress;
96         }
97         if (progress)
98                 ext2fs_progress_update(progress, cur);
99         if (cur >= max) {
100                 if (progress)
101                         ext2fs_progress_close(progress);
102                 progress = 0;
103                 rfs->prog_data = 0;
104         }
105         return 0;
106 }
107
108 static void determine_fs_stride(ext2_filsys fs)
109 {
110         unsigned int    group;
111         unsigned long long sum;
112         unsigned int    has_sb, prev_has_sb = 0, num;
113         int             i_stride, b_stride;
114         int             flexbg_size = 1 << fs->super->s_log_groups_per_flex;
115
116         if (fs->stride)
117                 return;
118         num = 0; sum = 0;
119         for (group = 0; group < fs->group_desc_count; group++) {
120                 has_sb = ext2fs_bg_has_super(fs, group);
121                 if (group == 0 || has_sb != prev_has_sb)
122                         goto next;
123                 b_stride = ext2fs_block_bitmap_loc(fs, group) -
124                         ext2fs_block_bitmap_loc(fs, group - 1) -
125                         fs->super->s_blocks_per_group;
126                 i_stride = ext2fs_inode_bitmap_loc(fs, group) -
127                         ext2fs_inode_bitmap_loc(fs, group - 1) -
128                         fs->super->s_blocks_per_group;
129                 if (b_stride != i_stride ||
130                     b_stride < 0 ||
131                     (flexbg_size > 1 && (group % flexbg_size == 0)))
132                         goto next;
133
134                 /* printf("group %d has stride %d\n", group, b_stride); */
135                 sum += b_stride;
136                 num++;
137
138         next:
139                 prev_has_sb = has_sb;
140         }
141
142         if (fs->group_desc_count > 12 && num < 3)
143                 sum = 0;
144
145         if (num)
146                 fs->stride = sum / num;
147         else
148                 fs->stride = 0;
149
150         fs->super->s_raid_stride = fs->stride;
151         ext2fs_mark_super_dirty(fs);
152
153 #if 0
154         if (fs->stride)
155                 printf("Using RAID stride of %d\n", fs->stride);
156 #endif
157 }
158
159 static void bigalloc_check(ext2_filsys fs, int force)
160 {
161         if (!force && ext2fs_has_feature_bigalloc(fs->super)) {
162                 fprintf(stderr, "%s", _("\nResizing bigalloc file systems has "
163                                         "not been fully tested.  Proceed at\n"
164                                         "your own risk!  Use the force option "
165                                         "if you want to go ahead anyway.\n\n"));
166                 exit(1);
167         }
168 }
169
170 static int resize2fs_setup_tdb(const char *device, char *undo_file,
171                                io_manager *io_ptr)
172 {
173         errcode_t retval = ENOMEM;
174         const char *tdb_dir = NULL;
175         char *tdb_file = NULL;
176         char *dev_name, *tmp_name;
177
178         /* (re)open a specific undo file */
179         if (undo_file && undo_file[0] != 0) {
180                 retval = set_undo_io_backing_manager(*io_ptr);
181                 if (retval)
182                         goto err;
183                 *io_ptr = undo_io_manager;
184                 retval = set_undo_io_backup_file(undo_file);
185                 if (retval)
186                         goto err;
187                 printf(_("Overwriting existing filesystem; this can be undone "
188                          "using the command:\n"
189                          "    e2undo %s %s\n\n"),
190                         undo_file, device);
191                 return retval;
192         }
193
194         /*
195          * Configuration via a conf file would be
196          * nice
197          */
198         tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
199         if (!tdb_dir)
200                 tdb_dir = "/var/lib/e2fsprogs";
201
202         if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
203             access(tdb_dir, W_OK))
204                 return 0;
205
206         tmp_name = strdup(device);
207         if (!tmp_name)
208                 goto errout;
209         dev_name = basename(tmp_name);
210         tdb_file = malloc(strlen(tdb_dir) + 11 + strlen(dev_name) + 7 + 1);
211         if (!tdb_file) {
212                 free(tmp_name);
213                 goto errout;
214         }
215         sprintf(tdb_file, "%s/resize2fs-%s.e2undo", tdb_dir, dev_name);
216         free(tmp_name);
217
218         if ((unlink(tdb_file) < 0) && (errno != ENOENT)) {
219                 retval = errno;
220                 com_err(program_name, retval,
221                         _("while trying to delete %s"), tdb_file);
222                 goto errout;
223         }
224
225         retval = set_undo_io_backing_manager(*io_ptr);
226         if (retval)
227                 goto errout;
228         *io_ptr = undo_io_manager;
229         retval = set_undo_io_backup_file(tdb_file);
230         if (retval)
231                 goto errout;
232         printf(_("Overwriting existing filesystem; this can be undone "
233                  "using the command:\n"
234                  "    e2undo %s %s\n\n"), tdb_file, device);
235
236         free(tdb_file);
237         return 0;
238 errout:
239         free(tdb_file);
240 err:
241         com_err(program_name, retval, "%s",
242                 _("while trying to setup undo file\n"));
243         return retval;
244 }
245
246 int main (int argc, char ** argv)
247 {
248         errcode_t       retval;
249         ext2_filsys     fs;
250         int             c;
251         int             flags = 0;
252         int             flush = 0;
253         int             force = 0;
254         int             io_flags = 0;
255         int             force_min_size = 0;
256         int             print_min_size = 0;
257         int             fd, ret;
258         blk64_t         new_size = 0;
259         blk64_t         max_size = 0;
260         blk64_t         min_size = 0;
261         io_manager      io_ptr;
262         char            *new_size_str = 0;
263         int             use_stride = -1;
264         ext2fs_struct_stat st_buf;
265         __s64           new_file_size;
266         unsigned int    sys_page_size = 4096;
267         unsigned int    blocksize;
268         long            sysval;
269         int             len, mount_flags;
270         char            *mtpt, *undo_file = NULL;
271
272 #ifdef ENABLE_NLS
273         setlocale(LC_MESSAGES, "");
274         setlocale(LC_CTYPE, "");
275         bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
276         textdomain(NLS_CAT_NAME);
277         set_com_err_gettext(gettext);
278 #endif
279
280         add_error_table(&et_ext2_error_table);
281
282         fprintf (stderr, "resize2fs %s (%s)\n",
283                  E2FSPROGS_VERSION, E2FSPROGS_DATE);
284         if (argc && *argv)
285                 program_name = *argv;
286
287         while ((c = getopt(argc, argv, "d:fFhMPpS:bsz:")) != EOF) {
288                 switch (c) {
289                 case 'h':
290                         usage(program_name);
291                         break;
292                 case 'f':
293                         force = 1;
294                         break;
295                 case 'F':
296                         flush = 1;
297                         break;
298                 case 'M':
299                         force_min_size = 1;
300                         break;
301                 case 'P':
302                         print_min_size = 1;
303                         break;
304                 case 'd':
305                         flags |= atoi(optarg);
306                         break;
307                 case 'p':
308                         flags |= RESIZE_PERCENT_COMPLETE;
309                         break;
310                 case 'S':
311                         use_stride = atoi(optarg);
312                         break;
313                 case 'b':
314                         flags |= RESIZE_ENABLE_64BIT;
315                         break;
316                 case 's':
317                         flags |= RESIZE_DISABLE_64BIT;
318                         break;
319                 case 'z':
320                         undo_file = optarg;
321                         break;
322                 default:
323                         usage(program_name);
324                 }
325         }
326         if (optind == argc)
327                 usage(program_name);
328
329         device_name = argv[optind++];
330         if (optind < argc)
331                 new_size_str = argv[optind++];
332         if (optind < argc)
333                 usage(program_name);
334
335         io_options = strchr(device_name, '?');
336         if (io_options)
337                 *io_options++ = 0;
338
339         /*
340          * Figure out whether or not the device is mounted, and if it is
341          * where it is mounted.
342          */
343         len=80;
344         while (1) {
345                 mtpt = malloc(len);
346                 if (!mtpt)
347                         return ENOMEM;
348                 mtpt[len-1] = 0;
349                 retval = ext2fs_check_mount_point(device_name, &mount_flags,
350                                                   mtpt, len);
351                 if (retval) {
352                         com_err("ext2fs_check_mount_point", retval,
353                                 _("while determining whether %s is mounted."),
354                                 device_name);
355                         exit(1);
356                 }
357                 if (!(mount_flags & EXT2_MF_MOUNTED) || (mtpt[len-1] == 0))
358                         break;
359                 free(mtpt);
360                 len = 2 * len;
361         }
362
363         fd = ext2fs_open_file(device_name, O_RDWR, 0);
364         if (fd < 0) {
365                 com_err("open", errno, _("while opening %s"),
366                         device_name);
367                 exit(1);
368         }
369
370         ret = ext2fs_fstat(fd, &st_buf);
371         if (ret < 0) {
372                 com_err("open", errno,
373                         _("while getting stat information for %s"),
374                         device_name);
375                 exit(1);
376         }
377
378         if (flush) {
379                 retval = ext2fs_sync_device(fd, 1);
380                 if (retval) {
381                         com_err(argv[0], retval,
382                                 _("while trying to flush %s"),
383                                 device_name);
384                         exit(1);
385                 }
386         }
387
388         if (!S_ISREG(st_buf.st_mode )) {
389                 close(fd);
390                 fd = -1;
391         }
392
393 #ifdef CONFIG_TESTIO_DEBUG
394         if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
395                 io_ptr = test_io_manager;
396                 test_io_backing_manager = unix_io_manager;
397         } else
398 #endif
399                 io_ptr = unix_io_manager;
400
401         if (!(mount_flags & EXT2_MF_MOUNTED))
402                 io_flags = EXT2_FLAG_RW | EXT2_FLAG_EXCLUSIVE;
403
404         io_flags |= EXT2_FLAG_64BITS;
405         if (undo_file) {
406                 retval = resize2fs_setup_tdb(device_name, undo_file, &io_ptr);
407                 if (retval)
408                         exit(1);
409         }
410         retval = ext2fs_open2(device_name, io_options, io_flags,
411                               0, 0, io_ptr, &fs);
412         if (retval) {
413                 com_err(program_name, retval, _("while trying to open %s"),
414                         device_name);
415                 printf("%s", _("Couldn't find valid filesystem superblock.\n"));
416                 exit (1);
417         }
418         fs->default_bitmap_type = EXT2FS_BMAP64_RBTREE;
419
420         /*
421          * Before acting on an unmounted filesystem, make sure it's ok,
422          * unless the user is forcing it.
423          *
424          * We do ERROR and VALID checks even if we're only printing the
425          * minimum size, because traversal of a badly damaged filesystem
426          * can cause issues as well.  We don't require it to be fscked after
427          * the last mount time in this case, though, as this is a bit less
428          * risky.
429          */
430         if (!force && !(mount_flags & EXT2_MF_MOUNTED)) {
431                 int checkit = 0;
432
433                 if (fs->super->s_state & EXT2_ERROR_FS)
434                         checkit = 1;
435
436                 if ((fs->super->s_state & EXT2_VALID_FS) == 0)
437                         checkit = 1;
438
439                 if ((fs->super->s_lastcheck < fs->super->s_mtime) &&
440                     !print_min_size)
441                         checkit = 1;
442
443                 if ((ext2fs_free_blocks_count(fs->super) >
444                      ext2fs_blocks_count(fs->super)) ||
445                     (fs->super->s_free_inodes_count > fs->super->s_inodes_count))
446                         checkit = 1;
447
448                 if (checkit) {
449                         fprintf(stderr,
450                                 _("Please run 'e2fsck -f %s' first.\n\n"),
451                                 device_name);
452                         exit(1);
453                 }
454         }
455
456         /*
457          * Check for compatibility with the feature sets.  We need to
458          * be more stringent than ext2fs_open().
459          */
460         if (fs->super->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP) {
461                 com_err(program_name, EXT2_ET_UNSUPP_FEATURE,
462                         "(%s)", device_name);
463                 exit(1);
464         }
465
466         min_size = calculate_minimum_resize_size(fs, flags);
467
468         if (print_min_size) {
469                 printf(_("Estimated minimum size of the filesystem: %llu\n"),
470                        min_size);
471                 exit(0);
472         }
473
474         /* Determine the system page size if possible */
475 #ifdef HAVE_SYSCONF
476 #if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
477 #define _SC_PAGESIZE _SC_PAGE_SIZE
478 #endif
479 #ifdef _SC_PAGESIZE
480         sysval = sysconf(_SC_PAGESIZE);
481         if (sysval > 0)
482                 sys_page_size = sysval;
483 #endif /* _SC_PAGESIZE */
484 #endif /* HAVE_SYSCONF */
485
486         /*
487          * Get the size of the containing partition, and use this for
488          * defaults and for making sure the new filesystem doesn't
489          * exceed the partition size.
490          */
491         blocksize = fs->blocksize;
492         retval = ext2fs_get_device_size2(device_name, blocksize,
493                                          &max_size);
494         if (retval) {
495                 com_err(program_name, retval, "%s",
496                         _("while trying to determine filesystem size"));
497                 exit(1);
498         }
499         if (force_min_size)
500                 new_size = min_size;
501         else if (new_size_str) {
502                 new_size = parse_num_blocks2(new_size_str,
503                                              fs->super->s_log_block_size);
504                 if (new_size == 0) {
505                         com_err(program_name, 0,
506                                 _("Invalid new size: %s\n"), new_size_str);
507                         exit(1);
508                 }
509         } else {
510                 new_size = max_size;
511                 /* Round down to an even multiple of a pagesize */
512                 if (sys_page_size > blocksize)
513                         new_size &= ~((blk64_t)((sys_page_size / blocksize)-1));
514         }
515         /* If changing 64bit, don't change the filesystem size. */
516         if (flags & (RESIZE_DISABLE_64BIT | RESIZE_ENABLE_64BIT)) {
517                 new_size = ext2fs_blocks_count(fs->super);
518         }
519         if (!ext2fs_has_feature_64bit(fs->super)) {
520                 /* Take 16T down to 2^32-1 blocks */
521                 if (new_size == (1ULL << 32))
522                         new_size--;
523                 else if (new_size > (1ULL << 32)) {
524                         com_err(program_name, 0, "%s",
525                                 _("New size too large to be "
526                                   "expressed in 32 bits\n"));
527                         exit(1);
528                 }
529         }
530
531         if (!force && new_size < min_size) {
532                 com_err(program_name, 0,
533                         _("New size smaller than minimum (%llu)\n"), min_size);
534                 exit(1);
535         }
536         if (use_stride >= 0) {
537                 if (use_stride >= (int) fs->super->s_blocks_per_group) {
538                         com_err(program_name, 0, "%s",
539                                 _("Invalid stride length"));
540                         exit(1);
541                 }
542                 fs->stride = fs->super->s_raid_stride = use_stride;
543                 ext2fs_mark_super_dirty(fs);
544         } else
545                   determine_fs_stride(fs);
546
547         /*
548          * If we are resizing a plain file, and it's not big enough,
549          * automatically extend it in a sparse fashion by writing the
550          * last requested block.
551          */
552         new_file_size = ((__u64) new_size) * blocksize;
553         if ((__u64) new_file_size >
554             (((__u64) 1) << (sizeof(st_buf.st_size)*8 - 1)) - 1)
555                 fd = -1;
556         if ((new_file_size > st_buf.st_size) &&
557             (fd > 0)) {
558                 if ((ext2fs_llseek(fd, new_file_size-1, SEEK_SET) >= 0) &&
559                     (write(fd, "0", 1) == 1))
560                         max_size = new_size;
561         }
562         if (!force && (new_size > max_size)) {
563                 fprintf(stderr, _("The containing partition (or device)"
564                         " is only %llu (%dk) blocks.\nYou requested a new size"
565                         " of %llu blocks.\n\n"), max_size,
566                         blocksize / 1024, new_size);
567                 exit(1);
568         }
569         if ((flags & RESIZE_DISABLE_64BIT) && (flags & RESIZE_ENABLE_64BIT)) {
570                 fprintf(stderr, _("Cannot set and unset 64bit feature.\n"));
571                 exit(1);
572         } else if (flags & (RESIZE_DISABLE_64BIT | RESIZE_ENABLE_64BIT)) {
573                 if (new_size >= (1ULL << 32)) {
574                         fprintf(stderr, _("Cannot change the 64bit feature "
575                                 "on a filesystem that is larger than "
576                                 "2^32 blocks.\n"));
577                         exit(1);
578                 }
579                 if (mount_flags & EXT2_MF_MOUNTED) {
580                         fprintf(stderr, _("Cannot change the 64bit feature "
581                                 "while the filesystem is mounted.\n"));
582                         exit(1);
583                 }
584                 if (flags & RESIZE_ENABLE_64BIT &&
585                     !ext2fs_has_feature_extents(fs->super)) {
586                         fprintf(stderr, _("Please enable the extents feature "
587                                 "with tune2fs before enabling the 64bit "
588                                 "feature.\n"));
589                         exit(1);
590                 }
591         } else if (new_size == ext2fs_blocks_count(fs->super)) {
592                 fprintf(stderr, _("The filesystem is already %llu (%dk) "
593                         "blocks long.  Nothing to do!\n\n"), new_size,
594                         blocksize / 1024);
595                 exit(0);
596         }
597         if ((flags & RESIZE_ENABLE_64BIT) &&
598             ext2fs_has_feature_64bit(fs->super)) {
599                 fprintf(stderr, _("The filesystem is already 64-bit.\n"));
600                 exit(0);
601         }
602         if ((flags & RESIZE_DISABLE_64BIT) &&
603             !ext2fs_has_feature_64bit(fs->super)) {
604                 fprintf(stderr, _("The filesystem is already 32-bit.\n"));
605                 exit(0);
606         }
607         if (mount_flags & EXT2_MF_MOUNTED) {
608                 bigalloc_check(fs, force);
609                 retval = online_resize_fs(fs, mtpt, &new_size, flags);
610         } else {
611                 bigalloc_check(fs, force);
612                 if (flags & RESIZE_ENABLE_64BIT)
613                         printf(_("Converting the filesystem to 64-bit.\n"));
614                 else if (flags & RESIZE_DISABLE_64BIT)
615                         printf(_("Converting the filesystem to 32-bit.\n"));
616                 else
617                         printf(_("Resizing the filesystem on "
618                                  "%s to %llu (%dk) blocks.\n"),
619                                device_name, new_size, blocksize / 1024);
620                 retval = resize_fs(fs, &new_size, flags,
621                                    ((flags & RESIZE_PERCENT_COMPLETE) ?
622                                     resize_progress_func : 0));
623         }
624         free(mtpt);
625         if (retval) {
626                 com_err(program_name, retval, _("while trying to resize %s"),
627                         device_name);
628                 fprintf(stderr,
629                         _("Please run 'e2fsck -fy %s' to fix the filesystem\n"
630                           "after the aborted resize operation.\n"),
631                         device_name);
632                 ext2fs_close_free(&fs);
633                 exit(1);
634         }
635         printf(_("The filesystem on %s is now %llu (%dk) blocks long.\n\n"),
636                device_name, new_size, blocksize / 1024);
637
638         if ((st_buf.st_size > new_file_size) &&
639             (fd > 0)) {
640 #ifdef HAVE_FTRUNCATE64
641                 retval = ftruncate64(fd, new_file_size);
642 #else
643                 retval = 0;
644                 /* Only truncate if new_file_size doesn't overflow off_t */
645                 if (((off_t) new_file_size) == new_file_size)
646                         retval = ftruncate(fd, (off_t) new_file_size);
647 #endif
648                 if (retval)
649                         com_err(program_name, retval,
650                                 _("while trying to truncate %s"),
651                                 device_name);
652         }
653         if (fd > 0)
654                 close(fd);
655         remove_error_table(&et_ext2_error_table);
656         return (0);
657 }