Whamcloud - gitweb
68891be71f642143899dd8cc13e699f8fd7a9676
[tools/e2fsprogs.git] / misc / tune2fs.c
1 /*
2  * tune2fs.c - Change the file system parameters on an ext2 file system
3  *
4  * Copyright (C) 1992, 1993, 1994  Remy Card <card@masi.ibp.fr>
5  *                                 Laboratoire MASI, Institut Blaise Pascal
6  *                                 Universite Pierre et Marie Curie (Paris VI)
7  *
8  * Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o.
9  *
10  * %Begin-Header%
11  * This file may be redistributed under the terms of the GNU Public
12  * License.
13  * %End-Header%
14  */
15
16 /*
17  * History:
18  * 93/06/01     - Creation
19  * 93/10/31     - Added the -c option to change the maximal mount counts
20  * 93/12/14     - Added -l flag to list contents of superblock
21  *                M.J.E. Mol (marcel@duteca.et.tudelft.nl)
22  *                F.W. ten Wolde (franky@duteca.et.tudelft.nl)
23  * 93/12/29     - Added the -e option to change errors behavior
24  * 94/02/27     - Ported to use the ext2fs library
25  * 94/03/06     - Added the checks interval from Uwe Ohse (uwe@tirka.gun.de)
26  */
27
28 #define _XOPEN_SOURCE 600 /* for inclusion of strptime() */
29 #include "config.h"
30 #include <fcntl.h>
31 #include <grp.h>
32 #ifdef HAVE_GETOPT_H
33 #include <getopt.h>
34 #else
35 extern char *optarg;
36 extern int optind;
37 #endif
38 #include <pwd.h>
39 #include <stdio.h>
40 #ifdef HAVE_STDLIB_H
41 #include <stdlib.h>
42 #endif
43 #ifdef HAVE_STRINGS_H
44 #include <strings.h>    /* for strcasecmp() */
45 #else
46 #define _BSD_SOURCE     /* for inclusion of strcasecmp() via <string.h> */
47 #define _DEFAULT_SOURCE   /* since glibc 2.20 _BSD_SOURCE is deprecated */
48 #endif
49 #include <string.h>
50 #include <time.h>
51 #include <unistd.h>
52 #include <sys/types.h>
53 #include <libgen.h>
54 #include <limits.h>
55
56 #include "ext2fs/ext2_fs.h"
57 #include "ext2fs/ext2fs.h"
58 #include "ext2fs/kernel-jbd.h"
59 #include "et/com_err.h"
60 #include "support/plausible.h"
61 #include "support/quotaio.h"
62 #include "uuid/uuid.h"
63 #include "e2p/e2p.h"
64 #include "util.h"
65 #include "blkid/blkid.h"
66
67 #include "../version.h"
68 #include "support/nls-enable.h"
69
70 #define QOPT_ENABLE     (1)
71 #define QOPT_DISABLE    (-1)
72
73 extern int ask_yn(const char *string, int def);
74
75 const char *program_name = "tune2fs";
76 char *device_name;
77 char *new_label, *new_last_mounted, *new_UUID;
78 char *io_options;
79 static int c_flag, C_flag, e_flag, f_flag, g_flag, i_flag, l_flag, L_flag;
80 static int m_flag, M_flag, Q_flag, r_flag, s_flag = -1, u_flag, U_flag, T_flag;
81 static int I_flag;
82 static int clear_mmp;
83 static time_t last_check_time;
84 static int print_label;
85 static int max_mount_count, mount_count, mount_flags;
86 static unsigned long interval;
87 static blk64_t reserved_blocks;
88 static double reserved_ratio;
89 static unsigned long resgid, resuid;
90 static unsigned short errors;
91 static int open_flag;
92 static char *features_cmd;
93 static char *mntopts_cmd;
94 static int stride, stripe_width;
95 static int stride_set, stripe_width_set;
96 static char *extended_cmd;
97 static unsigned long new_inode_size;
98 static char *ext_mount_opts;
99 static int quota_enable[MAXQUOTAS];
100 static int rewrite_checksums;
101 static int feature_64bit;
102 static int fsck_requested;
103 static char *undo_file;
104
105 int journal_size, journal_flags;
106 char *journal_device;
107 static blk64_t journal_location = ~0LL;
108
109 static struct list_head blk_move_list;
110
111 struct blk_move {
112         struct list_head list;
113         blk64_t old_loc;
114         blk64_t new_loc;
115 };
116
117 errcode_t ext2fs_run_ext3_journal(ext2_filsys *fs);
118
119 static const char *please_fsck = N_("Please run e2fsck -f on the filesystem.\n");
120 static const char *please_dir_fsck =
121                 N_("Please run e2fsck -fD on the filesystem.\n");
122
123 #ifdef CONFIG_BUILD_FINDFS
124 void do_findfs(int argc, char **argv);
125 #endif
126
127 #ifdef CONFIG_JBD_DEBUG         /* Enabled by configure --enable-jbd-debug */
128 int journal_enable_debug = -1;
129 #endif
130
131 static void usage(void)
132 {
133         fprintf(stderr,
134                 _("Usage: %s [-c max_mounts_count] [-e errors_behavior] [-f] "
135                   "[-g group]\n"
136                   "\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
137                   "\t[-m reserved_blocks_percent] [-o [^]mount_options[,...]]\n"
138                   "\t[-p mmp_update_interval] [-r reserved_blocks_count] "
139                   "[-u user]\n"
140                   "\t[-C mount_count] [-L volume_label] [-M last_mounted_dir]\n"
141                   "\t[-O [^]feature[,...]] [-Q quota_options]\n"
142                   "\t[-E extended-option[,...]] [-T last_check_time] "
143                   "[-U UUID]\n\t[-I new_inode_size] [-z undo_file] device\n"),
144                 program_name);
145         exit(1);
146 }
147
148 static __u32 ok_features[3] = {
149         /* Compat */
150         EXT3_FEATURE_COMPAT_HAS_JOURNAL |
151                 EXT2_FEATURE_COMPAT_DIR_INDEX,
152         /* Incompat */
153         EXT2_FEATURE_INCOMPAT_FILETYPE |
154                 EXT3_FEATURE_INCOMPAT_EXTENTS |
155                 EXT4_FEATURE_INCOMPAT_FLEX_BG |
156                 EXT4_FEATURE_INCOMPAT_MMP |
157                 EXT4_FEATURE_INCOMPAT_64BIT |
158                 EXT4_FEATURE_INCOMPAT_ENCRYPT |
159                 EXT4_FEATURE_INCOMPAT_CSUM_SEED |
160                 EXT4_FEATURE_INCOMPAT_LARGEDIR,
161         /* R/O compat */
162         EXT2_FEATURE_RO_COMPAT_LARGE_FILE |
163                 EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
164                 EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
165                 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
166                 EXT4_FEATURE_RO_COMPAT_GDT_CSUM |
167                 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER |
168                 EXT4_FEATURE_RO_COMPAT_QUOTA |
169                 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM |
170                 EXT4_FEATURE_RO_COMPAT_READONLY |
171                 EXT4_FEATURE_RO_COMPAT_PROJECT
172 };
173
174 static __u32 clear_ok_features[3] = {
175         /* Compat */
176         EXT3_FEATURE_COMPAT_HAS_JOURNAL |
177                 EXT2_FEATURE_COMPAT_RESIZE_INODE |
178                 EXT2_FEATURE_COMPAT_DIR_INDEX,
179         /* Incompat */
180         EXT2_FEATURE_INCOMPAT_FILETYPE |
181                 EXT4_FEATURE_INCOMPAT_FLEX_BG |
182                 EXT4_FEATURE_INCOMPAT_MMP |
183                 EXT4_FEATURE_INCOMPAT_64BIT |
184                 EXT4_FEATURE_INCOMPAT_CSUM_SEED,
185         /* R/O compat */
186         EXT2_FEATURE_RO_COMPAT_LARGE_FILE |
187                 EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
188                 EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
189                 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
190                 EXT4_FEATURE_RO_COMPAT_GDT_CSUM |
191                 EXT4_FEATURE_RO_COMPAT_QUOTA |
192                 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM |
193                 EXT4_FEATURE_RO_COMPAT_READONLY
194 };
195
196 /**
197  * Try to get journal super block if any
198  */
199 static int get_journal_sb(ext2_filsys jfs, char buf[SUPERBLOCK_SIZE])
200 {
201         int retval;
202         journal_superblock_t *jsb;
203
204         if (!ext2fs_has_feature_journal_dev(jfs->super)) {
205                 return EXT2_ET_UNSUPP_FEATURE;
206         }
207
208         /* Get the journal superblock */
209         if ((retval = io_channel_read_blk64(jfs->io,
210             ext2fs_journal_sb_start(jfs->blocksize), -SUPERBLOCK_SIZE, buf))) {
211                 com_err(program_name, retval, "%s",
212                 _("while reading journal superblock"));
213                 return retval;
214         }
215
216         jsb = (journal_superblock_t *) buf;
217         if ((jsb->s_header.h_magic != (unsigned)ntohl(JFS_MAGIC_NUMBER)) ||
218             (jsb->s_header.h_blocktype != (unsigned)ntohl(JFS_SUPERBLOCK_V2))) {
219                 fputs(_("Journal superblock not found!\n"), stderr);
220                 return EXT2_ET_BAD_MAGIC;
221         }
222
223         return 0;
224 }
225
226 static __u8 *journal_user(__u8 uuid[UUID_SIZE], __u8 s_users[JFS_USERS_SIZE],
227                           int nr_users)
228 {
229         int i;
230         for (i = 0; i < nr_users; i++) {
231                 if (memcmp(uuid, &s_users[i * UUID_SIZE], UUID_SIZE) == 0)
232                         return &s_users[i * UUID_SIZE];
233         }
234
235         return NULL;
236 }
237
238 /*
239  * Remove an external journal from the filesystem
240  */
241 static int remove_journal_device(ext2_filsys fs)
242 {
243         char            *journal_path;
244         ext2_filsys     jfs;
245         char            buf[SUPERBLOCK_SIZE] __attribute__ ((aligned(8)));
246         journal_superblock_t    *jsb;
247         int             i, nr_users;
248         errcode_t       retval;
249         int             commit_remove_journal = 0;
250         io_manager      io_ptr;
251
252         if (f_flag)
253                 commit_remove_journal = 1; /* force removal even if error */
254
255         uuid_unparse(fs->super->s_journal_uuid, buf);
256         journal_path = blkid_get_devname(NULL, "UUID", buf);
257
258         if (!journal_path) {
259                 journal_path =
260                         ext2fs_find_block_device(fs->super->s_journal_dev);
261                 if (!journal_path)
262                         goto no_valid_journal;
263         }
264
265 #ifdef CONFIG_TESTIO_DEBUG
266         if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
267                 io_ptr = test_io_manager;
268                 test_io_backing_manager = unix_io_manager;
269         } else
270 #endif
271                 io_ptr = unix_io_manager;
272         retval = ext2fs_open(journal_path, EXT2_FLAG_RW|
273                              EXT2_FLAG_JOURNAL_DEV_OK, 0,
274                              fs->blocksize, io_ptr, &jfs);
275         if (retval) {
276                 com_err(program_name, retval, "%s",
277                         _("while trying to open external journal"));
278                 goto no_valid_journal;
279         }
280
281         if ((retval = get_journal_sb(jfs, buf))) {
282                 if (retval == EXT2_ET_UNSUPP_FEATURE)
283                         fprintf(stderr, _("%s is not a journal device.\n"),
284                                 journal_path);
285                 goto no_valid_journal;
286         }
287
288         jsb = (journal_superblock_t *) buf;
289         /* Find the filesystem UUID */
290         nr_users = ntohl(jsb->s_nr_users);
291
292         if (!journal_user(fs->super->s_uuid, jsb->s_users, nr_users)) {
293                 fputs(_("Filesystem's UUID not found on journal device.\n"),
294                       stderr);
295                 commit_remove_journal = 1;
296                 goto no_valid_journal;
297         }
298         nr_users--;
299         for (i = 0; i < nr_users; i++)
300                 memcpy(&jsb->s_users[i * 16], &jsb->s_users[(i + 1) * 16], 16);
301         jsb->s_nr_users = htonl(nr_users);
302
303         /* Write back the journal superblock */
304         retval = io_channel_write_blk64(jfs->io,
305                                         ext2fs_journal_sb_start(fs->blocksize),
306                                         -SUPERBLOCK_SIZE, buf);
307         if (retval) {
308                 com_err(program_name, retval,
309                         "while writing journal superblock.");
310                 goto no_valid_journal;
311         }
312
313         commit_remove_journal = 1;
314
315 no_valid_journal:
316         if (commit_remove_journal == 0) {
317                 fputs(_("Cannot locate journal device. It was NOT removed\n"
318                         "Use -f option to remove missing journal device.\n"),
319                       stderr);
320                 return 1;
321         }
322         fs->super->s_journal_dev = 0;
323         memset(fs->super->s_jnl_blocks, 0, sizeof(fs->super->s_jnl_blocks));
324         uuid_clear(fs->super->s_journal_uuid);
325         ext2fs_mark_super_dirty(fs);
326         fputs(_("Journal removed\n"), stdout);
327         free(journal_path);
328
329         return 0;
330 }
331
332 /* Helper function for remove_journal_inode */
333 static int release_blocks_proc(ext2_filsys fs, blk64_t *blocknr,
334                                e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
335                                blk64_t ref_block EXT2FS_ATTR((unused)),
336                                int ref_offset EXT2FS_ATTR((unused)),
337                                void *private EXT2FS_ATTR((unused)))
338 {
339         blk64_t block;
340         int     group;
341
342         block = *blocknr;
343         ext2fs_unmark_block_bitmap2(fs->block_map, block);
344         group = ext2fs_group_of_blk2(fs, block);
345         ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) + 1);
346         ext2fs_group_desc_csum_set(fs, group);
347         ext2fs_free_blocks_count_add(fs->super, EXT2FS_CLUSTER_RATIO(fs));
348         return 0;
349 }
350
351 /*
352  * Remove the journal inode from the filesystem
353  */
354 static errcode_t remove_journal_inode(ext2_filsys fs)
355 {
356         struct ext2_inode       inode;
357         errcode_t               retval;
358         ino_t                   ino = fs->super->s_journal_inum;
359
360         retval = ext2fs_read_inode(fs, ino,  &inode);
361         if (retval) {
362                 com_err(program_name, retval, "%s",
363                         _("while reading journal inode"));
364                 return retval;
365         }
366         if (ino == EXT2_JOURNAL_INO) {
367                 retval = ext2fs_read_bitmaps(fs);
368                 if (retval) {
369                         com_err(program_name, retval, "%s",
370                                 _("while reading bitmaps"));
371                         return retval;
372                 }
373                 retval = ext2fs_block_iterate3(fs, ino,
374                                                BLOCK_FLAG_READ_ONLY, NULL,
375                                                release_blocks_proc, NULL);
376                 if (retval) {
377                         com_err(program_name, retval, "%s",
378                                 _("while clearing journal inode"));
379                         return retval;
380                 }
381                 memset(&inode, 0, sizeof(inode));
382                 ext2fs_mark_bb_dirty(fs);
383                 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
384         } else
385                 inode.i_flags &= ~EXT2_IMMUTABLE_FL;
386         retval = ext2fs_write_inode(fs, ino, &inode);
387         if (retval) {
388                 com_err(program_name, retval, "%s",
389                         _("while writing journal inode"));
390                 return retval;
391         }
392         fs->super->s_journal_inum = 0;
393         memset(fs->super->s_jnl_blocks, 0, sizeof(fs->super->s_jnl_blocks));
394         ext2fs_mark_super_dirty(fs);
395
396         return 0;
397 }
398
399 /*
400  * Update the default mount options
401  */
402 static int update_mntopts(ext2_filsys fs, char *mntopts)
403 {
404         struct ext2_super_block *sb = fs->super;
405
406         if (e2p_edit_mntopts(mntopts, &sb->s_default_mount_opts, ~0)) {
407                 fprintf(stderr, _("Invalid mount option set: %s\n"),
408                         mntopts);
409                 return 1;
410         }
411         ext2fs_mark_super_dirty(fs);
412
413         return 0;
414 }
415
416 static void check_fsck_needed(ext2_filsys fs, const char *prompt)
417 {
418         /* Refuse to modify anything but a freshly checked valid filesystem. */
419         if (!(fs->super->s_state & EXT2_VALID_FS) ||
420             (fs->super->s_state & EXT2_ERROR_FS) ||
421             (fs->super->s_lastcheck < fs->super->s_mtime)) {
422                 printf("\n%s\n", _(please_fsck));
423                 if (mount_flags & EXT2_MF_READONLY)
424                         printf("%s", _("(and reboot afterwards!)\n"));
425                 exit(1);
426         }
427
428         /* Give the admin a few seconds to bail out of a dangerous op. */
429         if (!getenv("TUNE2FS_FORCE_PROMPT") && (!isatty(0) || !isatty(1)))
430                 return;
431
432         puts(prompt);
433         proceed_question(5);
434 }
435
436 static void request_dir_fsck_afterwards(ext2_filsys fs)
437 {
438         static int requested;
439
440         if (requested++)
441                 return;
442         fsck_requested++;
443         fs->super->s_state &= ~EXT2_VALID_FS;
444         printf("\n%s\n", _(please_dir_fsck));
445         if (mount_flags & EXT2_MF_READONLY)
446                 printf("%s", _("(and reboot afterwards!)\n"));
447 }
448
449 static void request_fsck_afterwards(ext2_filsys fs)
450 {
451         static int requested = 0;
452
453         if (requested++)
454                 return;
455         fsck_requested++;
456         fs->super->s_state &= ~EXT2_VALID_FS;
457         printf("\n%s\n", _(please_fsck));
458         if (mount_flags & EXT2_MF_READONLY)
459                 printf("%s", _("(and reboot afterwards!)\n"));
460 }
461
462 static void convert_64bit(ext2_filsys fs, int direction)
463 {
464         if (!direction)
465                 return;
466
467         /*
468          * Is resize2fs going to demand a fsck run? Might as well tell the
469          * user now.
470          */
471         if (!fsck_requested &&
472             ((fs->super->s_state & EXT2_ERROR_FS) ||
473              !(fs->super->s_state & EXT2_VALID_FS) ||
474              fs->super->s_lastcheck < fs->super->s_mtime))
475                 request_fsck_afterwards(fs);
476         if (fsck_requested)
477                 fprintf(stderr, _("After running e2fsck, please run `resize2fs %s %s"),
478                         direction > 0 ? "-b" : "-s", fs->device_name);
479         else
480                 fprintf(stderr, _("Please run `resize2fs %s %s"),
481                         direction > 0 ? "-b" : "-s", fs->device_name);
482
483         if (undo_file)
484                 fprintf(stderr, _(" -z \"%s\""), undo_file);
485         if (direction > 0)
486                 fprintf(stderr, _("' to enable 64-bit mode.\n"));
487         else
488                 fprintf(stderr, _("' to disable 64-bit mode.\n"));
489 }
490
491 /* Rewrite extents */
492 static errcode_t rewrite_extents(ext2_filsys fs, ext2_ino_t ino,
493                                  struct ext2_inode *inode)
494 {
495         ext2_extent_handle_t    handle;
496         struct ext2fs_extent    extent;
497         errcode_t               errcode;
498         struct ext2_extent_info info;
499
500         if (!(inode->i_flags & EXT4_EXTENTS_FL) ||
501             !ext2fs_has_feature_metadata_csum(fs->super))
502                 return 0;
503
504         errcode = ext2fs_extent_open(fs, ino, &handle);
505         if (errcode)
506                 return errcode;
507
508         errcode = ext2fs_extent_get(handle, EXT2_EXTENT_ROOT, &extent);
509         if (errcode)
510                 goto out;
511
512         do {
513                 errcode = ext2fs_extent_get_info(handle, &info);
514                 if (errcode)
515                         break;
516
517                 /*
518                  * If this is the first extent in an extent block that we
519                  * haven't visited, rewrite the extent to force the ETB
520                  * checksum to be rewritten.
521                  */
522                 if (info.curr_entry == 1 && info.curr_level != 0 &&
523                     !(extent.e_flags & EXT2_EXTENT_FLAGS_SECOND_VISIT)) {
524                         errcode = ext2fs_extent_replace(handle, 0, &extent);
525                         if (errcode)
526                                 break;
527                 }
528
529                 /* Skip to the end of a block of leaf nodes */
530                 if (extent.e_flags & EXT2_EXTENT_FLAGS_LEAF) {
531                         errcode = ext2fs_extent_get(handle,
532                                                     EXT2_EXTENT_LAST_SIB,
533                                                     &extent);
534                         if (errcode)
535                                 break;
536                 }
537
538                 errcode = ext2fs_extent_get(handle, EXT2_EXTENT_NEXT, &extent);
539         } while (errcode == 0);
540
541 out:
542         /* Ok if we run off the end */
543         if (errcode == EXT2_ET_EXTENT_NO_NEXT)
544                 errcode = 0;
545         ext2fs_extent_free(handle);
546         return errcode;
547 }
548
549 /*
550  * Rewrite directory blocks with checksums
551  */
552 struct rewrite_dir_context {
553         char *buf;
554         errcode_t errcode;
555         ext2_ino_t dir;
556         int is_htree;
557 };
558
559 static int rewrite_dir_block(ext2_filsys fs,
560                              blk64_t    *blocknr,
561                              e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
562                              blk64_t    ref_block EXT2FS_ATTR((unused)),
563                              int        ref_offset EXT2FS_ATTR((unused)),
564                              void       *priv_data)
565 {
566         struct ext2_dx_countlimit *dcl = NULL;
567         struct rewrite_dir_context *ctx = priv_data;
568         int dcl_offset, changed = 0;
569
570         ctx->errcode = ext2fs_read_dir_block4(fs, *blocknr, ctx->buf, 0,
571                                               ctx->dir);
572         if (ctx->errcode)
573                 return BLOCK_ABORT;
574
575         /* if htree node... */
576         if (ctx->is_htree)
577                 ext2fs_get_dx_countlimit(fs, (struct ext2_dir_entry *)ctx->buf,
578                                          &dcl, &dcl_offset);
579         if (dcl) {
580                 if (!ext2fs_has_feature_metadata_csum(fs->super)) {
581                         /* Ensure limit is the max size */
582                         int max_entries = (fs->blocksize - dcl_offset) /
583                                           sizeof(struct ext2_dx_entry);
584                         if (ext2fs_le16_to_cpu(dcl->limit) != max_entries) {
585                                 changed = 1;
586                                 dcl->limit = ext2fs_cpu_to_le16(max_entries);
587                         }
588                 } else {
589                         /* If htree block is full then rebuild the dir */
590                         if (ext2fs_le16_to_cpu(dcl->count) ==
591                             ext2fs_le16_to_cpu(dcl->limit)) {
592                                 request_dir_fsck_afterwards(fs);
593                                 return 0;
594                         }
595                         /*
596                          * Ensure dcl->limit is small enough to leave room for
597                          * the checksum tail.
598                          */
599                         int max_entries = (fs->blocksize - (dcl_offset +
600                                                 sizeof(struct ext2_dx_tail))) /
601                                           sizeof(struct ext2_dx_entry);
602                         if (ext2fs_le16_to_cpu(dcl->limit) != max_entries)
603                                 dcl->limit = ext2fs_cpu_to_le16(max_entries);
604                         /* Always rewrite checksum */
605                         changed = 1;
606                 }
607         } else {
608                 unsigned int rec_len, name_size;
609                 char *top = ctx->buf + fs->blocksize;
610                 struct ext2_dir_entry *de = (struct ext2_dir_entry *)ctx->buf;
611                 struct ext2_dir_entry *last_de = NULL, *penultimate_de = NULL;
612
613                 /* Find last and penultimate dirent */
614                 while ((char *)de < top) {
615                         penultimate_de = last_de;
616                         last_de = de;
617                         ctx->errcode = ext2fs_get_rec_len(fs, de, &rec_len);
618                         if (!ctx->errcode && !rec_len)
619                                 ctx->errcode = EXT2_ET_DIR_CORRUPTED;
620                         if (ctx->errcode)
621                                 return BLOCK_ABORT;
622                         de = (struct ext2_dir_entry *)(((char *)de) + rec_len);
623                 }
624                 ctx->errcode = ext2fs_get_rec_len(fs, last_de, &rec_len);
625                 if (ctx->errcode)
626                         return BLOCK_ABORT;
627                 name_size = ext2fs_dirent_name_len(last_de);
628
629                 if (!ext2fs_has_feature_metadata_csum(fs->super)) {
630                         if (!penultimate_de)
631                                 return 0;
632                         if (last_de->inode ||
633                             name_size ||
634                             rec_len != sizeof(struct ext2_dir_entry_tail))
635                                 return 0;
636                         /*
637                          * The last dirent is unused and the right length to
638                          * have stored a checksum.  Erase it.
639                          */
640                         ctx->errcode = ext2fs_get_rec_len(fs, penultimate_de,
641                                                           &rec_len);
642                         if (!rec_len)
643                                 ctx->errcode = EXT2_ET_DIR_CORRUPTED;
644                         if (ctx->errcode)
645                                 return BLOCK_ABORT;
646                         ext2fs_set_rec_len(fs, rec_len +
647                                         sizeof(struct ext2_dir_entry_tail),
648                                         penultimate_de);
649                         changed = 1;
650                 } else {
651                         unsigned csum_size = sizeof(struct ext2_dir_entry_tail);
652                         struct ext2_dir_entry_tail *t;
653
654                         /*
655                          * If the last dirent looks like the tail, just update
656                          * the checksum.
657                          */
658                         if (!last_de->inode &&
659                             rec_len == csum_size) {
660                                 t = (struct ext2_dir_entry_tail *)last_de;
661                                 t->det_reserved_name_len =
662                                                 EXT2_DIR_NAME_LEN_CSUM;
663                                 changed = 1;
664                                 goto out;
665                         }
666                         if (name_size & 3)
667                                 name_size = (name_size & ~3) + 4;
668                         /* If there's not enough space for the tail, e2fsck */
669                         if (rec_len <= (8 + name_size + csum_size)) {
670                                 request_dir_fsck_afterwards(fs);
671                                 return 0;
672                         }
673                         /* Shorten that last de and insert the tail */
674                         ext2fs_set_rec_len(fs, rec_len - csum_size, last_de);
675                         t = EXT2_DIRENT_TAIL(ctx->buf, fs->blocksize);
676                         ext2fs_initialize_dirent_tail(fs, t);
677
678                         /* Always update checksum */
679                         changed = 1;
680                 }
681         }
682
683 out:
684         if (!changed)
685                 return 0;
686
687         ctx->errcode = ext2fs_write_dir_block4(fs, *blocknr, ctx->buf,
688                                                0, ctx->dir);
689         if (ctx->errcode)
690                 return BLOCK_ABORT;
691
692         return 0;
693 }
694
695 static errcode_t rewrite_directory(ext2_filsys fs, ext2_ino_t dir,
696                                    struct ext2_inode *inode)
697 {
698         errcode_t       retval;
699         struct rewrite_dir_context ctx;
700
701         retval = ext2fs_get_mem(fs->blocksize, &ctx.buf);
702         if (retval)
703                 return retval;
704
705         ctx.is_htree = (inode->i_flags & EXT2_INDEX_FL);
706         ctx.dir = dir;
707         ctx.errcode = 0;
708         retval = ext2fs_block_iterate3(fs, dir, BLOCK_FLAG_READ_ONLY |
709                                                 BLOCK_FLAG_DATA_ONLY,
710                                        0, rewrite_dir_block, &ctx);
711
712         ext2fs_free_mem(&ctx.buf);
713         if (retval)
714                 return retval;
715
716         return ctx.errcode;
717 }
718
719 /*
720  * Forcibly set checksums in all inodes.
721  */
722 static void rewrite_inodes(ext2_filsys fs)
723 {
724         int length = EXT2_INODE_SIZE(fs->super);
725         struct ext2_inode *inode, *zero;
726         char            *ea_buf;
727         ext2_inode_scan scan;
728         errcode_t       retval;
729         ext2_ino_t      ino;
730         blk64_t         file_acl_block;
731         int             inode_dirty;
732
733         if (fs->super->s_creator_os == EXT2_OS_HURD)
734                 return;
735
736         retval = ext2fs_open_inode_scan(fs, 0, &scan);
737         if (retval) {
738                 com_err("set_csum", retval, "while opening inode scan");
739                 exit(1);
740         }
741
742         retval = ext2fs_get_mem(length, &inode);
743         if (retval) {
744                 com_err("set_csum", retval, "while allocating memory");
745                 exit(1);
746         }
747
748         retval = ext2fs_get_memzero(length, &zero);
749         if (retval) {
750                 com_err("set_csum", retval, "while allocating memory");
751                 exit(1);
752         }
753
754         retval = ext2fs_get_mem(fs->blocksize, &ea_buf);
755         if (retval) {
756                 com_err("set_csum", retval, "while allocating memory");
757                 exit(1);
758         }
759
760         do {
761                 retval = ext2fs_get_next_inode_full(scan, &ino, inode, length);
762                 if (retval) {
763                         com_err("set_csum", retval, "while getting next inode");
764                         exit(1);
765                 }
766                 if (!ino)
767                         break;
768                 if (ext2fs_test_inode_bitmap2(fs->inode_map, ino)) {
769                         inode_dirty = 1;
770                 } else {
771                         if (memcmp(inode, zero, length) != 0) {
772                                 memset(inode, 0, length);
773                                 inode_dirty = 1;
774                         } else {
775                                 inode_dirty = 0;
776                         }
777                 }
778
779                 if (inode_dirty) {
780                         retval = ext2fs_write_inode_full(fs, ino, inode,
781                                                          length);
782                         if (retval) {
783                                 com_err("set_csum", retval, "while writing "
784                                         "inode");
785                                 exit(1);
786                         }
787                 }
788
789                 retval = rewrite_extents(fs, ino, inode);
790                 if (retval) {
791                         com_err("rewrite_extents", retval,
792                                 "while rewriting extents");
793                         exit(1);
794                 }
795
796                 if (LINUX_S_ISDIR(inode->i_mode) &&
797                     ext2fs_inode_has_valid_blocks2(fs, inode)) {
798                         retval = rewrite_directory(fs, ino, inode);
799                         if (retval) {
800                                 com_err("rewrite_directory", retval,
801                                         "while rewriting directories");
802                                 exit(1);
803                         }
804                 }
805
806                 file_acl_block = ext2fs_file_acl_block(fs, inode);
807                 if (!file_acl_block)
808                         continue;
809                 retval = ext2fs_read_ext_attr3(fs, file_acl_block, ea_buf, ino);
810                 if (retval) {
811                         com_err("rewrite_eablock", retval,
812                                 "while rewriting extended attribute");
813                         exit(1);
814                 }
815                 retval = ext2fs_write_ext_attr3(fs, file_acl_block, ea_buf,
816                                                 ino);
817                 if (retval) {
818                         com_err("rewrite_eablock", retval,
819                                 "while rewriting extended attribute");
820                         exit(1);
821                 }
822         } while (ino);
823
824         ext2fs_free_mem(&zero);
825         ext2fs_free_mem(&inode);
826         ext2fs_free_mem(&ea_buf);
827         ext2fs_close_inode_scan(scan);
828 }
829
830 static void rewrite_metadata_checksums(ext2_filsys fs)
831 {
832         errcode_t retval;
833         dgrp_t i;
834
835         fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
836         ext2fs_init_csum_seed(fs);
837         for (i = 0; i < fs->group_desc_count; i++)
838                 ext2fs_group_desc_csum_set(fs, i);
839         retval = ext2fs_read_bitmaps(fs);
840         if (retval) {
841                 com_err("rewrite_metadata_checksums", retval,
842                         "while reading bitmaps");
843                 exit(1);
844         }
845         rewrite_inodes(fs);
846         ext2fs_mark_ib_dirty(fs);
847         ext2fs_mark_bb_dirty(fs);
848         ext2fs_mmp_update2(fs, 1);
849         fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
850         fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS;
851         if (ext2fs_has_feature_metadata_csum(fs->super))
852                 fs->super->s_checksum_type = EXT2_CRC32C_CHKSUM;
853         else
854                 fs->super->s_checksum_type = 0;
855         ext2fs_mark_super_dirty(fs);
856 }
857
858 static void enable_uninit_bg(ext2_filsys fs)
859 {
860         struct ext2_group_desc *gd;
861         dgrp_t i;
862
863         for (i = 0; i < fs->group_desc_count; i++) {
864                 gd = ext2fs_group_desc(fs, fs->group_desc, i);
865                 gd->bg_itable_unused = 0;
866                 gd->bg_flags = EXT2_BG_INODE_ZEROED;
867                 ext2fs_group_desc_csum_set(fs, i);
868         }
869         fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
870 }
871
872 static errcode_t zero_empty_inodes(ext2_filsys fs)
873 {
874         int length = EXT2_INODE_SIZE(fs->super);
875         struct ext2_inode *inode = NULL;
876         ext2_inode_scan scan;
877         errcode_t       retval;
878         ext2_ino_t      ino;
879
880         retval = ext2fs_open_inode_scan(fs, 0, &scan);
881         if (retval)
882                 goto out;
883
884         retval = ext2fs_get_mem(length, &inode);
885         if (retval)
886                 goto out;
887
888         do {
889                 retval = ext2fs_get_next_inode_full(scan, &ino, inode, length);
890                 if (retval)
891                         goto out;
892                 if (!ino)
893                         break;
894                 if (!ext2fs_test_inode_bitmap2(fs->inode_map, ino)) {
895                         memset(inode, 0, length);
896                         retval = ext2fs_write_inode_full(fs, ino, inode,
897                                                          length);
898                         if (retval)
899                                 goto out;
900                 }
901         } while (1);
902
903 out:
904         ext2fs_free_mem(&inode);
905         ext2fs_close_inode_scan(scan);
906         return retval;
907 }
908
909 static errcode_t disable_uninit_bg(ext2_filsys fs, __u32 csum_feature_flag)
910 {
911         struct ext2_group_desc *gd;
912         dgrp_t i;
913         errcode_t retval;
914         blk64_t b, c, d;
915
916         /* Load bitmaps to ensure that the uninit ones get written out */
917         fs->super->s_feature_ro_compat |= csum_feature_flag;
918         retval = ext2fs_read_bitmaps(fs);
919         fs->super->s_feature_ro_compat &= ~csum_feature_flag;
920         if (retval) {
921                 com_err("disable_uninit_bg", retval,
922                         "while reading bitmaps");
923                 request_fsck_afterwards(fs);
924                 return retval;
925         }
926         ext2fs_mark_ib_dirty(fs);
927         ext2fs_mark_bb_dirty(fs);
928
929         /* If we're only turning off uninit_bg, zero the inodes */
930         if (csum_feature_flag == EXT4_FEATURE_RO_COMPAT_GDT_CSUM) {
931                 retval = zero_empty_inodes(fs);
932                 if (retval) {
933                         com_err("disable_uninit_bg", retval,
934                                 "while zeroing unused inodes");
935                         request_fsck_afterwards(fs);
936                         return retval;
937                 }
938         }
939
940         /* The bbitmap is zeroed; we must mark group metadata blocks in use */
941         for (i = 0; i < fs->group_desc_count; i++) {
942                 b = ext2fs_block_bitmap_loc(fs, i);
943                 ext2fs_mark_block_bitmap2(fs->block_map, b);
944                 b = ext2fs_inode_bitmap_loc(fs, i);
945                 ext2fs_mark_block_bitmap2(fs->block_map, b);
946
947                 retval = ext2fs_super_and_bgd_loc2(fs, i, &b, &c, &d, NULL);
948                 if (retval == 0 && b)
949                         ext2fs_mark_block_bitmap2(fs->block_map, b);
950                 if (retval == 0 && c)
951                         ext2fs_mark_block_bitmap2(fs->block_map, c);
952                 if (retval == 0 && d)
953                         ext2fs_mark_block_bitmap2(fs->block_map, d);
954                 if (retval) {
955                         com_err("disable_uninit_bg", retval,
956                                 "while initializing block bitmaps");
957                         request_fsck_afterwards(fs);
958                 }
959
960                 gd = ext2fs_group_desc(fs, fs->group_desc, i);
961                 gd->bg_itable_unused = 0;
962                 gd->bg_flags = 0;
963                 ext2fs_group_desc_csum_set(fs, i);
964         }
965         fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
966         ext2fs_mark_super_dirty(fs);
967
968         return 0;
969 }
970
971 static void
972 try_confirm_csum_seed_support(void)
973 {
974         if (access("/sys/fs/ext4/features/metadata_csum_seed", R_OK))
975                 fputs(_("WARNING: Could not confirm kernel support for "
976                         "metadata_csum_seed.\n  This requires Linux >= "
977                         "v4.4.\n"), stderr);
978 }
979
980 /*
981  * Update the feature set as provided by the user.
982  */
983 static int update_feature_set(ext2_filsys fs, char *features)
984 {
985         struct ext2_super_block *sb = fs->super;
986         __u32           old_features[3];
987         int             type_err;
988         unsigned int    mask_err;
989         errcode_t       err;
990         enum quota_type qtype;
991
992 #define FEATURE_ON(type, mask) (!(old_features[(type)] & (mask)) && \
993                                 ((&sb->s_feature_compat)[(type)] & (mask)))
994 #define FEATURE_OFF(type, mask) ((old_features[(type)] & (mask)) && \
995                                  !((&sb->s_feature_compat)[(type)] & (mask)))
996 #define FEATURE_CHANGED(type, mask) ((mask) & \
997                      (old_features[(type)] ^ (&sb->s_feature_compat)[(type)]))
998
999         old_features[E2P_FEATURE_COMPAT] = sb->s_feature_compat;
1000         old_features[E2P_FEATURE_INCOMPAT] = sb->s_feature_incompat;
1001         old_features[E2P_FEATURE_RO_INCOMPAT] = sb->s_feature_ro_compat;
1002
1003         if (e2p_edit_feature2(features, &sb->s_feature_compat,
1004                               ok_features, clear_ok_features,
1005                               &type_err, &mask_err)) {
1006                 if (!mask_err)
1007                         fprintf(stderr,
1008                                 _("Invalid filesystem option set: %s\n"),
1009                                 features);
1010                 else if (type_err & E2P_FEATURE_NEGATE_FLAG)
1011                         fprintf(stderr, _("Clearing filesystem feature '%s' "
1012                                           "not supported.\n"),
1013                                 e2p_feature2string(type_err &
1014                                                    E2P_FEATURE_TYPE_MASK,
1015                                                    mask_err));
1016                 else
1017                         fprintf(stderr, _("Setting filesystem feature '%s' "
1018                                           "not supported.\n"),
1019                                 e2p_feature2string(type_err, mask_err));
1020                 return 1;
1021         }
1022
1023         if (FEATURE_OFF(E2P_FEATURE_COMPAT, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
1024                 if ((mount_flags & EXT2_MF_MOUNTED) &&
1025                     !(mount_flags & EXT2_MF_READONLY)) {
1026                         fputs(_("The has_journal feature may only be "
1027                                 "cleared when the filesystem is\n"
1028                                 "unmounted or mounted "
1029                                 "read-only.\n"), stderr);
1030                         return 1;
1031                 }
1032                 if (ext2fs_has_feature_journal_needs_recovery(sb) &&
1033                     f_flag < 2) {
1034                         fputs(_("The needs_recovery flag is set.  "
1035                                 "Please run e2fsck before clearing\n"
1036                                 "the has_journal flag.\n"), stderr);
1037                         return 1;
1038                 }
1039                 if (sb->s_journal_inum) {
1040                         if (remove_journal_inode(fs))
1041                                 return 1;
1042                 }
1043                 if (sb->s_journal_dev) {
1044                         if (remove_journal_device(fs))
1045                                 return 1;
1046                 }
1047         }
1048
1049         if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT,
1050                 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
1051                 if (ext2fs_has_feature_meta_bg(sb)) {
1052                         fputs(_("Setting filesystem feature 'sparse_super' "
1053                                 "not supported\nfor filesystems with "
1054                                 "the meta_bg feature enabled.\n"),
1055                                 stderr);
1056                         return 1;
1057                 }
1058         }
1059
1060         if (FEATURE_ON(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_MMP)) {
1061                 int error;
1062
1063                 if ((mount_flags & EXT2_MF_MOUNTED) ||
1064                     (mount_flags & EXT2_MF_READONLY)) {
1065                         fputs(_("The multiple mount protection feature can't\n"
1066                                 "be set if the filesystem is mounted or\n"
1067                                 "read-only.\n"), stderr);
1068                         return 1;
1069                 }
1070
1071                 error = ext2fs_mmp_init(fs);
1072                 if (error) {
1073                         fputs(_("\nError while enabling multiple mount "
1074                                 "protection feature."), stderr);
1075                         return 1;
1076                 }
1077
1078                 /*
1079                  * We want to update group desc with the new free blocks count
1080                  */
1081                 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
1082
1083                 printf(_("Multiple mount protection has been enabled "
1084                          "with update interval %ds.\n"),
1085                        sb->s_mmp_update_interval);
1086         }
1087
1088         if (FEATURE_OFF(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_MMP)) {
1089                 int error;
1090
1091                 if (mount_flags & EXT2_MF_READONLY) {
1092                         fputs(_("The multiple mount protection feature cannot\n"
1093                                 "be disabled if the filesystem is readonly.\n"),
1094                                 stderr);
1095                         return 1;
1096                 }
1097
1098                 error = ext2fs_read_bitmaps(fs);
1099                 if (error) {
1100                         fputs(_("Error while reading bitmaps\n"), stderr);
1101                         return 1;
1102                 }
1103
1104                 error = ext2fs_mmp_read(fs, sb->s_mmp_block, NULL);
1105                 if (error) {
1106                         struct mmp_struct *mmp_cmp = fs->mmp_cmp;
1107
1108                         if (error == EXT2_ET_MMP_MAGIC_INVALID)
1109                                 printf(_("Magic number in MMP block does not "
1110                                          "match. expected: %x, actual: %x\n"),
1111                                          EXT4_MMP_MAGIC, mmp_cmp->mmp_magic);
1112                         else
1113                                 com_err(program_name, error, "%s",
1114                                         _("while reading MMP block."));
1115                         goto mmp_error;
1116                 }
1117
1118                 /* We need to force out the group descriptors as well */
1119                 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
1120                 ext2fs_block_alloc_stats2(fs, sb->s_mmp_block, -1);
1121 mmp_error:
1122                 sb->s_mmp_block = 0;
1123                 sb->s_mmp_update_interval = 0;
1124         }
1125
1126         if (FEATURE_ON(E2P_FEATURE_COMPAT, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
1127                 /*
1128                  * If adding a journal flag, let the create journal
1129                  * code below handle setting the flag and creating the
1130                  * journal.  We supply a default size if necessary.
1131                  */
1132                 if (!journal_size)
1133                         journal_size = -1;
1134                 ext2fs_clear_feature_journal(sb);
1135         }
1136
1137         if (FEATURE_ON(E2P_FEATURE_COMPAT, EXT2_FEATURE_COMPAT_DIR_INDEX)) {
1138                 if (!sb->s_def_hash_version)
1139                         sb->s_def_hash_version = EXT2_HASH_HALF_MD4;
1140                 if (uuid_is_null((unsigned char *) sb->s_hash_seed))
1141                         uuid_generate((unsigned char *) sb->s_hash_seed);
1142         }
1143
1144         if (FEATURE_OFF(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
1145                 if (ext2fs_check_desc(fs)) {
1146                         fputs(_("Clearing the flex_bg flag would "
1147                                 "cause the the filesystem to be\n"
1148                                 "inconsistent.\n"), stderr);
1149                         return 1;
1150                 }
1151         }
1152
1153         if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
1154                             EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
1155                 if ((mount_flags & EXT2_MF_MOUNTED) &&
1156                     !(mount_flags & EXT2_MF_READONLY)) {
1157                         fputs(_("The huge_file feature may only be "
1158                                 "cleared when the filesystem is\n"
1159                                 "unmounted or mounted "
1160                                 "read-only.\n"), stderr);
1161                         return 1;
1162                 }
1163         }
1164
1165         if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT,
1166                        EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
1167                 check_fsck_needed(fs,
1168                         _("Enabling checksums could take some time."));
1169                 if (mount_flags & EXT2_MF_MOUNTED) {
1170                         fputs(_("Cannot enable metadata_csum on a mounted "
1171                                 "filesystem!\n"), stderr);
1172                         exit(1);
1173                 }
1174                 if (!ext2fs_has_feature_extents(fs->super))
1175                         printf("%s",
1176                                _("Extents are not enabled.  The file extent "
1177                                  "tree can be checksummed, whereas block maps "
1178                                  "cannot.  Not enabling extents reduces the "
1179                                  "coverage of metadata checksumming.  "
1180                                  "Re-run with -O extent to rectify.\n"));
1181                 if (!ext2fs_has_feature_64bit(fs->super))
1182                         printf("%s",
1183                                _("64-bit filesystem support is not enabled.  "
1184                                  "The larger fields afforded by this feature "
1185                                  "enable full-strength checksumming.  "
1186                                  "Run resize2fs -b to rectify.\n"));
1187                 rewrite_checksums = 1;
1188                 /* metadata_csum supersedes uninit_bg */
1189                 ext2fs_clear_feature_gdt_csum(fs->super);
1190
1191                 /* if uninit_bg was previously off, rewrite group desc */
1192                 if (!(old_features[E2P_FEATURE_RO_INCOMPAT] &
1193                       EXT4_FEATURE_RO_COMPAT_GDT_CSUM))
1194                         enable_uninit_bg(fs);
1195
1196                 /*
1197                  * Since metadata_csum supersedes uninit_bg, pretend like
1198                  * uninit_bg has been off all along.
1199                  */
1200                 old_features[E2P_FEATURE_RO_INCOMPAT] &=
1201                         ~EXT4_FEATURE_RO_COMPAT_GDT_CSUM;
1202         }
1203
1204         if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
1205                         EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
1206                 __u32   test_features[3];
1207
1208                 check_fsck_needed(fs,
1209                         _("Disabling checksums could take some time."));
1210                 if (mount_flags & EXT2_MF_MOUNTED) {
1211                         fputs(_("Cannot disable metadata_csum on a mounted "
1212                                 "filesystem!\n"), stderr);
1213                         exit(1);
1214                 }
1215                 rewrite_checksums = 1;
1216
1217                 /* Enable uninit_bg unless the user expressly turned it off */
1218                 memcpy(test_features, old_features, sizeof(test_features));
1219                 test_features[E2P_FEATURE_RO_INCOMPAT] |=
1220                                                 EXT4_FEATURE_RO_COMPAT_GDT_CSUM;
1221                 e2p_edit_feature2(features, test_features, ok_features,
1222                                   clear_ok_features, NULL, NULL);
1223                 if (test_features[E2P_FEATURE_RO_INCOMPAT] &
1224                                                 EXT4_FEATURE_RO_COMPAT_GDT_CSUM)
1225                         ext2fs_set_feature_gdt_csum(fs->super);
1226
1227                 /*
1228                  * If we're turning off metadata_csum and not turning on
1229                  * uninit_bg, rewrite group desc.
1230                  */
1231                 if (!ext2fs_has_feature_gdt_csum(fs->super)) {
1232                         err = disable_uninit_bg(fs,
1233                                         EXT4_FEATURE_RO_COMPAT_METADATA_CSUM);
1234                         if (err)
1235                                 return 1;
1236                 } else
1237                         /*
1238                          * metadata_csum previously provided uninit_bg, so if
1239                          * we're also setting the uninit_bg feature bit,
1240                          * pretend like it was previously enabled.  Checksums
1241                          * will be rewritten with crc16 later.
1242                          */
1243                         old_features[E2P_FEATURE_RO_INCOMPAT] |=
1244                                 EXT4_FEATURE_RO_COMPAT_GDT_CSUM;
1245                 fs->super->s_checksum_seed = 0;
1246                 ext2fs_clear_feature_csum_seed(fs->super);
1247         }
1248
1249         if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT,
1250                        EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1251                 /* Do not enable uninit_bg when metadata_csum enabled */
1252                 if (ext2fs_has_feature_metadata_csum(fs->super))
1253                         ext2fs_clear_feature_gdt_csum(fs->super);
1254                 else
1255                         enable_uninit_bg(fs);
1256         }
1257
1258         if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
1259                         EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1260                 err = disable_uninit_bg(fs,
1261                                 EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
1262                 if (err)
1263                         return 1;
1264         }
1265
1266         /*
1267          * We don't actually toggle 64bit; resize2fs does that.  But this
1268          * must come after the metadata_csum feature_on so that it won't
1269          * complain about the lack of 64bit.
1270          */
1271         if (FEATURE_ON(E2P_FEATURE_INCOMPAT,
1272                        EXT4_FEATURE_INCOMPAT_64BIT)) {
1273                 if (mount_flags & EXT2_MF_MOUNTED) {
1274                         fprintf(stderr, _("Cannot enable 64-bit mode "
1275                                           "while mounted!\n"));
1276                         exit(1);
1277                 }
1278                 ext2fs_clear_feature_64bit(sb);
1279                 feature_64bit = 1;
1280         }
1281         if (FEATURE_OFF(E2P_FEATURE_INCOMPAT,
1282                         EXT4_FEATURE_INCOMPAT_64BIT)) {
1283                 if (mount_flags & EXT2_MF_MOUNTED) {
1284                         fprintf(stderr, _("Cannot disable 64-bit mode "
1285                                           "while mounted!\n"));
1286                         exit(1);
1287                 }
1288                 ext2fs_set_feature_64bit(sb);
1289                 feature_64bit = -1;
1290         }
1291
1292         if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT,
1293                                 EXT4_FEATURE_RO_COMPAT_QUOTA)) {
1294                 /*
1295                  * Set the Q_flag here and handle the quota options in the code
1296                  * below.
1297                  */
1298                 if (!Q_flag) {
1299                         Q_flag = 1;
1300                         /* Enable usr/grp quota by default */
1301                         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
1302                                 if (qtype != PRJQUOTA)
1303                                         quota_enable[qtype] = QOPT_ENABLE;
1304                                 else
1305                                         quota_enable[qtype] = QOPT_DISABLE;
1306                         }
1307                 }
1308                 ext2fs_clear_feature_quota(sb);
1309         }
1310
1311         if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT,
1312                                 EXT4_FEATURE_RO_COMPAT_PROJECT)) {
1313                 if (!Q_flag && !ext2fs_has_feature_quota(sb))
1314                         fputs(_("\nWarning: enabled project without quota together\n"),
1315                                 stderr);
1316                 Q_flag = 1;
1317                 quota_enable[PRJQUOTA] = QOPT_ENABLE;
1318         }
1319
1320         if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
1321                                 EXT4_FEATURE_RO_COMPAT_QUOTA)) {
1322                 /*
1323                  * Set the Q_flag here and handle the quota options in the code
1324                  * below.
1325                  */
1326                 if (Q_flag)
1327                         fputs(_("\nWarning: '^quota' option overrides '-Q'"
1328                                 "arguments.\n"), stderr);
1329                 Q_flag = 1;
1330                 /* Disable all quota by default */
1331                 for (qtype = 0; qtype < MAXQUOTAS; qtype++)
1332                         quota_enable[qtype] = QOPT_DISABLE;
1333         }
1334
1335         if (FEATURE_ON(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_ENCRYPT)) {
1336                 fs->super->s_encrypt_algos[0] =
1337                         EXT4_ENCRYPTION_MODE_AES_256_XTS;
1338                 fs->super->s_encrypt_algos[1] =
1339                         EXT4_ENCRYPTION_MODE_AES_256_CTS;
1340         }
1341
1342         if (FEATURE_ON(E2P_FEATURE_INCOMPAT,
1343                 EXT4_FEATURE_INCOMPAT_CSUM_SEED)) {
1344                 if (!ext2fs_has_feature_metadata_csum(sb)) {
1345                         fputs(_("Setting feature 'metadata_csum_seed' "
1346                                 "is only supported\non filesystems with "
1347                                 "the metadata_csum feature enabled.\n"),
1348                                 stderr);
1349                         return 1;
1350                 }
1351                 try_confirm_csum_seed_support();
1352                 fs->super->s_checksum_seed = fs->csum_seed;
1353         }
1354
1355         if (FEATURE_OFF(E2P_FEATURE_INCOMPAT,
1356                 EXT4_FEATURE_INCOMPAT_CSUM_SEED)) {
1357                 __le32 uuid_seed;
1358
1359                 uuid_seed = ext2fs_crc32c_le(~0, fs->super->s_uuid,
1360                                         sizeof(fs->super->s_uuid));
1361                 if (fs->super->s_checksum_seed != uuid_seed &&
1362                     (mount_flags & EXT2_MF_MOUNTED)) {
1363                         fputs(_("UUID has changed since enabling "
1364                                 "metadata_csum.  Filesystem must be unmounted "
1365                                 "\nto safely rewrite all metadata to "
1366                                 "match the new UUID.\n"), stderr);
1367                         return 1;
1368                 }
1369
1370                 rewrite_checksums = 1;
1371         }
1372
1373         if (sb->s_rev_level == EXT2_GOOD_OLD_REV &&
1374             (sb->s_feature_compat || sb->s_feature_ro_compat ||
1375              sb->s_feature_incompat))
1376                 ext2fs_update_dynamic_rev(fs);
1377
1378         if (FEATURE_CHANGED(E2P_FEATURE_RO_INCOMPAT,
1379                             EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) ||
1380             FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
1381                         EXT4_FEATURE_RO_COMPAT_HUGE_FILE) ||
1382             FEATURE_CHANGED(E2P_FEATURE_INCOMPAT,
1383                             EXT2_FEATURE_INCOMPAT_FILETYPE) ||
1384             FEATURE_CHANGED(E2P_FEATURE_COMPAT,
1385                             EXT2_FEATURE_COMPAT_RESIZE_INODE) ||
1386             FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
1387                         EXT2_FEATURE_RO_COMPAT_LARGE_FILE))
1388                 request_fsck_afterwards(fs);
1389
1390         if ((old_features[E2P_FEATURE_COMPAT] != sb->s_feature_compat) ||
1391             (old_features[E2P_FEATURE_INCOMPAT] != sb->s_feature_incompat) ||
1392             (old_features[E2P_FEATURE_RO_INCOMPAT] != sb->s_feature_ro_compat))
1393                 ext2fs_mark_super_dirty(fs);
1394
1395         return 0;
1396 }
1397
1398 /*
1399  * Add a journal to the filesystem.
1400  */
1401 static int add_journal(ext2_filsys fs)
1402 {
1403         unsigned long journal_blocks;
1404         errcode_t       retval;
1405         ext2_filsys     jfs;
1406         io_manager      io_ptr;
1407
1408         if (ext2fs_has_feature_journal(fs->super)) {
1409                 fputs(_("The filesystem already has a journal.\n"), stderr);
1410                 goto err;
1411         }
1412         if (journal_device) {
1413                 if (!check_plausibility(journal_device, CHECK_BLOCK_DEV,
1414                                         NULL))
1415                         proceed_question(-1);
1416                 check_mount(journal_device, 0, _("journal"));
1417 #ifdef CONFIG_TESTIO_DEBUG
1418                 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
1419                         io_ptr = test_io_manager;
1420                         test_io_backing_manager = unix_io_manager;
1421                 } else
1422 #endif
1423                         io_ptr = unix_io_manager;
1424                 retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
1425                                      EXT2_FLAG_JOURNAL_DEV_OK, 0,
1426                                      fs->blocksize, io_ptr, &jfs);
1427                 if (retval) {
1428                         com_err(program_name, retval,
1429                                 _("\n\twhile trying to open journal on %s\n"),
1430                                 journal_device);
1431                         goto err;
1432                 }
1433                 printf(_("Creating journal on device %s: "),
1434                        journal_device);
1435                 fflush(stdout);
1436
1437                 retval = ext2fs_add_journal_device(fs, jfs);
1438                 ext2fs_close_free(&jfs);
1439                 if (retval) {
1440                         com_err(program_name, retval,
1441                                 _("while adding filesystem to journal on %s"),
1442                                 journal_device);
1443                         goto err;
1444                 }
1445                 fputs(_("done\n"), stdout);
1446         } else if (journal_size) {
1447                 fputs(_("Creating journal inode: "), stdout);
1448                 fflush(stdout);
1449                 journal_blocks = figure_journal_size(journal_size, fs);
1450
1451                 if (journal_location_string)
1452                         journal_location =
1453                                 parse_num_blocks2(journal_location_string,
1454                                                   fs->super->s_log_block_size);
1455                 retval = ext2fs_add_journal_inode2(fs, journal_blocks,
1456                                                    journal_location,
1457                                                    journal_flags);
1458                 if (retval) {
1459                         fprintf(stderr, "\n");
1460                         com_err(program_name, retval, "%s",
1461                                 _("\n\twhile trying to create journal file"));
1462                         return retval;
1463                 } else
1464                         fputs(_("done\n"), stdout);
1465                 /*
1466                  * If the filesystem wasn't mounted, we need to force
1467                  * the block group descriptors out.
1468                  */
1469                 if ((mount_flags & EXT2_MF_MOUNTED) == 0)
1470                         fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
1471         }
1472         print_check_message(fs->super->s_max_mnt_count,
1473                             fs->super->s_checkinterval);
1474         return 0;
1475
1476 err:
1477         free(journal_device);
1478         return 1;
1479 }
1480
1481 static void handle_quota_options(ext2_filsys fs)
1482 {
1483         errcode_t retval;
1484         quota_ctx_t qctx;
1485         ext2_ino_t qf_ino;
1486         enum quota_type qtype;
1487         unsigned int qtype_bits = 0;
1488
1489         for (qtype = 0 ; qtype < MAXQUOTAS; qtype++)
1490                 if (quota_enable[qtype] != 0)
1491                         break;
1492         if (qtype == MAXQUOTAS)
1493                 /* Nothing to do. */
1494                 return;
1495
1496         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
1497                 if (quota_enable[qtype] == QOPT_ENABLE)
1498                         qtype_bits |= 1 << qtype;
1499         }
1500
1501         retval = quota_init_context(&qctx, fs, qtype_bits);
1502         if (retval) {
1503                 com_err(program_name, retval,
1504                         _("while initializing quota context in support library"));
1505                 exit(1);
1506         }
1507
1508         if (qtype_bits)
1509                 quota_compute_usage(qctx);
1510
1511         for (qtype = 0 ; qtype < MAXQUOTAS; qtype++) {
1512                 if (quota_enable[qtype] == QOPT_ENABLE &&
1513                     *quota_sb_inump(fs->super, qtype) == 0) {
1514                         if ((qf_ino = quota_file_exists(fs, qtype)) > 0) {
1515                                 retval = quota_update_limits(qctx, qf_ino,
1516                                                              qtype);
1517                                 if (retval) {
1518                                         com_err(program_name, retval,
1519                                                 _("while updating quota limits (%d)"),
1520                                                 qtype);
1521                                         exit(1);
1522                                 }
1523                         }
1524                         retval = quota_write_inode(qctx, 1 << qtype);
1525                         if (retval) {
1526                                 com_err(program_name, retval,
1527                                         _("while writing quota file (%d)"),
1528                                         qtype);
1529                                 exit(1);
1530                         }
1531                 } else if (quota_enable[qtype] == QOPT_DISABLE) {
1532                         retval = quota_remove_inode(fs, qtype);
1533                         if (retval) {
1534                                 com_err(program_name, retval,
1535                                         _("while removing quota file (%d)"),
1536                                         qtype);
1537                                 exit(1);
1538                         }
1539                 }
1540         }
1541
1542         quota_release_context(&qctx);
1543
1544         if (qtype_bits) {
1545                 ext2fs_set_feature_quota(fs->super);
1546                 ext2fs_mark_super_dirty(fs);
1547         } else {
1548                 for (qtype = 0 ; qtype < MAXQUOTAS; qtype++)
1549                         if (*quota_sb_inump(fs->super, qtype) != 0)
1550                                 break;
1551                 if (qtype == MAXQUOTAS) {
1552                         fs->super->s_feature_ro_compat &=
1553                                         ~EXT4_FEATURE_RO_COMPAT_QUOTA;
1554                         ext2fs_mark_super_dirty(fs);
1555                 }
1556         }
1557
1558         return;
1559 }
1560
1561 static int option_handle_function(char *token)
1562 {
1563         if (strncmp(token, "usr", 3) == 0) {
1564                 quota_enable[USRQUOTA] = QOPT_ENABLE;
1565         } else if (strncmp(token, "^usr", 4) == 0) {
1566                 quota_enable[USRQUOTA] = QOPT_DISABLE;
1567         } else if (strncmp(token, "grp", 3) == 0) {
1568                 quota_enable[GRPQUOTA] = QOPT_ENABLE;
1569         } else if (strncmp(token, "^grp", 4) == 0) {
1570                 quota_enable[GRPQUOTA] = QOPT_DISABLE;
1571         } else if (strncmp(token, "prj", 3) == 0) {
1572                 quota_enable[PRJQUOTA] = QOPT_ENABLE;
1573         } else if (strncmp(token, "^prj", 4) == 0) {
1574                 quota_enable[PRJQUOTA] = QOPT_DISABLE;
1575         } else {
1576                 fputs(_("\nBad quota options specified.\n\n"
1577                         "Following valid quota options are available "
1578                         "(pass by separating with comma):\n"
1579                         "\t[^]usr[quota]\n"
1580                         "\t[^]grp[quota]\n"
1581                         "\t[^]prj[quota]\n"
1582                         "\n\n"), stderr);
1583                 return 1;
1584         }
1585         return 0;
1586 }
1587
1588 static void parse_e2label_options(int argc, char ** argv)
1589 {
1590         if ((argc < 2) || (argc > 3)) {
1591                 fputs(_("Usage: e2label device [newlabel]\n"), stderr);
1592                 exit(1);
1593         }
1594         io_options = strchr(argv[1], '?');
1595         if (io_options)
1596                 *io_options++ = 0;
1597         device_name = blkid_get_devname(NULL, argv[1], NULL);
1598         if (!device_name) {
1599                 com_err("e2label", 0, _("Unable to resolve '%s'"),
1600                         argv[1]);
1601                 exit(1);
1602         }
1603         open_flag = EXT2_FLAG_JOURNAL_DEV_OK;
1604         if (argc == 3) {
1605                 open_flag |= EXT2_FLAG_RW;
1606                 L_flag = 1;
1607                 new_label = argv[2];
1608         } else
1609                 print_label++;
1610 }
1611
1612 static time_t parse_time(char *str)
1613 {
1614         struct  tm      ts;
1615
1616         if (strcmp(str, "now") == 0) {
1617                 return (time(0));
1618         }
1619         memset(&ts, 0, sizeof(ts));
1620 #ifdef HAVE_STRPTIME
1621         strptime(str, "%Y%m%d%H%M%S", &ts);
1622 #else
1623         sscanf(str, "%4d%2d%2d%2d%2d%2d", &ts.tm_year, &ts.tm_mon,
1624                &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec);
1625         ts.tm_year -= 1900;
1626         ts.tm_mon -= 1;
1627         if (ts.tm_year < 0 || ts.tm_mon < 0 || ts.tm_mon > 11 ||
1628             ts.tm_mday < 0 || ts.tm_mday > 31 || ts.tm_hour > 23 ||
1629             ts.tm_min > 59 || ts.tm_sec > 61)
1630                 ts.tm_mday = 0;
1631 #endif
1632         if (ts.tm_mday == 0) {
1633                 com_err(program_name, 0,
1634                         _("Couldn't parse date/time specifier: %s"),
1635                         str);
1636                 usage();
1637         }
1638         ts.tm_isdst = -1;
1639         return (mktime(&ts));
1640 }
1641
1642 static void parse_tune2fs_options(int argc, char **argv)
1643 {
1644         int c;
1645         char *tmp;
1646         struct group *gr;
1647         struct passwd *pw;
1648         int ret;
1649         char optstring[100] = "c:e:fg:i:jlm:o:r:s:u:C:E:I:J:L:M:O:T:U:z:Q:";
1650
1651         open_flag = 0;
1652         printf("tune2fs %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE);
1653         while ((c = getopt(argc, argv, optstring)) != EOF)
1654                 switch (c) {
1655                 case 'c':
1656                         max_mount_count = strtol(optarg, &tmp, 0);
1657                         if (*tmp || max_mount_count > 16000) {
1658                                 com_err(program_name, 0,
1659                                         _("bad mounts count - %s"),
1660                                         optarg);
1661                                 usage();
1662                         }
1663                         if (max_mount_count == 0)
1664                                 max_mount_count = -1;
1665                         c_flag = 1;
1666                         open_flag = EXT2_FLAG_RW;
1667                         break;
1668                 case 'C':
1669                         mount_count = strtoul(optarg, &tmp, 0);
1670                         if (*tmp || mount_count > 16000) {
1671                                 com_err(program_name, 0,
1672                                         _("bad mounts count - %s"),
1673                                         optarg);
1674                                 usage();
1675                         }
1676                         C_flag = 1;
1677                         open_flag = EXT2_FLAG_RW;
1678                         break;
1679                 case 'e':
1680                         if (strcmp(optarg, "continue") == 0)
1681                                 errors = EXT2_ERRORS_CONTINUE;
1682                         else if (strcmp(optarg, "remount-ro") == 0)
1683                                 errors = EXT2_ERRORS_RO;
1684                         else if (strcmp(optarg, "panic") == 0)
1685                                 errors = EXT2_ERRORS_PANIC;
1686                         else {
1687                                 com_err(program_name, 0,
1688                                         _("bad error behavior - %s"),
1689                                         optarg);
1690                                 usage();
1691                         }
1692                         e_flag = 1;
1693                         open_flag = EXT2_FLAG_RW;
1694                         break;
1695                 case 'E':
1696                         extended_cmd = optarg;
1697                         open_flag |= EXT2_FLAG_RW;
1698                         break;
1699                 case 'f': /* Force */
1700                         f_flag++;
1701                         break;
1702                 case 'g':
1703                         resgid = strtoul(optarg, &tmp, 0);
1704                         if (*tmp) {
1705                                 gr = getgrnam(optarg);
1706                                 if (gr == NULL)
1707                                         tmp = optarg;
1708                                 else {
1709                                         resgid = gr->gr_gid;
1710                                         *tmp = 0;
1711                                 }
1712                         }
1713                         if (*tmp) {
1714                                 com_err(program_name, 0,
1715                                         _("bad gid/group name - %s"),
1716                                         optarg);
1717                                 usage();
1718                         }
1719                         g_flag = 1;
1720                         open_flag = EXT2_FLAG_RW;
1721                         break;
1722                 case 'i':
1723                         interval = strtoul(optarg, &tmp, 0);
1724                         switch (*tmp) {
1725                         case 's':
1726                                 tmp++;
1727                                 break;
1728                         case '\0':
1729                         case 'd':
1730                         case 'D': /* days */
1731                                 interval *= 86400;
1732                                 if (*tmp != '\0')
1733                                         tmp++;
1734                                 break;
1735                         case 'm':
1736                         case 'M': /* months! */
1737                                 interval *= 86400 * 30;
1738                                 tmp++;
1739                                 break;
1740                         case 'w':
1741                         case 'W': /* weeks */
1742                                 interval *= 86400 * 7;
1743                                 tmp++;
1744                                 break;
1745                         }
1746                         if (*tmp) {
1747                                 com_err(program_name, 0,
1748                                         _("bad interval - %s"), optarg);
1749                                 usage();
1750                         }
1751                         i_flag = 1;
1752                         open_flag = EXT2_FLAG_RW;
1753                         break;
1754                 case 'j':
1755                         if (!journal_size)
1756                                 journal_size = -1;
1757                         open_flag = EXT2_FLAG_RW;
1758                         break;
1759                 case 'J':
1760                         parse_journal_opts(optarg);
1761                         open_flag = EXT2_FLAG_RW;
1762                         break;
1763                 case 'l':
1764                         l_flag = 1;
1765                         break;
1766                 case 'L':
1767                         new_label = optarg;
1768                         L_flag = 1;
1769                         open_flag |= EXT2_FLAG_RW |
1770                                 EXT2_FLAG_JOURNAL_DEV_OK;
1771                         break;
1772                 case 'm':
1773                         reserved_ratio = strtod(optarg, &tmp);
1774                         if (*tmp || reserved_ratio > 50 ||
1775                             reserved_ratio < 0) {
1776                                 com_err(program_name, 0,
1777                                         _("bad reserved block ratio - %s"),
1778                                         optarg);
1779                                 usage();
1780                         }
1781                         m_flag = 1;
1782                         open_flag = EXT2_FLAG_RW;
1783                         break;
1784                 case 'M':
1785                         new_last_mounted = optarg;
1786                         M_flag = 1;
1787                         open_flag = EXT2_FLAG_RW;
1788                         break;
1789                 case 'o':
1790                         if (mntopts_cmd) {
1791                                 com_err(program_name, 0, "%s",
1792                                         _("-o may only be specified once"));
1793                                 usage();
1794                         }
1795                         mntopts_cmd = optarg;
1796                         open_flag = EXT2_FLAG_RW;
1797                         break;
1798                 case 'O':
1799                         if (features_cmd) {
1800                                 com_err(program_name, 0, "%s",
1801                                         _("-O may only be specified once"));
1802                                 usage();
1803                         }
1804                         features_cmd = optarg;
1805                         open_flag = EXT2_FLAG_RW;
1806                         break;
1807                 case 'Q':
1808                         Q_flag = 1;
1809                         ret = parse_quota_opts(optarg, option_handle_function);
1810                         if (ret)
1811                                 exit(1);
1812                         open_flag = EXT2_FLAG_RW;
1813                         break;
1814                 case 'r':
1815                         reserved_blocks = strtoul(optarg, &tmp, 0);
1816                         if (*tmp) {
1817                                 com_err(program_name, 0,
1818                                         _("bad reserved blocks count - %s"),
1819                                         optarg);
1820                                 usage();
1821                         }
1822                         r_flag = 1;
1823                         open_flag = EXT2_FLAG_RW;
1824                         break;
1825                 case 's': /* Deprecated */
1826                         s_flag = atoi(optarg);
1827                         open_flag = EXT2_FLAG_RW;
1828                         break;
1829                 case 'T':
1830                         T_flag = 1;
1831                         last_check_time = parse_time(optarg);
1832                         open_flag = EXT2_FLAG_RW;
1833                         break;
1834                 case 'u':
1835                                 resuid = strtoul(optarg, &tmp, 0);
1836                                 if (*tmp) {
1837                                         pw = getpwnam(optarg);
1838                                         if (pw == NULL)
1839                                                 tmp = optarg;
1840                                         else {
1841                                                 resuid = pw->pw_uid;
1842                                                 *tmp = 0;
1843                                         }
1844                                 }
1845                                 if (*tmp) {
1846                                         com_err(program_name, 0,
1847                                                 _("bad uid/user name - %s"),
1848                                                 optarg);
1849                                         usage();
1850                                 }
1851                                 u_flag = 1;
1852                                 open_flag = EXT2_FLAG_RW;
1853                                 break;
1854                 case 'U':
1855                         new_UUID = optarg;
1856                         U_flag = 1;
1857                         open_flag = EXT2_FLAG_RW |
1858                                 EXT2_FLAG_JOURNAL_DEV_OK;
1859                         break;
1860                 case 'I':
1861                         new_inode_size = strtoul(optarg, &tmp, 0);
1862                         if (*tmp) {
1863                                 com_err(program_name, 0,
1864                                         _("bad inode size - %s"),
1865                                         optarg);
1866                                 usage();
1867                         }
1868                         if (!((new_inode_size &
1869                                (new_inode_size - 1)) == 0)) {
1870                                 com_err(program_name, 0,
1871                                         _("Inode size must be a "
1872                                           "power of two- %s"),
1873                                         optarg);
1874                                 usage();
1875                         }
1876                         open_flag = EXT2_FLAG_RW;
1877                         I_flag = 1;
1878                         break;
1879                 case 'z':
1880                         undo_file = optarg;
1881                         break;
1882                 default:
1883                         usage();
1884                 }
1885         if (optind < argc - 1 || optind == argc)
1886                 usage();
1887         if (!open_flag && !l_flag)
1888                 usage();
1889         io_options = strchr(argv[optind], '?');
1890         if (io_options)
1891                 *io_options++ = 0;
1892         device_name = blkid_get_devname(NULL, argv[optind], NULL);
1893         if (!device_name) {
1894                 com_err(program_name, 0, _("Unable to resolve '%s'"),
1895                         argv[optind]);
1896                 exit(1);
1897         }
1898 }
1899
1900 #ifdef CONFIG_BUILD_FINDFS
1901 void do_findfs(int argc, char **argv)
1902 {
1903         char    *dev;
1904
1905         if ((argc != 2) ||
1906             (strncmp(argv[1], "LABEL=", 6) && strncmp(argv[1], "UUID=", 5))) {
1907                 fprintf(stderr, "Usage: findfs LABEL=<label>|UUID=<uuid>\n");
1908                 exit(2);
1909         }
1910         dev = blkid_get_devname(NULL, argv[1], NULL);
1911         if (!dev) {
1912                 com_err("findfs", 0, _("Unable to resolve '%s'"),
1913                         argv[1]);
1914                 exit(1);
1915         }
1916         puts(dev);
1917         exit(0);
1918 }
1919 #endif
1920
1921 static int parse_extended_opts(ext2_filsys fs, const char *opts)
1922 {
1923         char    *buf, *token, *next, *p, *arg;
1924         int     len, hash_alg;
1925         int     r_usage = 0;
1926
1927         len = strlen(opts);
1928         buf = malloc(len+1);
1929         if (!buf) {
1930                 fprintf(stderr, "%s",
1931                         _("Couldn't allocate memory to parse options!\n"));
1932                 return 1;
1933         }
1934         strcpy(buf, opts);
1935         for (token = buf; token && *token; token = next) {
1936                 p = strchr(token, ',');
1937                 next = 0;
1938                 if (p) {
1939                         *p = 0;
1940                         next = p+1;
1941                 }
1942                 arg = strchr(token, '=');
1943                 if (arg) {
1944                         *arg = 0;
1945                         arg++;
1946                 }
1947                 if (strcmp(token, "clear-mmp") == 0 ||
1948                     strcmp(token, "clear_mmp") == 0) {
1949                         clear_mmp = 1;
1950                 } else if (strcmp(token, "mmp_update_interval") == 0) {
1951                         unsigned long intv;
1952                         if (!arg) {
1953                                 r_usage++;
1954                                 continue;
1955                         }
1956                         intv = strtoul(arg, &p, 0);
1957                         if (*p) {
1958                                 fprintf(stderr,
1959                                         _("Invalid mmp_update_interval: %s\n"),
1960                                         arg);
1961                                 r_usage++;
1962                                 continue;
1963                         }
1964                         if (intv == 0) {
1965                                 intv = EXT4_MMP_UPDATE_INTERVAL;
1966                         } else if (intv > EXT4_MMP_MAX_UPDATE_INTERVAL) {
1967                                 fprintf(stderr,
1968                                         _("mmp_update_interval too big: %lu\n"),
1969                                         intv);
1970                                 r_usage++;
1971                                 continue;
1972                         }
1973                         printf(P_("Setting multiple mount protection update "
1974                                   "interval to %lu second\n",
1975                                   "Setting multiple mount protection update "
1976                                   "interval to %lu seconds\n", intv),
1977                                intv);
1978                         fs->super->s_mmp_update_interval = intv;
1979                         ext2fs_mark_super_dirty(fs);
1980                 } else if (!strcmp(token, "test_fs")) {
1981                         fs->super->s_flags |= EXT2_FLAGS_TEST_FILESYS;
1982                         printf("Setting test filesystem flag\n");
1983                         ext2fs_mark_super_dirty(fs);
1984                 } else if (!strcmp(token, "^test_fs")) {
1985                         fs->super->s_flags &= ~EXT2_FLAGS_TEST_FILESYS;
1986                         printf("Clearing test filesystem flag\n");
1987                         ext2fs_mark_super_dirty(fs);
1988                 } else if (strcmp(token, "stride") == 0) {
1989                         if (!arg) {
1990                                 r_usage++;
1991                                 continue;
1992                         }
1993                         stride = strtoul(arg, &p, 0);
1994                         if (*p) {
1995                                 fprintf(stderr,
1996                                         _("Invalid RAID stride: %s\n"),
1997                                         arg);
1998                                 r_usage++;
1999                                 continue;
2000                         }
2001                         stride_set = 1;
2002                 } else if (strcmp(token, "stripe-width") == 0 ||
2003                            strcmp(token, "stripe_width") == 0) {
2004                         if (!arg) {
2005                                 r_usage++;
2006                                 continue;
2007                         }
2008                         stripe_width = strtoul(arg, &p, 0);
2009                         if (*p) {
2010                                 fprintf(stderr,
2011                                         _("Invalid RAID stripe-width: %s\n"),
2012                                         arg);
2013                                 r_usage++;
2014                                 continue;
2015                         }
2016                         stripe_width_set = 1;
2017                 } else if (strcmp(token, "hash_alg") == 0 ||
2018                            strcmp(token, "hash-alg") == 0) {
2019                         if (!arg) {
2020                                 r_usage++;
2021                                 continue;
2022                         }
2023                         hash_alg = e2p_string2hash(arg);
2024                         if (hash_alg < 0) {
2025                                 fprintf(stderr,
2026                                         _("Invalid hash algorithm: %s\n"),
2027                                         arg);
2028                                 r_usage++;
2029                                 continue;
2030                         }
2031                         fs->super->s_def_hash_version = hash_alg;
2032                         printf(_("Setting default hash algorithm "
2033                                  "to %s (%d)\n"),
2034                                arg, hash_alg);
2035                         ext2fs_mark_super_dirty(fs);
2036                 } else if (!strcmp(token, "mount_opts")) {
2037                         if (!arg) {
2038                                 r_usage++;
2039                                 continue;
2040                         }
2041                         if (strlen(arg) >= sizeof(fs->super->s_mount_opts)) {
2042                                 fprintf(stderr,
2043                                         "Extended mount options too long\n");
2044                                 continue;
2045                         }
2046                         ext_mount_opts = strdup(arg);
2047                 } else
2048                         r_usage++;
2049         }
2050         if (r_usage) {
2051                 fprintf(stderr, "%s", _("\nBad options specified.\n\n"
2052                         "Extended options are separated by commas, "
2053                         "and may take an argument which\n"
2054                         "\tis set off by an equals ('=') sign.\n\n"
2055                         "Valid extended options are:\n"
2056                         "\tclear_mmp\n"
2057                         "\thash_alg=<hash algorithm>\n"
2058                         "\tmount_opts=<extended default mount options>\n"
2059                         "\tstride=<RAID per-disk chunk size in blocks>\n"
2060                         "\tstripe_width=<RAID stride*data disks in blocks>\n"
2061                         "\ttest_fs\n"
2062                         "\t^test_fs\n"));
2063                 free(buf);
2064                 return 1;
2065         }
2066         free(buf);
2067
2068         return 0;
2069 }
2070
2071 /*
2072  * Fill in the block bitmap bmap with the information regarding the
2073  * blocks to be moved
2074  */
2075 static int get_move_bitmaps(ext2_filsys fs, int new_ino_blks_per_grp,
2076                             ext2fs_block_bitmap bmap)
2077 {
2078         dgrp_t i;
2079         int retval;
2080         ext2_badblocks_list bb_list = 0;
2081         blk64_t j, needed_blocks = 0;
2082         blk64_t start_blk, end_blk;
2083
2084         retval = ext2fs_read_bb_inode(fs, &bb_list);
2085         if (retval)
2086                 return retval;
2087
2088         for (i = 0; i < fs->group_desc_count; i++) {
2089                 start_blk = ext2fs_inode_table_loc(fs, i) +
2090                                         fs->inode_blocks_per_group;
2091
2092                 end_blk = ext2fs_inode_table_loc(fs, i) +
2093                                         new_ino_blks_per_grp;
2094
2095                 for (j = start_blk; j < end_blk; j++) {
2096                         if (ext2fs_test_block_bitmap2(fs->block_map, j)) {
2097                                 /*
2098                                  * IF the block is a bad block we fail
2099                                  */
2100                                 if (ext2fs_badblocks_list_test(bb_list, j)) {
2101                                         ext2fs_badblocks_list_free(bb_list);
2102                                         return ENOSPC;
2103                                 }
2104
2105                                 ext2fs_mark_block_bitmap2(bmap, j);
2106                         } else {
2107                                 /*
2108                                  * We are going to use this block for
2109                                  * inode table. So mark them used.
2110                                  */
2111                                 ext2fs_mark_block_bitmap2(fs->block_map, j);
2112                         }
2113                 }
2114                 needed_blocks += end_blk - start_blk;
2115         }
2116
2117         ext2fs_badblocks_list_free(bb_list);
2118         if (needed_blocks > ext2fs_free_blocks_count(fs->super))
2119                 return ENOSPC;
2120
2121         return 0;
2122 }
2123
2124 static int ext2fs_is_meta_block(ext2_filsys fs, blk64_t blk)
2125 {
2126         dgrp_t group;
2127         group = ext2fs_group_of_blk2(fs, blk);
2128         if (ext2fs_block_bitmap_loc(fs, group) == blk)
2129                 return 1;
2130         if (ext2fs_inode_bitmap_loc(fs, group) == blk)
2131                 return 1;
2132         return 0;
2133 }
2134
2135 static int ext2fs_is_block_in_group(ext2_filsys fs, dgrp_t group, blk64_t blk)
2136 {
2137         blk64_t start_blk, end_blk;
2138         start_blk = fs->super->s_first_data_block +
2139                         EXT2_GROUPS_TO_BLOCKS(fs->super, group);
2140         /*
2141          * We cannot get new block beyond end_blk for for the last block group
2142          * so we can check with EXT2_BLOCKS_PER_GROUP even for last block group
2143          */
2144         end_blk   = start_blk + EXT2_BLOCKS_PER_GROUP(fs->super);
2145         if (blk >= start_blk && blk <= end_blk)
2146                 return 1;
2147         return 0;
2148 }
2149
2150 static int move_block(ext2_filsys fs, ext2fs_block_bitmap bmap)
2151 {
2152
2153         char *buf;
2154         dgrp_t group = 0;
2155         errcode_t retval;
2156         int meta_data = 0;
2157         blk64_t blk, new_blk, goal;
2158         struct blk_move *bmv;
2159
2160         retval = ext2fs_get_mem(fs->blocksize, &buf);
2161         if (retval)
2162                 return retval;
2163
2164         for (new_blk = blk = fs->super->s_first_data_block;
2165              blk < ext2fs_blocks_count(fs->super); blk++) {
2166                 if (!ext2fs_test_block_bitmap2(bmap, blk))
2167                         continue;
2168
2169                 if (ext2fs_is_meta_block(fs, blk)) {
2170                         /*
2171                          * If the block is mapping a fs meta data block
2172                          * like group desc/block bitmap/inode bitmap. We
2173                          * should find a block in the same group and fix
2174                          * the respective fs metadata pointers. Otherwise
2175                          * fail
2176                          */
2177                         group = ext2fs_group_of_blk2(fs, blk);
2178                         goal = ext2fs_group_first_block2(fs, group);
2179                         meta_data = 1;
2180
2181                 } else {
2182                         goal = new_blk;
2183                 }
2184                 retval = ext2fs_new_block2(fs, goal, NULL, &new_blk);
2185                 if (retval)
2186                         goto err_out;
2187
2188                 /* new fs meta data block should be in the same group */
2189                 if (meta_data && !ext2fs_is_block_in_group(fs, group, new_blk)) {
2190                         retval = ENOSPC;
2191                         goto err_out;
2192                 }
2193
2194                 /* Mark this block as allocated */
2195                 ext2fs_mark_block_bitmap2(fs->block_map, new_blk);
2196
2197                 /* Add it to block move list */
2198                 retval = ext2fs_get_mem(sizeof(struct blk_move), &bmv);
2199                 if (retval)
2200                         goto err_out;
2201
2202                 bmv->old_loc = blk;
2203                 bmv->new_loc = new_blk;
2204
2205                 list_add(&(bmv->list), &blk_move_list);
2206
2207                 retval = io_channel_read_blk64(fs->io, blk, 1, buf);
2208                 if (retval)
2209                         goto err_out;
2210
2211                 retval = io_channel_write_blk64(fs->io, new_blk, 1, buf);
2212                 if (retval)
2213                         goto err_out;
2214         }
2215
2216 err_out:
2217         ext2fs_free_mem(&buf);
2218         return retval;
2219 }
2220
2221 static blk64_t translate_block(blk64_t blk)
2222 {
2223         struct list_head *entry;
2224         struct blk_move *bmv;
2225
2226         list_for_each(entry, &blk_move_list) {
2227                 bmv = list_entry(entry, struct blk_move, list);
2228                 if (bmv->old_loc == blk)
2229                         return bmv->new_loc;
2230         }
2231
2232         return 0;
2233 }
2234
2235 static int process_block(ext2_filsys fs EXT2FS_ATTR((unused)),
2236                          blk64_t *block_nr,
2237                          e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
2238                          blk64_t ref_block EXT2FS_ATTR((unused)),
2239                          int ref_offset EXT2FS_ATTR((unused)),
2240                          void *priv_data)
2241 {
2242         int ret = 0;
2243         blk64_t new_blk;
2244         ext2fs_block_bitmap bmap = (ext2fs_block_bitmap) priv_data;
2245
2246         if (!ext2fs_test_block_bitmap2(bmap, *block_nr))
2247                 return 0;
2248         new_blk = translate_block(*block_nr);
2249         if (new_blk) {
2250                 *block_nr = new_blk;
2251                 /*
2252                  * This will force the ext2fs_write_inode in the iterator
2253                  */
2254                 ret |= BLOCK_CHANGED;
2255         }
2256
2257         return ret;
2258 }
2259
2260 static int inode_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
2261 {
2262         errcode_t retval = 0;
2263         ext2_ino_t ino;
2264         blk64_t blk;
2265         char *block_buf = 0;
2266         struct ext2_inode inode;
2267         ext2_inode_scan scan = NULL;
2268
2269         retval = ext2fs_get_mem(fs->blocksize * 3, &block_buf);
2270         if (retval)
2271                 return retval;
2272
2273         retval = ext2fs_open_inode_scan(fs, 0, &scan);
2274         if (retval)
2275                 goto err_out;
2276
2277         while (1) {
2278                 retval = ext2fs_get_next_inode(scan, &ino, &inode);
2279                 if (retval)
2280                         goto err_out;
2281
2282                 if (!ino)
2283                         break;
2284
2285                 if (inode.i_links_count == 0)
2286                         continue; /* inode not in use */
2287
2288                 /* FIXME!!
2289                  * If we end up modifying the journal inode
2290                  * the sb->s_jnl_blocks will differ. But a
2291                  * subsequent e2fsck fixes that.
2292                  * Do we need to fix this ??
2293                  */
2294
2295                 if (ext2fs_file_acl_block(fs, &inode) &&
2296                     ext2fs_test_block_bitmap2(bmap,
2297                                         ext2fs_file_acl_block(fs, &inode))) {
2298                         blk = translate_block(ext2fs_file_acl_block(fs,
2299                                                                     &inode));
2300                         if (!blk)
2301                                 continue;
2302
2303                         ext2fs_file_acl_block_set(fs, &inode, blk);
2304
2305                         /*
2306                          * Write the inode to disk so that inode table
2307                          * resizing can work
2308                          */
2309                         retval = ext2fs_write_inode(fs, ino, &inode);
2310                         if (retval)
2311                                 goto err_out;
2312                 }
2313
2314                 if (!ext2fs_inode_has_valid_blocks2(fs, &inode))
2315                         continue;
2316
2317                 retval = ext2fs_block_iterate3(fs, ino, 0, block_buf,
2318                                                process_block, bmap);
2319                 if (retval)
2320                         goto err_out;
2321
2322         }
2323
2324 err_out:
2325         ext2fs_free_mem(&block_buf);
2326         ext2fs_close_inode_scan(scan);
2327
2328         return retval;
2329 }
2330
2331 /*
2332  * We need to scan for inode and block bitmaps that may need to be
2333  * moved.  This can take place if the filesystem was formatted for
2334  * RAID arrays using the mke2fs's extended option "stride".
2335  */
2336 static int group_desc_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
2337 {
2338         dgrp_t i;
2339         blk64_t blk, new_blk;
2340
2341         for (i = 0; i < fs->group_desc_count; i++) {
2342                 blk = ext2fs_block_bitmap_loc(fs, i);
2343                 if (ext2fs_test_block_bitmap2(bmap, blk)) {
2344                         new_blk = translate_block(blk);
2345                         if (!new_blk)
2346                                 continue;
2347                         ext2fs_block_bitmap_loc_set(fs, i, new_blk);
2348                 }
2349
2350                 blk = ext2fs_inode_bitmap_loc(fs, i);
2351                 if (ext2fs_test_block_bitmap2(bmap, blk)) {
2352                         new_blk = translate_block(blk);
2353                         if (!new_blk)
2354                                 continue;
2355                         ext2fs_inode_bitmap_loc_set(fs, i, new_blk);
2356                 }
2357         }
2358         return 0;
2359 }
2360
2361 static int expand_inode_table(ext2_filsys fs, unsigned long new_ino_size)
2362 {
2363         dgrp_t i;
2364         blk64_t blk;
2365         errcode_t retval;
2366         int new_ino_blks_per_grp;
2367         unsigned int j;
2368         char *old_itable = NULL, *new_itable = NULL;
2369         char *tmp_old_itable = NULL, *tmp_new_itable = NULL;
2370         unsigned long old_ino_size;
2371         int old_itable_size, new_itable_size;
2372
2373         old_itable_size = fs->inode_blocks_per_group * fs->blocksize;
2374         old_ino_size = EXT2_INODE_SIZE(fs->super);
2375
2376         new_ino_blks_per_grp = ext2fs_div_ceil(
2377                                         EXT2_INODES_PER_GROUP(fs->super) *
2378                                         new_ino_size,
2379                                         fs->blocksize);
2380
2381         new_itable_size = new_ino_blks_per_grp * fs->blocksize;
2382
2383         retval = ext2fs_get_mem(old_itable_size, &old_itable);
2384         if (retval)
2385                 return retval;
2386
2387         retval = ext2fs_get_mem(new_itable_size, &new_itable);
2388         if (retval)
2389                 goto err_out;
2390
2391         tmp_old_itable = old_itable;
2392         tmp_new_itable = new_itable;
2393
2394         for (i = 0; i < fs->group_desc_count; i++) {
2395                 blk = ext2fs_inode_table_loc(fs, i);
2396                 retval = io_channel_read_blk64(fs->io, blk,
2397                                 fs->inode_blocks_per_group, old_itable);
2398                 if (retval)
2399                         goto err_out;
2400
2401                 for (j = 0; j < EXT2_INODES_PER_GROUP(fs->super); j++) {
2402                         memcpy(new_itable, old_itable, old_ino_size);
2403
2404                         memset(new_itable+old_ino_size, 0,
2405                                         new_ino_size - old_ino_size);
2406
2407                         new_itable += new_ino_size;
2408                         old_itable += old_ino_size;
2409                 }
2410
2411                 /* reset the pointer */
2412                 old_itable = tmp_old_itable;
2413                 new_itable = tmp_new_itable;
2414
2415                 retval = io_channel_write_blk64(fs->io, blk,
2416                                         new_ino_blks_per_grp, new_itable);
2417                 if (retval)
2418                         goto err_out;
2419         }
2420
2421         /* Update the meta data */
2422         fs->inode_blocks_per_group = new_ino_blks_per_grp;
2423         ext2fs_free_inode_cache(fs->icache);
2424         fs->icache = 0;
2425         fs->super->s_inode_size = new_ino_size;
2426
2427 err_out:
2428         if (old_itable)
2429                 ext2fs_free_mem(&old_itable);
2430
2431         if (new_itable)
2432                 ext2fs_free_mem(&new_itable);
2433
2434         return retval;
2435 }
2436
2437 static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs)
2438 {
2439         blk64_t         blk;
2440         ext2_ino_t      ino;
2441         unsigned int    group = 0;
2442         unsigned int    count = 0;
2443         int             total_free = 0;
2444         int             group_free = 0;
2445
2446         /*
2447          * First calculate the block statistics
2448          */
2449         for (blk = fs->super->s_first_data_block;
2450              blk < ext2fs_blocks_count(fs->super); blk++) {
2451                 if (!ext2fs_fast_test_block_bitmap2(fs->block_map, blk)) {
2452                         group_free++;
2453                         total_free++;
2454                 }
2455                 count++;
2456                 if ((count == fs->super->s_blocks_per_group) ||
2457                     (blk == ext2fs_blocks_count(fs->super)-1)) {
2458                         ext2fs_bg_free_blocks_count_set(fs, group++,
2459                                                         group_free);
2460                         count = 0;
2461                         group_free = 0;
2462                 }
2463         }
2464         total_free = EXT2FS_C2B(fs, total_free);
2465         ext2fs_free_blocks_count_set(fs->super, total_free);
2466
2467         /*
2468          * Next, calculate the inode statistics
2469          */
2470         group_free = 0;
2471         total_free = 0;
2472         count = 0;
2473         group = 0;
2474
2475         /* Protect loop from wrap-around if s_inodes_count maxed */
2476         for (ino = 1; ino <= fs->super->s_inodes_count && ino > 0; ino++) {
2477                 if (!ext2fs_fast_test_inode_bitmap2(fs->inode_map, ino)) {
2478                         group_free++;
2479                         total_free++;
2480                 }
2481                 count++;
2482                 if ((count == fs->super->s_inodes_per_group) ||
2483                     (ino == fs->super->s_inodes_count)) {
2484                         ext2fs_bg_free_inodes_count_set(fs, group++,
2485                                                         group_free);
2486                         count = 0;
2487                         group_free = 0;
2488                 }
2489         }
2490         fs->super->s_free_inodes_count = total_free;
2491         ext2fs_mark_super_dirty(fs);
2492         return 0;
2493 }
2494
2495 #define list_for_each_safe(pos, pnext, head) \
2496         for (pos = (head)->next, pnext = pos->next; pos != (head); \
2497              pos = pnext, pnext = pos->next)
2498
2499 static void free_blk_move_list(void)
2500 {
2501         struct list_head *entry, *tmp;
2502         struct blk_move *bmv;
2503
2504         list_for_each_safe(entry, tmp, &blk_move_list) {
2505                 bmv = list_entry(entry, struct blk_move, list);
2506                 list_del(entry);
2507                 ext2fs_free_mem(&bmv);
2508         }
2509         return;
2510 }
2511
2512 static int resize_inode(ext2_filsys fs, unsigned long new_size)
2513 {
2514         errcode_t retval;
2515         int new_ino_blks_per_grp;
2516         ext2fs_block_bitmap bmap;
2517
2518         retval = ext2fs_read_inode_bitmap(fs);
2519         if (retval) {
2520                 fputs(_("Failed to read inode bitmap\n"), stderr);
2521                 return retval;
2522         }
2523         retval = ext2fs_read_block_bitmap(fs);
2524         if (retval) {
2525                 fputs(_("Failed to read block bitmap\n"), stderr);
2526                 return retval;
2527         }
2528         INIT_LIST_HEAD(&blk_move_list);
2529
2530
2531         new_ino_blks_per_grp = ext2fs_div_ceil(
2532                                         EXT2_INODES_PER_GROUP(fs->super)*
2533                                         new_size,
2534                                         fs->blocksize);
2535
2536         /* We may change the file system.
2537          * Mark the file system as invalid so that
2538          * the user is prompted to run fsck.
2539          */
2540         fs->super->s_state &= ~EXT2_VALID_FS;
2541
2542         retval = ext2fs_allocate_block_bitmap(fs, _("blocks to be moved"),
2543                                                 &bmap);
2544         if (retval) {
2545                 fputs(_("Failed to allocate block bitmap when "
2546                                 "increasing inode size\n"), stderr);
2547                 return retval;
2548         }
2549         retval = get_move_bitmaps(fs, new_ino_blks_per_grp, bmap);
2550         if (retval) {
2551                 fputs(_("Not enough space to increase inode size \n"), stderr);
2552                 goto err_out;
2553         }
2554         retval = move_block(fs, bmap);
2555         if (retval) {
2556                 fputs(_("Failed to relocate blocks during inode resize \n"),
2557                       stderr);
2558                 goto err_out;
2559         }
2560         retval = inode_scan_and_fix(fs, bmap);
2561         if (retval)
2562                 goto err_out_undo;
2563
2564         retval = group_desc_scan_and_fix(fs, bmap);
2565         if (retval)
2566                 goto err_out_undo;
2567
2568         retval = expand_inode_table(fs, new_size);
2569         if (retval)
2570                 goto err_out_undo;
2571
2572         ext2fs_calculate_summary_stats(fs);
2573
2574         fs->super->s_state |= EXT2_VALID_FS;
2575         /* mark super block and block bitmap as dirty */
2576         ext2fs_mark_super_dirty(fs);
2577         ext2fs_mark_bb_dirty(fs);
2578
2579 err_out:
2580         free_blk_move_list();
2581         ext2fs_free_block_bitmap(bmap);
2582
2583         return retval;
2584
2585 err_out_undo:
2586         free_blk_move_list();
2587         ext2fs_free_block_bitmap(bmap);
2588         fputs(_("Error in resizing the inode size.\n"
2589                         "Run e2undo to undo the "
2590                         "file system changes. \n"), stderr);
2591
2592         return retval;
2593 }
2594
2595 static int tune2fs_setup_tdb(const char *name, io_manager *io_ptr)
2596 {
2597         errcode_t retval = 0;
2598         const char *tdb_dir;
2599         char *tdb_file = NULL;
2600         char *dev_name, *tmp_name;
2601
2602         /* (re)open a specific undo file */
2603         if (undo_file && undo_file[0] != 0) {
2604                 retval = set_undo_io_backing_manager(*io_ptr);
2605                 if (retval)
2606                         goto err;
2607                 *io_ptr = undo_io_manager;
2608                 retval = set_undo_io_backup_file(undo_file);
2609                 if (retval)
2610                         goto err;
2611                 printf(_("Overwriting existing filesystem; this can be undone "
2612                          "using the command:\n"
2613                          "    e2undo %s %s\n\n"),
2614                          undo_file, name);
2615                 return retval;
2616         }
2617
2618         /*
2619          * Configuration via a conf file would be
2620          * nice
2621          */
2622         tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
2623         if (!tdb_dir)
2624                 tdb_dir = "/var/lib/e2fsprogs";
2625
2626         if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
2627             access(tdb_dir, W_OK))
2628                 return 0;
2629
2630         tmp_name = strdup(name);
2631         if (!tmp_name)
2632                 goto errout;
2633         dev_name = basename(tmp_name);
2634         tdb_file = malloc(strlen(tdb_dir) + 9 + strlen(dev_name) + 7 + 1);
2635         if (!tdb_file) {
2636                 free(tmp_name);
2637                 goto errout;
2638         }
2639         sprintf(tdb_file, "%s/tune2fs-%s.e2undo", tdb_dir, dev_name);
2640         free(tmp_name);
2641
2642         if ((unlink(tdb_file) < 0) && (errno != ENOENT)) {
2643                 retval = errno;
2644                 com_err(program_name, retval,
2645                         _("while trying to delete %s"), tdb_file);
2646                 goto errout;
2647         }
2648
2649         retval = set_undo_io_backing_manager(*io_ptr);
2650         if (retval)
2651                 goto errout;
2652         *io_ptr = undo_io_manager;
2653         retval = set_undo_io_backup_file(tdb_file);
2654         if (retval)
2655                 goto errout;
2656         printf(_("Overwriting existing filesystem; this can be undone "
2657                  "using the command:\n"
2658                  "    e2undo %s %s\n\n"),
2659                  tdb_file, name);
2660
2661         free(tdb_file);
2662         return 0;
2663 errout:
2664         free(tdb_file);
2665 err:
2666         com_err("tune2fs", retval, "while trying to setup undo file\n");
2667         return retval;
2668 }
2669
2670 static int
2671 fs_update_journal_user(struct ext2_super_block *sb, __u8 old_uuid[UUID_SIZE])
2672 {
2673         int retval, nr_users, start;
2674         journal_superblock_t *jsb;
2675         ext2_filsys jfs;
2676         __u8 *j_uuid;
2677         char *journal_path;
2678         char uuid[UUID_STR_SIZE];
2679         char buf[SUPERBLOCK_SIZE] __attribute__ ((aligned(8)));
2680
2681         if (!ext2fs_has_feature_journal(sb) || uuid_is_null(sb->s_journal_uuid))
2682                 return 0;
2683
2684         uuid_unparse(sb->s_journal_uuid, uuid);
2685         journal_path = blkid_get_devname(NULL, "UUID", uuid);
2686         if (!journal_path)
2687                 return 0;
2688
2689         retval = ext2fs_open2(journal_path, io_options,
2690                               EXT2_FLAG_JOURNAL_DEV_OK | EXT2_FLAG_RW,
2691                               0, 0, unix_io_manager, &jfs);
2692         if (retval) {
2693                 com_err(program_name, retval,
2694                         _("while trying to open %s"),
2695                         journal_path);
2696                 return retval;
2697         }
2698
2699         retval = get_journal_sb(jfs, buf);
2700         if (retval != 0) {
2701                 if (retval == EXT2_ET_UNSUPP_FEATURE)
2702                         fprintf(stderr, _("%s is not a journal device.\n"),
2703                                 journal_path);
2704                 return retval;
2705         }
2706
2707         jsb = (journal_superblock_t *) buf;
2708         /* Find the filesystem UUID */
2709         nr_users = ntohl(jsb->s_nr_users);
2710
2711         j_uuid = journal_user(old_uuid, jsb->s_users, nr_users);
2712         if (j_uuid == NULL) {
2713                 fputs(_("Filesystem's UUID not found on journal device.\n"),
2714                       stderr);
2715                 return EXT2_ET_LOAD_EXT_JOURNAL;
2716         }
2717
2718         memcpy(j_uuid, sb->s_uuid, UUID_SIZE);
2719
2720         start = ext2fs_journal_sb_start(jfs->blocksize);
2721         /* Write back the journal superblock */
2722         retval = io_channel_write_blk64(jfs->io, start, -SUPERBLOCK_SIZE, buf);
2723         if (retval != 0) {
2724                 com_err(program_name, retval,
2725                         "while writing journal superblock.");
2726                 return retval;
2727         }
2728
2729         ext2fs_close(jfs);
2730
2731         return 0;
2732 }
2733
2734 #ifndef BUILD_AS_LIB
2735 int main(int argc, char **argv)
2736 #else
2737 int tune2fs_main(int argc, char **argv)
2738 #endif  /* BUILD_AS_LIB */
2739 {
2740         errcode_t retval;
2741         ext2_filsys fs;
2742         struct ext2_super_block *sb;
2743         io_manager io_ptr, io_ptr_orig = NULL;
2744         int rc = 0;
2745         char default_undo_file[1] = { 0 };
2746
2747 #ifdef ENABLE_NLS
2748         setlocale(LC_MESSAGES, "");
2749         setlocale(LC_CTYPE, "");
2750         bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
2751         textdomain(NLS_CAT_NAME);
2752         set_com_err_gettext(gettext);
2753 #endif
2754         if (argc && *argv)
2755                 program_name = *argv;
2756         add_error_table(&et_ext2_error_table);
2757
2758 #ifdef CONFIG_BUILD_FINDFS
2759         if (strcmp(get_progname(argv[0]), "findfs") == 0)
2760                 do_findfs(argc, argv);
2761 #endif
2762         if (strcmp(get_progname(argv[0]), "e2label") == 0)
2763                 parse_e2label_options(argc, argv);
2764         else
2765                 parse_tune2fs_options(argc, argv);
2766
2767 #ifdef CONFIG_TESTIO_DEBUG
2768         if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_DEBUG")) {
2769                 io_ptr = test_io_manager;
2770                 test_io_backing_manager = unix_io_manager;
2771         } else
2772 #endif
2773                 io_ptr = unix_io_manager;
2774
2775 retry_open:
2776         if ((open_flag & EXT2_FLAG_RW) == 0 || f_flag)
2777                 open_flag |= EXT2_FLAG_SKIP_MMP;
2778
2779         open_flag |= EXT2_FLAG_64BITS | EXT2_FLAG_JOURNAL_DEV_OK;
2780
2781         /* keep the filesystem struct around to dump MMP data */
2782         open_flag |= EXT2_FLAG_NOFREE_ON_ERROR;
2783
2784         retval = ext2fs_open2(device_name, io_options, open_flag,
2785                               0, 0, io_ptr, &fs);
2786         if (retval) {
2787                 com_err(program_name, retval,
2788                         _("while trying to open %s"),
2789                         device_name);
2790                 if (retval == EXT2_ET_MMP_FSCK_ON ||
2791                     retval == EXT2_ET_MMP_UNKNOWN_SEQ)
2792                         dump_mmp_msg(fs->mmp_buf,
2793                                      _("If you are sure the filesystem "
2794                                        "is not in use on any node, run:\n"
2795                                        "'tune2fs -f -E clear_mmp {device}'\n"));
2796                 else if (retval == EXT2_ET_MMP_FAILED)
2797                         dump_mmp_msg(fs->mmp_buf, NULL);
2798                 else if (retval == EXT2_ET_MMP_MAGIC_INVALID)
2799                         fprintf(stderr,
2800                                 _("MMP block magic is bad. Try to fix it by "
2801                                   "running:\n'e2fsck -f %s'\n"), device_name);
2802                 else if (retval == EXT2_ET_BAD_MAGIC)
2803                         check_plausibility(device_name, CHECK_FS_EXIST, NULL);
2804                 else if (retval != EXT2_ET_MMP_FAILED)
2805                         fprintf(stderr, "%s",
2806                              _("Couldn't find valid filesystem superblock.\n"));
2807
2808                 ext2fs_free(fs);
2809                 exit(1);
2810         }
2811         if (ext2fs_has_feature_journal_dev(fs->super)) {
2812                 fprintf(stderr, "%s", _("Cannot modify a journal device.\n"));
2813                 ext2fs_free(fs);
2814                 exit(1);
2815         }
2816         fs->default_bitmap_type = EXT2FS_BMAP64_RBTREE;
2817
2818         if (I_flag) {
2819                 /*
2820                  * Check the inode size is right so we can issue an
2821                  * error message and bail before setting up the tdb
2822                  * file.
2823                  */
2824                 if (new_inode_size == EXT2_INODE_SIZE(fs->super)) {
2825                         fprintf(stderr, _("The inode size is already %lu\n"),
2826                                 new_inode_size);
2827                         rc = 1;
2828                         goto closefs;
2829                 }
2830                 if (new_inode_size < EXT2_INODE_SIZE(fs->super)) {
2831                         fprintf(stderr, "%s",
2832                                 _("Shrinking inode size is not supported\n"));
2833                         rc = 1;
2834                         goto closefs;
2835                 }
2836                 if (new_inode_size > fs->blocksize) {
2837                         fprintf(stderr, _("Invalid inode size %lu (max %d)\n"),
2838                                 new_inode_size, fs->blocksize);
2839                         rc = 1;
2840                         goto closefs;
2841                 }
2842                 check_fsck_needed(fs,
2843                         _("Resizing inodes could take some time."));
2844                 /*
2845                  * If inode resize is requested use the
2846                  * Undo I/O manager
2847                  */
2848                 undo_file = default_undo_file;
2849         }
2850
2851         /* Set up an undo file */
2852         if (undo_file && io_ptr_orig == NULL) {
2853                 io_ptr_orig = io_ptr;
2854                 retval = tune2fs_setup_tdb(device_name, &io_ptr);
2855                 if (retval) {
2856                         rc = 1;
2857                         goto closefs;
2858                 }
2859                 if (io_ptr != io_ptr_orig) {
2860                         ext2fs_close_free(&fs);
2861                         goto retry_open;
2862                 }
2863         }
2864
2865         sb = fs->super;
2866         fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
2867
2868         if (print_label) {
2869                 /* For e2label emulation */
2870                 printf("%.*s\n", (int) sizeof(sb->s_volume_name),
2871                        sb->s_volume_name);
2872                 remove_error_table(&et_ext2_error_table);
2873                 goto closefs;
2874         }
2875
2876         retval = ext2fs_check_if_mounted(device_name, &mount_flags);
2877         if (retval) {
2878                 com_err("ext2fs_check_if_mount", retval,
2879                         _("while determining whether %s is mounted."),
2880                         device_name);
2881                 rc = 1;
2882                 goto closefs;
2883         }
2884         /* Normally we only need to write out the superblock */
2885         fs->flags |= EXT2_FLAG_SUPER_ONLY;
2886
2887         if (c_flag) {
2888                 sb->s_max_mnt_count = max_mount_count;
2889                 ext2fs_mark_super_dirty(fs);
2890                 printf(_("Setting maximal mount count to %d\n"),
2891                        max_mount_count);
2892         }
2893         if (C_flag) {
2894                 sb->s_mnt_count = mount_count;
2895                 ext2fs_mark_super_dirty(fs);
2896                 printf(_("Setting current mount count to %d\n"), mount_count);
2897         }
2898         if (e_flag) {
2899                 sb->s_errors = errors;
2900                 ext2fs_mark_super_dirty(fs);
2901                 printf(_("Setting error behavior to %d\n"), errors);
2902         }
2903         if (g_flag) {
2904                 sb->s_def_resgid = resgid;
2905                 ext2fs_mark_super_dirty(fs);
2906                 printf(_("Setting reserved blocks gid to %lu\n"), resgid);
2907         }
2908         if (i_flag) {
2909                 if ((unsigned long long)interval >= (1ULL << 32)) {
2910                         com_err(program_name, 0,
2911                                 _("interval between checks is too big (%lu)"),
2912                                 interval);
2913                         rc = 1;
2914                         goto closefs;
2915                 }
2916                 sb->s_checkinterval = interval;
2917                 ext2fs_mark_super_dirty(fs);
2918                 printf(_("Setting interval between checks to %lu seconds\n"),
2919                        interval);
2920         }
2921         if (m_flag) {
2922                 ext2fs_r_blocks_count_set(sb, reserved_ratio *
2923                                           ext2fs_blocks_count(sb) / 100.0);
2924                 ext2fs_mark_super_dirty(fs);
2925                 printf (_("Setting reserved blocks percentage to %g%% (%llu blocks)\n"),
2926                         reserved_ratio, ext2fs_r_blocks_count(sb));
2927         }
2928         if (r_flag) {
2929                 if (reserved_blocks > ext2fs_blocks_count(sb)/2) {
2930                         com_err(program_name, 0,
2931                                 _("reserved blocks count is too big (%llu)"),
2932                                 reserved_blocks);
2933                         rc = 1;
2934                         goto closefs;
2935                 }
2936                 ext2fs_r_blocks_count_set(sb, reserved_blocks);
2937                 ext2fs_mark_super_dirty(fs);
2938                 printf(_("Setting reserved blocks count to %llu\n"),
2939                        reserved_blocks);
2940         }
2941         if (s_flag == 1) {
2942                 if (ext2fs_has_feature_sparse_super(sb)) {
2943                         fputs(_("\nThe filesystem already has sparse "
2944                                 "superblocks.\n"), stderr);
2945                 } else if (ext2fs_has_feature_meta_bg(sb)) {
2946                         fputs(_("\nSetting the sparse superblock flag not "
2947                                 "supported\nfor filesystems with "
2948                                 "the meta_bg feature enabled.\n"),
2949                                 stderr);
2950                         rc = 1;
2951                         goto closefs;
2952                 } else {
2953                         ext2fs_set_feature_sparse_super(sb);
2954                         sb->s_state &= ~EXT2_VALID_FS;
2955                         ext2fs_mark_super_dirty(fs);
2956                         printf(_("\nSparse superblock flag set.  %s"),
2957                                _(please_fsck));
2958                 }
2959         }
2960         if (s_flag == 0) {
2961                 fputs(_("\nClearing the sparse superblock flag not supported.\n"),
2962                       stderr);
2963                 rc = 1;
2964                 goto closefs;
2965         }
2966         if (T_flag) {
2967                 sb->s_lastcheck = last_check_time;
2968                 ext2fs_mark_super_dirty(fs);
2969                 printf(_("Setting time filesystem last checked to %s\n"),
2970                        ctime(&last_check_time));
2971         }
2972         if (u_flag) {
2973                 sb->s_def_resuid = resuid;
2974                 ext2fs_mark_super_dirty(fs);
2975                 printf(_("Setting reserved blocks uid to %lu\n"), resuid);
2976         }
2977         if (L_flag) {
2978                 if (strlen(new_label) > sizeof(sb->s_volume_name))
2979                         fputs(_("Warning: label too long, truncating.\n"),
2980                               stderr);
2981                 memset(sb->s_volume_name, 0, sizeof(sb->s_volume_name));
2982                 strncpy(sb->s_volume_name, new_label,
2983                         sizeof(sb->s_volume_name));
2984                 ext2fs_mark_super_dirty(fs);
2985         }
2986         if (M_flag) {
2987                 memset(sb->s_last_mounted, 0, sizeof(sb->s_last_mounted));
2988                 strncpy(sb->s_last_mounted, new_last_mounted,
2989                         sizeof(sb->s_last_mounted));
2990                 ext2fs_mark_super_dirty(fs);
2991         }
2992         if (mntopts_cmd) {
2993                 rc = update_mntopts(fs, mntopts_cmd);
2994                 if (rc)
2995                         goto closefs;
2996         }
2997         if (features_cmd) {
2998                 rc = update_feature_set(fs, features_cmd);
2999                 if (rc)
3000                         goto closefs;
3001         }
3002         if (extended_cmd) {
3003                 rc = parse_extended_opts(fs, extended_cmd);
3004                 if (rc)
3005                         goto closefs;
3006                 if (clear_mmp && !f_flag) {
3007                         fputs(_("Error in using clear_mmp. "
3008                                 "It must be used with -f\n"),
3009                               stderr);
3010                         goto closefs;
3011                 }
3012         }
3013         if (clear_mmp) {
3014                 rc = ext2fs_mmp_clear(fs);
3015                 goto closefs;
3016         }
3017         if (journal_size || journal_device) {
3018                 rc = add_journal(fs);
3019                 if (rc)
3020                         goto closefs;
3021         }
3022
3023         if (Q_flag) {
3024                 if (mount_flags & EXT2_MF_MOUNTED) {
3025                         fputs(_("The quota feature may only be changed when "
3026                                 "the filesystem is unmounted.\n"), stderr);
3027                         rc = 1;
3028                         goto closefs;
3029                 }
3030                 handle_quota_options(fs);
3031         }
3032
3033         if (U_flag) {
3034                 int set_csum = 0;
3035                 dgrp_t i;
3036                 char buf[SUPERBLOCK_SIZE] __attribute__ ((aligned(8)));
3037                 __u8 old_uuid[UUID_SIZE];
3038
3039                 if (ext2fs_has_group_desc_csum(fs)) {
3040                         /*
3041                          * Changing the UUID on a metadata_csum FS requires
3042                          * rewriting all metadata, which can race with a
3043                          * mounted fs.  Don't allow that unless we're saving
3044                          * the checksum seed.
3045                          */
3046                         if ((mount_flags & EXT2_MF_MOUNTED) &&
3047                             !ext2fs_has_feature_csum_seed(fs->super) &&
3048                             ext2fs_has_feature_metadata_csum(fs->super)) {
3049                                 fputs(_("The UUID may only be "
3050                                         "changed when the filesystem is "
3051                                         "unmounted.\n"), stderr);
3052                                 fputs(_("If you only use kernels newer than "
3053                                         "v4.4, run 'tune2fs -O "
3054                                         "metadata_csum_seed' and re-run this "
3055                                         "command.\n"), stderr);
3056                                 try_confirm_csum_seed_support();
3057                                 exit(1);
3058                         }
3059                         if (!ext2fs_has_feature_csum_seed(fs->super))
3060                                 check_fsck_needed(fs,
3061                                         _("Setting UUID on a checksummed "
3062                                           "filesystem could take some time."));
3063
3064                         /*
3065                          * Determine if the block group checksums are
3066                          * correct so we know whether or not to set
3067                          * them later on.
3068                          */
3069                         for (i = 0; i < fs->group_desc_count; i++)
3070                                 if (!ext2fs_group_desc_csum_verify(fs, i))
3071                                         break;
3072                         if (i >= fs->group_desc_count)
3073                                 set_csum = 1;
3074                 }
3075
3076                 memcpy(old_uuid, sb->s_uuid, UUID_SIZE);
3077                 if ((strcasecmp(new_UUID, "null") == 0) ||
3078                     (strcasecmp(new_UUID, "clear") == 0)) {
3079                         uuid_clear(sb->s_uuid);
3080                 } else if (strcasecmp(new_UUID, "time") == 0) {
3081                         uuid_generate_time(sb->s_uuid);
3082                 } else if (strcasecmp(new_UUID, "random") == 0) {
3083                         uuid_generate(sb->s_uuid);
3084                 } else if (uuid_parse(new_UUID, sb->s_uuid)) {
3085                         com_err(program_name, 0, "%s",
3086                                 _("Invalid UUID format\n"));
3087                         rc = 1;
3088                         goto closefs;
3089                 }
3090                 ext2fs_init_csum_seed(fs);
3091                 if (set_csum) {
3092                         for (i = 0; i < fs->group_desc_count; i++)
3093                                 ext2fs_group_desc_csum_set(fs, i);
3094                         fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
3095                 }
3096
3097                 /* If this is a journal dev, we need to copy UUID into jsb */
3098                 if (!(rc = get_journal_sb(fs, buf))) {
3099                         journal_superblock_t *jsb;
3100
3101                         jsb = (journal_superblock_t *) buf;
3102                         fputs(_("Need to update journal superblock.\n"), stdout);
3103                         memcpy(jsb->s_uuid, sb->s_uuid, sizeof(sb->s_uuid));
3104
3105                         /* Writeback the journal superblock */
3106                         if ((rc = io_channel_write_blk64(fs->io,
3107                                 ext2fs_journal_sb_start(fs->blocksize),
3108                                         -SUPERBLOCK_SIZE, buf)))
3109                                 goto closefs;
3110                 } else if (rc != EXT2_ET_UNSUPP_FEATURE)
3111                         goto closefs;
3112                 else {
3113                         rc = 0; /** Reset rc to avoid ext2fs_mmp_stop() */
3114
3115                         if ((rc = fs_update_journal_user(sb, old_uuid)))
3116                                 goto closefs;
3117                 }
3118
3119                 ext2fs_mark_super_dirty(fs);
3120                 if (ext2fs_has_feature_metadata_csum(fs->super) &&
3121                     !ext2fs_has_feature_csum_seed(fs->super))
3122                         rewrite_checksums = 1;
3123         }
3124
3125         if (I_flag) {
3126                 if (mount_flags & EXT2_MF_MOUNTED) {
3127                         fputs(_("The inode size may only be "
3128                                 "changed when the filesystem is "
3129                                 "unmounted.\n"), stderr);
3130                         rc = 1;
3131                         goto closefs;
3132                 }
3133                 if (ext2fs_has_feature_flex_bg(fs->super)) {
3134                         fputs(_("Changing the inode size not supported for "
3135                                 "filesystems with the flex_bg\n"
3136                                 "feature enabled.\n"),
3137                               stderr);
3138                         rc = 1;
3139                         goto closefs;
3140                 }
3141                 /*
3142                  * We want to update group descriptor also
3143                  * with the new free inode count
3144                  */
3145                 if (rewrite_checksums)
3146                         fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
3147                 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
3148                 retval = resize_inode(fs, new_inode_size);
3149                 if (rewrite_checksums)
3150                         fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS;
3151                 if (retval == 0) {
3152                         printf(_("Setting inode size %lu\n"),
3153                                                         new_inode_size);
3154                         rewrite_checksums = 1;
3155                 } else {
3156                         printf("%s", _("Failed to change inode size\n"));
3157                         rc = 1;
3158                         goto closefs;
3159                 }
3160         }
3161
3162         if (rewrite_checksums)
3163                 rewrite_metadata_checksums(fs);
3164
3165         if (l_flag)
3166                 list_super(sb);
3167         if (stride_set) {
3168                 sb->s_raid_stride = stride;
3169                 ext2fs_mark_super_dirty(fs);
3170                 printf(_("Setting stride size to %d\n"), stride);
3171         }
3172         if (stripe_width_set) {
3173                 sb->s_raid_stripe_width = stripe_width;
3174                 ext2fs_mark_super_dirty(fs);
3175                 printf(_("Setting stripe width to %d\n"), stripe_width);
3176         }
3177         if (ext_mount_opts) {
3178                 strncpy((char *)(fs->super->s_mount_opts), ext_mount_opts,
3179                         sizeof(fs->super->s_mount_opts));
3180                 fs->super->s_mount_opts[sizeof(fs->super->s_mount_opts)-1] = 0;
3181                 ext2fs_mark_super_dirty(fs);
3182                 printf(_("Setting extended default mount options to '%s'\n"),
3183                        ext_mount_opts);
3184                 free(ext_mount_opts);
3185         }
3186
3187 #ifdef NO_RECOVERY
3188         /* Warn if file system needs recovery and it is opened for writing. */
3189         if ((open_flag & EXT2_FLAG_RW) && !(mount_flags & EXT2_MF_MOUNTED) &&
3190             (sb->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL) &&
3191             (sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER)) {
3192                 fprintf(stderr,
3193 _("Warning: The journal is dirty. You may wish to replay the journal like:\n\n"
3194   "\te2fsck -E journal_only %s\n\n"
3195   "then rerun this command.  Otherwise, any changes made may be overwritten\n"
3196   "by journal recovery.\n"), device_name);
3197         }
3198 #else
3199         /* Recover the journal if possible. */
3200         if ((open_flag & EXT2_FLAG_RW) && !(mount_flags & EXT2_MF_MOUNTED) &&
3201             ext2fs_has_feature_journal_needs_recovery(fs->super)) {
3202                 errcode_t err;
3203
3204                 printf(_("Recovering journal.\n"));
3205                 err = ext2fs_run_ext3_journal(&fs);
3206                 if (err) {
3207                         com_err("tune2fs", err, "while recovering journal.\n");
3208                         printf(_("Please run e2fsck -fy %s.\n"), argv[1]);
3209                         goto closefs;
3210                 }
3211                 ext2fs_clear_feature_journal_needs_recovery(fs->super);
3212                 ext2fs_mark_super_dirty(fs);
3213         }
3214 #endif
3215
3216         free(device_name);
3217         remove_error_table(&et_ext2_error_table);
3218
3219 closefs:
3220         if (rc) {
3221                 ext2fs_mmp_stop(fs);
3222 #ifndef BUILD_AS_LIB
3223                 exit(1);
3224 #endif
3225         }
3226
3227         convert_64bit(fs, feature_64bit);
3228         return (ext2fs_close_free(&fs) ? 1 : 0);
3229 }