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