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