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