xref: /aosp_15_r20/external/e2fsprogs/misc/mke2fs.c (revision 6a54128f25917bfc36a8a6e9d722c04a0b4641b6)
1*6a54128fSAndroid Build Coastguard Worker /*
2*6a54128fSAndroid Build Coastguard Worker  * mke2fs.c - Make a ext2fs filesystem.
3*6a54128fSAndroid Build Coastguard Worker  *
4*6a54128fSAndroid Build Coastguard Worker  * Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5*6a54128fSAndroid Build Coastguard Worker  * 	2003, 2004, 2005 by Theodore Ts'o.
6*6a54128fSAndroid Build Coastguard Worker  *
7*6a54128fSAndroid Build Coastguard Worker  * %Begin-Header%
8*6a54128fSAndroid Build Coastguard Worker  * This file may be redistributed under the terms of the GNU Public
9*6a54128fSAndroid Build Coastguard Worker  * License.
10*6a54128fSAndroid Build Coastguard Worker  * %End-Header%
11*6a54128fSAndroid Build Coastguard Worker  */
12*6a54128fSAndroid Build Coastguard Worker 
13*6a54128fSAndroid Build Coastguard Worker /* Usage: mke2fs [options] device
14*6a54128fSAndroid Build Coastguard Worker  *
15*6a54128fSAndroid Build Coastguard Worker  * The device may be a block device or a image of one, but this isn't
16*6a54128fSAndroid Build Coastguard Worker  * enforced (but it's not much fun on a character device :-).
17*6a54128fSAndroid Build Coastguard Worker  */
18*6a54128fSAndroid Build Coastguard Worker 
19*6a54128fSAndroid Build Coastguard Worker #define _XOPEN_SOURCE 600
20*6a54128fSAndroid Build Coastguard Worker 
21*6a54128fSAndroid Build Coastguard Worker #include "config.h"
22*6a54128fSAndroid Build Coastguard Worker #include <stdio.h>
23*6a54128fSAndroid Build Coastguard Worker #include <string.h>
24*6a54128fSAndroid Build Coastguard Worker #include <strings.h>
25*6a54128fSAndroid Build Coastguard Worker #include <ctype.h>
26*6a54128fSAndroid Build Coastguard Worker #include <time.h>
27*6a54128fSAndroid Build Coastguard Worker #ifdef __linux__
28*6a54128fSAndroid Build Coastguard Worker #include <sys/utsname.h>
29*6a54128fSAndroid Build Coastguard Worker #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
30*6a54128fSAndroid Build Coastguard Worker #endif
31*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_GETOPT_H
32*6a54128fSAndroid Build Coastguard Worker #include <getopt.h>
33*6a54128fSAndroid Build Coastguard Worker #else
34*6a54128fSAndroid Build Coastguard Worker extern char *optarg;
35*6a54128fSAndroid Build Coastguard Worker extern int optind;
36*6a54128fSAndroid Build Coastguard Worker #endif
37*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_UNISTD_H
38*6a54128fSAndroid Build Coastguard Worker #include <unistd.h>
39*6a54128fSAndroid Build Coastguard Worker #endif
40*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_STDLIB_H
41*6a54128fSAndroid Build Coastguard Worker #include <stdlib.h>
42*6a54128fSAndroid Build Coastguard Worker #endif
43*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_ERRNO_H
44*6a54128fSAndroid Build Coastguard Worker #include <errno.h>
45*6a54128fSAndroid Build Coastguard Worker #endif
46*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_SYS_IOCTL_H
47*6a54128fSAndroid Build Coastguard Worker #include <sys/ioctl.h>
48*6a54128fSAndroid Build Coastguard Worker #endif
49*6a54128fSAndroid Build Coastguard Worker #include <libgen.h>
50*6a54128fSAndroid Build Coastguard Worker #include <limits.h>
51*6a54128fSAndroid Build Coastguard Worker #include <blkid/blkid.h>
52*6a54128fSAndroid Build Coastguard Worker 
53*6a54128fSAndroid Build Coastguard Worker #include "ext2fs/ext2_fs.h"
54*6a54128fSAndroid Build Coastguard Worker #include "ext2fs/ext2fsP.h"
55*6a54128fSAndroid Build Coastguard Worker #include "uuid/uuid.h"
56*6a54128fSAndroid Build Coastguard Worker #include "util.h"
57*6a54128fSAndroid Build Coastguard Worker #include "support/nls-enable.h"
58*6a54128fSAndroid Build Coastguard Worker #include "support/plausible.h"
59*6a54128fSAndroid Build Coastguard Worker #include "support/profile.h"
60*6a54128fSAndroid Build Coastguard Worker #include "support/prof_err.h"
61*6a54128fSAndroid Build Coastguard Worker #include "../version.h"
62*6a54128fSAndroid Build Coastguard Worker #include "support/quotaio.h"
63*6a54128fSAndroid Build Coastguard Worker #include "mke2fs.h"
64*6a54128fSAndroid Build Coastguard Worker #include "create_inode.h"
65*6a54128fSAndroid Build Coastguard Worker 
66*6a54128fSAndroid Build Coastguard Worker #define STRIDE_LENGTH 8
67*6a54128fSAndroid Build Coastguard Worker 
68*6a54128fSAndroid Build Coastguard Worker #define MAX_32_NUM ((((unsigned long long) 1) << 32) - 1)
69*6a54128fSAndroid Build Coastguard Worker 
70*6a54128fSAndroid Build Coastguard Worker #ifndef __sparc__
71*6a54128fSAndroid Build Coastguard Worker #define ZAP_BOOTBLOCK
72*6a54128fSAndroid Build Coastguard Worker #endif
73*6a54128fSAndroid Build Coastguard Worker 
74*6a54128fSAndroid Build Coastguard Worker #define DISCARD_STEP_MB		(2048)
75*6a54128fSAndroid Build Coastguard Worker 
76*6a54128fSAndroid Build Coastguard Worker extern int isatty(int);
77*6a54128fSAndroid Build Coastguard Worker extern FILE *fpopen(const char *cmd, const char *mode);
78*6a54128fSAndroid Build Coastguard Worker 
79*6a54128fSAndroid Build Coastguard Worker const char * program_name = "mke2fs";
80*6a54128fSAndroid Build Coastguard Worker static const char * device_name /* = NULL */;
81*6a54128fSAndroid Build Coastguard Worker 
82*6a54128fSAndroid Build Coastguard Worker /* Command line options */
83*6a54128fSAndroid Build Coastguard Worker static int	cflag;
84*6a54128fSAndroid Build Coastguard Worker int	verbose;
85*6a54128fSAndroid Build Coastguard Worker int	quiet;
86*6a54128fSAndroid Build Coastguard Worker static int	super_only;
87*6a54128fSAndroid Build Coastguard Worker static int	discard = 1;	/* attempt to discard device before fs creation */
88*6a54128fSAndroid Build Coastguard Worker static int	direct_io;
89*6a54128fSAndroid Build Coastguard Worker static int	force;
90*6a54128fSAndroid Build Coastguard Worker static int	noaction;
91*6a54128fSAndroid Build Coastguard Worker static int	num_backups = 2; /* number of backup bg's for sparse_super2 */
92*6a54128fSAndroid Build Coastguard Worker static uid_t	root_uid;
93*6a54128fSAndroid Build Coastguard Worker static gid_t	root_gid;
94*6a54128fSAndroid Build Coastguard Worker int	journal_size;
95*6a54128fSAndroid Build Coastguard Worker int	journal_flags;
96*6a54128fSAndroid Build Coastguard Worker int	journal_fc_size;
97*6a54128fSAndroid Build Coastguard Worker static int	lazy_itable_init;
98*6a54128fSAndroid Build Coastguard Worker static int	packed_meta_blocks;
99*6a54128fSAndroid Build Coastguard Worker int		no_copy_xattrs;
100*6a54128fSAndroid Build Coastguard Worker static char	*bad_blocks_filename = NULL;
101*6a54128fSAndroid Build Coastguard Worker static __u32	fs_stride;
102*6a54128fSAndroid Build Coastguard Worker /* Initialize usr/grp quotas by default */
103*6a54128fSAndroid Build Coastguard Worker static unsigned int quotatype_bits = (QUOTA_USR_BIT | QUOTA_GRP_BIT);
104*6a54128fSAndroid Build Coastguard Worker static __u64	offset;
105*6a54128fSAndroid Build Coastguard Worker static blk64_t journal_location = ~0LL;
106*6a54128fSAndroid Build Coastguard Worker static int	proceed_delay = -1;
107*6a54128fSAndroid Build Coastguard Worker static blk64_t	dev_size;
108*6a54128fSAndroid Build Coastguard Worker 
109*6a54128fSAndroid Build Coastguard Worker static struct ext2_super_block fs_param;
110*6a54128fSAndroid Build Coastguard Worker static __u32 zero_buf[4];
111*6a54128fSAndroid Build Coastguard Worker static char *fs_uuid = NULL;
112*6a54128fSAndroid Build Coastguard Worker static char *creator_os;
113*6a54128fSAndroid Build Coastguard Worker static char *volume_label;
114*6a54128fSAndroid Build Coastguard Worker static char *mount_dir;
115*6a54128fSAndroid Build Coastguard Worker char *journal_device;
116*6a54128fSAndroid Build Coastguard Worker static int sync_kludge;	/* Set using the MKE2FS_SYNC env. option */
117*6a54128fSAndroid Build Coastguard Worker char **fs_types;
118*6a54128fSAndroid Build Coastguard Worker const char *src_root_dir;  /* Copy files from the specified directory */
119*6a54128fSAndroid Build Coastguard Worker static char *undo_file;
120*6a54128fSAndroid Build Coastguard Worker 
121*6a54128fSAndroid Build Coastguard Worker static int android_sparse_file; /* -E android_sparse */
122*6a54128fSAndroid Build Coastguard Worker 
123*6a54128fSAndroid Build Coastguard Worker static profile_t	profile;
124*6a54128fSAndroid Build Coastguard Worker 
125*6a54128fSAndroid Build Coastguard Worker static int sys_page_size = 4096;
126*6a54128fSAndroid Build Coastguard Worker 
127*6a54128fSAndroid Build Coastguard Worker static int errors_behavior = 0;
128*6a54128fSAndroid Build Coastguard Worker 
usage(void)129*6a54128fSAndroid Build Coastguard Worker static void usage(void)
130*6a54128fSAndroid Build Coastguard Worker {
131*6a54128fSAndroid Build Coastguard Worker 	fprintf(stderr, _("Usage: %s [-c|-l filename] [-b block-size] "
132*6a54128fSAndroid Build Coastguard Worker 	"[-C cluster-size]\n\t[-i bytes-per-inode] [-I inode-size] "
133*6a54128fSAndroid Build Coastguard Worker 	"[-J journal-options]\n"
134*6a54128fSAndroid Build Coastguard Worker 	"\t[-G flex-group-size] [-N number-of-inodes] "
135*6a54128fSAndroid Build Coastguard Worker 	"[-d root-directory]\n"
136*6a54128fSAndroid Build Coastguard Worker 	"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
137*6a54128fSAndroid Build Coastguard Worker 	"\t[-g blocks-per-group] [-L volume-label] "
138*6a54128fSAndroid Build Coastguard Worker 	"[-M last-mounted-directory]\n\t[-O feature[,...]] "
139*6a54128fSAndroid Build Coastguard Worker 	"[-r fs-revision] [-E extended-option[,...]]\n"
140*6a54128fSAndroid Build Coastguard Worker 	"\t[-t fs-type] [-T usage-type ] [-U UUID] [-e errors_behavior]"
141*6a54128fSAndroid Build Coastguard Worker 	"[-z undo_file]\n"
142*6a54128fSAndroid Build Coastguard Worker 	"\t[-jnqvDFSV] device [blocks-count]\n"),
143*6a54128fSAndroid Build Coastguard Worker 		program_name);
144*6a54128fSAndroid Build Coastguard Worker 	exit(1);
145*6a54128fSAndroid Build Coastguard Worker }
146*6a54128fSAndroid Build Coastguard Worker 
int_log2(unsigned long long arg)147*6a54128fSAndroid Build Coastguard Worker static int int_log2(unsigned long long arg)
148*6a54128fSAndroid Build Coastguard Worker {
149*6a54128fSAndroid Build Coastguard Worker 	int	l = 0;
150*6a54128fSAndroid Build Coastguard Worker 
151*6a54128fSAndroid Build Coastguard Worker 	arg >>= 1;
152*6a54128fSAndroid Build Coastguard Worker 	while (arg) {
153*6a54128fSAndroid Build Coastguard Worker 		l++;
154*6a54128fSAndroid Build Coastguard Worker 		arg >>= 1;
155*6a54128fSAndroid Build Coastguard Worker 	}
156*6a54128fSAndroid Build Coastguard Worker 	return l;
157*6a54128fSAndroid Build Coastguard Worker }
158*6a54128fSAndroid Build Coastguard Worker 
int_log10(unsigned long long arg)159*6a54128fSAndroid Build Coastguard Worker int int_log10(unsigned long long arg)
160*6a54128fSAndroid Build Coastguard Worker {
161*6a54128fSAndroid Build Coastguard Worker 	int	l;
162*6a54128fSAndroid Build Coastguard Worker 
163*6a54128fSAndroid Build Coastguard Worker 	for (l=0; arg ; l++)
164*6a54128fSAndroid Build Coastguard Worker 		arg = arg / 10;
165*6a54128fSAndroid Build Coastguard Worker 	return l;
166*6a54128fSAndroid Build Coastguard Worker }
167*6a54128fSAndroid Build Coastguard Worker 
168*6a54128fSAndroid Build Coastguard Worker #ifdef __linux__
parse_version_number(const char * s)169*6a54128fSAndroid Build Coastguard Worker static int parse_version_number(const char *s)
170*6a54128fSAndroid Build Coastguard Worker {
171*6a54128fSAndroid Build Coastguard Worker 	int	major, minor, rev;
172*6a54128fSAndroid Build Coastguard Worker 	char	*endptr;
173*6a54128fSAndroid Build Coastguard Worker 	const char *cp = s;
174*6a54128fSAndroid Build Coastguard Worker 
175*6a54128fSAndroid Build Coastguard Worker 	if (!s)
176*6a54128fSAndroid Build Coastguard Worker 		return 0;
177*6a54128fSAndroid Build Coastguard Worker 	major = strtol(cp, &endptr, 10);
178*6a54128fSAndroid Build Coastguard Worker 	if (cp == endptr || *endptr != '.')
179*6a54128fSAndroid Build Coastguard Worker 		return 0;
180*6a54128fSAndroid Build Coastguard Worker 	cp = endptr + 1;
181*6a54128fSAndroid Build Coastguard Worker 	minor = strtol(cp, &endptr, 10);
182*6a54128fSAndroid Build Coastguard Worker 	if (cp == endptr || *endptr != '.')
183*6a54128fSAndroid Build Coastguard Worker 		return 0;
184*6a54128fSAndroid Build Coastguard Worker 	cp = endptr + 1;
185*6a54128fSAndroid Build Coastguard Worker 	rev = strtol(cp, &endptr, 10);
186*6a54128fSAndroid Build Coastguard Worker 	if (cp == endptr)
187*6a54128fSAndroid Build Coastguard Worker 		return 0;
188*6a54128fSAndroid Build Coastguard Worker 	return KERNEL_VERSION(major, minor, rev);
189*6a54128fSAndroid Build Coastguard Worker }
190*6a54128fSAndroid Build Coastguard Worker 
is_before_linux_ver(unsigned int major,unsigned int minor,unsigned int rev)191*6a54128fSAndroid Build Coastguard Worker static int is_before_linux_ver(unsigned int major, unsigned int minor,
192*6a54128fSAndroid Build Coastguard Worker 			       unsigned int rev)
193*6a54128fSAndroid Build Coastguard Worker {
194*6a54128fSAndroid Build Coastguard Worker 	struct		utsname ut;
195*6a54128fSAndroid Build Coastguard Worker 	static int	linux_version_code = -1;
196*6a54128fSAndroid Build Coastguard Worker 
197*6a54128fSAndroid Build Coastguard Worker 	if (uname(&ut)) {
198*6a54128fSAndroid Build Coastguard Worker 		perror("uname");
199*6a54128fSAndroid Build Coastguard Worker 		exit(1);
200*6a54128fSAndroid Build Coastguard Worker 	}
201*6a54128fSAndroid Build Coastguard Worker 	if (linux_version_code < 0)
202*6a54128fSAndroid Build Coastguard Worker 		linux_version_code = parse_version_number(ut.release);
203*6a54128fSAndroid Build Coastguard Worker 	if (linux_version_code == 0)
204*6a54128fSAndroid Build Coastguard Worker 		return 0;
205*6a54128fSAndroid Build Coastguard Worker 
206*6a54128fSAndroid Build Coastguard Worker 	return linux_version_code < (int) KERNEL_VERSION(major, minor, rev);
207*6a54128fSAndroid Build Coastguard Worker }
208*6a54128fSAndroid Build Coastguard Worker #else
is_before_linux_ver(unsigned int major,unsigned int minor,unsigned int rev)209*6a54128fSAndroid Build Coastguard Worker static int is_before_linux_ver(unsigned int major, unsigned int minor,
210*6a54128fSAndroid Build Coastguard Worker 			       unsigned int rev)
211*6a54128fSAndroid Build Coastguard Worker {
212*6a54128fSAndroid Build Coastguard Worker 	return 0;
213*6a54128fSAndroid Build Coastguard Worker }
214*6a54128fSAndroid Build Coastguard Worker #endif
215*6a54128fSAndroid Build Coastguard Worker 
216*6a54128fSAndroid Build Coastguard Worker /*
217*6a54128fSAndroid Build Coastguard Worker  * Helper function for read_bb_file and test_disk
218*6a54128fSAndroid Build Coastguard Worker  */
invalid_block(ext2_filsys fs EXT2FS_ATTR ((unused)),blk_t blk)219*6a54128fSAndroid Build Coastguard Worker static void invalid_block(ext2_filsys fs EXT2FS_ATTR((unused)), blk_t blk)
220*6a54128fSAndroid Build Coastguard Worker {
221*6a54128fSAndroid Build Coastguard Worker 	fprintf(stderr, _("Bad block %u out of range; ignored.\n"), blk);
222*6a54128fSAndroid Build Coastguard Worker 	return;
223*6a54128fSAndroid Build Coastguard Worker }
224*6a54128fSAndroid Build Coastguard Worker 
225*6a54128fSAndroid Build Coastguard Worker /*
226*6a54128fSAndroid Build Coastguard Worker  * Reads the bad blocks list from a file
227*6a54128fSAndroid Build Coastguard Worker  */
read_bb_file(ext2_filsys fs,badblocks_list * bb_list,const char * bad_blocks_file)228*6a54128fSAndroid Build Coastguard Worker static void read_bb_file(ext2_filsys fs, badblocks_list *bb_list,
229*6a54128fSAndroid Build Coastguard Worker 			 const char *bad_blocks_file)
230*6a54128fSAndroid Build Coastguard Worker {
231*6a54128fSAndroid Build Coastguard Worker 	FILE		*f;
232*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
233*6a54128fSAndroid Build Coastguard Worker 
234*6a54128fSAndroid Build Coastguard Worker 	f = fopen(bad_blocks_file, "r");
235*6a54128fSAndroid Build Coastguard Worker 	if (!f) {
236*6a54128fSAndroid Build Coastguard Worker 		com_err("read_bad_blocks_file", errno,
237*6a54128fSAndroid Build Coastguard Worker 			_("while trying to open %s"), bad_blocks_file);
238*6a54128fSAndroid Build Coastguard Worker 		exit(1);
239*6a54128fSAndroid Build Coastguard Worker 	}
240*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
241*6a54128fSAndroid Build Coastguard Worker 	fclose (f);
242*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
243*6a54128fSAndroid Build Coastguard Worker 		com_err("ext2fs_read_bb_FILE", retval, "%s",
244*6a54128fSAndroid Build Coastguard Worker 			_("while reading in list of bad blocks from file"));
245*6a54128fSAndroid Build Coastguard Worker 		exit(1);
246*6a54128fSAndroid Build Coastguard Worker 	}
247*6a54128fSAndroid Build Coastguard Worker }
248*6a54128fSAndroid Build Coastguard Worker 
249*6a54128fSAndroid Build Coastguard Worker /*
250*6a54128fSAndroid Build Coastguard Worker  * Runs the badblocks program to test the disk
251*6a54128fSAndroid Build Coastguard Worker  */
test_disk(ext2_filsys fs,badblocks_list * bb_list)252*6a54128fSAndroid Build Coastguard Worker static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
253*6a54128fSAndroid Build Coastguard Worker {
254*6a54128fSAndroid Build Coastguard Worker 	FILE		*f;
255*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
256*6a54128fSAndroid Build Coastguard Worker 	char		buf[1024];
257*6a54128fSAndroid Build Coastguard Worker 
258*6a54128fSAndroid Build Coastguard Worker 	sprintf(buf, "badblocks -b %d -X %s%s%s %llu", fs->blocksize,
259*6a54128fSAndroid Build Coastguard Worker 		quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
260*6a54128fSAndroid Build Coastguard Worker 		fs->device_name,
261*6a54128fSAndroid Build Coastguard Worker 		(unsigned long long) ext2fs_blocks_count(fs->super)-1);
262*6a54128fSAndroid Build Coastguard Worker 	if (verbose)
263*6a54128fSAndroid Build Coastguard Worker 		printf(_("Running command: %s\n"), buf);
264*6a54128fSAndroid Build Coastguard Worker 	f = popen(buf, "r");
265*6a54128fSAndroid Build Coastguard Worker 	if (!f) {
266*6a54128fSAndroid Build Coastguard Worker 		com_err("popen", errno,
267*6a54128fSAndroid Build Coastguard Worker 			_("while trying to run '%s'"), buf);
268*6a54128fSAndroid Build Coastguard Worker 		exit(1);
269*6a54128fSAndroid Build Coastguard Worker 	}
270*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
271*6a54128fSAndroid Build Coastguard Worker 	pclose(f);
272*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
273*6a54128fSAndroid Build Coastguard Worker 		com_err("ext2fs_read_bb_FILE", retval, "%s",
274*6a54128fSAndroid Build Coastguard Worker 			_("while processing list of bad blocks from program"));
275*6a54128fSAndroid Build Coastguard Worker 		exit(1);
276*6a54128fSAndroid Build Coastguard Worker 	}
277*6a54128fSAndroid Build Coastguard Worker }
278*6a54128fSAndroid Build Coastguard Worker 
handle_bad_blocks(ext2_filsys fs,badblocks_list bb_list)279*6a54128fSAndroid Build Coastguard Worker static void handle_bad_blocks(ext2_filsys fs, badblocks_list bb_list)
280*6a54128fSAndroid Build Coastguard Worker {
281*6a54128fSAndroid Build Coastguard Worker 	dgrp_t			i;
282*6a54128fSAndroid Build Coastguard Worker 	blk_t			j;
283*6a54128fSAndroid Build Coastguard Worker 	unsigned 		must_be_good;
284*6a54128fSAndroid Build Coastguard Worker 	blk_t			blk;
285*6a54128fSAndroid Build Coastguard Worker 	badblocks_iterate	bb_iter;
286*6a54128fSAndroid Build Coastguard Worker 	errcode_t		retval;
287*6a54128fSAndroid Build Coastguard Worker 	blk_t			group_block;
288*6a54128fSAndroid Build Coastguard Worker 	int			group;
289*6a54128fSAndroid Build Coastguard Worker 	int			group_bad;
290*6a54128fSAndroid Build Coastguard Worker 
291*6a54128fSAndroid Build Coastguard Worker 	if (!bb_list)
292*6a54128fSAndroid Build Coastguard Worker 		return;
293*6a54128fSAndroid Build Coastguard Worker 
294*6a54128fSAndroid Build Coastguard Worker 	/*
295*6a54128fSAndroid Build Coastguard Worker 	 * The primary superblock and group descriptors *must* be
296*6a54128fSAndroid Build Coastguard Worker 	 * good; if not, abort.
297*6a54128fSAndroid Build Coastguard Worker 	 */
298*6a54128fSAndroid Build Coastguard Worker 	must_be_good = fs->super->s_first_data_block + 1 + fs->desc_blocks;
299*6a54128fSAndroid Build Coastguard Worker 	for (i = fs->super->s_first_data_block; i <= must_be_good; i++) {
300*6a54128fSAndroid Build Coastguard Worker 		if (ext2fs_badblocks_list_test(bb_list, i)) {
301*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, _("Block %d in primary "
302*6a54128fSAndroid Build Coastguard Worker 				"superblock/group descriptor area bad.\n"), i);
303*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, _("Blocks %u through %u must be good "
304*6a54128fSAndroid Build Coastguard Worker 				"in order to build a filesystem.\n"),
305*6a54128fSAndroid Build Coastguard Worker 				fs->super->s_first_data_block, must_be_good);
306*6a54128fSAndroid Build Coastguard Worker 			fputs(_("Aborting....\n"), stderr);
307*6a54128fSAndroid Build Coastguard Worker 			exit(1);
308*6a54128fSAndroid Build Coastguard Worker 		}
309*6a54128fSAndroid Build Coastguard Worker 	}
310*6a54128fSAndroid Build Coastguard Worker 
311*6a54128fSAndroid Build Coastguard Worker 	/*
312*6a54128fSAndroid Build Coastguard Worker 	 * See if any of the bad blocks are showing up in the backup
313*6a54128fSAndroid Build Coastguard Worker 	 * superblocks and/or group descriptors.  If so, issue a
314*6a54128fSAndroid Build Coastguard Worker 	 * warning and adjust the block counts appropriately.
315*6a54128fSAndroid Build Coastguard Worker 	 */
316*6a54128fSAndroid Build Coastguard Worker 	group_block = fs->super->s_first_data_block +
317*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_blocks_per_group;
318*6a54128fSAndroid Build Coastguard Worker 
319*6a54128fSAndroid Build Coastguard Worker 	for (i = 1; i < fs->group_desc_count; i++) {
320*6a54128fSAndroid Build Coastguard Worker 		group_bad = 0;
321*6a54128fSAndroid Build Coastguard Worker 		for (j=0; j < fs->desc_blocks+1; j++) {
322*6a54128fSAndroid Build Coastguard Worker 			if (ext2fs_badblocks_list_test(bb_list,
323*6a54128fSAndroid Build Coastguard Worker 						       group_block + j)) {
324*6a54128fSAndroid Build Coastguard Worker 				if (!group_bad)
325*6a54128fSAndroid Build Coastguard Worker 					fprintf(stderr,
326*6a54128fSAndroid Build Coastguard Worker _("Warning: the backup superblock/group descriptors at block %u contain\n"
327*6a54128fSAndroid Build Coastguard Worker "	bad blocks.\n\n"),
328*6a54128fSAndroid Build Coastguard Worker 						group_block);
329*6a54128fSAndroid Build Coastguard Worker 				group_bad++;
330*6a54128fSAndroid Build Coastguard Worker 				group = ext2fs_group_of_blk2(fs, group_block+j);
331*6a54128fSAndroid Build Coastguard Worker 				ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) + 1);
332*6a54128fSAndroid Build Coastguard Worker 				ext2fs_group_desc_csum_set(fs, group);
333*6a54128fSAndroid Build Coastguard Worker 				ext2fs_free_blocks_count_add(fs->super, 1);
334*6a54128fSAndroid Build Coastguard Worker 			}
335*6a54128fSAndroid Build Coastguard Worker 		}
336*6a54128fSAndroid Build Coastguard Worker 		group_block += fs->super->s_blocks_per_group;
337*6a54128fSAndroid Build Coastguard Worker 	}
338*6a54128fSAndroid Build Coastguard Worker 
339*6a54128fSAndroid Build Coastguard Worker 	/*
340*6a54128fSAndroid Build Coastguard Worker 	 * Mark all the bad blocks as used...
341*6a54128fSAndroid Build Coastguard Worker 	 */
342*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
343*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
344*6a54128fSAndroid Build Coastguard Worker 		com_err("ext2fs_badblocks_list_iterate_begin", retval, "%s",
345*6a54128fSAndroid Build Coastguard Worker 			_("while marking bad blocks as used"));
346*6a54128fSAndroid Build Coastguard Worker 		exit(1);
347*6a54128fSAndroid Build Coastguard Worker 	}
348*6a54128fSAndroid Build Coastguard Worker 	while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
349*6a54128fSAndroid Build Coastguard Worker 		ext2fs_mark_block_bitmap2(fs->block_map, blk);
350*6a54128fSAndroid Build Coastguard Worker 	ext2fs_badblocks_list_iterate_end(bb_iter);
351*6a54128fSAndroid Build Coastguard Worker }
352*6a54128fSAndroid Build Coastguard Worker 
write_reserved_inodes(ext2_filsys fs)353*6a54128fSAndroid Build Coastguard Worker static void write_reserved_inodes(ext2_filsys fs)
354*6a54128fSAndroid Build Coastguard Worker {
355*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
356*6a54128fSAndroid Build Coastguard Worker 	ext2_ino_t	ino;
357*6a54128fSAndroid Build Coastguard Worker 	struct ext2_inode *inode;
358*6a54128fSAndroid Build Coastguard Worker 
359*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_get_memzero(EXT2_INODE_SIZE(fs->super), &inode);
360*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
361*6a54128fSAndroid Build Coastguard Worker 		com_err("inode_init", retval, _("while allocating memory"));
362*6a54128fSAndroid Build Coastguard Worker 		exit(1);
363*6a54128fSAndroid Build Coastguard Worker 	}
364*6a54128fSAndroid Build Coastguard Worker 
365*6a54128fSAndroid Build Coastguard Worker 	for (ino = 1; ino < EXT2_FIRST_INO(fs->super); ino++) {
366*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_write_inode_full(fs, ino, inode,
367*6a54128fSAndroid Build Coastguard Worker 						 EXT2_INODE_SIZE(fs->super));
368*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
369*6a54128fSAndroid Build Coastguard Worker 			com_err("ext2fs_write_inode_full", retval,
370*6a54128fSAndroid Build Coastguard Worker 				_("while writing reserved inodes"));
371*6a54128fSAndroid Build Coastguard Worker 			exit(1);
372*6a54128fSAndroid Build Coastguard Worker 		}
373*6a54128fSAndroid Build Coastguard Worker 	}
374*6a54128fSAndroid Build Coastguard Worker 
375*6a54128fSAndroid Build Coastguard Worker 	ext2fs_free_mem(&inode);
376*6a54128fSAndroid Build Coastguard Worker }
377*6a54128fSAndroid Build Coastguard Worker 
packed_allocate_tables(ext2_filsys fs)378*6a54128fSAndroid Build Coastguard Worker static errcode_t packed_allocate_tables(ext2_filsys fs)
379*6a54128fSAndroid Build Coastguard Worker {
380*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
381*6a54128fSAndroid Build Coastguard Worker 	dgrp_t		i;
382*6a54128fSAndroid Build Coastguard Worker 	blk64_t		goal = 0;
383*6a54128fSAndroid Build Coastguard Worker 
384*6a54128fSAndroid Build Coastguard Worker 	for (i = 0; i < fs->group_desc_count; i++) {
385*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_new_block2(fs, goal, NULL, &goal);
386*6a54128fSAndroid Build Coastguard Worker 		if (retval)
387*6a54128fSAndroid Build Coastguard Worker 			return retval;
388*6a54128fSAndroid Build Coastguard Worker 		ext2fs_block_alloc_stats2(fs, goal, +1);
389*6a54128fSAndroid Build Coastguard Worker 		ext2fs_block_bitmap_loc_set(fs, i, goal);
390*6a54128fSAndroid Build Coastguard Worker 	}
391*6a54128fSAndroid Build Coastguard Worker 	for (i = 0; i < fs->group_desc_count; i++) {
392*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_new_block2(fs, goal, NULL, &goal);
393*6a54128fSAndroid Build Coastguard Worker 		if (retval)
394*6a54128fSAndroid Build Coastguard Worker 			return retval;
395*6a54128fSAndroid Build Coastguard Worker 		ext2fs_block_alloc_stats2(fs, goal, +1);
396*6a54128fSAndroid Build Coastguard Worker 		ext2fs_inode_bitmap_loc_set(fs, i, goal);
397*6a54128fSAndroid Build Coastguard Worker 	}
398*6a54128fSAndroid Build Coastguard Worker 	for (i = 0; i < fs->group_desc_count; i++) {
399*6a54128fSAndroid Build Coastguard Worker 		blk64_t end = ext2fs_blocks_count(fs->super) - 1;
400*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_get_free_blocks2(fs, goal, end,
401*6a54128fSAndroid Build Coastguard Worker 						 fs->inode_blocks_per_group,
402*6a54128fSAndroid Build Coastguard Worker 						 fs->block_map, &goal);
403*6a54128fSAndroid Build Coastguard Worker 		if (retval)
404*6a54128fSAndroid Build Coastguard Worker 			return retval;
405*6a54128fSAndroid Build Coastguard Worker 		ext2fs_block_alloc_stats_range(fs, goal,
406*6a54128fSAndroid Build Coastguard Worker 					       fs->inode_blocks_per_group, +1);
407*6a54128fSAndroid Build Coastguard Worker 		ext2fs_inode_table_loc_set(fs, i, goal);
408*6a54128fSAndroid Build Coastguard Worker 		ext2fs_group_desc_csum_set(fs, i);
409*6a54128fSAndroid Build Coastguard Worker 	}
410*6a54128fSAndroid Build Coastguard Worker 	return 0;
411*6a54128fSAndroid Build Coastguard Worker }
412*6a54128fSAndroid Build Coastguard Worker 
write_inode_tables(ext2_filsys fs,int lazy_flag,int itable_zeroed)413*6a54128fSAndroid Build Coastguard Worker static void write_inode_tables(ext2_filsys fs, int lazy_flag, int itable_zeroed)
414*6a54128fSAndroid Build Coastguard Worker {
415*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
416*6a54128fSAndroid Build Coastguard Worker 	blk64_t		blk;
417*6a54128fSAndroid Build Coastguard Worker 	dgrp_t		i;
418*6a54128fSAndroid Build Coastguard Worker 	int		num;
419*6a54128fSAndroid Build Coastguard Worker 	struct ext2fs_numeric_progress_struct progress;
420*6a54128fSAndroid Build Coastguard Worker 
421*6a54128fSAndroid Build Coastguard Worker 	ext2fs_numeric_progress_init(fs, &progress,
422*6a54128fSAndroid Build Coastguard Worker 				     _("Writing inode tables: "),
423*6a54128fSAndroid Build Coastguard Worker 				     fs->group_desc_count);
424*6a54128fSAndroid Build Coastguard Worker 
425*6a54128fSAndroid Build Coastguard Worker 	for (i = 0; i < fs->group_desc_count; i++) {
426*6a54128fSAndroid Build Coastguard Worker 		ext2fs_numeric_progress_update(fs, &progress, i);
427*6a54128fSAndroid Build Coastguard Worker 
428*6a54128fSAndroid Build Coastguard Worker 		blk = ext2fs_inode_table_loc(fs, i);
429*6a54128fSAndroid Build Coastguard Worker 		num = fs->inode_blocks_per_group;
430*6a54128fSAndroid Build Coastguard Worker 
431*6a54128fSAndroid Build Coastguard Worker 		if (lazy_flag)
432*6a54128fSAndroid Build Coastguard Worker 			num = ext2fs_div_ceil((fs->super->s_inodes_per_group -
433*6a54128fSAndroid Build Coastguard Worker 					       ext2fs_bg_itable_unused(fs, i)) *
434*6a54128fSAndroid Build Coastguard Worker 					      EXT2_INODE_SIZE(fs->super),
435*6a54128fSAndroid Build Coastguard Worker 					      EXT2_BLOCK_SIZE(fs->super));
436*6a54128fSAndroid Build Coastguard Worker 		if (!lazy_flag || itable_zeroed) {
437*6a54128fSAndroid Build Coastguard Worker 			/* The kernel doesn't need to zero the itable blocks */
438*6a54128fSAndroid Build Coastguard Worker 			ext2fs_bg_flags_set(fs, i, EXT2_BG_INODE_ZEROED);
439*6a54128fSAndroid Build Coastguard Worker 			ext2fs_group_desc_csum_set(fs, i);
440*6a54128fSAndroid Build Coastguard Worker 		}
441*6a54128fSAndroid Build Coastguard Worker 		if (!itable_zeroed) {
442*6a54128fSAndroid Build Coastguard Worker 			retval = ext2fs_zero_blocks2(fs, blk, num, &blk, &num);
443*6a54128fSAndroid Build Coastguard Worker 			if (retval) {
444*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr, _("\nCould not write %d "
445*6a54128fSAndroid Build Coastguard Worker 					  "blocks in inode table starting at %llu: %s\n"),
446*6a54128fSAndroid Build Coastguard Worker 					num, (unsigned long long) blk,
447*6a54128fSAndroid Build Coastguard Worker 					error_message(retval));
448*6a54128fSAndroid Build Coastguard Worker 				exit(1);
449*6a54128fSAndroid Build Coastguard Worker 			}
450*6a54128fSAndroid Build Coastguard Worker 		}
451*6a54128fSAndroid Build Coastguard Worker 		if (sync_kludge) {
452*6a54128fSAndroid Build Coastguard Worker 			if (sync_kludge == 1)
453*6a54128fSAndroid Build Coastguard Worker 				io_channel_flush(fs->io);
454*6a54128fSAndroid Build Coastguard Worker 			else if ((i % sync_kludge) == 0)
455*6a54128fSAndroid Build Coastguard Worker 				io_channel_flush(fs->io);
456*6a54128fSAndroid Build Coastguard Worker 		}
457*6a54128fSAndroid Build Coastguard Worker 	}
458*6a54128fSAndroid Build Coastguard Worker 	ext2fs_numeric_progress_close(fs, &progress,
459*6a54128fSAndroid Build Coastguard Worker 				      _("done                            \n"));
460*6a54128fSAndroid Build Coastguard Worker 
461*6a54128fSAndroid Build Coastguard Worker 	/* Reserved inodes must always have correct checksums */
462*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_metadata_csum(fs->super))
463*6a54128fSAndroid Build Coastguard Worker 		write_reserved_inodes(fs);
464*6a54128fSAndroid Build Coastguard Worker }
465*6a54128fSAndroid Build Coastguard Worker 
create_root_dir(ext2_filsys fs)466*6a54128fSAndroid Build Coastguard Worker static void create_root_dir(ext2_filsys fs)
467*6a54128fSAndroid Build Coastguard Worker {
468*6a54128fSAndroid Build Coastguard Worker 	errcode_t		retval;
469*6a54128fSAndroid Build Coastguard Worker 	struct ext2_inode	inode;
470*6a54128fSAndroid Build Coastguard Worker 
471*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, 0);
472*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
473*6a54128fSAndroid Build Coastguard Worker 		com_err("ext2fs_mkdir", retval, "%s",
474*6a54128fSAndroid Build Coastguard Worker 			_("while creating root dir"));
475*6a54128fSAndroid Build Coastguard Worker 		exit(1);
476*6a54128fSAndroid Build Coastguard Worker 	}
477*6a54128fSAndroid Build Coastguard Worker 	if (root_uid != 0 || root_gid != 0) {
478*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_read_inode(fs, EXT2_ROOT_INO, &inode);
479*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
480*6a54128fSAndroid Build Coastguard Worker 			com_err("ext2fs_read_inode", retval, "%s",
481*6a54128fSAndroid Build Coastguard Worker 				_("while reading root inode"));
482*6a54128fSAndroid Build Coastguard Worker 			exit(1);
483*6a54128fSAndroid Build Coastguard Worker 		}
484*6a54128fSAndroid Build Coastguard Worker 
485*6a54128fSAndroid Build Coastguard Worker 		inode.i_uid = root_uid;
486*6a54128fSAndroid Build Coastguard Worker 		ext2fs_set_i_uid_high(inode, root_uid >> 16);
487*6a54128fSAndroid Build Coastguard Worker 		inode.i_gid = root_gid;
488*6a54128fSAndroid Build Coastguard Worker 		ext2fs_set_i_gid_high(inode, root_gid >> 16);
489*6a54128fSAndroid Build Coastguard Worker 
490*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
491*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
492*6a54128fSAndroid Build Coastguard Worker 			com_err("ext2fs_write_inode", retval, "%s",
493*6a54128fSAndroid Build Coastguard Worker 				_("while setting root inode ownership"));
494*6a54128fSAndroid Build Coastguard Worker 			exit(1);
495*6a54128fSAndroid Build Coastguard Worker 		}
496*6a54128fSAndroid Build Coastguard Worker 	}
497*6a54128fSAndroid Build Coastguard Worker }
498*6a54128fSAndroid Build Coastguard Worker 
create_lost_and_found(ext2_filsys fs)499*6a54128fSAndroid Build Coastguard Worker static void create_lost_and_found(ext2_filsys fs)
500*6a54128fSAndroid Build Coastguard Worker {
501*6a54128fSAndroid Build Coastguard Worker 	unsigned int		lpf_size = 0;
502*6a54128fSAndroid Build Coastguard Worker 	errcode_t		retval;
503*6a54128fSAndroid Build Coastguard Worker 	ext2_ino_t		ino;
504*6a54128fSAndroid Build Coastguard Worker 	const char		*name = "lost+found";
505*6a54128fSAndroid Build Coastguard Worker 	int			i;
506*6a54128fSAndroid Build Coastguard Worker 
507*6a54128fSAndroid Build Coastguard Worker 	fs->umask = 077;
508*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, 0, name);
509*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
510*6a54128fSAndroid Build Coastguard Worker 		com_err("ext2fs_mkdir", retval, "%s",
511*6a54128fSAndroid Build Coastguard Worker 			_("while creating /lost+found"));
512*6a54128fSAndroid Build Coastguard Worker 		exit(1);
513*6a54128fSAndroid Build Coastguard Worker 	}
514*6a54128fSAndroid Build Coastguard Worker 
515*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name, strlen(name), 0, &ino);
516*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
517*6a54128fSAndroid Build Coastguard Worker 		com_err("ext2_lookup", retval, "%s",
518*6a54128fSAndroid Build Coastguard Worker 			_("while looking up /lost+found"));
519*6a54128fSAndroid Build Coastguard Worker 		exit(1);
520*6a54128fSAndroid Build Coastguard Worker 	}
521*6a54128fSAndroid Build Coastguard Worker 
522*6a54128fSAndroid Build Coastguard Worker 	for (i=1; i < EXT2_NDIR_BLOCKS; i++) {
523*6a54128fSAndroid Build Coastguard Worker 		/* Ensure that lost+found is at least 2 blocks, so we always
524*6a54128fSAndroid Build Coastguard Worker 		 * test large empty blocks for big-block filesystems.  */
525*6a54128fSAndroid Build Coastguard Worker 		if ((lpf_size += fs->blocksize) >= 16*1024 &&
526*6a54128fSAndroid Build Coastguard Worker 		    lpf_size >= 2 * fs->blocksize)
527*6a54128fSAndroid Build Coastguard Worker 			break;
528*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_expand_dir(fs, ino);
529*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
530*6a54128fSAndroid Build Coastguard Worker 			com_err("ext2fs_expand_dir", retval, "%s",
531*6a54128fSAndroid Build Coastguard Worker 				_("while expanding /lost+found"));
532*6a54128fSAndroid Build Coastguard Worker 			exit(1);
533*6a54128fSAndroid Build Coastguard Worker 		}
534*6a54128fSAndroid Build Coastguard Worker 	}
535*6a54128fSAndroid Build Coastguard Worker }
536*6a54128fSAndroid Build Coastguard Worker 
create_bad_block_inode(ext2_filsys fs,badblocks_list bb_list)537*6a54128fSAndroid Build Coastguard Worker static void create_bad_block_inode(ext2_filsys fs, badblocks_list bb_list)
538*6a54128fSAndroid Build Coastguard Worker {
539*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
540*6a54128fSAndroid Build Coastguard Worker 
541*6a54128fSAndroid Build Coastguard Worker 	ext2fs_mark_inode_bitmap2(fs->inode_map, EXT2_BAD_INO);
542*6a54128fSAndroid Build Coastguard Worker 	ext2fs_inode_alloc_stats2(fs, EXT2_BAD_INO, +1, 0);
543*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_update_bb_inode(fs, bb_list);
544*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
545*6a54128fSAndroid Build Coastguard Worker 		com_err("ext2fs_update_bb_inode", retval, "%s",
546*6a54128fSAndroid Build Coastguard Worker 			_("while setting bad block inode"));
547*6a54128fSAndroid Build Coastguard Worker 		exit(1);
548*6a54128fSAndroid Build Coastguard Worker 	}
549*6a54128fSAndroid Build Coastguard Worker 
550*6a54128fSAndroid Build Coastguard Worker }
551*6a54128fSAndroid Build Coastguard Worker 
reserve_inodes(ext2_filsys fs)552*6a54128fSAndroid Build Coastguard Worker static void reserve_inodes(ext2_filsys fs)
553*6a54128fSAndroid Build Coastguard Worker {
554*6a54128fSAndroid Build Coastguard Worker 	ext2_ino_t	i;
555*6a54128fSAndroid Build Coastguard Worker 
556*6a54128fSAndroid Build Coastguard Worker 	for (i = EXT2_ROOT_INO + 1; i < EXT2_FIRST_INODE(fs->super); i++)
557*6a54128fSAndroid Build Coastguard Worker 		ext2fs_inode_alloc_stats2(fs, i, +1, 0);
558*6a54128fSAndroid Build Coastguard Worker 	ext2fs_mark_ib_dirty(fs);
559*6a54128fSAndroid Build Coastguard Worker }
560*6a54128fSAndroid Build Coastguard Worker 
561*6a54128fSAndroid Build Coastguard Worker #define BSD_DISKMAGIC   (0x82564557UL)  /* The disk magic number */
562*6a54128fSAndroid Build Coastguard Worker #define BSD_MAGICDISK   (0x57455682UL)  /* The disk magic number reversed */
563*6a54128fSAndroid Build Coastguard Worker #define BSD_LABEL_OFFSET        64
564*6a54128fSAndroid Build Coastguard Worker 
zap_sector(ext2_filsys fs,int sect,int nsect)565*6a54128fSAndroid Build Coastguard Worker static void zap_sector(ext2_filsys fs, int sect, int nsect)
566*6a54128fSAndroid Build Coastguard Worker {
567*6a54128fSAndroid Build Coastguard Worker 	char *buf;
568*6a54128fSAndroid Build Coastguard Worker 	int retval;
569*6a54128fSAndroid Build Coastguard Worker 	unsigned int *magic;
570*6a54128fSAndroid Build Coastguard Worker 
571*6a54128fSAndroid Build Coastguard Worker 	buf = calloc(512, nsect);
572*6a54128fSAndroid Build Coastguard Worker 	if (!buf) {
573*6a54128fSAndroid Build Coastguard Worker 		printf(_("Out of memory erasing sectors %d-%d\n"),
574*6a54128fSAndroid Build Coastguard Worker 		       sect, sect + nsect - 1);
575*6a54128fSAndroid Build Coastguard Worker 		exit(1);
576*6a54128fSAndroid Build Coastguard Worker 	}
577*6a54128fSAndroid Build Coastguard Worker 
578*6a54128fSAndroid Build Coastguard Worker 	if (sect == 0) {
579*6a54128fSAndroid Build Coastguard Worker 		/* Check for a BSD disklabel, and don't erase it if so */
580*6a54128fSAndroid Build Coastguard Worker 		retval = io_channel_read_blk64(fs->io, 0, -512, buf);
581*6a54128fSAndroid Build Coastguard Worker 		if (retval)
582*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr,
583*6a54128fSAndroid Build Coastguard Worker 				_("Warning: could not read block 0: %s\n"),
584*6a54128fSAndroid Build Coastguard Worker 				error_message(retval));
585*6a54128fSAndroid Build Coastguard Worker 		else {
586*6a54128fSAndroid Build Coastguard Worker 			magic = (unsigned int *) (buf + BSD_LABEL_OFFSET);
587*6a54128fSAndroid Build Coastguard Worker 			if ((*magic == BSD_DISKMAGIC) ||
588*6a54128fSAndroid Build Coastguard Worker 			    (*magic == BSD_MAGICDISK)) {
589*6a54128fSAndroid Build Coastguard Worker 				free(buf);
590*6a54128fSAndroid Build Coastguard Worker 				return;
591*6a54128fSAndroid Build Coastguard Worker 			}
592*6a54128fSAndroid Build Coastguard Worker 		}
593*6a54128fSAndroid Build Coastguard Worker 	}
594*6a54128fSAndroid Build Coastguard Worker 
595*6a54128fSAndroid Build Coastguard Worker 	memset(buf, 0, 512*nsect);
596*6a54128fSAndroid Build Coastguard Worker 	io_channel_set_blksize(fs->io, 512);
597*6a54128fSAndroid Build Coastguard Worker 	retval = io_channel_write_blk64(fs->io, sect, -512*nsect, buf);
598*6a54128fSAndroid Build Coastguard Worker 	io_channel_set_blksize(fs->io, fs->blocksize);
599*6a54128fSAndroid Build Coastguard Worker 	free(buf);
600*6a54128fSAndroid Build Coastguard Worker 	if (retval)
601*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("Warning: could not erase sector %d: %s\n"),
602*6a54128fSAndroid Build Coastguard Worker 			sect, error_message(retval));
603*6a54128fSAndroid Build Coastguard Worker }
604*6a54128fSAndroid Build Coastguard Worker 
create_journal_dev(ext2_filsys fs)605*6a54128fSAndroid Build Coastguard Worker static void create_journal_dev(ext2_filsys fs)
606*6a54128fSAndroid Build Coastguard Worker {
607*6a54128fSAndroid Build Coastguard Worker 	struct ext2fs_numeric_progress_struct progress;
608*6a54128fSAndroid Build Coastguard Worker 	errcode_t		retval;
609*6a54128fSAndroid Build Coastguard Worker 	char			*buf;
610*6a54128fSAndroid Build Coastguard Worker 	blk64_t			blk, err_blk;
611*6a54128fSAndroid Build Coastguard Worker 	int			c, count, err_count;
612*6a54128fSAndroid Build Coastguard Worker 	struct ext2fs_journal_params	jparams;
613*6a54128fSAndroid Build Coastguard Worker 
614*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_get_journal_params(&jparams, fs);
615*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
616*6a54128fSAndroid Build Coastguard Worker 		com_err("create_journal_dev", retval, "%s",
617*6a54128fSAndroid Build Coastguard Worker 			_("while splitting the journal size"));
618*6a54128fSAndroid Build Coastguard Worker 		exit(1);
619*6a54128fSAndroid Build Coastguard Worker 	}
620*6a54128fSAndroid Build Coastguard Worker 
621*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_create_journal_superblock2(fs, &jparams, 0, &buf);
622*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
623*6a54128fSAndroid Build Coastguard Worker 		com_err("create_journal_dev", retval, "%s",
624*6a54128fSAndroid Build Coastguard Worker 			_("while initializing journal superblock"));
625*6a54128fSAndroid Build Coastguard Worker 		exit(1);
626*6a54128fSAndroid Build Coastguard Worker 	}
627*6a54128fSAndroid Build Coastguard Worker 
628*6a54128fSAndroid Build Coastguard Worker 	if (journal_flags & EXT2_MKJOURNAL_LAZYINIT)
629*6a54128fSAndroid Build Coastguard Worker 		goto write_superblock;
630*6a54128fSAndroid Build Coastguard Worker 
631*6a54128fSAndroid Build Coastguard Worker 	ext2fs_numeric_progress_init(fs, &progress,
632*6a54128fSAndroid Build Coastguard Worker 				     _("Zeroing journal device: "),
633*6a54128fSAndroid Build Coastguard Worker 				     ext2fs_blocks_count(fs->super));
634*6a54128fSAndroid Build Coastguard Worker 	blk = 0;
635*6a54128fSAndroid Build Coastguard Worker 	count = ext2fs_blocks_count(fs->super);
636*6a54128fSAndroid Build Coastguard Worker 	while (count > 0) {
637*6a54128fSAndroid Build Coastguard Worker 		if (count > 1024)
638*6a54128fSAndroid Build Coastguard Worker 			c = 1024;
639*6a54128fSAndroid Build Coastguard Worker 		else
640*6a54128fSAndroid Build Coastguard Worker 			c = count;
641*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_zero_blocks2(fs, blk, c, &err_blk, &err_count);
642*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
643*6a54128fSAndroid Build Coastguard Worker 			com_err("create_journal_dev", retval,
644*6a54128fSAndroid Build Coastguard Worker 				_("while zeroing journal device "
645*6a54128fSAndroid Build Coastguard Worker 				  "(block %llu, count %d)"),
646*6a54128fSAndroid Build Coastguard Worker 				(unsigned long long) err_blk, err_count);
647*6a54128fSAndroid Build Coastguard Worker 			exit(1);
648*6a54128fSAndroid Build Coastguard Worker 		}
649*6a54128fSAndroid Build Coastguard Worker 		blk += c;
650*6a54128fSAndroid Build Coastguard Worker 		count -= c;
651*6a54128fSAndroid Build Coastguard Worker 		ext2fs_numeric_progress_update(fs, &progress, blk);
652*6a54128fSAndroid Build Coastguard Worker 	}
653*6a54128fSAndroid Build Coastguard Worker 
654*6a54128fSAndroid Build Coastguard Worker 	ext2fs_numeric_progress_close(fs, &progress, NULL);
655*6a54128fSAndroid Build Coastguard Worker write_superblock:
656*6a54128fSAndroid Build Coastguard Worker 	retval = io_channel_write_blk64(fs->io,
657*6a54128fSAndroid Build Coastguard Worker 					fs->super->s_first_data_block+1,
658*6a54128fSAndroid Build Coastguard Worker 					1, buf);
659*6a54128fSAndroid Build Coastguard Worker 	(void) ext2fs_free_mem(&buf);
660*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
661*6a54128fSAndroid Build Coastguard Worker 		com_err("create_journal_dev", retval, "%s",
662*6a54128fSAndroid Build Coastguard Worker 			_("while writing journal superblock"));
663*6a54128fSAndroid Build Coastguard Worker 		exit(1);
664*6a54128fSAndroid Build Coastguard Worker 	}
665*6a54128fSAndroid Build Coastguard Worker }
666*6a54128fSAndroid Build Coastguard Worker 
show_stats(ext2_filsys fs)667*6a54128fSAndroid Build Coastguard Worker static void show_stats(ext2_filsys fs)
668*6a54128fSAndroid Build Coastguard Worker {
669*6a54128fSAndroid Build Coastguard Worker 	struct ext2_super_block *s = fs->super;
670*6a54128fSAndroid Build Coastguard Worker         char                    *os;
671*6a54128fSAndroid Build Coastguard Worker 	blk64_t			group_block;
672*6a54128fSAndroid Build Coastguard Worker 	dgrp_t			i;
673*6a54128fSAndroid Build Coastguard Worker 	int			need, col_left;
674*6a54128fSAndroid Build Coastguard Worker 
675*6a54128fSAndroid Build Coastguard Worker 	if (!verbose) {
676*6a54128fSAndroid Build Coastguard Worker 		printf(_("Creating filesystem with %llu %dk blocks and "
677*6a54128fSAndroid Build Coastguard Worker 			 "%u inodes\n"),
678*6a54128fSAndroid Build Coastguard Worker 		       (unsigned long long) ext2fs_blocks_count(s),
679*6a54128fSAndroid Build Coastguard Worker 		       fs->blocksize >> 10, s->s_inodes_count);
680*6a54128fSAndroid Build Coastguard Worker 		goto skip_details;
681*6a54128fSAndroid Build Coastguard Worker 	}
682*6a54128fSAndroid Build Coastguard Worker 
683*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_blocks_count(&fs_param) != ext2fs_blocks_count(s))
684*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("warning: %llu blocks unused.\n\n"),
685*6a54128fSAndroid Build Coastguard Worker 			(unsigned long long) (ext2fs_blocks_count(&fs_param) -
686*6a54128fSAndroid Build Coastguard Worker 					      ext2fs_blocks_count(s)));
687*6a54128fSAndroid Build Coastguard Worker 
688*6a54128fSAndroid Build Coastguard Worker 	printf(_("Filesystem label=%.*s\n"), EXT2_LEN_STR(s->s_volume_name));
689*6a54128fSAndroid Build Coastguard Worker 
690*6a54128fSAndroid Build Coastguard Worker 	os = e2p_os2string(fs->super->s_creator_os);
691*6a54128fSAndroid Build Coastguard Worker 	if (os)
692*6a54128fSAndroid Build Coastguard Worker 		printf(_("OS type: %s\n"), os);
693*6a54128fSAndroid Build Coastguard Worker 	free(os);
694*6a54128fSAndroid Build Coastguard Worker 	printf(_("Block size=%u (log=%u)\n"), fs->blocksize,
695*6a54128fSAndroid Build Coastguard Worker 		s->s_log_block_size);
696*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_bigalloc(fs->super))
697*6a54128fSAndroid Build Coastguard Worker 		printf(_("Cluster size=%u (log=%u)\n"),
698*6a54128fSAndroid Build Coastguard Worker 		       fs->blocksize << fs->cluster_ratio_bits,
699*6a54128fSAndroid Build Coastguard Worker 		       s->s_log_cluster_size);
700*6a54128fSAndroid Build Coastguard Worker 	else
701*6a54128fSAndroid Build Coastguard Worker 		printf(_("Fragment size=%u (log=%u)\n"), EXT2_CLUSTER_SIZE(s),
702*6a54128fSAndroid Build Coastguard Worker 		       s->s_log_cluster_size);
703*6a54128fSAndroid Build Coastguard Worker 	printf(_("Stride=%u blocks, Stripe width=%u blocks\n"),
704*6a54128fSAndroid Build Coastguard Worker 	       s->s_raid_stride, s->s_raid_stripe_width);
705*6a54128fSAndroid Build Coastguard Worker 	printf(_("%u inodes, %llu blocks\n"), s->s_inodes_count,
706*6a54128fSAndroid Build Coastguard Worker 	       (unsigned long long) ext2fs_blocks_count(s));
707*6a54128fSAndroid Build Coastguard Worker 	printf(_("%llu blocks (%2.2f%%) reserved for the super user\n"),
708*6a54128fSAndroid Build Coastguard Worker 	       (unsigned long long) ext2fs_r_blocks_count(s),
709*6a54128fSAndroid Build Coastguard Worker 	       100.0 *  ext2fs_r_blocks_count(s) / ext2fs_blocks_count(s));
710*6a54128fSAndroid Build Coastguard Worker 	printf(_("First data block=%u\n"), s->s_first_data_block);
711*6a54128fSAndroid Build Coastguard Worker 	if (root_uid != 0 || root_gid != 0)
712*6a54128fSAndroid Build Coastguard Worker 		printf(_("Root directory owner=%u:%u\n"), root_uid, root_gid);
713*6a54128fSAndroid Build Coastguard Worker 	if (s->s_reserved_gdt_blocks)
714*6a54128fSAndroid Build Coastguard Worker 		printf(_("Maximum filesystem blocks=%lu\n"),
715*6a54128fSAndroid Build Coastguard Worker 		       (s->s_reserved_gdt_blocks + fs->desc_blocks) *
716*6a54128fSAndroid Build Coastguard Worker 		       EXT2_DESC_PER_BLOCK(s) * s->s_blocks_per_group);
717*6a54128fSAndroid Build Coastguard Worker 	if (fs->group_desc_count > 1)
718*6a54128fSAndroid Build Coastguard Worker 		printf(_("%u block groups\n"), fs->group_desc_count);
719*6a54128fSAndroid Build Coastguard Worker 	else
720*6a54128fSAndroid Build Coastguard Worker 		printf(_("%u block group\n"), fs->group_desc_count);
721*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_bigalloc(fs->super))
722*6a54128fSAndroid Build Coastguard Worker 		printf(_("%u blocks per group, %u clusters per group\n"),
723*6a54128fSAndroid Build Coastguard Worker 		       s->s_blocks_per_group, s->s_clusters_per_group);
724*6a54128fSAndroid Build Coastguard Worker 	else
725*6a54128fSAndroid Build Coastguard Worker 		printf(_("%u blocks per group, %u fragments per group\n"),
726*6a54128fSAndroid Build Coastguard Worker 		       s->s_blocks_per_group, s->s_clusters_per_group);
727*6a54128fSAndroid Build Coastguard Worker 	printf(_("%u inodes per group\n"), s->s_inodes_per_group);
728*6a54128fSAndroid Build Coastguard Worker 
729*6a54128fSAndroid Build Coastguard Worker skip_details:
730*6a54128fSAndroid Build Coastguard Worker 	if (fs->group_desc_count == 1) {
731*6a54128fSAndroid Build Coastguard Worker 		printf("\n");
732*6a54128fSAndroid Build Coastguard Worker 		return;
733*6a54128fSAndroid Build Coastguard Worker 	}
734*6a54128fSAndroid Build Coastguard Worker 
735*6a54128fSAndroid Build Coastguard Worker 	if (!e2p_is_null_uuid(s->s_uuid))
736*6a54128fSAndroid Build Coastguard Worker 		printf(_("Filesystem UUID: %s\n"), e2p_uuid2str(s->s_uuid));
737*6a54128fSAndroid Build Coastguard Worker 	printf("%s", _("Superblock backups stored on blocks: "));
738*6a54128fSAndroid Build Coastguard Worker 	group_block = s->s_first_data_block;
739*6a54128fSAndroid Build Coastguard Worker 	col_left = 0;
740*6a54128fSAndroid Build Coastguard Worker 	for (i = 1; i < fs->group_desc_count; i++) {
741*6a54128fSAndroid Build Coastguard Worker 		group_block += s->s_blocks_per_group;
742*6a54128fSAndroid Build Coastguard Worker 		if (!ext2fs_bg_has_super(fs, i))
743*6a54128fSAndroid Build Coastguard Worker 			continue;
744*6a54128fSAndroid Build Coastguard Worker 		if (i != 1)
745*6a54128fSAndroid Build Coastguard Worker 			printf(", ");
746*6a54128fSAndroid Build Coastguard Worker 		need = int_log10(group_block) + 2;
747*6a54128fSAndroid Build Coastguard Worker 		if (need > col_left) {
748*6a54128fSAndroid Build Coastguard Worker 			printf("\n\t");
749*6a54128fSAndroid Build Coastguard Worker 			col_left = 72;
750*6a54128fSAndroid Build Coastguard Worker 		}
751*6a54128fSAndroid Build Coastguard Worker 		col_left -= need;
752*6a54128fSAndroid Build Coastguard Worker 		printf("%llu", (unsigned long long) group_block);
753*6a54128fSAndroid Build Coastguard Worker 	}
754*6a54128fSAndroid Build Coastguard Worker 	printf("\n\n");
755*6a54128fSAndroid Build Coastguard Worker }
756*6a54128fSAndroid Build Coastguard Worker 
757*6a54128fSAndroid Build Coastguard Worker /*
758*6a54128fSAndroid Build Coastguard Worker  * Returns true if making a file system for the Hurd, else 0
759*6a54128fSAndroid Build Coastguard Worker  */
for_hurd(const char * os)760*6a54128fSAndroid Build Coastguard Worker static int for_hurd(const char *os)
761*6a54128fSAndroid Build Coastguard Worker {
762*6a54128fSAndroid Build Coastguard Worker 	if (!os) {
763*6a54128fSAndroid Build Coastguard Worker #ifdef __GNU__
764*6a54128fSAndroid Build Coastguard Worker 		return 1;
765*6a54128fSAndroid Build Coastguard Worker #else
766*6a54128fSAndroid Build Coastguard Worker 		return 0;
767*6a54128fSAndroid Build Coastguard Worker #endif
768*6a54128fSAndroid Build Coastguard Worker 	}
769*6a54128fSAndroid Build Coastguard Worker 	if (isdigit(*os))
770*6a54128fSAndroid Build Coastguard Worker 		return (atoi(os) == EXT2_OS_HURD);
771*6a54128fSAndroid Build Coastguard Worker 	return (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0);
772*6a54128fSAndroid Build Coastguard Worker }
773*6a54128fSAndroid Build Coastguard Worker 
774*6a54128fSAndroid Build Coastguard Worker /*
775*6a54128fSAndroid Build Coastguard Worker  * Set the S_CREATOR_OS field.  Return true if OS is known,
776*6a54128fSAndroid Build Coastguard Worker  * otherwise, 0.
777*6a54128fSAndroid Build Coastguard Worker  */
set_os(struct ext2_super_block * sb,char * os)778*6a54128fSAndroid Build Coastguard Worker static int set_os(struct ext2_super_block *sb, char *os)
779*6a54128fSAndroid Build Coastguard Worker {
780*6a54128fSAndroid Build Coastguard Worker 	if (isdigit (*os))
781*6a54128fSAndroid Build Coastguard Worker 		sb->s_creator_os = atoi (os);
782*6a54128fSAndroid Build Coastguard Worker 	else if (strcasecmp(os, "linux") == 0)
783*6a54128fSAndroid Build Coastguard Worker 		sb->s_creator_os = EXT2_OS_LINUX;
784*6a54128fSAndroid Build Coastguard Worker 	else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
785*6a54128fSAndroid Build Coastguard Worker 		sb->s_creator_os = EXT2_OS_HURD;
786*6a54128fSAndroid Build Coastguard Worker 	else if (strcasecmp(os, "freebsd") == 0)
787*6a54128fSAndroid Build Coastguard Worker 		sb->s_creator_os = EXT2_OS_FREEBSD;
788*6a54128fSAndroid Build Coastguard Worker 	else if (strcasecmp(os, "lites") == 0)
789*6a54128fSAndroid Build Coastguard Worker 		sb->s_creator_os = EXT2_OS_LITES;
790*6a54128fSAndroid Build Coastguard Worker 	else
791*6a54128fSAndroid Build Coastguard Worker 		return 0;
792*6a54128fSAndroid Build Coastguard Worker 	return 1;
793*6a54128fSAndroid Build Coastguard Worker }
794*6a54128fSAndroid Build Coastguard Worker 
795*6a54128fSAndroid Build Coastguard Worker #define PATH_SET "PATH=/sbin"
796*6a54128fSAndroid Build Coastguard Worker 
parse_extended_opts(struct ext2_super_block * param,const char * opts)797*6a54128fSAndroid Build Coastguard Worker static void parse_extended_opts(struct ext2_super_block *param,
798*6a54128fSAndroid Build Coastguard Worker 				const char *opts)
799*6a54128fSAndroid Build Coastguard Worker {
800*6a54128fSAndroid Build Coastguard Worker 	char	*buf, *token, *next, *p, *arg, *badopt = 0;
801*6a54128fSAndroid Build Coastguard Worker 	int	len;
802*6a54128fSAndroid Build Coastguard Worker 	int	r_usage = 0;
803*6a54128fSAndroid Build Coastguard Worker 	int	ret;
804*6a54128fSAndroid Build Coastguard Worker 	int	encoding = -1;
805*6a54128fSAndroid Build Coastguard Worker 	char 	*encoding_flags = NULL;
806*6a54128fSAndroid Build Coastguard Worker 
807*6a54128fSAndroid Build Coastguard Worker 	len = strlen(opts);
808*6a54128fSAndroid Build Coastguard Worker 	buf = malloc(len+1);
809*6a54128fSAndroid Build Coastguard Worker 	if (!buf) {
810*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, "%s",
811*6a54128fSAndroid Build Coastguard Worker 			_("Couldn't allocate memory to parse options!\n"));
812*6a54128fSAndroid Build Coastguard Worker 		exit(1);
813*6a54128fSAndroid Build Coastguard Worker 	}
814*6a54128fSAndroid Build Coastguard Worker 	strcpy(buf, opts);
815*6a54128fSAndroid Build Coastguard Worker 	for (token = buf; token && *token; token = next) {
816*6a54128fSAndroid Build Coastguard Worker 		p = strchr(token, ',');
817*6a54128fSAndroid Build Coastguard Worker 		next = 0;
818*6a54128fSAndroid Build Coastguard Worker 		if (p) {
819*6a54128fSAndroid Build Coastguard Worker 			*p = 0;
820*6a54128fSAndroid Build Coastguard Worker 			next = p+1;
821*6a54128fSAndroid Build Coastguard Worker 		}
822*6a54128fSAndroid Build Coastguard Worker 		arg = strchr(token, '=');
823*6a54128fSAndroid Build Coastguard Worker 		if (arg) {
824*6a54128fSAndroid Build Coastguard Worker 			*arg = 0;
825*6a54128fSAndroid Build Coastguard Worker 			arg++;
826*6a54128fSAndroid Build Coastguard Worker 		}
827*6a54128fSAndroid Build Coastguard Worker 		if (strcmp(token, "desc-size") == 0 ||
828*6a54128fSAndroid Build Coastguard Worker 		    strcmp(token, "desc_size") == 0) {
829*6a54128fSAndroid Build Coastguard Worker 			int desc_size;
830*6a54128fSAndroid Build Coastguard Worker 
831*6a54128fSAndroid Build Coastguard Worker 			if (!ext2fs_has_feature_64bit(&fs_param)) {
832*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
833*6a54128fSAndroid Build Coastguard Worker 					_("%s requires '-O 64bit'\n"), token);
834*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
835*6a54128fSAndroid Build Coastguard Worker 				continue;
836*6a54128fSAndroid Build Coastguard Worker 			}
837*6a54128fSAndroid Build Coastguard Worker 			if (param->s_reserved_gdt_blocks != 0) {
838*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
839*6a54128fSAndroid Build Coastguard Worker 					_("'%s' must be before 'resize=%u'\n"),
840*6a54128fSAndroid Build Coastguard Worker 					token, param->s_reserved_gdt_blocks);
841*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
842*6a54128fSAndroid Build Coastguard Worker 				continue;
843*6a54128fSAndroid Build Coastguard Worker 			}
844*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
845*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
846*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
847*6a54128fSAndroid Build Coastguard Worker 				continue;
848*6a54128fSAndroid Build Coastguard Worker 			}
849*6a54128fSAndroid Build Coastguard Worker 			desc_size = strtoul(arg, &p, 0);
850*6a54128fSAndroid Build Coastguard Worker 			if (*p || (desc_size & (desc_size - 1))) {
851*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
852*6a54128fSAndroid Build Coastguard Worker 					_("Invalid desc_size: '%s'\n"), arg);
853*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
854*6a54128fSAndroid Build Coastguard Worker 				continue;
855*6a54128fSAndroid Build Coastguard Worker 			}
856*6a54128fSAndroid Build Coastguard Worker 			param->s_desc_size = desc_size;
857*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "hash_seed") == 0) {
858*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
859*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
860*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
861*6a54128fSAndroid Build Coastguard Worker 				continue;
862*6a54128fSAndroid Build Coastguard Worker 			}
863*6a54128fSAndroid Build Coastguard Worker 			if (uuid_parse(arg,
864*6a54128fSAndroid Build Coastguard Worker 				(unsigned char *)param->s_hash_seed) != 0) {
865*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
866*6a54128fSAndroid Build Coastguard Worker 					_("Invalid hash seed: %s\n"), arg);
867*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
868*6a54128fSAndroid Build Coastguard Worker 				continue;
869*6a54128fSAndroid Build Coastguard Worker 			}
870*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "offset") == 0) {
871*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
872*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
873*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
874*6a54128fSAndroid Build Coastguard Worker 				continue;
875*6a54128fSAndroid Build Coastguard Worker 			}
876*6a54128fSAndroid Build Coastguard Worker 			offset = strtoull(arg, &p, 0);
877*6a54128fSAndroid Build Coastguard Worker 			if (*p) {
878*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr, _("Invalid offset: %s\n"),
879*6a54128fSAndroid Build Coastguard Worker 					arg);
880*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
881*6a54128fSAndroid Build Coastguard Worker 				continue;
882*6a54128fSAndroid Build Coastguard Worker 			}
883*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "mmp_update_interval") == 0) {
884*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
885*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
886*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
887*6a54128fSAndroid Build Coastguard Worker 				continue;
888*6a54128fSAndroid Build Coastguard Worker 			}
889*6a54128fSAndroid Build Coastguard Worker 			param->s_mmp_update_interval = strtoul(arg, &p, 0);
890*6a54128fSAndroid Build Coastguard Worker 			if (*p) {
891*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
892*6a54128fSAndroid Build Coastguard Worker 					_("Invalid mmp_update_interval: %s\n"),
893*6a54128fSAndroid Build Coastguard Worker 					arg);
894*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
895*6a54128fSAndroid Build Coastguard Worker 				continue;
896*6a54128fSAndroid Build Coastguard Worker 			}
897*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "no_copy_xattrs") == 0) {
898*6a54128fSAndroid Build Coastguard Worker 			no_copy_xattrs = 1;
899*6a54128fSAndroid Build Coastguard Worker 			continue;
900*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "num_backup_sb") == 0) {
901*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
902*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
903*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
904*6a54128fSAndroid Build Coastguard Worker 				continue;
905*6a54128fSAndroid Build Coastguard Worker 			}
906*6a54128fSAndroid Build Coastguard Worker 			num_backups = strtoul(arg, &p, 0);
907*6a54128fSAndroid Build Coastguard Worker 			if (*p || num_backups > 2) {
908*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
909*6a54128fSAndroid Build Coastguard Worker 					_("Invalid # of backup "
910*6a54128fSAndroid Build Coastguard Worker 					  "superblocks: %s\n"),
911*6a54128fSAndroid Build Coastguard Worker 					arg);
912*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
913*6a54128fSAndroid Build Coastguard Worker 				continue;
914*6a54128fSAndroid Build Coastguard Worker 			}
915*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "packed_meta_blocks") == 0) {
916*6a54128fSAndroid Build Coastguard Worker 			if (arg)
917*6a54128fSAndroid Build Coastguard Worker 				packed_meta_blocks = strtoul(arg, &p, 0);
918*6a54128fSAndroid Build Coastguard Worker 			else
919*6a54128fSAndroid Build Coastguard Worker 				packed_meta_blocks = 1;
920*6a54128fSAndroid Build Coastguard Worker 			if (packed_meta_blocks)
921*6a54128fSAndroid Build Coastguard Worker 				journal_location = 0;
922*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "stride") == 0) {
923*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
924*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
925*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
926*6a54128fSAndroid Build Coastguard Worker 				continue;
927*6a54128fSAndroid Build Coastguard Worker 			}
928*6a54128fSAndroid Build Coastguard Worker 			param->s_raid_stride = strtoul(arg, &p, 0);
929*6a54128fSAndroid Build Coastguard Worker 			if (*p) {
930*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
931*6a54128fSAndroid Build Coastguard Worker 					_("Invalid stride parameter: %s\n"),
932*6a54128fSAndroid Build Coastguard Worker 					arg);
933*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
934*6a54128fSAndroid Build Coastguard Worker 				continue;
935*6a54128fSAndroid Build Coastguard Worker 			}
936*6a54128fSAndroid Build Coastguard Worker 		} else if (strcmp(token, "stripe-width") == 0 ||
937*6a54128fSAndroid Build Coastguard Worker 			   strcmp(token, "stripe_width") == 0) {
938*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
939*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
940*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
941*6a54128fSAndroid Build Coastguard Worker 				continue;
942*6a54128fSAndroid Build Coastguard Worker 			}
943*6a54128fSAndroid Build Coastguard Worker 			param->s_raid_stripe_width = strtoul(arg, &p, 0);
944*6a54128fSAndroid Build Coastguard Worker 			if (*p) {
945*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
946*6a54128fSAndroid Build Coastguard Worker 					_("Invalid stripe-width parameter: %s\n"),
947*6a54128fSAndroid Build Coastguard Worker 					arg);
948*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
949*6a54128fSAndroid Build Coastguard Worker 				continue;
950*6a54128fSAndroid Build Coastguard Worker 			}
951*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "resize")) {
952*6a54128fSAndroid Build Coastguard Worker 			blk64_t resize;
953*6a54128fSAndroid Build Coastguard Worker 			unsigned long bpg, rsv_groups;
954*6a54128fSAndroid Build Coastguard Worker 			unsigned long group_desc_count, desc_blocks;
955*6a54128fSAndroid Build Coastguard Worker 			unsigned int gdpb, blocksize;
956*6a54128fSAndroid Build Coastguard Worker 			int rsv_gdb;
957*6a54128fSAndroid Build Coastguard Worker 
958*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
959*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
960*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
961*6a54128fSAndroid Build Coastguard Worker 				continue;
962*6a54128fSAndroid Build Coastguard Worker 			}
963*6a54128fSAndroid Build Coastguard Worker 
964*6a54128fSAndroid Build Coastguard Worker 			resize = parse_num_blocks2(arg,
965*6a54128fSAndroid Build Coastguard Worker 						   param->s_log_block_size);
966*6a54128fSAndroid Build Coastguard Worker 
967*6a54128fSAndroid Build Coastguard Worker 			if (resize == 0) {
968*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
969*6a54128fSAndroid Build Coastguard Worker 					_("Invalid resize parameter: %s\n"),
970*6a54128fSAndroid Build Coastguard Worker 					arg);
971*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
972*6a54128fSAndroid Build Coastguard Worker 				continue;
973*6a54128fSAndroid Build Coastguard Worker 			}
974*6a54128fSAndroid Build Coastguard Worker 			if (resize <= ext2fs_blocks_count(param)) {
975*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr, "%s",
976*6a54128fSAndroid Build Coastguard Worker 					_("The resize maximum must be greater "
977*6a54128fSAndroid Build Coastguard Worker 					  "than the filesystem size.\n"));
978*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
979*6a54128fSAndroid Build Coastguard Worker 				continue;
980*6a54128fSAndroid Build Coastguard Worker 			}
981*6a54128fSAndroid Build Coastguard Worker 
982*6a54128fSAndroid Build Coastguard Worker 			blocksize = EXT2_BLOCK_SIZE(param);
983*6a54128fSAndroid Build Coastguard Worker 			bpg = param->s_blocks_per_group;
984*6a54128fSAndroid Build Coastguard Worker 			if (!bpg)
985*6a54128fSAndroid Build Coastguard Worker 				bpg = blocksize * 8;
986*6a54128fSAndroid Build Coastguard Worker 			gdpb = EXT2_DESC_PER_BLOCK(param);
987*6a54128fSAndroid Build Coastguard Worker 			group_desc_count = (__u32) ext2fs_div64_ceil(
988*6a54128fSAndroid Build Coastguard Worker 				ext2fs_blocks_count(param), bpg);
989*6a54128fSAndroid Build Coastguard Worker 			desc_blocks = (group_desc_count +
990*6a54128fSAndroid Build Coastguard Worker 				       gdpb - 1) / gdpb;
991*6a54128fSAndroid Build Coastguard Worker 			rsv_groups = ext2fs_div64_ceil(resize, bpg);
992*6a54128fSAndroid Build Coastguard Worker 			rsv_gdb = ext2fs_div_ceil(rsv_groups, gdpb) -
993*6a54128fSAndroid Build Coastguard Worker 				desc_blocks;
994*6a54128fSAndroid Build Coastguard Worker 			if (rsv_gdb > (int) EXT2_ADDR_PER_BLOCK(param))
995*6a54128fSAndroid Build Coastguard Worker 				rsv_gdb = EXT2_ADDR_PER_BLOCK(param);
996*6a54128fSAndroid Build Coastguard Worker 
997*6a54128fSAndroid Build Coastguard Worker 			if (rsv_gdb > 0) {
998*6a54128fSAndroid Build Coastguard Worker 				if (param->s_rev_level == EXT2_GOOD_OLD_REV) {
999*6a54128fSAndroid Build Coastguard Worker 					fprintf(stderr, "%s",
1000*6a54128fSAndroid Build Coastguard Worker 	_("On-line resizing not supported with revision 0 filesystems\n"));
1001*6a54128fSAndroid Build Coastguard Worker 					free(buf);
1002*6a54128fSAndroid Build Coastguard Worker 					exit(1);
1003*6a54128fSAndroid Build Coastguard Worker 				}
1004*6a54128fSAndroid Build Coastguard Worker 				ext2fs_set_feature_resize_inode(param);
1005*6a54128fSAndroid Build Coastguard Worker 
1006*6a54128fSAndroid Build Coastguard Worker 				param->s_reserved_gdt_blocks = rsv_gdb;
1007*6a54128fSAndroid Build Coastguard Worker 			}
1008*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "test_fs")) {
1009*6a54128fSAndroid Build Coastguard Worker 			param->s_flags |= EXT2_FLAGS_TEST_FILESYS;
1010*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "lazy_itable_init")) {
1011*6a54128fSAndroid Build Coastguard Worker 			if (arg)
1012*6a54128fSAndroid Build Coastguard Worker 				lazy_itable_init = strtoul(arg, &p, 0);
1013*6a54128fSAndroid Build Coastguard Worker 			else
1014*6a54128fSAndroid Build Coastguard Worker 				lazy_itable_init = 1;
1015*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "lazy_journal_init")) {
1016*6a54128fSAndroid Build Coastguard Worker 			if (arg)
1017*6a54128fSAndroid Build Coastguard Worker 				journal_flags |= strtoul(arg, &p, 0) ?
1018*6a54128fSAndroid Build Coastguard Worker 						EXT2_MKJOURNAL_LAZYINIT : 0;
1019*6a54128fSAndroid Build Coastguard Worker 			else
1020*6a54128fSAndroid Build Coastguard Worker 				journal_flags |= EXT2_MKJOURNAL_LAZYINIT;
1021*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "root_owner")) {
1022*6a54128fSAndroid Build Coastguard Worker 			if (arg) {
1023*6a54128fSAndroid Build Coastguard Worker 				root_uid = strtoul(arg, &p, 0);
1024*6a54128fSAndroid Build Coastguard Worker 				if (*p != ':') {
1025*6a54128fSAndroid Build Coastguard Worker 					fprintf(stderr,
1026*6a54128fSAndroid Build Coastguard Worker 						_("Invalid root_owner: '%s'\n"),
1027*6a54128fSAndroid Build Coastguard Worker 						arg);
1028*6a54128fSAndroid Build Coastguard Worker 					r_usage++;
1029*6a54128fSAndroid Build Coastguard Worker 					continue;
1030*6a54128fSAndroid Build Coastguard Worker 				}
1031*6a54128fSAndroid Build Coastguard Worker 				p++;
1032*6a54128fSAndroid Build Coastguard Worker 				root_gid = strtoul(p, &p, 0);
1033*6a54128fSAndroid Build Coastguard Worker 				if (*p) {
1034*6a54128fSAndroid Build Coastguard Worker 					fprintf(stderr,
1035*6a54128fSAndroid Build Coastguard Worker 						_("Invalid root_owner: '%s'\n"),
1036*6a54128fSAndroid Build Coastguard Worker 						arg);
1037*6a54128fSAndroid Build Coastguard Worker 					r_usage++;
1038*6a54128fSAndroid Build Coastguard Worker 					continue;
1039*6a54128fSAndroid Build Coastguard Worker 				}
1040*6a54128fSAndroid Build Coastguard Worker 			} else {
1041*6a54128fSAndroid Build Coastguard Worker 				root_uid = getuid();
1042*6a54128fSAndroid Build Coastguard Worker 				root_gid = getgid();
1043*6a54128fSAndroid Build Coastguard Worker 			}
1044*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "discard")) {
1045*6a54128fSAndroid Build Coastguard Worker 			discard = 1;
1046*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "nodiscard")) {
1047*6a54128fSAndroid Build Coastguard Worker 			discard = 0;
1048*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "quotatype")) {
1049*6a54128fSAndroid Build Coastguard Worker 			char *errtok = NULL;
1050*6a54128fSAndroid Build Coastguard Worker 
1051*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
1052*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
1053*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
1054*6a54128fSAndroid Build Coastguard Worker 				continue;
1055*6a54128fSAndroid Build Coastguard Worker 			}
1056*6a54128fSAndroid Build Coastguard Worker 			quotatype_bits = 0;
1057*6a54128fSAndroid Build Coastguard Worker 			ret = parse_quota_types(arg, &quotatype_bits, &errtok);
1058*6a54128fSAndroid Build Coastguard Worker 			if (ret) {
1059*6a54128fSAndroid Build Coastguard Worker 				if (errtok) {
1060*6a54128fSAndroid Build Coastguard Worker 					fprintf(stderr,
1061*6a54128fSAndroid Build Coastguard Worker 				"Failed to parse quota type at %s", errtok);
1062*6a54128fSAndroid Build Coastguard Worker 					free(errtok);
1063*6a54128fSAndroid Build Coastguard Worker 				} else
1064*6a54128fSAndroid Build Coastguard Worker 					com_err(program_name, ret,
1065*6a54128fSAndroid Build Coastguard Worker 						"while parsing quota type");
1066*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
1067*6a54128fSAndroid Build Coastguard Worker 				badopt = token;
1068*6a54128fSAndroid Build Coastguard Worker 				continue;
1069*6a54128fSAndroid Build Coastguard Worker 			}
1070*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "android_sparse")) {
1071*6a54128fSAndroid Build Coastguard Worker 			android_sparse_file = 1;
1072*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "encoding")) {
1073*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
1074*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
1075*6a54128fSAndroid Build Coastguard Worker 				continue;
1076*6a54128fSAndroid Build Coastguard Worker 			}
1077*6a54128fSAndroid Build Coastguard Worker 
1078*6a54128fSAndroid Build Coastguard Worker 			encoding = e2p_str2encoding(arg);
1079*6a54128fSAndroid Build Coastguard Worker 			if (encoding < 0) {
1080*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr, _("Invalid encoding: %s"), arg);
1081*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
1082*6a54128fSAndroid Build Coastguard Worker 				continue;
1083*6a54128fSAndroid Build Coastguard Worker 			}
1084*6a54128fSAndroid Build Coastguard Worker 			param->s_encoding = encoding;
1085*6a54128fSAndroid Build Coastguard Worker 			ext2fs_set_feature_casefold(param);
1086*6a54128fSAndroid Build Coastguard Worker 		} else if (!strcmp(token, "encoding_flags")) {
1087*6a54128fSAndroid Build Coastguard Worker 			if (!arg) {
1088*6a54128fSAndroid Build Coastguard Worker 				r_usage++;
1089*6a54128fSAndroid Build Coastguard Worker 				continue;
1090*6a54128fSAndroid Build Coastguard Worker 			}
1091*6a54128fSAndroid Build Coastguard Worker 			encoding_flags = arg;
1092*6a54128fSAndroid Build Coastguard Worker 		} else {
1093*6a54128fSAndroid Build Coastguard Worker 			r_usage++;
1094*6a54128fSAndroid Build Coastguard Worker 			badopt = token;
1095*6a54128fSAndroid Build Coastguard Worker 		}
1096*6a54128fSAndroid Build Coastguard Worker 	}
1097*6a54128fSAndroid Build Coastguard Worker 	if (r_usage) {
1098*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("\nBad option(s) specified: %s\n\n"
1099*6a54128fSAndroid Build Coastguard Worker 			"Extended options are separated by commas, "
1100*6a54128fSAndroid Build Coastguard Worker 			"and may take an argument which\n"
1101*6a54128fSAndroid Build Coastguard Worker 			"\tis set off by an equals ('=') sign.\n\n"
1102*6a54128fSAndroid Build Coastguard Worker 			"Valid extended options are:\n"
1103*6a54128fSAndroid Build Coastguard Worker 			"\tmmp_update_interval=<interval>\n"
1104*6a54128fSAndroid Build Coastguard Worker 			"\tnum_backup_sb=<0|1|2>\n"
1105*6a54128fSAndroid Build Coastguard Worker 			"\tstride=<RAID per-disk data chunk in blocks>\n"
1106*6a54128fSAndroid Build Coastguard Worker 			"\tstripe-width=<RAID stride * data disks in blocks>\n"
1107*6a54128fSAndroid Build Coastguard Worker 			"\toffset=<offset to create the file system>\n"
1108*6a54128fSAndroid Build Coastguard Worker 			"\tresize=<resize maximum size in blocks>\n"
1109*6a54128fSAndroid Build Coastguard Worker 			"\tpacked_meta_blocks=<0 to disable, 1 to enable>\n"
1110*6a54128fSAndroid Build Coastguard Worker 			"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
1111*6a54128fSAndroid Build Coastguard Worker 			"\tlazy_journal_init=<0 to disable, 1 to enable>\n"
1112*6a54128fSAndroid Build Coastguard Worker 			"\troot_owner=<uid of root dir>:<gid of root dir>\n"
1113*6a54128fSAndroid Build Coastguard Worker 			"\ttest_fs\n"
1114*6a54128fSAndroid Build Coastguard Worker 			"\tdiscard\n"
1115*6a54128fSAndroid Build Coastguard Worker 			"\tnodiscard\n"
1116*6a54128fSAndroid Build Coastguard Worker 			"\tencoding=<encoding>\n"
1117*6a54128fSAndroid Build Coastguard Worker 			"\tencoding_flags=<flags>\n"
1118*6a54128fSAndroid Build Coastguard Worker 			"\tquotatype=<quota type(s) to be enabled>\n\n"),
1119*6a54128fSAndroid Build Coastguard Worker 			badopt ? badopt : "");
1120*6a54128fSAndroid Build Coastguard Worker 		free(buf);
1121*6a54128fSAndroid Build Coastguard Worker 		exit(1);
1122*6a54128fSAndroid Build Coastguard Worker 	}
1123*6a54128fSAndroid Build Coastguard Worker 	if (param->s_raid_stride &&
1124*6a54128fSAndroid Build Coastguard Worker 	    (param->s_raid_stripe_width % param->s_raid_stride) != 0)
1125*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("\nWarning: RAID stripe-width %u not an even "
1126*6a54128fSAndroid Build Coastguard Worker 				  "multiple of stride %u.\n\n"),
1127*6a54128fSAndroid Build Coastguard Worker 			param->s_raid_stripe_width, param->s_raid_stride);
1128*6a54128fSAndroid Build Coastguard Worker 
1129*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_casefold(param)) {
1130*6a54128fSAndroid Build Coastguard Worker 		param->s_encoding_flags =
1131*6a54128fSAndroid Build Coastguard Worker 			e2p_get_encoding_flags(param->s_encoding);
1132*6a54128fSAndroid Build Coastguard Worker 
1133*6a54128fSAndroid Build Coastguard Worker 		if (encoding_flags &&
1134*6a54128fSAndroid Build Coastguard Worker 		    e2p_str2encoding_flags(param->s_encoding, encoding_flags,
1135*6a54128fSAndroid Build Coastguard Worker 					   &param->s_encoding_flags)) {
1136*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, _("error: Invalid encoding flag: %s\n"),
1137*6a54128fSAndroid Build Coastguard Worker 				encoding_flags);
1138*6a54128fSAndroid Build Coastguard Worker 			free(buf);
1139*6a54128fSAndroid Build Coastguard Worker 			exit(1);
1140*6a54128fSAndroid Build Coastguard Worker 		}
1141*6a54128fSAndroid Build Coastguard Worker 	} else if (encoding_flags) {
1142*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("error: An encoding must be explicitly "
1143*6a54128fSAndroid Build Coastguard Worker 				  "specified when passing encoding-flags\n"));
1144*6a54128fSAndroid Build Coastguard Worker 		free(buf);
1145*6a54128fSAndroid Build Coastguard Worker 		exit(1);
1146*6a54128fSAndroid Build Coastguard Worker 	}
1147*6a54128fSAndroid Build Coastguard Worker 
1148*6a54128fSAndroid Build Coastguard Worker 	free(buf);
1149*6a54128fSAndroid Build Coastguard Worker }
1150*6a54128fSAndroid Build Coastguard Worker 
1151*6a54128fSAndroid Build Coastguard Worker static __u32 ok_features[3] = {
1152*6a54128fSAndroid Build Coastguard Worker 	/* Compat */
1153*6a54128fSAndroid Build Coastguard Worker 	EXT3_FEATURE_COMPAT_HAS_JOURNAL |
1154*6a54128fSAndroid Build Coastguard Worker 		EXT2_FEATURE_COMPAT_RESIZE_INODE |
1155*6a54128fSAndroid Build Coastguard Worker 		EXT2_FEATURE_COMPAT_DIR_INDEX |
1156*6a54128fSAndroid Build Coastguard Worker 		EXT2_FEATURE_COMPAT_EXT_ATTR |
1157*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_COMPAT_SPARSE_SUPER2 |
1158*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_COMPAT_FAST_COMMIT |
1159*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_COMPAT_STABLE_INODES,
1160*6a54128fSAndroid Build Coastguard Worker 	/* Incompat */
1161*6a54128fSAndroid Build Coastguard Worker 	EXT2_FEATURE_INCOMPAT_FILETYPE|
1162*6a54128fSAndroid Build Coastguard Worker 		EXT3_FEATURE_INCOMPAT_EXTENTS|
1163*6a54128fSAndroid Build Coastguard Worker 		EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|
1164*6a54128fSAndroid Build Coastguard Worker 		EXT2_FEATURE_INCOMPAT_META_BG|
1165*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_FLEX_BG|
1166*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_EA_INODE|
1167*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_MMP |
1168*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_64BIT|
1169*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_INLINE_DATA|
1170*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_ENCRYPT |
1171*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_CASEFOLD |
1172*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_CSUM_SEED |
1173*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_INCOMPAT_LARGEDIR,
1174*6a54128fSAndroid Build Coastguard Worker 	/* R/O compat */
1175*6a54128fSAndroid Build Coastguard Worker 	EXT2_FEATURE_RO_COMPAT_LARGE_FILE|
1176*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
1177*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
1178*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
1179*6a54128fSAndroid Build Coastguard Worker 		EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER|
1180*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_GDT_CSUM|
1181*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_BIGALLOC|
1182*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_QUOTA|
1183*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_METADATA_CSUM|
1184*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_PROJECT|
1185*6a54128fSAndroid Build Coastguard Worker 		EXT4_FEATURE_RO_COMPAT_VERITY
1186*6a54128fSAndroid Build Coastguard Worker };
1187*6a54128fSAndroid Build Coastguard Worker 
1188*6a54128fSAndroid Build Coastguard Worker 
syntax_err_report(const char * filename,long err,int line_num)1189*6a54128fSAndroid Build Coastguard Worker static void syntax_err_report(const char *filename, long err, int line_num)
1190*6a54128fSAndroid Build Coastguard Worker {
1191*6a54128fSAndroid Build Coastguard Worker 	fprintf(stderr,
1192*6a54128fSAndroid Build Coastguard Worker 		_("Syntax error in mke2fs config file (%s, line #%d)\n\t%s\n"),
1193*6a54128fSAndroid Build Coastguard Worker 		filename, line_num, error_message(err));
1194*6a54128fSAndroid Build Coastguard Worker 	exit(1);
1195*6a54128fSAndroid Build Coastguard Worker }
1196*6a54128fSAndroid Build Coastguard Worker 
1197*6a54128fSAndroid Build Coastguard Worker static const char *config_fn[] = { ROOT_SYSCONFDIR "/mke2fs.conf", 0 };
1198*6a54128fSAndroid Build Coastguard Worker 
edit_feature(const char * str,__u32 * compat_array)1199*6a54128fSAndroid Build Coastguard Worker static void edit_feature(const char *str, __u32 *compat_array)
1200*6a54128fSAndroid Build Coastguard Worker {
1201*6a54128fSAndroid Build Coastguard Worker 	if (!str)
1202*6a54128fSAndroid Build Coastguard Worker 		return;
1203*6a54128fSAndroid Build Coastguard Worker 
1204*6a54128fSAndroid Build Coastguard Worker 	if (e2p_edit_feature(str, compat_array, ok_features)) {
1205*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("Invalid filesystem option set: %s\n"),
1206*6a54128fSAndroid Build Coastguard Worker 			str);
1207*6a54128fSAndroid Build Coastguard Worker 		exit(1);
1208*6a54128fSAndroid Build Coastguard Worker 	}
1209*6a54128fSAndroid Build Coastguard Worker }
1210*6a54128fSAndroid Build Coastguard Worker 
edit_mntopts(const char * str,__u32 * mntopts)1211*6a54128fSAndroid Build Coastguard Worker static void edit_mntopts(const char *str, __u32 *mntopts)
1212*6a54128fSAndroid Build Coastguard Worker {
1213*6a54128fSAndroid Build Coastguard Worker 	if (!str)
1214*6a54128fSAndroid Build Coastguard Worker 		return;
1215*6a54128fSAndroid Build Coastguard Worker 
1216*6a54128fSAndroid Build Coastguard Worker 	if (e2p_edit_mntopts(str, mntopts, ~0)) {
1217*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("Invalid mount option set: %s\n"),
1218*6a54128fSAndroid Build Coastguard Worker 			str);
1219*6a54128fSAndroid Build Coastguard Worker 		exit(1);
1220*6a54128fSAndroid Build Coastguard Worker 	}
1221*6a54128fSAndroid Build Coastguard Worker }
1222*6a54128fSAndroid Build Coastguard Worker 
1223*6a54128fSAndroid Build Coastguard Worker struct str_list {
1224*6a54128fSAndroid Build Coastguard Worker 	char **list;
1225*6a54128fSAndroid Build Coastguard Worker 	int num;
1226*6a54128fSAndroid Build Coastguard Worker 	int max;
1227*6a54128fSAndroid Build Coastguard Worker };
1228*6a54128fSAndroid Build Coastguard Worker 
init_list(struct str_list * sl)1229*6a54128fSAndroid Build Coastguard Worker static errcode_t init_list(struct str_list *sl)
1230*6a54128fSAndroid Build Coastguard Worker {
1231*6a54128fSAndroid Build Coastguard Worker 	sl->num = 0;
1232*6a54128fSAndroid Build Coastguard Worker 	sl->max = 1;
1233*6a54128fSAndroid Build Coastguard Worker 	sl->list = malloc((sl->max+1) * sizeof(char *));
1234*6a54128fSAndroid Build Coastguard Worker 	if (!sl->list)
1235*6a54128fSAndroid Build Coastguard Worker 		return ENOMEM;
1236*6a54128fSAndroid Build Coastguard Worker 	sl->list[0] = 0;
1237*6a54128fSAndroid Build Coastguard Worker 	return 0;
1238*6a54128fSAndroid Build Coastguard Worker }
1239*6a54128fSAndroid Build Coastguard Worker 
push_string(struct str_list * sl,const char * str)1240*6a54128fSAndroid Build Coastguard Worker static errcode_t push_string(struct str_list *sl, const char *str)
1241*6a54128fSAndroid Build Coastguard Worker {
1242*6a54128fSAndroid Build Coastguard Worker 	char **new_list;
1243*6a54128fSAndroid Build Coastguard Worker 
1244*6a54128fSAndroid Build Coastguard Worker 	if (sl->num >= sl->max) {
1245*6a54128fSAndroid Build Coastguard Worker 		sl->max += 2;
1246*6a54128fSAndroid Build Coastguard Worker 		new_list = realloc(sl->list, (sl->max+1) * sizeof(char *));
1247*6a54128fSAndroid Build Coastguard Worker 		if (!new_list)
1248*6a54128fSAndroid Build Coastguard Worker 			return ENOMEM;
1249*6a54128fSAndroid Build Coastguard Worker 		sl->list = new_list;
1250*6a54128fSAndroid Build Coastguard Worker 	}
1251*6a54128fSAndroid Build Coastguard Worker 	sl->list[sl->num] = malloc(strlen(str)+1);
1252*6a54128fSAndroid Build Coastguard Worker 	if (sl->list[sl->num] == 0)
1253*6a54128fSAndroid Build Coastguard Worker 		return ENOMEM;
1254*6a54128fSAndroid Build Coastguard Worker 	strcpy(sl->list[sl->num], str);
1255*6a54128fSAndroid Build Coastguard Worker 	sl->num++;
1256*6a54128fSAndroid Build Coastguard Worker 	sl->list[sl->num] = 0;
1257*6a54128fSAndroid Build Coastguard Worker 	return 0;
1258*6a54128fSAndroid Build Coastguard Worker }
1259*6a54128fSAndroid Build Coastguard Worker 
print_str_list(char ** list)1260*6a54128fSAndroid Build Coastguard Worker static void print_str_list(char **list)
1261*6a54128fSAndroid Build Coastguard Worker {
1262*6a54128fSAndroid Build Coastguard Worker 	char **cpp;
1263*6a54128fSAndroid Build Coastguard Worker 
1264*6a54128fSAndroid Build Coastguard Worker 	for (cpp = list; *cpp; cpp++) {
1265*6a54128fSAndroid Build Coastguard Worker 		printf("'%s'", *cpp);
1266*6a54128fSAndroid Build Coastguard Worker 		if (cpp[1])
1267*6a54128fSAndroid Build Coastguard Worker 			fputs(", ", stdout);
1268*6a54128fSAndroid Build Coastguard Worker 	}
1269*6a54128fSAndroid Build Coastguard Worker 	fputc('\n', stdout);
1270*6a54128fSAndroid Build Coastguard Worker }
1271*6a54128fSAndroid Build Coastguard Worker 
1272*6a54128fSAndroid Build Coastguard Worker /*
1273*6a54128fSAndroid Build Coastguard Worker  * Return TRUE if the profile has the given subsection
1274*6a54128fSAndroid Build Coastguard Worker  */
profile_has_subsection(profile_t prof,const char * section,const char * subsection)1275*6a54128fSAndroid Build Coastguard Worker static int profile_has_subsection(profile_t prof, const char *section,
1276*6a54128fSAndroid Build Coastguard Worker 				  const char *subsection)
1277*6a54128fSAndroid Build Coastguard Worker {
1278*6a54128fSAndroid Build Coastguard Worker 	void			*state;
1279*6a54128fSAndroid Build Coastguard Worker 	const char		*names[4];
1280*6a54128fSAndroid Build Coastguard Worker 	char			*name;
1281*6a54128fSAndroid Build Coastguard Worker 	int			ret = 0;
1282*6a54128fSAndroid Build Coastguard Worker 
1283*6a54128fSAndroid Build Coastguard Worker 	names[0] = section;
1284*6a54128fSAndroid Build Coastguard Worker 	names[1] = subsection;
1285*6a54128fSAndroid Build Coastguard Worker 	names[2] = 0;
1286*6a54128fSAndroid Build Coastguard Worker 
1287*6a54128fSAndroid Build Coastguard Worker 	if (profile_iterator_create(prof, names,
1288*6a54128fSAndroid Build Coastguard Worker 				    PROFILE_ITER_LIST_SECTION |
1289*6a54128fSAndroid Build Coastguard Worker 				    PROFILE_ITER_RELATIONS_ONLY, &state))
1290*6a54128fSAndroid Build Coastguard Worker 		return 0;
1291*6a54128fSAndroid Build Coastguard Worker 
1292*6a54128fSAndroid Build Coastguard Worker 	if ((profile_iterator(&state, &name, 0) == 0) && name) {
1293*6a54128fSAndroid Build Coastguard Worker 		free(name);
1294*6a54128fSAndroid Build Coastguard Worker 		ret = 1;
1295*6a54128fSAndroid Build Coastguard Worker 	}
1296*6a54128fSAndroid Build Coastguard Worker 
1297*6a54128fSAndroid Build Coastguard Worker 	profile_iterator_free(&state);
1298*6a54128fSAndroid Build Coastguard Worker 	return ret;
1299*6a54128fSAndroid Build Coastguard Worker }
1300*6a54128fSAndroid Build Coastguard Worker 
parse_fs_type(const char * fs_type,const char * usage_types,struct ext2_super_block * sb,blk64_t fs_blocks_count,char * progname)1301*6a54128fSAndroid Build Coastguard Worker static char **parse_fs_type(const char *fs_type,
1302*6a54128fSAndroid Build Coastguard Worker 			    const char *usage_types,
1303*6a54128fSAndroid Build Coastguard Worker 			    struct ext2_super_block *sb,
1304*6a54128fSAndroid Build Coastguard Worker 			    blk64_t fs_blocks_count,
1305*6a54128fSAndroid Build Coastguard Worker 			    char *progname)
1306*6a54128fSAndroid Build Coastguard Worker {
1307*6a54128fSAndroid Build Coastguard Worker 	const char	*ext_type = 0;
1308*6a54128fSAndroid Build Coastguard Worker 	char		*parse_str;
1309*6a54128fSAndroid Build Coastguard Worker 	char		*profile_type = 0;
1310*6a54128fSAndroid Build Coastguard Worker 	char		*cp, *t;
1311*6a54128fSAndroid Build Coastguard Worker 	const char	*size_type;
1312*6a54128fSAndroid Build Coastguard Worker 	struct str_list	list;
1313*6a54128fSAndroid Build Coastguard Worker 	unsigned long long meg;
1314*6a54128fSAndroid Build Coastguard Worker 	int		is_hurd = for_hurd(creator_os);
1315*6a54128fSAndroid Build Coastguard Worker 
1316*6a54128fSAndroid Build Coastguard Worker 	if (init_list(&list))
1317*6a54128fSAndroid Build Coastguard Worker 		return 0;
1318*6a54128fSAndroid Build Coastguard Worker 
1319*6a54128fSAndroid Build Coastguard Worker 	if (fs_type)
1320*6a54128fSAndroid Build Coastguard Worker 		ext_type = fs_type;
1321*6a54128fSAndroid Build Coastguard Worker 	else if (is_hurd)
1322*6a54128fSAndroid Build Coastguard Worker 		ext_type = "ext2";
1323*6a54128fSAndroid Build Coastguard Worker 	else if (!strcmp(program_name, "mke3fs"))
1324*6a54128fSAndroid Build Coastguard Worker 		ext_type = "ext3";
1325*6a54128fSAndroid Build Coastguard Worker 	else if (!strcmp(program_name, "mke4fs"))
1326*6a54128fSAndroid Build Coastguard Worker 		ext_type = "ext4";
1327*6a54128fSAndroid Build Coastguard Worker 	else if (progname) {
1328*6a54128fSAndroid Build Coastguard Worker 		ext_type = strrchr(progname, '/');
1329*6a54128fSAndroid Build Coastguard Worker 		if (ext_type)
1330*6a54128fSAndroid Build Coastguard Worker 			ext_type++;
1331*6a54128fSAndroid Build Coastguard Worker 		else
1332*6a54128fSAndroid Build Coastguard Worker 			ext_type = progname;
1333*6a54128fSAndroid Build Coastguard Worker 
1334*6a54128fSAndroid Build Coastguard Worker 		if (!strncmp(ext_type, "mkfs.", 5)) {
1335*6a54128fSAndroid Build Coastguard Worker 			ext_type += 5;
1336*6a54128fSAndroid Build Coastguard Worker 			if (ext_type[0] == 0)
1337*6a54128fSAndroid Build Coastguard Worker 				ext_type = 0;
1338*6a54128fSAndroid Build Coastguard Worker 		} else
1339*6a54128fSAndroid Build Coastguard Worker 			ext_type = 0;
1340*6a54128fSAndroid Build Coastguard Worker 	}
1341*6a54128fSAndroid Build Coastguard Worker 
1342*6a54128fSAndroid Build Coastguard Worker 	if (!ext_type) {
1343*6a54128fSAndroid Build Coastguard Worker 		profile_get_string(profile, "defaults", "fs_type", 0,
1344*6a54128fSAndroid Build Coastguard Worker 				   "ext2", &profile_type);
1345*6a54128fSAndroid Build Coastguard Worker 		ext_type = profile_type;
1346*6a54128fSAndroid Build Coastguard Worker 		if (!strcmp(ext_type, "ext2") && (journal_size != 0))
1347*6a54128fSAndroid Build Coastguard Worker 			ext_type = "ext3";
1348*6a54128fSAndroid Build Coastguard Worker 	}
1349*6a54128fSAndroid Build Coastguard Worker 
1350*6a54128fSAndroid Build Coastguard Worker 
1351*6a54128fSAndroid Build Coastguard Worker 	if (!profile_has_subsection(profile, "fs_types", ext_type) &&
1352*6a54128fSAndroid Build Coastguard Worker 	    strcmp(ext_type, "ext2")) {
1353*6a54128fSAndroid Build Coastguard Worker 		printf(_("\nYour mke2fs.conf file does not define the "
1354*6a54128fSAndroid Build Coastguard Worker 			 "%s filesystem type.\n"), ext_type);
1355*6a54128fSAndroid Build Coastguard Worker 		if (!strcmp(ext_type, "ext3") || !strcmp(ext_type, "ext4") ||
1356*6a54128fSAndroid Build Coastguard Worker 		    !strcmp(ext_type, "ext4dev")) {
1357*6a54128fSAndroid Build Coastguard Worker 			printf("%s", _("You probably need to install an "
1358*6a54128fSAndroid Build Coastguard Worker 				       "updated mke2fs.conf file.\n\n"));
1359*6a54128fSAndroid Build Coastguard Worker 		}
1360*6a54128fSAndroid Build Coastguard Worker 		if (!force) {
1361*6a54128fSAndroid Build Coastguard Worker 			printf("%s", _("Aborting...\n"));
1362*6a54128fSAndroid Build Coastguard Worker 			exit(1);
1363*6a54128fSAndroid Build Coastguard Worker 		}
1364*6a54128fSAndroid Build Coastguard Worker 	}
1365*6a54128fSAndroid Build Coastguard Worker 
1366*6a54128fSAndroid Build Coastguard Worker 	meg = (1024 * 1024) / EXT2_BLOCK_SIZE(sb);
1367*6a54128fSAndroid Build Coastguard Worker 	if (fs_blocks_count < 3 * meg)
1368*6a54128fSAndroid Build Coastguard Worker 		size_type = "floppy";
1369*6a54128fSAndroid Build Coastguard Worker 	else if (fs_blocks_count < 512 * meg)
1370*6a54128fSAndroid Build Coastguard Worker 		size_type = "small";
1371*6a54128fSAndroid Build Coastguard Worker 	else if (fs_blocks_count < 4 * 1024 * 1024 * meg)
1372*6a54128fSAndroid Build Coastguard Worker 		size_type = "default";
1373*6a54128fSAndroid Build Coastguard Worker 	else if (fs_blocks_count < 16 * 1024 * 1024 * meg)
1374*6a54128fSAndroid Build Coastguard Worker 		size_type = "big";
1375*6a54128fSAndroid Build Coastguard Worker 	else
1376*6a54128fSAndroid Build Coastguard Worker 		size_type = "huge";
1377*6a54128fSAndroid Build Coastguard Worker 
1378*6a54128fSAndroid Build Coastguard Worker 	if (!usage_types)
1379*6a54128fSAndroid Build Coastguard Worker 		usage_types = size_type;
1380*6a54128fSAndroid Build Coastguard Worker 
1381*6a54128fSAndroid Build Coastguard Worker 	parse_str = malloc(strlen(usage_types)+1);
1382*6a54128fSAndroid Build Coastguard Worker 	if (!parse_str) {
1383*6a54128fSAndroid Build Coastguard Worker 		free(profile_type);
1384*6a54128fSAndroid Build Coastguard Worker 		free(list.list);
1385*6a54128fSAndroid Build Coastguard Worker 		return 0;
1386*6a54128fSAndroid Build Coastguard Worker 	}
1387*6a54128fSAndroid Build Coastguard Worker 	strcpy(parse_str, usage_types);
1388*6a54128fSAndroid Build Coastguard Worker 
1389*6a54128fSAndroid Build Coastguard Worker 	if (ext_type)
1390*6a54128fSAndroid Build Coastguard Worker 		push_string(&list, ext_type);
1391*6a54128fSAndroid Build Coastguard Worker 	cp = parse_str;
1392*6a54128fSAndroid Build Coastguard Worker 	while (1) {
1393*6a54128fSAndroid Build Coastguard Worker 		t = strchr(cp, ',');
1394*6a54128fSAndroid Build Coastguard Worker 		if (t)
1395*6a54128fSAndroid Build Coastguard Worker 			*t = '\0';
1396*6a54128fSAndroid Build Coastguard Worker 
1397*6a54128fSAndroid Build Coastguard Worker 		if (*cp) {
1398*6a54128fSAndroid Build Coastguard Worker 			if (profile_has_subsection(profile, "fs_types", cp))
1399*6a54128fSAndroid Build Coastguard Worker 				push_string(&list, cp);
1400*6a54128fSAndroid Build Coastguard Worker 			else if (strcmp(cp, "default") != 0)
1401*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr,
1402*6a54128fSAndroid Build Coastguard Worker 					_("\nWarning: the fs_type %s is not "
1403*6a54128fSAndroid Build Coastguard Worker 					  "defined in mke2fs.conf\n\n"),
1404*6a54128fSAndroid Build Coastguard Worker 					cp);
1405*6a54128fSAndroid Build Coastguard Worker 		}
1406*6a54128fSAndroid Build Coastguard Worker 		if (t)
1407*6a54128fSAndroid Build Coastguard Worker 			cp = t+1;
1408*6a54128fSAndroid Build Coastguard Worker 		else
1409*6a54128fSAndroid Build Coastguard Worker 			break;
1410*6a54128fSAndroid Build Coastguard Worker 	}
1411*6a54128fSAndroid Build Coastguard Worker 	free(parse_str);
1412*6a54128fSAndroid Build Coastguard Worker 	free(profile_type);
1413*6a54128fSAndroid Build Coastguard Worker 	if (is_hurd)
1414*6a54128fSAndroid Build Coastguard Worker 		push_string(&list, "hurd");
1415*6a54128fSAndroid Build Coastguard Worker 	return (list.list);
1416*6a54128fSAndroid Build Coastguard Worker }
1417*6a54128fSAndroid Build Coastguard Worker 
get_string_from_profile(char ** types,const char * opt,const char * def_val)1418*6a54128fSAndroid Build Coastguard Worker char *get_string_from_profile(char **types, const char *opt,
1419*6a54128fSAndroid Build Coastguard Worker 				     const char *def_val)
1420*6a54128fSAndroid Build Coastguard Worker {
1421*6a54128fSAndroid Build Coastguard Worker 	char *ret = 0;
1422*6a54128fSAndroid Build Coastguard Worker 	int i;
1423*6a54128fSAndroid Build Coastguard Worker 
1424*6a54128fSAndroid Build Coastguard Worker 	for (i=0; types[i]; i++);
1425*6a54128fSAndroid Build Coastguard Worker 	for (i-=1; i >=0 ; i--) {
1426*6a54128fSAndroid Build Coastguard Worker 		profile_get_string(profile, "fs_types", types[i],
1427*6a54128fSAndroid Build Coastguard Worker 				   opt, 0, &ret);
1428*6a54128fSAndroid Build Coastguard Worker 		if (ret)
1429*6a54128fSAndroid Build Coastguard Worker 			return ret;
1430*6a54128fSAndroid Build Coastguard Worker 	}
1431*6a54128fSAndroid Build Coastguard Worker 	profile_get_string(profile, "defaults", opt, 0, def_val, &ret);
1432*6a54128fSAndroid Build Coastguard Worker 	return (ret);
1433*6a54128fSAndroid Build Coastguard Worker }
1434*6a54128fSAndroid Build Coastguard Worker 
get_int_from_profile(char ** types,const char * opt,int def_val)1435*6a54128fSAndroid Build Coastguard Worker int get_int_from_profile(char **types, const char *opt, int def_val)
1436*6a54128fSAndroid Build Coastguard Worker {
1437*6a54128fSAndroid Build Coastguard Worker 	int ret;
1438*6a54128fSAndroid Build Coastguard Worker 	char **cpp;
1439*6a54128fSAndroid Build Coastguard Worker 
1440*6a54128fSAndroid Build Coastguard Worker 	profile_get_integer(profile, "defaults", opt, 0, def_val, &ret);
1441*6a54128fSAndroid Build Coastguard Worker 	for (cpp = types; *cpp; cpp++)
1442*6a54128fSAndroid Build Coastguard Worker 		profile_get_integer(profile, "fs_types", *cpp, opt, ret, &ret);
1443*6a54128fSAndroid Build Coastguard Worker 	return ret;
1444*6a54128fSAndroid Build Coastguard Worker }
1445*6a54128fSAndroid Build Coastguard Worker 
get_uint_from_profile(char ** types,const char * opt,unsigned int def_val)1446*6a54128fSAndroid Build Coastguard Worker static unsigned int get_uint_from_profile(char **types, const char *opt,
1447*6a54128fSAndroid Build Coastguard Worker 					unsigned int def_val)
1448*6a54128fSAndroid Build Coastguard Worker {
1449*6a54128fSAndroid Build Coastguard Worker 	unsigned int ret;
1450*6a54128fSAndroid Build Coastguard Worker 	char **cpp;
1451*6a54128fSAndroid Build Coastguard Worker 
1452*6a54128fSAndroid Build Coastguard Worker 	profile_get_uint(profile, "defaults", opt, 0, def_val, &ret);
1453*6a54128fSAndroid Build Coastguard Worker 	for (cpp = types; *cpp; cpp++)
1454*6a54128fSAndroid Build Coastguard Worker 		profile_get_uint(profile, "fs_types", *cpp, opt, ret, &ret);
1455*6a54128fSAndroid Build Coastguard Worker 	return ret;
1456*6a54128fSAndroid Build Coastguard Worker }
1457*6a54128fSAndroid Build Coastguard Worker 
get_double_from_profile(char ** types,const char * opt,double def_val)1458*6a54128fSAndroid Build Coastguard Worker static double get_double_from_profile(char **types, const char *opt,
1459*6a54128fSAndroid Build Coastguard Worker 				      double def_val)
1460*6a54128fSAndroid Build Coastguard Worker {
1461*6a54128fSAndroid Build Coastguard Worker 	double ret;
1462*6a54128fSAndroid Build Coastguard Worker 	char **cpp;
1463*6a54128fSAndroid Build Coastguard Worker 
1464*6a54128fSAndroid Build Coastguard Worker 	profile_get_double(profile, "defaults", opt, 0, def_val, &ret);
1465*6a54128fSAndroid Build Coastguard Worker 	for (cpp = types; *cpp; cpp++)
1466*6a54128fSAndroid Build Coastguard Worker 		profile_get_double(profile, "fs_types", *cpp, opt, ret, &ret);
1467*6a54128fSAndroid Build Coastguard Worker 	return ret;
1468*6a54128fSAndroid Build Coastguard Worker }
1469*6a54128fSAndroid Build Coastguard Worker 
get_bool_from_profile(char ** types,const char * opt,int def_val)1470*6a54128fSAndroid Build Coastguard Worker int get_bool_from_profile(char **types, const char *opt, int def_val)
1471*6a54128fSAndroid Build Coastguard Worker {
1472*6a54128fSAndroid Build Coastguard Worker 	int ret;
1473*6a54128fSAndroid Build Coastguard Worker 	char **cpp;
1474*6a54128fSAndroid Build Coastguard Worker 
1475*6a54128fSAndroid Build Coastguard Worker 	profile_get_boolean(profile, "defaults", opt, 0, def_val, &ret);
1476*6a54128fSAndroid Build Coastguard Worker 	for (cpp = types; *cpp; cpp++)
1477*6a54128fSAndroid Build Coastguard Worker 		profile_get_boolean(profile, "fs_types", *cpp, opt, ret, &ret);
1478*6a54128fSAndroid Build Coastguard Worker 	return ret;
1479*6a54128fSAndroid Build Coastguard Worker }
1480*6a54128fSAndroid Build Coastguard Worker 
1481*6a54128fSAndroid Build Coastguard Worker extern const char *mke2fs_default_profile;
1482*6a54128fSAndroid Build Coastguard Worker static const char *default_files[] = { "<default>", 0 };
1483*6a54128fSAndroid Build Coastguard Worker 
1484*6a54128fSAndroid Build Coastguard Worker struct device_param {
1485*6a54128fSAndroid Build Coastguard Worker 	unsigned long min_io;		/* preferred minimum IO size */
1486*6a54128fSAndroid Build Coastguard Worker 	unsigned long opt_io;		/* optimal IO size */
1487*6a54128fSAndroid Build Coastguard Worker 	unsigned long alignment_offset;	/* alignment offset wrt physical block size */
1488*6a54128fSAndroid Build Coastguard Worker 	unsigned int dax:1;		/* supports dax? */
1489*6a54128fSAndroid Build Coastguard Worker };
1490*6a54128fSAndroid Build Coastguard Worker 
1491*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_BLKID_PROBE_GET_TOPOLOGY
1492*6a54128fSAndroid Build Coastguard Worker /*
1493*6a54128fSAndroid Build Coastguard Worker  * Sets the geometry of a device (stripe/stride), and returns the
1494*6a54128fSAndroid Build Coastguard Worker  * device's alignment offset, if any, or a negative error.
1495*6a54128fSAndroid Build Coastguard Worker  */
get_device_geometry(const char * file,unsigned int blocksize,unsigned int psector_size,struct device_param * dev_param)1496*6a54128fSAndroid Build Coastguard Worker static int get_device_geometry(const char *file,
1497*6a54128fSAndroid Build Coastguard Worker 			       unsigned int blocksize,
1498*6a54128fSAndroid Build Coastguard Worker 			       unsigned int psector_size,
1499*6a54128fSAndroid Build Coastguard Worker 			       struct device_param *dev_param)
1500*6a54128fSAndroid Build Coastguard Worker {
1501*6a54128fSAndroid Build Coastguard Worker 	int rc = -1;
1502*6a54128fSAndroid Build Coastguard Worker 	blkid_probe pr;
1503*6a54128fSAndroid Build Coastguard Worker 	blkid_topology tp;
1504*6a54128fSAndroid Build Coastguard Worker 	struct stat statbuf;
1505*6a54128fSAndroid Build Coastguard Worker 
1506*6a54128fSAndroid Build Coastguard Worker 	memset(dev_param, 0, sizeof(*dev_param));
1507*6a54128fSAndroid Build Coastguard Worker 
1508*6a54128fSAndroid Build Coastguard Worker 	/* Nothing to do for a regular file */
1509*6a54128fSAndroid Build Coastguard Worker 	if (!stat(file, &statbuf) && S_ISREG(statbuf.st_mode))
1510*6a54128fSAndroid Build Coastguard Worker 		return 0;
1511*6a54128fSAndroid Build Coastguard Worker 
1512*6a54128fSAndroid Build Coastguard Worker 	pr = blkid_new_probe_from_filename(file);
1513*6a54128fSAndroid Build Coastguard Worker 	if (!pr)
1514*6a54128fSAndroid Build Coastguard Worker 		goto out;
1515*6a54128fSAndroid Build Coastguard Worker 
1516*6a54128fSAndroid Build Coastguard Worker 	tp = blkid_probe_get_topology(pr);
1517*6a54128fSAndroid Build Coastguard Worker 	if (!tp)
1518*6a54128fSAndroid Build Coastguard Worker 		goto out;
1519*6a54128fSAndroid Build Coastguard Worker 
1520*6a54128fSAndroid Build Coastguard Worker 	dev_param->min_io = blkid_topology_get_minimum_io_size(tp);
1521*6a54128fSAndroid Build Coastguard Worker 	dev_param->opt_io = blkid_topology_get_optimal_io_size(tp);
1522*6a54128fSAndroid Build Coastguard Worker 	if ((dev_param->min_io == 0) && (psector_size > blocksize))
1523*6a54128fSAndroid Build Coastguard Worker 		dev_param->min_io = psector_size;
1524*6a54128fSAndroid Build Coastguard Worker 	if ((dev_param->opt_io == 0) && dev_param->min_io > 0)
1525*6a54128fSAndroid Build Coastguard Worker 		dev_param->opt_io = dev_param->min_io;
1526*6a54128fSAndroid Build Coastguard Worker 	if ((dev_param->opt_io == 0) && (psector_size > blocksize))
1527*6a54128fSAndroid Build Coastguard Worker 		dev_param->opt_io = psector_size;
1528*6a54128fSAndroid Build Coastguard Worker 
1529*6a54128fSAndroid Build Coastguard Worker 	dev_param->alignment_offset = blkid_topology_get_alignment_offset(tp);
1530*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_BLKID_TOPOLOGY_GET_DAX
1531*6a54128fSAndroid Build Coastguard Worker 	dev_param->dax = blkid_topology_get_dax(tp);
1532*6a54128fSAndroid Build Coastguard Worker #endif
1533*6a54128fSAndroid Build Coastguard Worker 	rc = 0;
1534*6a54128fSAndroid Build Coastguard Worker out:
1535*6a54128fSAndroid Build Coastguard Worker 	blkid_free_probe(pr);
1536*6a54128fSAndroid Build Coastguard Worker 	return rc;
1537*6a54128fSAndroid Build Coastguard Worker }
1538*6a54128fSAndroid Build Coastguard Worker #endif
1539*6a54128fSAndroid Build Coastguard Worker 
PRS(int argc,char * argv[])1540*6a54128fSAndroid Build Coastguard Worker static void PRS(int argc, char *argv[])
1541*6a54128fSAndroid Build Coastguard Worker {
1542*6a54128fSAndroid Build Coastguard Worker 	int		b, c, flags;
1543*6a54128fSAndroid Build Coastguard Worker 	int		cluster_size = 0;
1544*6a54128fSAndroid Build Coastguard Worker 	char 		*tmp, **cpp;
1545*6a54128fSAndroid Build Coastguard Worker 	int		explicit_fssize = 0;
1546*6a54128fSAndroid Build Coastguard Worker 	int		blocksize = 0;
1547*6a54128fSAndroid Build Coastguard Worker 	int		inode_ratio = 0;
1548*6a54128fSAndroid Build Coastguard Worker 	int		inode_size = 0;
1549*6a54128fSAndroid Build Coastguard Worker 	unsigned long	flex_bg_size = 0;
1550*6a54128fSAndroid Build Coastguard Worker 	double		reserved_ratio = -1.0;
1551*6a54128fSAndroid Build Coastguard Worker 	int		lsector_size = 0, psector_size = 0;
1552*6a54128fSAndroid Build Coastguard Worker 	int		show_version_only = 0, is_device = 0;
1553*6a54128fSAndroid Build Coastguard Worker 	unsigned long long num_inodes = 0; /* unsigned long long to catch too-large input */
1554*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
1555*6a54128fSAndroid Build Coastguard Worker 	char *		oldpath = getenv("PATH");
1556*6a54128fSAndroid Build Coastguard Worker 	char *		extended_opts = 0;
1557*6a54128fSAndroid Build Coastguard Worker 	char *		fs_type = 0;
1558*6a54128fSAndroid Build Coastguard Worker 	char *		usage_types = 0;
1559*6a54128fSAndroid Build Coastguard Worker 	/*
1560*6a54128fSAndroid Build Coastguard Worker 	 * NOTE: A few words about fs_blocks_count and blocksize:
1561*6a54128fSAndroid Build Coastguard Worker 	 *
1562*6a54128fSAndroid Build Coastguard Worker 	 * Initially, blocksize is set to zero, which implies 1024.
1563*6a54128fSAndroid Build Coastguard Worker 	 * If -b is specified, blocksize is updated to the user's value.
1564*6a54128fSAndroid Build Coastguard Worker 	 *
1565*6a54128fSAndroid Build Coastguard Worker 	 * Next, the device size or the user's "blocks" command line argument
1566*6a54128fSAndroid Build Coastguard Worker 	 * is used to set fs_blocks_count; the units are blocksize.
1567*6a54128fSAndroid Build Coastguard Worker 	 *
1568*6a54128fSAndroid Build Coastguard Worker 	 * Later, if blocksize hasn't been set and the profile specifies a
1569*6a54128fSAndroid Build Coastguard Worker 	 * blocksize, then blocksize is updated and fs_blocks_count is scaled
1570*6a54128fSAndroid Build Coastguard Worker 	 * appropriately.  Note the change in units!
1571*6a54128fSAndroid Build Coastguard Worker 	 *
1572*6a54128fSAndroid Build Coastguard Worker 	 * Finally, we complain about fs_blocks_count > 2^32 on a non-64bit fs.
1573*6a54128fSAndroid Build Coastguard Worker 	 */
1574*6a54128fSAndroid Build Coastguard Worker 	blk64_t		fs_blocks_count = 0;
1575*6a54128fSAndroid Build Coastguard Worker 	int		s_opt = -1, r_opt = -1;
1576*6a54128fSAndroid Build Coastguard Worker 	char		*fs_features = 0;
1577*6a54128fSAndroid Build Coastguard Worker 	int		fs_features_size = 0;
1578*6a54128fSAndroid Build Coastguard Worker 	int		use_bsize;
1579*6a54128fSAndroid Build Coastguard Worker 	char		*newpath;
1580*6a54128fSAndroid Build Coastguard Worker 	int		pathlen = sizeof(PATH_SET) + 1;
1581*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_BLKID_PROBE_GET_TOPOLOGY
1582*6a54128fSAndroid Build Coastguard Worker 	struct device_param dev_param;
1583*6a54128fSAndroid Build Coastguard Worker #endif
1584*6a54128fSAndroid Build Coastguard Worker 
1585*6a54128fSAndroid Build Coastguard Worker 	if (oldpath)
1586*6a54128fSAndroid Build Coastguard Worker 		pathlen += strlen(oldpath);
1587*6a54128fSAndroid Build Coastguard Worker 	newpath = malloc(pathlen);
1588*6a54128fSAndroid Build Coastguard Worker 	if (!newpath) {
1589*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, "%s",
1590*6a54128fSAndroid Build Coastguard Worker 			_("Couldn't allocate memory for new PATH.\n"));
1591*6a54128fSAndroid Build Coastguard Worker 		exit(1);
1592*6a54128fSAndroid Build Coastguard Worker 	}
1593*6a54128fSAndroid Build Coastguard Worker 	strcpy(newpath, PATH_SET);
1594*6a54128fSAndroid Build Coastguard Worker 
1595*6a54128fSAndroid Build Coastguard Worker 	/* Update our PATH to include /sbin  */
1596*6a54128fSAndroid Build Coastguard Worker 	if (oldpath) {
1597*6a54128fSAndroid Build Coastguard Worker 		strcat (newpath, ":");
1598*6a54128fSAndroid Build Coastguard Worker 		strcat (newpath, oldpath);
1599*6a54128fSAndroid Build Coastguard Worker 	}
1600*6a54128fSAndroid Build Coastguard Worker 	putenv (newpath);
1601*6a54128fSAndroid Build Coastguard Worker 
1602*6a54128fSAndroid Build Coastguard Worker 	/* Determine the system page size if possible */
1603*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_SYSCONF
1604*6a54128fSAndroid Build Coastguard Worker #if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
1605*6a54128fSAndroid Build Coastguard Worker #define _SC_PAGESIZE _SC_PAGE_SIZE
1606*6a54128fSAndroid Build Coastguard Worker #endif
1607*6a54128fSAndroid Build Coastguard Worker #ifdef _SC_PAGESIZE
1608*6a54128fSAndroid Build Coastguard Worker 	{
1609*6a54128fSAndroid Build Coastguard Worker 		long sysval = sysconf(_SC_PAGESIZE);
1610*6a54128fSAndroid Build Coastguard Worker 
1611*6a54128fSAndroid Build Coastguard Worker 		if (sysval > 0)
1612*6a54128fSAndroid Build Coastguard Worker 			sys_page_size = sysval;
1613*6a54128fSAndroid Build Coastguard Worker 	}
1614*6a54128fSAndroid Build Coastguard Worker #endif /* _SC_PAGESIZE */
1615*6a54128fSAndroid Build Coastguard Worker #endif /* HAVE_SYSCONF */
1616*6a54128fSAndroid Build Coastguard Worker 
1617*6a54128fSAndroid Build Coastguard Worker 	if ((tmp = getenv("MKE2FS_CONFIG")) != NULL)
1618*6a54128fSAndroid Build Coastguard Worker 		config_fn[0] = tmp;
1619*6a54128fSAndroid Build Coastguard Worker 	profile_set_syntax_err_cb(syntax_err_report);
1620*6a54128fSAndroid Build Coastguard Worker 	retval = profile_init(config_fn, &profile);
1621*6a54128fSAndroid Build Coastguard Worker 	if (retval == ENOENT) {
1622*6a54128fSAndroid Build Coastguard Worker 		retval = profile_init(default_files, &profile);
1623*6a54128fSAndroid Build Coastguard Worker 		if (retval)
1624*6a54128fSAndroid Build Coastguard Worker 			goto profile_error;
1625*6a54128fSAndroid Build Coastguard Worker 		retval = profile_set_default(profile, mke2fs_default_profile);
1626*6a54128fSAndroid Build Coastguard Worker 		if (retval)
1627*6a54128fSAndroid Build Coastguard Worker 			goto profile_error;
1628*6a54128fSAndroid Build Coastguard Worker 	} else if (retval) {
1629*6a54128fSAndroid Build Coastguard Worker profile_error:
1630*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("Couldn't init profile successfully"
1631*6a54128fSAndroid Build Coastguard Worker 				  " (error: %ld).\n"), retval);
1632*6a54128fSAndroid Build Coastguard Worker 		exit(1);
1633*6a54128fSAndroid Build Coastguard Worker 	}
1634*6a54128fSAndroid Build Coastguard Worker 
1635*6a54128fSAndroid Build Coastguard Worker 	setbuf(stdout, NULL);
1636*6a54128fSAndroid Build Coastguard Worker 	setbuf(stderr, NULL);
1637*6a54128fSAndroid Build Coastguard Worker 	add_error_table(&et_ext2_error_table);
1638*6a54128fSAndroid Build Coastguard Worker 	add_error_table(&et_prof_error_table);
1639*6a54128fSAndroid Build Coastguard Worker 	memset(&fs_param, 0, sizeof(struct ext2_super_block));
1640*6a54128fSAndroid Build Coastguard Worker 	fs_param.s_rev_level = 1;  /* Create revision 1 filesystems now */
1641*6a54128fSAndroid Build Coastguard Worker 
1642*6a54128fSAndroid Build Coastguard Worker 	if (is_before_linux_ver(2, 2, 0))
1643*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_rev_level = 0;
1644*6a54128fSAndroid Build Coastguard Worker 
1645*6a54128fSAndroid Build Coastguard Worker 	if (argc && *argv) {
1646*6a54128fSAndroid Build Coastguard Worker 		program_name = get_progname(*argv);
1647*6a54128fSAndroid Build Coastguard Worker 
1648*6a54128fSAndroid Build Coastguard Worker 		/* If called as mkfs.ext3, create a journal inode */
1649*6a54128fSAndroid Build Coastguard Worker 		if (!strcmp(program_name, "mkfs.ext3") ||
1650*6a54128fSAndroid Build Coastguard Worker 		    !strcmp(program_name, "mke3fs"))
1651*6a54128fSAndroid Build Coastguard Worker 			journal_size = -1;
1652*6a54128fSAndroid Build Coastguard Worker 	}
1653*6a54128fSAndroid Build Coastguard Worker 
1654*6a54128fSAndroid Build Coastguard Worker 	while ((c = getopt (argc, argv,
1655*6a54128fSAndroid Build Coastguard Worker 		    "b:cd:e:g:i:jl:m:no:qr:s:t:vC:DE:FG:I:J:KL:M:N:O:R:ST:U:Vz:")) != EOF) {
1656*6a54128fSAndroid Build Coastguard Worker 		switch (c) {
1657*6a54128fSAndroid Build Coastguard Worker 		case 'b':
1658*6a54128fSAndroid Build Coastguard Worker 			blocksize = parse_num_blocks2(optarg, -1);
1659*6a54128fSAndroid Build Coastguard Worker 			b = (blocksize > 0) ? blocksize : -blocksize;
1660*6a54128fSAndroid Build Coastguard Worker 			if (b < EXT2_MIN_BLOCK_SIZE ||
1661*6a54128fSAndroid Build Coastguard Worker 			    b > EXT2_MAX_BLOCK_SIZE) {
1662*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1663*6a54128fSAndroid Build Coastguard Worker 					_("invalid block size - %s"), optarg);
1664*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1665*6a54128fSAndroid Build Coastguard Worker 			}
1666*6a54128fSAndroid Build Coastguard Worker 			if (blocksize > 4096)
1667*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr, _("Warning: blocksize %d not "
1668*6a54128fSAndroid Build Coastguard Worker 						  "usable on most systems.\n"),
1669*6a54128fSAndroid Build Coastguard Worker 					blocksize);
1670*6a54128fSAndroid Build Coastguard Worker 			if (blocksize > 0)
1671*6a54128fSAndroid Build Coastguard Worker 				fs_param.s_log_block_size =
1672*6a54128fSAndroid Build Coastguard Worker 					int_log2(blocksize >>
1673*6a54128fSAndroid Build Coastguard Worker 						 EXT2_MIN_BLOCK_LOG_SIZE);
1674*6a54128fSAndroid Build Coastguard Worker 			break;
1675*6a54128fSAndroid Build Coastguard Worker 		case 'c':	/* Check for bad blocks */
1676*6a54128fSAndroid Build Coastguard Worker 			cflag++;
1677*6a54128fSAndroid Build Coastguard Worker 			break;
1678*6a54128fSAndroid Build Coastguard Worker 		case 'C':
1679*6a54128fSAndroid Build Coastguard Worker 			cluster_size = parse_num_blocks2(optarg, -1);
1680*6a54128fSAndroid Build Coastguard Worker 			if (cluster_size <= EXT2_MIN_CLUSTER_SIZE ||
1681*6a54128fSAndroid Build Coastguard Worker 			    cluster_size > EXT2_MAX_CLUSTER_SIZE) {
1682*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1683*6a54128fSAndroid Build Coastguard Worker 					_("invalid cluster size - %s"),
1684*6a54128fSAndroid Build Coastguard Worker 					optarg);
1685*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1686*6a54128fSAndroid Build Coastguard Worker 			}
1687*6a54128fSAndroid Build Coastguard Worker 			break;
1688*6a54128fSAndroid Build Coastguard Worker 		case 'd':
1689*6a54128fSAndroid Build Coastguard Worker 			src_root_dir = optarg;
1690*6a54128fSAndroid Build Coastguard Worker 			break;
1691*6a54128fSAndroid Build Coastguard Worker 		case 'D':
1692*6a54128fSAndroid Build Coastguard Worker 			direct_io = 1;
1693*6a54128fSAndroid Build Coastguard Worker 			break;
1694*6a54128fSAndroid Build Coastguard Worker 		case 'R':
1695*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0, "%s",
1696*6a54128fSAndroid Build Coastguard Worker 				_("'-R' is deprecated, use '-E' instead"));
1697*6a54128fSAndroid Build Coastguard Worker 			/* fallthrough */
1698*6a54128fSAndroid Build Coastguard Worker 		case 'E':
1699*6a54128fSAndroid Build Coastguard Worker 			extended_opts = optarg;
1700*6a54128fSAndroid Build Coastguard Worker 			break;
1701*6a54128fSAndroid Build Coastguard Worker 		case 'e':
1702*6a54128fSAndroid Build Coastguard Worker 			if (strcmp(optarg, "continue") == 0)
1703*6a54128fSAndroid Build Coastguard Worker 				errors_behavior = EXT2_ERRORS_CONTINUE;
1704*6a54128fSAndroid Build Coastguard Worker 			else if (strcmp(optarg, "remount-ro") == 0)
1705*6a54128fSAndroid Build Coastguard Worker 				errors_behavior = EXT2_ERRORS_RO;
1706*6a54128fSAndroid Build Coastguard Worker 			else if (strcmp(optarg, "panic") == 0)
1707*6a54128fSAndroid Build Coastguard Worker 				errors_behavior = EXT2_ERRORS_PANIC;
1708*6a54128fSAndroid Build Coastguard Worker 			else {
1709*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1710*6a54128fSAndroid Build Coastguard Worker 					_("bad error behavior - %s"),
1711*6a54128fSAndroid Build Coastguard Worker 					optarg);
1712*6a54128fSAndroid Build Coastguard Worker 				usage();
1713*6a54128fSAndroid Build Coastguard Worker 			}
1714*6a54128fSAndroid Build Coastguard Worker 			break;
1715*6a54128fSAndroid Build Coastguard Worker 		case 'F':
1716*6a54128fSAndroid Build Coastguard Worker 			force++;
1717*6a54128fSAndroid Build Coastguard Worker 			break;
1718*6a54128fSAndroid Build Coastguard Worker 		case 'g':
1719*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
1720*6a54128fSAndroid Build Coastguard Worker 			if (*tmp) {
1721*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0, "%s",
1722*6a54128fSAndroid Build Coastguard Worker 				_("Illegal number for blocks per group"));
1723*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1724*6a54128fSAndroid Build Coastguard Worker 			}
1725*6a54128fSAndroid Build Coastguard Worker 			if ((fs_param.s_blocks_per_group % 8) != 0) {
1726*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0, "%s",
1727*6a54128fSAndroid Build Coastguard Worker 				_("blocks per group must be multiple of 8"));
1728*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1729*6a54128fSAndroid Build Coastguard Worker 			}
1730*6a54128fSAndroid Build Coastguard Worker 			break;
1731*6a54128fSAndroid Build Coastguard Worker 		case 'G':
1732*6a54128fSAndroid Build Coastguard Worker 			flex_bg_size = strtoul(optarg, &tmp, 0);
1733*6a54128fSAndroid Build Coastguard Worker 			if (*tmp) {
1734*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0, "%s",
1735*6a54128fSAndroid Build Coastguard Worker 					_("Illegal number for flex_bg size"));
1736*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1737*6a54128fSAndroid Build Coastguard Worker 			}
1738*6a54128fSAndroid Build Coastguard Worker 			if (flex_bg_size < 1 ||
1739*6a54128fSAndroid Build Coastguard Worker 			    (flex_bg_size & (flex_bg_size-1)) != 0) {
1740*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0, "%s",
1741*6a54128fSAndroid Build Coastguard Worker 					_("flex_bg size must be a power of 2"));
1742*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1743*6a54128fSAndroid Build Coastguard Worker 			}
1744*6a54128fSAndroid Build Coastguard Worker 			if (flex_bg_size > MAX_32_NUM) {
1745*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1746*6a54128fSAndroid Build Coastguard Worker 				_("flex_bg size (%lu) must be less than"
1747*6a54128fSAndroid Build Coastguard Worker 				" or equal to 2^31"), flex_bg_size);
1748*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1749*6a54128fSAndroid Build Coastguard Worker 			}
1750*6a54128fSAndroid Build Coastguard Worker 			break;
1751*6a54128fSAndroid Build Coastguard Worker 		case 'i':
1752*6a54128fSAndroid Build Coastguard Worker 			inode_ratio = parse_num_blocks(optarg, -1);
1753*6a54128fSAndroid Build Coastguard Worker 			if (inode_ratio < EXT2_MIN_BLOCK_SIZE ||
1754*6a54128fSAndroid Build Coastguard Worker 			    inode_ratio > EXT2_MAX_BLOCK_SIZE * 1024) {
1755*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1756*6a54128fSAndroid Build Coastguard Worker 					_("invalid inode ratio %s (min %d/max %d)"),
1757*6a54128fSAndroid Build Coastguard Worker 					optarg, EXT2_MIN_BLOCK_SIZE,
1758*6a54128fSAndroid Build Coastguard Worker 					EXT2_MAX_BLOCK_SIZE * 1024);
1759*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1760*6a54128fSAndroid Build Coastguard Worker 			}
1761*6a54128fSAndroid Build Coastguard Worker 			break;
1762*6a54128fSAndroid Build Coastguard Worker 		case 'I':
1763*6a54128fSAndroid Build Coastguard Worker 			inode_size = strtoul(optarg, &tmp, 0);
1764*6a54128fSAndroid Build Coastguard Worker 			if (*tmp) {
1765*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1766*6a54128fSAndroid Build Coastguard Worker 					_("invalid inode size - %s"), optarg);
1767*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1768*6a54128fSAndroid Build Coastguard Worker 			}
1769*6a54128fSAndroid Build Coastguard Worker 			break;
1770*6a54128fSAndroid Build Coastguard Worker 		case 'j':
1771*6a54128fSAndroid Build Coastguard Worker 			if (!journal_size)
1772*6a54128fSAndroid Build Coastguard Worker 				journal_size = -1;
1773*6a54128fSAndroid Build Coastguard Worker 			if (!journal_fc_size)
1774*6a54128fSAndroid Build Coastguard Worker 				journal_fc_size = -1;
1775*6a54128fSAndroid Build Coastguard Worker 			break;
1776*6a54128fSAndroid Build Coastguard Worker 		case 'J':
1777*6a54128fSAndroid Build Coastguard Worker 			parse_journal_opts(optarg);
1778*6a54128fSAndroid Build Coastguard Worker 			break;
1779*6a54128fSAndroid Build Coastguard Worker 		case 'K':
1780*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s",
1781*6a54128fSAndroid Build Coastguard Worker 				_("Warning: -K option is deprecated and "
1782*6a54128fSAndroid Build Coastguard Worker 				  "should not be used anymore. Use "
1783*6a54128fSAndroid Build Coastguard Worker 				  "\'-E nodiscard\' extended option "
1784*6a54128fSAndroid Build Coastguard Worker 				  "instead!\n"));
1785*6a54128fSAndroid Build Coastguard Worker 			discard = 0;
1786*6a54128fSAndroid Build Coastguard Worker 			break;
1787*6a54128fSAndroid Build Coastguard Worker 		case 'l':
1788*6a54128fSAndroid Build Coastguard Worker 			bad_blocks_filename = realloc(bad_blocks_filename,
1789*6a54128fSAndroid Build Coastguard Worker 						      strlen(optarg) + 1);
1790*6a54128fSAndroid Build Coastguard Worker 			if (!bad_blocks_filename) {
1791*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, ENOMEM, "%s",
1792*6a54128fSAndroid Build Coastguard Worker 					_("in malloc for bad_blocks_filename"));
1793*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1794*6a54128fSAndroid Build Coastguard Worker 			}
1795*6a54128fSAndroid Build Coastguard Worker 			strcpy(bad_blocks_filename, optarg);
1796*6a54128fSAndroid Build Coastguard Worker 			break;
1797*6a54128fSAndroid Build Coastguard Worker 		case 'L':
1798*6a54128fSAndroid Build Coastguard Worker 			volume_label = optarg;
1799*6a54128fSAndroid Build Coastguard Worker 			if (strlen(volume_label) > EXT2_LABEL_LEN) {
1800*6a54128fSAndroid Build Coastguard Worker 				volume_label[EXT2_LABEL_LEN] = '\0';
1801*6a54128fSAndroid Build Coastguard Worker 				fprintf(stderr, _("Warning: label too long; will be truncated to '%s'\n\n"),
1802*6a54128fSAndroid Build Coastguard Worker 					volume_label);
1803*6a54128fSAndroid Build Coastguard Worker 			}
1804*6a54128fSAndroid Build Coastguard Worker 			break;
1805*6a54128fSAndroid Build Coastguard Worker 		case 'm':
1806*6a54128fSAndroid Build Coastguard Worker 			reserved_ratio = strtod(optarg, &tmp);
1807*6a54128fSAndroid Build Coastguard Worker 			if ( *tmp || reserved_ratio > 50 ||
1808*6a54128fSAndroid Build Coastguard Worker 			     reserved_ratio < 0) {
1809*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1810*6a54128fSAndroid Build Coastguard Worker 					_("invalid reserved blocks percent - %s"),
1811*6a54128fSAndroid Build Coastguard Worker 					optarg);
1812*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1813*6a54128fSAndroid Build Coastguard Worker 			}
1814*6a54128fSAndroid Build Coastguard Worker 			break;
1815*6a54128fSAndroid Build Coastguard Worker 		case 'M':
1816*6a54128fSAndroid Build Coastguard Worker 			mount_dir = optarg;
1817*6a54128fSAndroid Build Coastguard Worker 			break;
1818*6a54128fSAndroid Build Coastguard Worker 		case 'n':
1819*6a54128fSAndroid Build Coastguard Worker 			noaction++;
1820*6a54128fSAndroid Build Coastguard Worker 			break;
1821*6a54128fSAndroid Build Coastguard Worker 		case 'N':
1822*6a54128fSAndroid Build Coastguard Worker 			num_inodes = strtoul(optarg, &tmp, 0);
1823*6a54128fSAndroid Build Coastguard Worker 			if (*tmp) {
1824*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1825*6a54128fSAndroid Build Coastguard Worker 					_("bad num inodes - %s"), optarg);
1826*6a54128fSAndroid Build Coastguard Worker 					exit(1);
1827*6a54128fSAndroid Build Coastguard Worker 			}
1828*6a54128fSAndroid Build Coastguard Worker 			break;
1829*6a54128fSAndroid Build Coastguard Worker 		case 'o':
1830*6a54128fSAndroid Build Coastguard Worker 			creator_os = optarg;
1831*6a54128fSAndroid Build Coastguard Worker 			break;
1832*6a54128fSAndroid Build Coastguard Worker 		case 'O':
1833*6a54128fSAndroid Build Coastguard Worker 			retval = ext2fs_resize_mem(fs_features_size,
1834*6a54128fSAndroid Build Coastguard Worker 				   fs_features_size + 1 + strlen(optarg),
1835*6a54128fSAndroid Build Coastguard Worker 						   &fs_features);
1836*6a54128fSAndroid Build Coastguard Worker 			if (retval) {
1837*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, retval,
1838*6a54128fSAndroid Build Coastguard Worker 				     _("while allocating fs_feature string"));
1839*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1840*6a54128fSAndroid Build Coastguard Worker 			}
1841*6a54128fSAndroid Build Coastguard Worker 			if (fs_features_size)
1842*6a54128fSAndroid Build Coastguard Worker 				strcat(fs_features, ",");
1843*6a54128fSAndroid Build Coastguard Worker 			else
1844*6a54128fSAndroid Build Coastguard Worker 				fs_features[0] = 0;
1845*6a54128fSAndroid Build Coastguard Worker 			strcat(fs_features, optarg);
1846*6a54128fSAndroid Build Coastguard Worker 			fs_features_size += 1 + strlen(optarg);
1847*6a54128fSAndroid Build Coastguard Worker 			break;
1848*6a54128fSAndroid Build Coastguard Worker 		case 'q':
1849*6a54128fSAndroid Build Coastguard Worker 			quiet = 1;
1850*6a54128fSAndroid Build Coastguard Worker 			break;
1851*6a54128fSAndroid Build Coastguard Worker 		case 'r':
1852*6a54128fSAndroid Build Coastguard Worker 			r_opt = strtoul(optarg, &tmp, 0);
1853*6a54128fSAndroid Build Coastguard Worker 			if (*tmp) {
1854*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
1855*6a54128fSAndroid Build Coastguard Worker 					_("bad revision level - %s"), optarg);
1856*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1857*6a54128fSAndroid Build Coastguard Worker 			}
1858*6a54128fSAndroid Build Coastguard Worker 			if (r_opt > EXT2_MAX_SUPP_REV) {
1859*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, EXT2_ET_REV_TOO_HIGH,
1860*6a54128fSAndroid Build Coastguard Worker 					_("while trying to create revision %d"), r_opt);
1861*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1862*6a54128fSAndroid Build Coastguard Worker 			}
1863*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_rev_level = r_opt;
1864*6a54128fSAndroid Build Coastguard Worker 			break;
1865*6a54128fSAndroid Build Coastguard Worker 		case 's':	/* deprecated */
1866*6a54128fSAndroid Build Coastguard Worker 			s_opt = atoi(optarg);
1867*6a54128fSAndroid Build Coastguard Worker 			break;
1868*6a54128fSAndroid Build Coastguard Worker 		case 'S':
1869*6a54128fSAndroid Build Coastguard Worker 			super_only = 1;
1870*6a54128fSAndroid Build Coastguard Worker 			break;
1871*6a54128fSAndroid Build Coastguard Worker 		case 't':
1872*6a54128fSAndroid Build Coastguard Worker 			if (fs_type) {
1873*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0, "%s",
1874*6a54128fSAndroid Build Coastguard Worker 				    _("The -t option may only be used once"));
1875*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1876*6a54128fSAndroid Build Coastguard Worker 			}
1877*6a54128fSAndroid Build Coastguard Worker 			fs_type = strdup(optarg);
1878*6a54128fSAndroid Build Coastguard Worker 			break;
1879*6a54128fSAndroid Build Coastguard Worker 		case 'T':
1880*6a54128fSAndroid Build Coastguard Worker 			if (usage_types) {
1881*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0, "%s",
1882*6a54128fSAndroid Build Coastguard Worker 				    _("The -T option may only be used once"));
1883*6a54128fSAndroid Build Coastguard Worker 				exit(1);
1884*6a54128fSAndroid Build Coastguard Worker 			}
1885*6a54128fSAndroid Build Coastguard Worker 			usage_types = strdup(optarg);
1886*6a54128fSAndroid Build Coastguard Worker 			break;
1887*6a54128fSAndroid Build Coastguard Worker 		case 'U':
1888*6a54128fSAndroid Build Coastguard Worker 			fs_uuid = optarg;
1889*6a54128fSAndroid Build Coastguard Worker 			break;
1890*6a54128fSAndroid Build Coastguard Worker 		case 'v':
1891*6a54128fSAndroid Build Coastguard Worker 			verbose = 1;
1892*6a54128fSAndroid Build Coastguard Worker 			break;
1893*6a54128fSAndroid Build Coastguard Worker 		case 'V':
1894*6a54128fSAndroid Build Coastguard Worker 			/* Print version number and exit */
1895*6a54128fSAndroid Build Coastguard Worker 			show_version_only++;
1896*6a54128fSAndroid Build Coastguard Worker 			break;
1897*6a54128fSAndroid Build Coastguard Worker 		case 'z':
1898*6a54128fSAndroid Build Coastguard Worker 			undo_file = optarg;
1899*6a54128fSAndroid Build Coastguard Worker 			break;
1900*6a54128fSAndroid Build Coastguard Worker 		default:
1901*6a54128fSAndroid Build Coastguard Worker 			usage();
1902*6a54128fSAndroid Build Coastguard Worker 		}
1903*6a54128fSAndroid Build Coastguard Worker 	}
1904*6a54128fSAndroid Build Coastguard Worker 	if ((optind == argc) && !show_version_only)
1905*6a54128fSAndroid Build Coastguard Worker 		usage();
1906*6a54128fSAndroid Build Coastguard Worker 	device_name = argv[optind++];
1907*6a54128fSAndroid Build Coastguard Worker 
1908*6a54128fSAndroid Build Coastguard Worker 	if (!quiet || show_version_only)
1909*6a54128fSAndroid Build Coastguard Worker 		fprintf (stderr, "mke2fs %s (%s)\n", E2FSPROGS_VERSION,
1910*6a54128fSAndroid Build Coastguard Worker 			 E2FSPROGS_DATE);
1911*6a54128fSAndroid Build Coastguard Worker 
1912*6a54128fSAndroid Build Coastguard Worker 	if (show_version_only) {
1913*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("\tUsing %s\n"),
1914*6a54128fSAndroid Build Coastguard Worker 			error_message(EXT2_ET_BASE));
1915*6a54128fSAndroid Build Coastguard Worker 		exit(0);
1916*6a54128fSAndroid Build Coastguard Worker 	}
1917*6a54128fSAndroid Build Coastguard Worker 
1918*6a54128fSAndroid Build Coastguard Worker 	/*
1919*6a54128fSAndroid Build Coastguard Worker 	 * If there's no blocksize specified and there is a journal
1920*6a54128fSAndroid Build Coastguard Worker 	 * device, use it to figure out the blocksize
1921*6a54128fSAndroid Build Coastguard Worker 	 */
1922*6a54128fSAndroid Build Coastguard Worker 	if (blocksize <= 0 && journal_device) {
1923*6a54128fSAndroid Build Coastguard Worker 		ext2_filsys	jfs;
1924*6a54128fSAndroid Build Coastguard Worker 		io_manager	io_ptr;
1925*6a54128fSAndroid Build Coastguard Worker 
1926*6a54128fSAndroid Build Coastguard Worker #ifdef CONFIG_TESTIO_DEBUG
1927*6a54128fSAndroid Build Coastguard Worker 		if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
1928*6a54128fSAndroid Build Coastguard Worker 			io_ptr = test_io_manager;
1929*6a54128fSAndroid Build Coastguard Worker 			test_io_backing_manager = default_io_manager;
1930*6a54128fSAndroid Build Coastguard Worker 		} else
1931*6a54128fSAndroid Build Coastguard Worker #endif
1932*6a54128fSAndroid Build Coastguard Worker 			io_ptr = default_io_manager;
1933*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_open(journal_device,
1934*6a54128fSAndroid Build Coastguard Worker 				     EXT2_FLAG_JOURNAL_DEV_OK, 0,
1935*6a54128fSAndroid Build Coastguard Worker 				     0, io_ptr, &jfs);
1936*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
1937*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, retval,
1938*6a54128fSAndroid Build Coastguard Worker 				_("while trying to open journal device %s\n"),
1939*6a54128fSAndroid Build Coastguard Worker 				journal_device);
1940*6a54128fSAndroid Build Coastguard Worker 			exit(1);
1941*6a54128fSAndroid Build Coastguard Worker 		}
1942*6a54128fSAndroid Build Coastguard Worker 		if ((blocksize < 0) && (jfs->blocksize < (unsigned) (-blocksize))) {
1943*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0,
1944*6a54128fSAndroid Build Coastguard Worker 				_("Journal dev blocksize (%d) smaller than "
1945*6a54128fSAndroid Build Coastguard Worker 				  "minimum blocksize %d\n"), jfs->blocksize,
1946*6a54128fSAndroid Build Coastguard Worker 				-blocksize);
1947*6a54128fSAndroid Build Coastguard Worker 			exit(1);
1948*6a54128fSAndroid Build Coastguard Worker 		}
1949*6a54128fSAndroid Build Coastguard Worker 		blocksize = jfs->blocksize;
1950*6a54128fSAndroid Build Coastguard Worker 		printf(_("Using journal device's blocksize: %d\n"), blocksize);
1951*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_log_block_size =
1952*6a54128fSAndroid Build Coastguard Worker 			int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1953*6a54128fSAndroid Build Coastguard Worker 		ext2fs_close_free(&jfs);
1954*6a54128fSAndroid Build Coastguard Worker 	}
1955*6a54128fSAndroid Build Coastguard Worker 
1956*6a54128fSAndroid Build Coastguard Worker 	if (optind < argc) {
1957*6a54128fSAndroid Build Coastguard Worker 		fs_blocks_count = parse_num_blocks2(argv[optind++],
1958*6a54128fSAndroid Build Coastguard Worker 						   fs_param.s_log_block_size);
1959*6a54128fSAndroid Build Coastguard Worker 		if (!fs_blocks_count) {
1960*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0,
1961*6a54128fSAndroid Build Coastguard Worker 				_("invalid blocks '%s' on device '%s'"),
1962*6a54128fSAndroid Build Coastguard Worker 				argv[optind - 1], device_name);
1963*6a54128fSAndroid Build Coastguard Worker 			exit(1);
1964*6a54128fSAndroid Build Coastguard Worker 		}
1965*6a54128fSAndroid Build Coastguard Worker 	}
1966*6a54128fSAndroid Build Coastguard Worker 	if (optind < argc)
1967*6a54128fSAndroid Build Coastguard Worker 		usage();
1968*6a54128fSAndroid Build Coastguard Worker 
1969*6a54128fSAndroid Build Coastguard Worker 	profile_get_integer(profile, "options", "sync_kludge", 0, 0,
1970*6a54128fSAndroid Build Coastguard Worker 			    &sync_kludge);
1971*6a54128fSAndroid Build Coastguard Worker 	tmp = getenv("MKE2FS_SYNC");
1972*6a54128fSAndroid Build Coastguard Worker 	if (tmp)
1973*6a54128fSAndroid Build Coastguard Worker 		sync_kludge = atoi(tmp);
1974*6a54128fSAndroid Build Coastguard Worker 
1975*6a54128fSAndroid Build Coastguard Worker 	profile_get_integer(profile, "options", "proceed_delay", 0, 0,
1976*6a54128fSAndroid Build Coastguard Worker 			    &proceed_delay);
1977*6a54128fSAndroid Build Coastguard Worker 
1978*6a54128fSAndroid Build Coastguard Worker 	if (fs_blocks_count)
1979*6a54128fSAndroid Build Coastguard Worker 		explicit_fssize = 1;
1980*6a54128fSAndroid Build Coastguard Worker 
1981*6a54128fSAndroid Build Coastguard Worker 	check_mount(device_name, force, _("filesystem"));
1982*6a54128fSAndroid Build Coastguard Worker 
1983*6a54128fSAndroid Build Coastguard Worker 	/* Determine the size of the device (if possible) */
1984*6a54128fSAndroid Build Coastguard Worker 	if (noaction && fs_blocks_count) {
1985*6a54128fSAndroid Build Coastguard Worker 		dev_size = fs_blocks_count;
1986*6a54128fSAndroid Build Coastguard Worker 		retval = 0;
1987*6a54128fSAndroid Build Coastguard Worker 	} else
1988*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_get_device_size2(device_name,
1989*6a54128fSAndroid Build Coastguard Worker 						 EXT2_BLOCK_SIZE(&fs_param),
1990*6a54128fSAndroid Build Coastguard Worker 						 &dev_size);
1991*6a54128fSAndroid Build Coastguard Worker 	if (retval == ENOENT) {
1992*6a54128fSAndroid Build Coastguard Worker 		int fd;
1993*6a54128fSAndroid Build Coastguard Worker 
1994*6a54128fSAndroid Build Coastguard Worker 		if (!explicit_fssize) {
1995*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr,
1996*6a54128fSAndroid Build Coastguard Worker 				_("The file %s does not exist and no "
1997*6a54128fSAndroid Build Coastguard Worker 				  "size was specified.\n"), device_name);
1998*6a54128fSAndroid Build Coastguard Worker 			exit(1);
1999*6a54128fSAndroid Build Coastguard Worker 		}
2000*6a54128fSAndroid Build Coastguard Worker 		fd = ext2fs_open_file(device_name,
2001*6a54128fSAndroid Build Coastguard Worker 				      O_CREAT | O_WRONLY, 0666);
2002*6a54128fSAndroid Build Coastguard Worker 		if (fd < 0) {
2003*6a54128fSAndroid Build Coastguard Worker 			retval = errno;
2004*6a54128fSAndroid Build Coastguard Worker 		} else {
2005*6a54128fSAndroid Build Coastguard Worker 			dev_size = 0;
2006*6a54128fSAndroid Build Coastguard Worker 			retval = 0;
2007*6a54128fSAndroid Build Coastguard Worker 			close(fd);
2008*6a54128fSAndroid Build Coastguard Worker 			printf(_("Creating regular file %s\n"), device_name);
2009*6a54128fSAndroid Build Coastguard Worker 		}
2010*6a54128fSAndroid Build Coastguard Worker 	}
2011*6a54128fSAndroid Build Coastguard Worker 	if (retval && (retval != EXT2_ET_UNIMPLEMENTED)) {
2012*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "%s",
2013*6a54128fSAndroid Build Coastguard Worker 			_("while trying to determine filesystem size"));
2014*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2015*6a54128fSAndroid Build Coastguard Worker 	}
2016*6a54128fSAndroid Build Coastguard Worker 	if (!fs_blocks_count) {
2017*6a54128fSAndroid Build Coastguard Worker 		if (retval == EXT2_ET_UNIMPLEMENTED) {
2018*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0, "%s",
2019*6a54128fSAndroid Build Coastguard Worker 				_("Couldn't determine device size; you "
2020*6a54128fSAndroid Build Coastguard Worker 				"must specify\nthe size of the "
2021*6a54128fSAndroid Build Coastguard Worker 				"filesystem\n"));
2022*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2023*6a54128fSAndroid Build Coastguard Worker 		} else {
2024*6a54128fSAndroid Build Coastguard Worker 			if (dev_size == 0) {
2025*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0, "%s",
2026*6a54128fSAndroid Build Coastguard Worker 				_("Device size reported to be zero.  "
2027*6a54128fSAndroid Build Coastguard Worker 				  "Invalid partition specified, or\n\t"
2028*6a54128fSAndroid Build Coastguard Worker 				  "partition table wasn't reread "
2029*6a54128fSAndroid Build Coastguard Worker 				  "after running fdisk, due to\n\t"
2030*6a54128fSAndroid Build Coastguard Worker 				  "a modified partition being busy "
2031*6a54128fSAndroid Build Coastguard Worker 				  "and in use.  You may need to reboot\n\t"
2032*6a54128fSAndroid Build Coastguard Worker 				  "to re-read your partition table.\n"
2033*6a54128fSAndroid Build Coastguard Worker 				  ));
2034*6a54128fSAndroid Build Coastguard Worker 				exit(1);
2035*6a54128fSAndroid Build Coastguard Worker 			}
2036*6a54128fSAndroid Build Coastguard Worker 			fs_blocks_count = dev_size;
2037*6a54128fSAndroid Build Coastguard Worker 			if (sys_page_size > EXT2_BLOCK_SIZE(&fs_param))
2038*6a54128fSAndroid Build Coastguard Worker 				fs_blocks_count &= ~((blk64_t) ((sys_page_size /
2039*6a54128fSAndroid Build Coastguard Worker 					     EXT2_BLOCK_SIZE(&fs_param))-1));
2040*6a54128fSAndroid Build Coastguard Worker 		}
2041*6a54128fSAndroid Build Coastguard Worker 	} else if (!force && is_device && (fs_blocks_count > dev_size)) {
2042*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0, "%s",
2043*6a54128fSAndroid Build Coastguard Worker 			_("Filesystem larger than apparent device size."));
2044*6a54128fSAndroid Build Coastguard Worker 		proceed_question(proceed_delay);
2045*6a54128fSAndroid Build Coastguard Worker 	}
2046*6a54128fSAndroid Build Coastguard Worker 
2047*6a54128fSAndroid Build Coastguard Worker 	if (!fs_type)
2048*6a54128fSAndroid Build Coastguard Worker 		profile_get_string(profile, "devices", device_name,
2049*6a54128fSAndroid Build Coastguard Worker 				   "fs_type", 0, &fs_type);
2050*6a54128fSAndroid Build Coastguard Worker 	if (!usage_types)
2051*6a54128fSAndroid Build Coastguard Worker 		profile_get_string(profile, "devices", device_name,
2052*6a54128fSAndroid Build Coastguard Worker 				   "usage_types", 0, &usage_types);
2053*6a54128fSAndroid Build Coastguard Worker 	if (!creator_os)
2054*6a54128fSAndroid Build Coastguard Worker 		profile_get_string(profile, "defaults", "creator_os", 0,
2055*6a54128fSAndroid Build Coastguard Worker 				   0, &creator_os);
2056*6a54128fSAndroid Build Coastguard Worker 
2057*6a54128fSAndroid Build Coastguard Worker 	/*
2058*6a54128fSAndroid Build Coastguard Worker 	 * We have the file system (or device) size, so we can now
2059*6a54128fSAndroid Build Coastguard Worker 	 * determine the appropriate file system types so the fs can
2060*6a54128fSAndroid Build Coastguard Worker 	 * be appropriately configured.
2061*6a54128fSAndroid Build Coastguard Worker 	 */
2062*6a54128fSAndroid Build Coastguard Worker 	fs_types = parse_fs_type(fs_type, usage_types, &fs_param,
2063*6a54128fSAndroid Build Coastguard Worker 				 fs_blocks_count ? fs_blocks_count : dev_size,
2064*6a54128fSAndroid Build Coastguard Worker 				 argv[0]);
2065*6a54128fSAndroid Build Coastguard Worker 	if (!fs_types) {
2066*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, "%s", _("Failed to parse fs types list\n"));
2067*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2068*6a54128fSAndroid Build Coastguard Worker 	}
2069*6a54128fSAndroid Build Coastguard Worker 
2070*6a54128fSAndroid Build Coastguard Worker 	/* Figure out what features should be enabled */
2071*6a54128fSAndroid Build Coastguard Worker 
2072*6a54128fSAndroid Build Coastguard Worker 	tmp = NULL;
2073*6a54128fSAndroid Build Coastguard Worker 	if (fs_param.s_rev_level != EXT2_GOOD_OLD_REV) {
2074*6a54128fSAndroid Build Coastguard Worker 		tmp = get_string_from_profile(fs_types, "base_features",
2075*6a54128fSAndroid Build Coastguard Worker 		      "sparse_super,large_file,filetype,resize_inode,dir_index");
2076*6a54128fSAndroid Build Coastguard Worker 		edit_feature(tmp, &fs_param.s_feature_compat);
2077*6a54128fSAndroid Build Coastguard Worker 		free(tmp);
2078*6a54128fSAndroid Build Coastguard Worker 
2079*6a54128fSAndroid Build Coastguard Worker 		/* And which mount options as well */
2080*6a54128fSAndroid Build Coastguard Worker 		tmp = get_string_from_profile(fs_types, "default_mntopts",
2081*6a54128fSAndroid Build Coastguard Worker 					      "acl,user_xattr");
2082*6a54128fSAndroid Build Coastguard Worker 		edit_mntopts(tmp, &fs_param.s_default_mount_opts);
2083*6a54128fSAndroid Build Coastguard Worker 		if (tmp)
2084*6a54128fSAndroid Build Coastguard Worker 			free(tmp);
2085*6a54128fSAndroid Build Coastguard Worker 
2086*6a54128fSAndroid Build Coastguard Worker 		for (cpp = fs_types; *cpp; cpp++) {
2087*6a54128fSAndroid Build Coastguard Worker 			tmp = NULL;
2088*6a54128fSAndroid Build Coastguard Worker 			profile_get_string(profile, "fs_types", *cpp,
2089*6a54128fSAndroid Build Coastguard Worker 					   "features", "", &tmp);
2090*6a54128fSAndroid Build Coastguard Worker 			if (tmp && *tmp)
2091*6a54128fSAndroid Build Coastguard Worker 				edit_feature(tmp, &fs_param.s_feature_compat);
2092*6a54128fSAndroid Build Coastguard Worker 			if (tmp)
2093*6a54128fSAndroid Build Coastguard Worker 				free(tmp);
2094*6a54128fSAndroid Build Coastguard Worker 		}
2095*6a54128fSAndroid Build Coastguard Worker 		tmp = get_string_from_profile(fs_types, "default_features",
2096*6a54128fSAndroid Build Coastguard Worker 					      "");
2097*6a54128fSAndroid Build Coastguard Worker 	}
2098*6a54128fSAndroid Build Coastguard Worker 	/* Mask off features which aren't supported by the Hurd */
2099*6a54128fSAndroid Build Coastguard Worker 	if (for_hurd(creator_os)) {
2100*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_filetype(&fs_param);
2101*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_huge_file(&fs_param);
2102*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_metadata_csum(&fs_param);
2103*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_ea_inode(&fs_param);
2104*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_casefold(&fs_param);
2105*6a54128fSAndroid Build Coastguard Worker 	}
2106*6a54128fSAndroid Build Coastguard Worker 	edit_feature(fs_features ? fs_features : tmp,
2107*6a54128fSAndroid Build Coastguard Worker 		     &fs_param.s_feature_compat);
2108*6a54128fSAndroid Build Coastguard Worker 	if (tmp)
2109*6a54128fSAndroid Build Coastguard Worker 		free(tmp);
2110*6a54128fSAndroid Build Coastguard Worker 	(void) ext2fs_free_mem(&fs_features);
2111*6a54128fSAndroid Build Coastguard Worker 	/*
2112*6a54128fSAndroid Build Coastguard Worker 	 * If the user specified features incompatible with the Hurd, complain
2113*6a54128fSAndroid Build Coastguard Worker 	 */
2114*6a54128fSAndroid Build Coastguard Worker 	if (for_hurd(creator_os)) {
2115*6a54128fSAndroid Build Coastguard Worker 		if (ext2fs_has_feature_filetype(&fs_param)) {
2116*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s", _("The HURD does not support the "
2117*6a54128fSAndroid Build Coastguard Worker 						"filetype feature.\n"));
2118*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2119*6a54128fSAndroid Build Coastguard Worker 		}
2120*6a54128fSAndroid Build Coastguard Worker 		if (ext2fs_has_feature_huge_file(&fs_param)) {
2121*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s", _("The HURD does not support the "
2122*6a54128fSAndroid Build Coastguard Worker 						"huge_file feature.\n"));
2123*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2124*6a54128fSAndroid Build Coastguard Worker 		}
2125*6a54128fSAndroid Build Coastguard Worker 		if (ext2fs_has_feature_metadata_csum(&fs_param)) {
2126*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s", _("The HURD does not support the "
2127*6a54128fSAndroid Build Coastguard Worker 						"metadata_csum feature.\n"));
2128*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2129*6a54128fSAndroid Build Coastguard Worker 		}
2130*6a54128fSAndroid Build Coastguard Worker 		if (ext2fs_has_feature_ea_inode(&fs_param)) {
2131*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s", _("The HURD does not support the "
2132*6a54128fSAndroid Build Coastguard Worker 						"ea_inode feature.\n"));
2133*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2134*6a54128fSAndroid Build Coastguard Worker 		}
2135*6a54128fSAndroid Build Coastguard Worker 	}
2136*6a54128fSAndroid Build Coastguard Worker 
2137*6a54128fSAndroid Build Coastguard Worker 	/* Get the hardware sector sizes, if available */
2138*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_get_device_sectsize(device_name, &lsector_size);
2139*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
2140*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "%s",
2141*6a54128fSAndroid Build Coastguard Worker 			_("while trying to determine hardware sector size"));
2142*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2143*6a54128fSAndroid Build Coastguard Worker 	}
2144*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_get_device_phys_sectsize(device_name, &psector_size);
2145*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
2146*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "%s",
2147*6a54128fSAndroid Build Coastguard Worker 			_("while trying to determine physical sector size"));
2148*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2149*6a54128fSAndroid Build Coastguard Worker 	}
2150*6a54128fSAndroid Build Coastguard Worker 
2151*6a54128fSAndroid Build Coastguard Worker 	tmp = getenv("MKE2FS_DEVICE_SECTSIZE");
2152*6a54128fSAndroid Build Coastguard Worker 	if (tmp != NULL)
2153*6a54128fSAndroid Build Coastguard Worker 		lsector_size = atoi(tmp);
2154*6a54128fSAndroid Build Coastguard Worker 	tmp = getenv("MKE2FS_DEVICE_PHYS_SECTSIZE");
2155*6a54128fSAndroid Build Coastguard Worker 	if (tmp != NULL)
2156*6a54128fSAndroid Build Coastguard Worker 		psector_size = atoi(tmp);
2157*6a54128fSAndroid Build Coastguard Worker 
2158*6a54128fSAndroid Build Coastguard Worker 	/* Older kernels may not have physical/logical distinction */
2159*6a54128fSAndroid Build Coastguard Worker 	if (!psector_size)
2160*6a54128fSAndroid Build Coastguard Worker 		psector_size = lsector_size;
2161*6a54128fSAndroid Build Coastguard Worker 
2162*6a54128fSAndroid Build Coastguard Worker 	if (blocksize <= 0) {
2163*6a54128fSAndroid Build Coastguard Worker 		use_bsize = get_int_from_profile(fs_types, "blocksize", 4096);
2164*6a54128fSAndroid Build Coastguard Worker 
2165*6a54128fSAndroid Build Coastguard Worker 		if (use_bsize == -1) {
2166*6a54128fSAndroid Build Coastguard Worker 			use_bsize = sys_page_size;
2167*6a54128fSAndroid Build Coastguard Worker 			if (is_before_linux_ver(2, 6, 0) && use_bsize > 4096)
2168*6a54128fSAndroid Build Coastguard Worker 				use_bsize = 4096;
2169*6a54128fSAndroid Build Coastguard Worker 		}
2170*6a54128fSAndroid Build Coastguard Worker 		if (lsector_size && use_bsize < lsector_size)
2171*6a54128fSAndroid Build Coastguard Worker 			use_bsize = lsector_size;
2172*6a54128fSAndroid Build Coastguard Worker 		if ((blocksize < 0) && (use_bsize < (-blocksize)))
2173*6a54128fSAndroid Build Coastguard Worker 			use_bsize = -blocksize;
2174*6a54128fSAndroid Build Coastguard Worker 		blocksize = use_bsize;
2175*6a54128fSAndroid Build Coastguard Worker 		fs_blocks_count /= (blocksize / 1024);
2176*6a54128fSAndroid Build Coastguard Worker 	} else {
2177*6a54128fSAndroid Build Coastguard Worker 		if (blocksize < lsector_size) {			/* Impossible */
2178*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, EINVAL, "%s",
2179*6a54128fSAndroid Build Coastguard Worker 				_("while setting blocksize; too small "
2180*6a54128fSAndroid Build Coastguard Worker 				  "for device\n"));
2181*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2182*6a54128fSAndroid Build Coastguard Worker 		} else if ((blocksize < psector_size) &&
2183*6a54128fSAndroid Build Coastguard Worker 			   (psector_size <= sys_page_size)) {	/* Suboptimal */
2184*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, _("Warning: specified blocksize %d is "
2185*6a54128fSAndroid Build Coastguard Worker 				"less than device physical sectorsize %d\n"),
2186*6a54128fSAndroid Build Coastguard Worker 				blocksize, psector_size);
2187*6a54128fSAndroid Build Coastguard Worker 		}
2188*6a54128fSAndroid Build Coastguard Worker 	}
2189*6a54128fSAndroid Build Coastguard Worker 
2190*6a54128fSAndroid Build Coastguard Worker 	fs_param.s_log_block_size =
2191*6a54128fSAndroid Build Coastguard Worker 		int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
2192*6a54128fSAndroid Build Coastguard Worker 
2193*6a54128fSAndroid Build Coastguard Worker 	/*
2194*6a54128fSAndroid Build Coastguard Worker 	 * We now need to do a sanity check of fs_blocks_count for
2195*6a54128fSAndroid Build Coastguard Worker 	 * 32-bit vs 64-bit block number support.
2196*6a54128fSAndroid Build Coastguard Worker 	 */
2197*6a54128fSAndroid Build Coastguard Worker 	if ((fs_blocks_count > MAX_32_NUM) &&
2198*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_64bit(&fs_param))
2199*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_resize_inode(&fs_param);
2200*6a54128fSAndroid Build Coastguard Worker 	if ((fs_blocks_count > MAX_32_NUM) &&
2201*6a54128fSAndroid Build Coastguard Worker 	    !ext2fs_has_feature_64bit(&fs_param) &&
2202*6a54128fSAndroid Build Coastguard Worker 	    get_bool_from_profile(fs_types, "auto_64-bit_support", 0)) {
2203*6a54128fSAndroid Build Coastguard Worker 		ext2fs_set_feature_64bit(&fs_param);
2204*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_resize_inode(&fs_param);
2205*6a54128fSAndroid Build Coastguard Worker 	}
2206*6a54128fSAndroid Build Coastguard Worker 	if ((fs_blocks_count > MAX_32_NUM) &&
2207*6a54128fSAndroid Build Coastguard Worker 	    !ext2fs_has_feature_64bit(&fs_param)) {
2208*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("%s: Size of device (0x%llx blocks) %s "
2209*6a54128fSAndroid Build Coastguard Worker 				  "too big to be expressed\n\t"
2210*6a54128fSAndroid Build Coastguard Worker 				  "in 32 bits using a blocksize of %d.\n"),
2211*6a54128fSAndroid Build Coastguard Worker 			program_name, (unsigned long long) fs_blocks_count,
2212*6a54128fSAndroid Build Coastguard Worker 			device_name, EXT2_BLOCK_SIZE(&fs_param));
2213*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2214*6a54128fSAndroid Build Coastguard Worker 	}
2215*6a54128fSAndroid Build Coastguard Worker 	/*
2216*6a54128fSAndroid Build Coastguard Worker 	 * Guard against group descriptor count overflowing... Mostly to avoid
2217*6a54128fSAndroid Build Coastguard Worker 	 * strange results for absurdly large devices.  This is in log2:
2218*6a54128fSAndroid Build Coastguard Worker 	 * (blocksize) * (bits per byte) * (maximum number of block groups)
2219*6a54128fSAndroid Build Coastguard Worker 	 */
2220*6a54128fSAndroid Build Coastguard Worker 	if (fs_blocks_count >
2221*6a54128fSAndroid Build Coastguard Worker 	    (1ULL << (EXT2_BLOCK_SIZE_BITS(&fs_param) + 3 + 32)) - 1) {
2222*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("%s: Size of device (0x%llx blocks) %s "
2223*6a54128fSAndroid Build Coastguard Worker 				  "too big to create\n\t"
2224*6a54128fSAndroid Build Coastguard Worker 				  "a filesystem using a blocksize of %d.\n"),
2225*6a54128fSAndroid Build Coastguard Worker 			program_name, (unsigned long long) fs_blocks_count,
2226*6a54128fSAndroid Build Coastguard Worker 			device_name, EXT2_BLOCK_SIZE(&fs_param));
2227*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2228*6a54128fSAndroid Build Coastguard Worker 	}
2229*6a54128fSAndroid Build Coastguard Worker 
2230*6a54128fSAndroid Build Coastguard Worker 	ext2fs_blocks_count_set(&fs_param, fs_blocks_count);
2231*6a54128fSAndroid Build Coastguard Worker 
2232*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_journal_dev(&fs_param)) {
2233*6a54128fSAndroid Build Coastguard Worker 		int i;
2234*6a54128fSAndroid Build Coastguard Worker 
2235*6a54128fSAndroid Build Coastguard Worker 		for (i=0; fs_types[i]; i++) {
2236*6a54128fSAndroid Build Coastguard Worker 			free(fs_types[i]);
2237*6a54128fSAndroid Build Coastguard Worker 			fs_types[i] = 0;
2238*6a54128fSAndroid Build Coastguard Worker 		}
2239*6a54128fSAndroid Build Coastguard Worker 		fs_types[0] = strdup("journal");
2240*6a54128fSAndroid Build Coastguard Worker 		fs_types[1] = 0;
2241*6a54128fSAndroid Build Coastguard Worker 	}
2242*6a54128fSAndroid Build Coastguard Worker 
2243*6a54128fSAndroid Build Coastguard Worker 	if (verbose) {
2244*6a54128fSAndroid Build Coastguard Worker 		fputs(_("fs_types for mke2fs.conf resolution: "), stdout);
2245*6a54128fSAndroid Build Coastguard Worker 		print_str_list(fs_types);
2246*6a54128fSAndroid Build Coastguard Worker 	}
2247*6a54128fSAndroid Build Coastguard Worker 
2248*6a54128fSAndroid Build Coastguard Worker 	if (r_opt == EXT2_GOOD_OLD_REV &&
2249*6a54128fSAndroid Build Coastguard Worker 	    (fs_param.s_feature_compat || fs_param.s_feature_incompat ||
2250*6a54128fSAndroid Build Coastguard Worker 	     fs_param.s_feature_ro_compat)) {
2251*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, "%s", _("Filesystem features not supported "
2252*6a54128fSAndroid Build Coastguard Worker 					"with revision 0 filesystems\n"));
2253*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2254*6a54128fSAndroid Build Coastguard Worker 	}
2255*6a54128fSAndroid Build Coastguard Worker 
2256*6a54128fSAndroid Build Coastguard Worker 	if (s_opt > 0) {
2257*6a54128fSAndroid Build Coastguard Worker 		if (r_opt == EXT2_GOOD_OLD_REV) {
2258*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s",
2259*6a54128fSAndroid Build Coastguard Worker 				_("Sparse superblocks not supported "
2260*6a54128fSAndroid Build Coastguard Worker 				  "with revision 0 filesystems\n"));
2261*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2262*6a54128fSAndroid Build Coastguard Worker 		}
2263*6a54128fSAndroid Build Coastguard Worker 		ext2fs_set_feature_sparse_super(&fs_param);
2264*6a54128fSAndroid Build Coastguard Worker 	} else if (s_opt == 0)
2265*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_sparse_super(&fs_param);
2266*6a54128fSAndroid Build Coastguard Worker 
2267*6a54128fSAndroid Build Coastguard Worker 	if (journal_size != 0) {
2268*6a54128fSAndroid Build Coastguard Worker 		if (r_opt == EXT2_GOOD_OLD_REV) {
2269*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s", _("Journals not supported with "
2270*6a54128fSAndroid Build Coastguard Worker 						"revision 0 filesystems\n"));
2271*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2272*6a54128fSAndroid Build Coastguard Worker 		}
2273*6a54128fSAndroid Build Coastguard Worker 		ext2fs_set_feature_journal(&fs_param);
2274*6a54128fSAndroid Build Coastguard Worker 	}
2275*6a54128fSAndroid Build Coastguard Worker 
2276*6a54128fSAndroid Build Coastguard Worker 	/* Get reserved_ratio from profile if not specified on cmd line. */
2277*6a54128fSAndroid Build Coastguard Worker 	if (reserved_ratio < 0.0) {
2278*6a54128fSAndroid Build Coastguard Worker 		reserved_ratio = get_double_from_profile(
2279*6a54128fSAndroid Build Coastguard Worker 					fs_types, "reserved_ratio", 5.0);
2280*6a54128fSAndroid Build Coastguard Worker 		if (reserved_ratio > 50 || reserved_ratio < 0) {
2281*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0,
2282*6a54128fSAndroid Build Coastguard Worker 				_("invalid reserved blocks percent - %lf"),
2283*6a54128fSAndroid Build Coastguard Worker 				reserved_ratio);
2284*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2285*6a54128fSAndroid Build Coastguard Worker 		}
2286*6a54128fSAndroid Build Coastguard Worker 	}
2287*6a54128fSAndroid Build Coastguard Worker 
2288*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_journal_dev(&fs_param)) {
2289*6a54128fSAndroid Build Coastguard Worker 		reserved_ratio = 0;
2290*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_feature_incompat = EXT3_FEATURE_INCOMPAT_JOURNAL_DEV;
2291*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_feature_compat = 0;
2292*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_feature_ro_compat &=
2293*6a54128fSAndroid Build Coastguard Worker 					EXT4_FEATURE_RO_COMPAT_METADATA_CSUM;
2294*6a54128fSAndroid Build Coastguard Worker  	}
2295*6a54128fSAndroid Build Coastguard Worker 
2296*6a54128fSAndroid Build Coastguard Worker 	/* Check the user's mkfs options for 64bit */
2297*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_64bit(&fs_param) &&
2298*6a54128fSAndroid Build Coastguard Worker 	    !ext2fs_has_feature_extents(&fs_param)) {
2299*6a54128fSAndroid Build Coastguard Worker 		printf("%s", _("Extents MUST be enabled for a 64-bit "
2300*6a54128fSAndroid Build Coastguard Worker 			       "filesystem.  Pass -O extents to rectify.\n"));
2301*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2302*6a54128fSAndroid Build Coastguard Worker 	}
2303*6a54128fSAndroid Build Coastguard Worker 
2304*6a54128fSAndroid Build Coastguard Worker 	/* Set first meta blockgroup via an environment variable */
2305*6a54128fSAndroid Build Coastguard Worker 	/* (this is mostly for debugging purposes) */
2306*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_meta_bg(&fs_param) &&
2307*6a54128fSAndroid Build Coastguard Worker 	    (tmp = getenv("MKE2FS_FIRST_META_BG")))
2308*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_first_meta_bg = atoi(tmp);
2309*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_bigalloc(&fs_param)) {
2310*6a54128fSAndroid Build Coastguard Worker 		if (!cluster_size)
2311*6a54128fSAndroid Build Coastguard Worker 			cluster_size = get_int_from_profile(fs_types,
2312*6a54128fSAndroid Build Coastguard Worker 							    "cluster_size",
2313*6a54128fSAndroid Build Coastguard Worker 							    blocksize*16);
2314*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_log_cluster_size =
2315*6a54128fSAndroid Build Coastguard Worker 			int_log2(cluster_size >> EXT2_MIN_CLUSTER_LOG_SIZE);
2316*6a54128fSAndroid Build Coastguard Worker 		if (fs_param.s_log_cluster_size &&
2317*6a54128fSAndroid Build Coastguard Worker 		    fs_param.s_log_cluster_size < fs_param.s_log_block_size) {
2318*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0, "%s",
2319*6a54128fSAndroid Build Coastguard Worker 				_("The cluster size may not be "
2320*6a54128fSAndroid Build Coastguard Worker 				  "smaller than the block size.\n"));
2321*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2322*6a54128fSAndroid Build Coastguard Worker 		}
2323*6a54128fSAndroid Build Coastguard Worker 	} else if (cluster_size) {
2324*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0, "%s",
2325*6a54128fSAndroid Build Coastguard Worker 			_("specifying a cluster size requires the "
2326*6a54128fSAndroid Build Coastguard Worker 			  "bigalloc feature"));
2327*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2328*6a54128fSAndroid Build Coastguard Worker 	} else
2329*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_log_cluster_size = fs_param.s_log_block_size;
2330*6a54128fSAndroid Build Coastguard Worker 
2331*6a54128fSAndroid Build Coastguard Worker 	if (inode_ratio == 0) {
2332*6a54128fSAndroid Build Coastguard Worker 		inode_ratio = get_int_from_profile(fs_types, "inode_ratio",
2333*6a54128fSAndroid Build Coastguard Worker 						   8192);
2334*6a54128fSAndroid Build Coastguard Worker 		if (inode_ratio < blocksize)
2335*6a54128fSAndroid Build Coastguard Worker 			inode_ratio = blocksize;
2336*6a54128fSAndroid Build Coastguard Worker 		if (inode_ratio < EXT2_CLUSTER_SIZE(&fs_param))
2337*6a54128fSAndroid Build Coastguard Worker 			inode_ratio = EXT2_CLUSTER_SIZE(&fs_param);
2338*6a54128fSAndroid Build Coastguard Worker 	}
2339*6a54128fSAndroid Build Coastguard Worker 
2340*6a54128fSAndroid Build Coastguard Worker #ifdef HAVE_BLKID_PROBE_GET_TOPOLOGY
2341*6a54128fSAndroid Build Coastguard Worker 	retval = get_device_geometry(device_name, blocksize,
2342*6a54128fSAndroid Build Coastguard Worker 				     psector_size, &dev_param);
2343*6a54128fSAndroid Build Coastguard Worker 	if (retval < 0) {
2344*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr,
2345*6a54128fSAndroid Build Coastguard Worker 			_("warning: Unable to get device geometry for %s\n"),
2346*6a54128fSAndroid Build Coastguard Worker 			device_name);
2347*6a54128fSAndroid Build Coastguard Worker 	} else {
2348*6a54128fSAndroid Build Coastguard Worker 		/* setting stripe/stride to blocksize is pointless */
2349*6a54128fSAndroid Build Coastguard Worker 		if (dev_param.min_io > (unsigned) blocksize)
2350*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_raid_stride = dev_param.min_io / blocksize;
2351*6a54128fSAndroid Build Coastguard Worker 		if (dev_param.opt_io > (unsigned) blocksize) {
2352*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_raid_stripe_width =
2353*6a54128fSAndroid Build Coastguard Worker 						dev_param.opt_io / blocksize;
2354*6a54128fSAndroid Build Coastguard Worker 		}
2355*6a54128fSAndroid Build Coastguard Worker 
2356*6a54128fSAndroid Build Coastguard Worker 		if (dev_param.alignment_offset) {
2357*6a54128fSAndroid Build Coastguard Worker 			printf(_("%s alignment is offset by %lu bytes.\n"),
2358*6a54128fSAndroid Build Coastguard Worker 			       device_name, dev_param.alignment_offset);
2359*6a54128fSAndroid Build Coastguard Worker 			printf(_("This may result in very poor performance, "
2360*6a54128fSAndroid Build Coastguard Worker 				  "(re)-partitioning suggested.\n"));
2361*6a54128fSAndroid Build Coastguard Worker 		}
2362*6a54128fSAndroid Build Coastguard Worker 
2363*6a54128fSAndroid Build Coastguard Worker 		if (dev_param.dax && blocksize != sys_page_size) {
2364*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr,
2365*6a54128fSAndroid Build Coastguard Worker 				_("%s is capable of DAX but current block size "
2366*6a54128fSAndroid Build Coastguard Worker 				  "%u is different from system page size %u so "
2367*6a54128fSAndroid Build Coastguard Worker 				  "filesystem will not support DAX.\n"),
2368*6a54128fSAndroid Build Coastguard Worker 				device_name, blocksize, sys_page_size);
2369*6a54128fSAndroid Build Coastguard Worker 		}
2370*6a54128fSAndroid Build Coastguard Worker 	}
2371*6a54128fSAndroid Build Coastguard Worker #endif
2372*6a54128fSAndroid Build Coastguard Worker 
2373*6a54128fSAndroid Build Coastguard Worker 	num_backups = get_int_from_profile(fs_types, "num_backup_sb", 2);
2374*6a54128fSAndroid Build Coastguard Worker 
2375*6a54128fSAndroid Build Coastguard Worker 	blocksize = EXT2_BLOCK_SIZE(&fs_param);
2376*6a54128fSAndroid Build Coastguard Worker 
2377*6a54128fSAndroid Build Coastguard Worker 	/*
2378*6a54128fSAndroid Build Coastguard Worker 	 * Initialize s_desc_size so that the parse_extended_opts()
2379*6a54128fSAndroid Build Coastguard Worker 	 * can correctly handle "-E resize=NNN" if the 64-bit option
2380*6a54128fSAndroid Build Coastguard Worker 	 * is set.
2381*6a54128fSAndroid Build Coastguard Worker 	 */
2382*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_64bit(&fs_param))
2383*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_desc_size = EXT2_MIN_DESC_SIZE_64BIT;
2384*6a54128fSAndroid Build Coastguard Worker 
2385*6a54128fSAndroid Build Coastguard Worker 	/* This check should happen beyond the last assignment to blocksize */
2386*6a54128fSAndroid Build Coastguard Worker 	if (blocksize > sys_page_size) {
2387*6a54128fSAndroid Build Coastguard Worker 		if (!force) {
2388*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0,
2389*6a54128fSAndroid Build Coastguard Worker 				_("%d-byte blocks too big for system (max %d)"),
2390*6a54128fSAndroid Build Coastguard Worker 				blocksize, sys_page_size);
2391*6a54128fSAndroid Build Coastguard Worker 			proceed_question(proceed_delay);
2392*6a54128fSAndroid Build Coastguard Worker 		}
2393*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("Warning: %d-byte blocks too big for system "
2394*6a54128fSAndroid Build Coastguard Worker 				  "(max %d), forced to continue\n"),
2395*6a54128fSAndroid Build Coastguard Worker 			blocksize, sys_page_size);
2396*6a54128fSAndroid Build Coastguard Worker 	}
2397*6a54128fSAndroid Build Coastguard Worker 
2398*6a54128fSAndroid Build Coastguard Worker 	/* Metadata checksumming wasn't totally stable before 3.18. */
2399*6a54128fSAndroid Build Coastguard Worker 	if (is_before_linux_ver(3, 18, 0) &&
2400*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_metadata_csum(&fs_param))
2401*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, _("Suggestion: Use Linux kernel >= 3.18 for "
2402*6a54128fSAndroid Build Coastguard Worker 			"improved stability of the metadata and journal "
2403*6a54128fSAndroid Build Coastguard Worker 			"checksum features.\n"));
2404*6a54128fSAndroid Build Coastguard Worker 
2405*6a54128fSAndroid Build Coastguard Worker 	/*
2406*6a54128fSAndroid Build Coastguard Worker 	 * On newer kernels we do have lazy_itable_init support. So pick the
2407*6a54128fSAndroid Build Coastguard Worker 	 * right default in case ext4 module is not loaded.
2408*6a54128fSAndroid Build Coastguard Worker 	 */
2409*6a54128fSAndroid Build Coastguard Worker 	if (is_before_linux_ver(2, 6, 37))
2410*6a54128fSAndroid Build Coastguard Worker 		lazy_itable_init = 0;
2411*6a54128fSAndroid Build Coastguard Worker 	else
2412*6a54128fSAndroid Build Coastguard Worker 		lazy_itable_init = 1;
2413*6a54128fSAndroid Build Coastguard Worker 
2414*6a54128fSAndroid Build Coastguard Worker 	if (access("/sys/fs/ext4/features/lazy_itable_init", R_OK) == 0)
2415*6a54128fSAndroid Build Coastguard Worker 		lazy_itable_init = 1;
2416*6a54128fSAndroid Build Coastguard Worker 
2417*6a54128fSAndroid Build Coastguard Worker 	lazy_itable_init = get_bool_from_profile(fs_types,
2418*6a54128fSAndroid Build Coastguard Worker 						 "lazy_itable_init",
2419*6a54128fSAndroid Build Coastguard Worker 						 lazy_itable_init);
2420*6a54128fSAndroid Build Coastguard Worker 	discard = get_bool_from_profile(fs_types, "discard" , discard);
2421*6a54128fSAndroid Build Coastguard Worker 	journal_flags |= get_bool_from_profile(fs_types,
2422*6a54128fSAndroid Build Coastguard Worker 					       "lazy_journal_init", 0) ?
2423*6a54128fSAndroid Build Coastguard Worker 					       EXT2_MKJOURNAL_LAZYINIT : 0;
2424*6a54128fSAndroid Build Coastguard Worker 	journal_flags |= EXT2_MKJOURNAL_NO_MNT_CHECK;
2425*6a54128fSAndroid Build Coastguard Worker 
2426*6a54128fSAndroid Build Coastguard Worker 	if (!journal_location_string)
2427*6a54128fSAndroid Build Coastguard Worker 		journal_location_string = get_string_from_profile(fs_types,
2428*6a54128fSAndroid Build Coastguard Worker 						"journal_location", "");
2429*6a54128fSAndroid Build Coastguard Worker 	if ((journal_location == ~0ULL) && journal_location_string &&
2430*6a54128fSAndroid Build Coastguard Worker 	    *journal_location_string)
2431*6a54128fSAndroid Build Coastguard Worker 		journal_location = parse_num_blocks2(journal_location_string,
2432*6a54128fSAndroid Build Coastguard Worker 						fs_param.s_log_block_size);
2433*6a54128fSAndroid Build Coastguard Worker 	free(journal_location_string);
2434*6a54128fSAndroid Build Coastguard Worker 
2435*6a54128fSAndroid Build Coastguard Worker 	packed_meta_blocks = get_bool_from_profile(fs_types,
2436*6a54128fSAndroid Build Coastguard Worker 						   "packed_meta_blocks", 0);
2437*6a54128fSAndroid Build Coastguard Worker 	if (packed_meta_blocks)
2438*6a54128fSAndroid Build Coastguard Worker 		journal_location = 0;
2439*6a54128fSAndroid Build Coastguard Worker 
2440*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_casefold(&fs_param)) {
2441*6a54128fSAndroid Build Coastguard Worker 		char *ef, *en = get_string_from_profile(fs_types,
2442*6a54128fSAndroid Build Coastguard Worker 							"encoding", "utf8");
2443*6a54128fSAndroid Build Coastguard Worker 		int encoding = e2p_str2encoding(en);
2444*6a54128fSAndroid Build Coastguard Worker 
2445*6a54128fSAndroid Build Coastguard Worker 		if (encoding < 0) {
2446*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0,
2447*6a54128fSAndroid Build Coastguard Worker 				_("Unknown filename encoding from profile: %s"),
2448*6a54128fSAndroid Build Coastguard Worker 				en);
2449*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2450*6a54128fSAndroid Build Coastguard Worker 		}
2451*6a54128fSAndroid Build Coastguard Worker 		free(en);
2452*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_encoding = encoding;
2453*6a54128fSAndroid Build Coastguard Worker 		ef = get_string_from_profile(fs_types, "encoding_flags", NULL);
2454*6a54128fSAndroid Build Coastguard Worker 		if (ef) {
2455*6a54128fSAndroid Build Coastguard Worker 			if (e2p_str2encoding_flags(encoding, ef,
2456*6a54128fSAndroid Build Coastguard Worker 					&fs_param.s_encoding_flags) < 0) {
2457*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
2458*6a54128fSAndroid Build Coastguard Worker 			_("Unknown encoding flags from profile: %s"), ef);
2459*6a54128fSAndroid Build Coastguard Worker 				exit(1);
2460*6a54128fSAndroid Build Coastguard Worker 			}
2461*6a54128fSAndroid Build Coastguard Worker 			free(ef);
2462*6a54128fSAndroid Build Coastguard Worker 		} else
2463*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_encoding_flags =
2464*6a54128fSAndroid Build Coastguard Worker 				e2p_get_encoding_flags(encoding);
2465*6a54128fSAndroid Build Coastguard Worker 	}
2466*6a54128fSAndroid Build Coastguard Worker 
2467*6a54128fSAndroid Build Coastguard Worker 	/* Get options from profile */
2468*6a54128fSAndroid Build Coastguard Worker 	for (cpp = fs_types; *cpp; cpp++) {
2469*6a54128fSAndroid Build Coastguard Worker 		tmp = NULL;
2470*6a54128fSAndroid Build Coastguard Worker 		profile_get_string(profile, "fs_types", *cpp, "options", "", &tmp);
2471*6a54128fSAndroid Build Coastguard Worker 			if (tmp && *tmp)
2472*6a54128fSAndroid Build Coastguard Worker 				parse_extended_opts(&fs_param, tmp);
2473*6a54128fSAndroid Build Coastguard Worker 			free(tmp);
2474*6a54128fSAndroid Build Coastguard Worker 	}
2475*6a54128fSAndroid Build Coastguard Worker 
2476*6a54128fSAndroid Build Coastguard Worker 	if (extended_opts)
2477*6a54128fSAndroid Build Coastguard Worker 		parse_extended_opts(&fs_param, extended_opts);
2478*6a54128fSAndroid Build Coastguard Worker 
2479*6a54128fSAndroid Build Coastguard Worker 	if (explicit_fssize == 0 && offset > 0) {
2480*6a54128fSAndroid Build Coastguard Worker 		fs_blocks_count -= offset / EXT2_BLOCK_SIZE(&fs_param);
2481*6a54128fSAndroid Build Coastguard Worker 		ext2fs_blocks_count_set(&fs_param, fs_blocks_count);
2482*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr,
2483*6a54128fSAndroid Build Coastguard Worker 			_("\nWarning: offset specified without an "
2484*6a54128fSAndroid Build Coastguard Worker 			  "explicit file system size.\n"
2485*6a54128fSAndroid Build Coastguard Worker 			  "Creating a file system with %llu blocks "
2486*6a54128fSAndroid Build Coastguard Worker 			  "but this might\n"
2487*6a54128fSAndroid Build Coastguard Worker 			  "not be what you want.\n\n"),
2488*6a54128fSAndroid Build Coastguard Worker 			(unsigned long long) fs_blocks_count);
2489*6a54128fSAndroid Build Coastguard Worker 	}
2490*6a54128fSAndroid Build Coastguard Worker 
2491*6a54128fSAndroid Build Coastguard Worker 	if (quotatype_bits & QUOTA_PRJ_BIT)
2492*6a54128fSAndroid Build Coastguard Worker 		ext2fs_set_feature_project(&fs_param);
2493*6a54128fSAndroid Build Coastguard Worker 
2494*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_project(&fs_param)) {
2495*6a54128fSAndroid Build Coastguard Worker 		quotatype_bits |= QUOTA_PRJ_BIT;
2496*6a54128fSAndroid Build Coastguard Worker 		if (inode_size == EXT2_GOOD_OLD_INODE_SIZE) {
2497*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0,
2498*6a54128fSAndroid Build Coastguard Worker 				_("%d byte inodes are too small for "
2499*6a54128fSAndroid Build Coastguard Worker 				  "project quota"),
2500*6a54128fSAndroid Build Coastguard Worker 				inode_size);
2501*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2502*6a54128fSAndroid Build Coastguard Worker 		}
2503*6a54128fSAndroid Build Coastguard Worker 		if (inode_size == 0) {
2504*6a54128fSAndroid Build Coastguard Worker 			inode_size = get_int_from_profile(fs_types,
2505*6a54128fSAndroid Build Coastguard Worker 							  "inode_size", 0);
2506*6a54128fSAndroid Build Coastguard Worker 			if (inode_size <= EXT2_GOOD_OLD_INODE_SIZE*2)
2507*6a54128fSAndroid Build Coastguard Worker 				inode_size = EXT2_GOOD_OLD_INODE_SIZE*2;
2508*6a54128fSAndroid Build Coastguard Worker 		}
2509*6a54128fSAndroid Build Coastguard Worker 	}
2510*6a54128fSAndroid Build Coastguard Worker 
2511*6a54128fSAndroid Build Coastguard Worker 	/* Don't allow user to set both metadata_csum and uninit_bg bits. */
2512*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_metadata_csum(&fs_param) &&
2513*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_gdt_csum(&fs_param))
2514*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_gdt_csum(&fs_param);
2515*6a54128fSAndroid Build Coastguard Worker 
2516*6a54128fSAndroid Build Coastguard Worker 	/* Can't support bigalloc feature without extents feature */
2517*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_bigalloc(&fs_param) &&
2518*6a54128fSAndroid Build Coastguard Worker 	    !ext2fs_has_feature_extents(&fs_param)) {
2519*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0, "%s",
2520*6a54128fSAndroid Build Coastguard Worker 			_("Can't support bigalloc feature without "
2521*6a54128fSAndroid Build Coastguard Worker 			  "extents feature"));
2522*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2523*6a54128fSAndroid Build Coastguard Worker 	}
2524*6a54128fSAndroid Build Coastguard Worker 
2525*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_meta_bg(&fs_param) &&
2526*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_resize_inode(&fs_param)) {
2527*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, "%s", _("The resize_inode and meta_bg "
2528*6a54128fSAndroid Build Coastguard Worker 					"features are not compatible.\n"
2529*6a54128fSAndroid Build Coastguard Worker 					"They can not be both enabled "
2530*6a54128fSAndroid Build Coastguard Worker 					"simultaneously.\n"));
2531*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2532*6a54128fSAndroid Build Coastguard Worker 	}
2533*6a54128fSAndroid Build Coastguard Worker 
2534*6a54128fSAndroid Build Coastguard Worker 	if (!quiet && ext2fs_has_feature_bigalloc(&fs_param) &&
2535*6a54128fSAndroid Build Coastguard Worker 	    EXT2_CLUSTER_SIZE(&fs_param) > 16 * EXT2_BLOCK_SIZE(&fs_param))
2536*6a54128fSAndroid Build Coastguard Worker 		fprintf(stderr, "%s", _("\nWarning: bigalloc file systems "
2537*6a54128fSAndroid Build Coastguard Worker 				"with a cluster size greater than\n"
2538*6a54128fSAndroid Build Coastguard Worker 				"16 times the block size is considered "
2539*6a54128fSAndroid Build Coastguard Worker 				"experimental\n"));
2540*6a54128fSAndroid Build Coastguard Worker 
2541*6a54128fSAndroid Build Coastguard Worker 	/*
2542*6a54128fSAndroid Build Coastguard Worker 	 * Since sparse_super is the default, we would only have a problem
2543*6a54128fSAndroid Build Coastguard Worker 	 * here if it was explicitly disabled.
2544*6a54128fSAndroid Build Coastguard Worker 	 */
2545*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_resize_inode(&fs_param) &&
2546*6a54128fSAndroid Build Coastguard Worker 	    !ext2fs_has_feature_sparse_super(&fs_param)) {
2547*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0, "%s",
2548*6a54128fSAndroid Build Coastguard Worker 			_("reserved online resize blocks not supported "
2549*6a54128fSAndroid Build Coastguard Worker 			  "on non-sparse filesystem"));
2550*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2551*6a54128fSAndroid Build Coastguard Worker 	}
2552*6a54128fSAndroid Build Coastguard Worker 
2553*6a54128fSAndroid Build Coastguard Worker 	if (fs_param.s_blocks_per_group) {
2554*6a54128fSAndroid Build Coastguard Worker 		if (fs_param.s_blocks_per_group < 256 ||
2555*6a54128fSAndroid Build Coastguard Worker 		    fs_param.s_blocks_per_group > 8 * (unsigned) blocksize) {
2556*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0, "%s",
2557*6a54128fSAndroid Build Coastguard Worker 				_("blocks per group count out of range"));
2558*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2559*6a54128fSAndroid Build Coastguard Worker 		}
2560*6a54128fSAndroid Build Coastguard Worker 	}
2561*6a54128fSAndroid Build Coastguard Worker 
2562*6a54128fSAndroid Build Coastguard Worker 	/*
2563*6a54128fSAndroid Build Coastguard Worker 	 * If the bigalloc feature is enabled, then the -g option will
2564*6a54128fSAndroid Build Coastguard Worker 	 * specify the number of clusters per group.
2565*6a54128fSAndroid Build Coastguard Worker 	 */
2566*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_bigalloc(&fs_param)) {
2567*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_clusters_per_group = fs_param.s_blocks_per_group;
2568*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_blocks_per_group = 0;
2569*6a54128fSAndroid Build Coastguard Worker 	}
2570*6a54128fSAndroid Build Coastguard Worker 
2571*6a54128fSAndroid Build Coastguard Worker 	if (inode_size == 0)
2572*6a54128fSAndroid Build Coastguard Worker 		inode_size = get_int_from_profile(fs_types, "inode_size", 0);
2573*6a54128fSAndroid Build Coastguard Worker 	if (!flex_bg_size && ext2fs_has_feature_flex_bg(&fs_param))
2574*6a54128fSAndroid Build Coastguard Worker 		flex_bg_size = get_uint_from_profile(fs_types,
2575*6a54128fSAndroid Build Coastguard Worker 						     "flex_bg_size", 16);
2576*6a54128fSAndroid Build Coastguard Worker 	if (flex_bg_size) {
2577*6a54128fSAndroid Build Coastguard Worker 		if (!ext2fs_has_feature_flex_bg(&fs_param)) {
2578*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0, "%s",
2579*6a54128fSAndroid Build Coastguard Worker 				_("Flex_bg feature not enabled, so "
2580*6a54128fSAndroid Build Coastguard Worker 				  "flex_bg size may not be specified"));
2581*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2582*6a54128fSAndroid Build Coastguard Worker 		}
2583*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_log_groups_per_flex = int_log2(flex_bg_size);
2584*6a54128fSAndroid Build Coastguard Worker 	}
2585*6a54128fSAndroid Build Coastguard Worker 
2586*6a54128fSAndroid Build Coastguard Worker 	if (inode_size && fs_param.s_rev_level >= EXT2_DYNAMIC_REV) {
2587*6a54128fSAndroid Build Coastguard Worker 		if (inode_size < EXT2_GOOD_OLD_INODE_SIZE ||
2588*6a54128fSAndroid Build Coastguard Worker 		    inode_size > EXT2_BLOCK_SIZE(&fs_param) ||
2589*6a54128fSAndroid Build Coastguard Worker 		    inode_size & (inode_size - 1)) {
2590*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, 0,
2591*6a54128fSAndroid Build Coastguard Worker 				_("invalid inode size %d (min %d/max %d)"),
2592*6a54128fSAndroid Build Coastguard Worker 				inode_size, EXT2_GOOD_OLD_INODE_SIZE,
2593*6a54128fSAndroid Build Coastguard Worker 				blocksize);
2594*6a54128fSAndroid Build Coastguard Worker 			exit(1);
2595*6a54128fSAndroid Build Coastguard Worker 		}
2596*6a54128fSAndroid Build Coastguard Worker 		fs_param.s_inode_size = inode_size;
2597*6a54128fSAndroid Build Coastguard Worker 	}
2598*6a54128fSAndroid Build Coastguard Worker 
2599*6a54128fSAndroid Build Coastguard Worker 	/*
2600*6a54128fSAndroid Build Coastguard Worker 	 * If inode size is 128 and inline data is enabled, we need
2601*6a54128fSAndroid Build Coastguard Worker 	 * to notify users that inline data will never be useful.
2602*6a54128fSAndroid Build Coastguard Worker 	 */
2603*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_inline_data(&fs_param) &&
2604*6a54128fSAndroid Build Coastguard Worker 	    fs_param.s_inode_size == EXT2_GOOD_OLD_INODE_SIZE) {
2605*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0,
2606*6a54128fSAndroid Build Coastguard Worker 			_("%d byte inodes are too small for inline data; "
2607*6a54128fSAndroid Build Coastguard Worker 			  "specify larger size"),
2608*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_inode_size);
2609*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2610*6a54128fSAndroid Build Coastguard Worker 	}
2611*6a54128fSAndroid Build Coastguard Worker 
2612*6a54128fSAndroid Build Coastguard Worker 	/*
2613*6a54128fSAndroid Build Coastguard Worker 	 * Warn the user that filesystems with 128-byte inodes will
2614*6a54128fSAndroid Build Coastguard Worker 	 * not work properly beyond 2038.  This can be suppressed via
2615*6a54128fSAndroid Build Coastguard Worker 	 * a boolean in the mke2fs.conf file, and we will disable this
2616*6a54128fSAndroid Build Coastguard Worker 	 * warning for file systems created for the GNU Hurd.
2617*6a54128fSAndroid Build Coastguard Worker 	 */
2618*6a54128fSAndroid Build Coastguard Worker 	if (inode_size == EXT2_GOOD_OLD_INODE_SIZE &&
2619*6a54128fSAndroid Build Coastguard Worker 	    get_bool_from_profile(fs_types, "warn_y2038_dates", 1))
2620*6a54128fSAndroid Build Coastguard Worker 		printf(
2621*6a54128fSAndroid Build Coastguard Worker _("128-byte inodes cannot handle dates beyond 2038 and are deprecated\n"));
2622*6a54128fSAndroid Build Coastguard Worker 
2623*6a54128fSAndroid Build Coastguard Worker 	/* Make sure number of inodes specified will fit in 32 bits */
2624*6a54128fSAndroid Build Coastguard Worker 	if (num_inodes == 0) {
2625*6a54128fSAndroid Build Coastguard Worker 		unsigned long long n;
2626*6a54128fSAndroid Build Coastguard Worker 		n = ext2fs_blocks_count(&fs_param) * blocksize / inode_ratio;
2627*6a54128fSAndroid Build Coastguard Worker 		if (n > MAX_32_NUM) {
2628*6a54128fSAndroid Build Coastguard Worker 			if (ext2fs_has_feature_64bit(&fs_param))
2629*6a54128fSAndroid Build Coastguard Worker 				num_inodes = MAX_32_NUM;
2630*6a54128fSAndroid Build Coastguard Worker 			else {
2631*6a54128fSAndroid Build Coastguard Worker 				com_err(program_name, 0,
2632*6a54128fSAndroid Build Coastguard Worker 					_("too many inodes (%llu), raise "
2633*6a54128fSAndroid Build Coastguard Worker 					  "inode ratio?"),
2634*6a54128fSAndroid Build Coastguard Worker 					(unsigned long long) n);
2635*6a54128fSAndroid Build Coastguard Worker 				exit(1);
2636*6a54128fSAndroid Build Coastguard Worker 			}
2637*6a54128fSAndroid Build Coastguard Worker 		}
2638*6a54128fSAndroid Build Coastguard Worker 	} else if (num_inodes > MAX_32_NUM) {
2639*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0,
2640*6a54128fSAndroid Build Coastguard Worker 			_("too many inodes (%llu), specify < 2^32 inodes"),
2641*6a54128fSAndroid Build Coastguard Worker 			(unsigned long long) num_inodes);
2642*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2643*6a54128fSAndroid Build Coastguard Worker 	}
2644*6a54128fSAndroid Build Coastguard Worker 	/*
2645*6a54128fSAndroid Build Coastguard Worker 	 * Calculate number of inodes based on the inode ratio
2646*6a54128fSAndroid Build Coastguard Worker 	 */
2647*6a54128fSAndroid Build Coastguard Worker 	fs_param.s_inodes_count = num_inodes ? num_inodes :
2648*6a54128fSAndroid Build Coastguard Worker 		(ext2fs_blocks_count(&fs_param) * blocksize) / inode_ratio;
2649*6a54128fSAndroid Build Coastguard Worker 
2650*6a54128fSAndroid Build Coastguard Worker 	if ((((unsigned long long)fs_param.s_inodes_count) *
2651*6a54128fSAndroid Build Coastguard Worker 	     (inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE)) >=
2652*6a54128fSAndroid Build Coastguard Worker 	    ((ext2fs_blocks_count(&fs_param)) *
2653*6a54128fSAndroid Build Coastguard Worker 	     EXT2_BLOCK_SIZE(&fs_param))) {
2654*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0, _("inode_size (%u) * inodes_count "
2655*6a54128fSAndroid Build Coastguard Worker 					  "(%u) too big for a\n\t"
2656*6a54128fSAndroid Build Coastguard Worker 					  "filesystem with %llu blocks, "
2657*6a54128fSAndroid Build Coastguard Worker 					  "specify higher inode_ratio (-i)\n\t"
2658*6a54128fSAndroid Build Coastguard Worker 					  "or lower inode count (-N).\n"),
2659*6a54128fSAndroid Build Coastguard Worker 			inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE,
2660*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_inodes_count,
2661*6a54128fSAndroid Build Coastguard Worker 			(unsigned long long) ext2fs_blocks_count(&fs_param));
2662*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2663*6a54128fSAndroid Build Coastguard Worker 	}
2664*6a54128fSAndroid Build Coastguard Worker 
2665*6a54128fSAndroid Build Coastguard Worker 	/*
2666*6a54128fSAndroid Build Coastguard Worker 	 * Calculate number of blocks to reserve
2667*6a54128fSAndroid Build Coastguard Worker 	 */
2668*6a54128fSAndroid Build Coastguard Worker 	ext2fs_r_blocks_count_set(&fs_param, reserved_ratio *
2669*6a54128fSAndroid Build Coastguard Worker 				  ext2fs_blocks_count(&fs_param) / 100.0);
2670*6a54128fSAndroid Build Coastguard Worker 
2671*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_sparse_super2(&fs_param)) {
2672*6a54128fSAndroid Build Coastguard Worker 		if (num_backups >= 1)
2673*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_backup_bgs[0] = 1;
2674*6a54128fSAndroid Build Coastguard Worker 		if (num_backups >= 2)
2675*6a54128fSAndroid Build Coastguard Worker 			fs_param.s_backup_bgs[1] = ~0;
2676*6a54128fSAndroid Build Coastguard Worker 	}
2677*6a54128fSAndroid Build Coastguard Worker 
2678*6a54128fSAndroid Build Coastguard Worker 	free(fs_type);
2679*6a54128fSAndroid Build Coastguard Worker 	free(usage_types);
2680*6a54128fSAndroid Build Coastguard Worker 
2681*6a54128fSAndroid Build Coastguard Worker 	/* The isatty() test is so we don't break existing scripts */
2682*6a54128fSAndroid Build Coastguard Worker 	flags = CREATE_FILE;
2683*6a54128fSAndroid Build Coastguard Worker 	if (isatty(0) && isatty(1) && !offset)
2684*6a54128fSAndroid Build Coastguard Worker 		flags |= CHECK_FS_EXIST;
2685*6a54128fSAndroid Build Coastguard Worker 	if (!quiet)
2686*6a54128fSAndroid Build Coastguard Worker 		flags |= VERBOSE_CREATE;
2687*6a54128fSAndroid Build Coastguard Worker 	if (!explicit_fssize)
2688*6a54128fSAndroid Build Coastguard Worker 		flags |= NO_SIZE;
2689*6a54128fSAndroid Build Coastguard Worker 	if (!check_plausibility(device_name, flags, &is_device) && !force)
2690*6a54128fSAndroid Build Coastguard Worker 		proceed_question(proceed_delay);
2691*6a54128fSAndroid Build Coastguard Worker }
2692*6a54128fSAndroid Build Coastguard Worker 
should_do_undo(const char * name)2693*6a54128fSAndroid Build Coastguard Worker static int should_do_undo(const char *name)
2694*6a54128fSAndroid Build Coastguard Worker {
2695*6a54128fSAndroid Build Coastguard Worker 	errcode_t retval;
2696*6a54128fSAndroid Build Coastguard Worker 	io_channel channel;
2697*6a54128fSAndroid Build Coastguard Worker 	__u16	s_magic;
2698*6a54128fSAndroid Build Coastguard Worker 	struct ext2_super_block super;
2699*6a54128fSAndroid Build Coastguard Worker 	io_manager manager = default_io_manager;
2700*6a54128fSAndroid Build Coastguard Worker 	int csum_flag, force_undo;
2701*6a54128fSAndroid Build Coastguard Worker 
2702*6a54128fSAndroid Build Coastguard Worker 	csum_flag = ext2fs_has_feature_metadata_csum(&fs_param) ||
2703*6a54128fSAndroid Build Coastguard Worker 		    ext2fs_has_feature_gdt_csum(&fs_param);
2704*6a54128fSAndroid Build Coastguard Worker 	force_undo = get_int_from_profile(fs_types, "force_undo", 0);
2705*6a54128fSAndroid Build Coastguard Worker 	if (!force_undo && (!csum_flag || !lazy_itable_init))
2706*6a54128fSAndroid Build Coastguard Worker 		return 0;
2707*6a54128fSAndroid Build Coastguard Worker 
2708*6a54128fSAndroid Build Coastguard Worker 	retval = manager->open(name, IO_FLAG_EXCLUSIVE,  &channel);
2709*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
2710*6a54128fSAndroid Build Coastguard Worker 		/*
2711*6a54128fSAndroid Build Coastguard Worker 		 * We don't handle error cases instead we
2712*6a54128fSAndroid Build Coastguard Worker 		 * declare that the file system doesn't exist
2713*6a54128fSAndroid Build Coastguard Worker 		 * and let the rest of mke2fs take care of
2714*6a54128fSAndroid Build Coastguard Worker 		 * error
2715*6a54128fSAndroid Build Coastguard Worker 		 */
2716*6a54128fSAndroid Build Coastguard Worker 		retval = 0;
2717*6a54128fSAndroid Build Coastguard Worker 		goto open_err_out;
2718*6a54128fSAndroid Build Coastguard Worker 	}
2719*6a54128fSAndroid Build Coastguard Worker 
2720*6a54128fSAndroid Build Coastguard Worker 	io_channel_set_blksize(channel, SUPERBLOCK_OFFSET);
2721*6a54128fSAndroid Build Coastguard Worker 	retval = io_channel_read_blk64(channel, 1, -SUPERBLOCK_SIZE, &super);
2722*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
2723*6a54128fSAndroid Build Coastguard Worker 		retval = 0;
2724*6a54128fSAndroid Build Coastguard Worker 		goto err_out;
2725*6a54128fSAndroid Build Coastguard Worker 	}
2726*6a54128fSAndroid Build Coastguard Worker 
2727*6a54128fSAndroid Build Coastguard Worker #if defined(WORDS_BIGENDIAN)
2728*6a54128fSAndroid Build Coastguard Worker 	s_magic = ext2fs_swab16(super.s_magic);
2729*6a54128fSAndroid Build Coastguard Worker #else
2730*6a54128fSAndroid Build Coastguard Worker 	s_magic = super.s_magic;
2731*6a54128fSAndroid Build Coastguard Worker #endif
2732*6a54128fSAndroid Build Coastguard Worker 
2733*6a54128fSAndroid Build Coastguard Worker 	if (s_magic == EXT2_SUPER_MAGIC)
2734*6a54128fSAndroid Build Coastguard Worker 		retval = 1;
2735*6a54128fSAndroid Build Coastguard Worker 
2736*6a54128fSAndroid Build Coastguard Worker err_out:
2737*6a54128fSAndroid Build Coastguard Worker 	io_channel_close(channel);
2738*6a54128fSAndroid Build Coastguard Worker 
2739*6a54128fSAndroid Build Coastguard Worker open_err_out:
2740*6a54128fSAndroid Build Coastguard Worker 
2741*6a54128fSAndroid Build Coastguard Worker 	return retval;
2742*6a54128fSAndroid Build Coastguard Worker }
2743*6a54128fSAndroid Build Coastguard Worker 
mke2fs_setup_tdb(const char * name,io_manager * io_ptr)2744*6a54128fSAndroid Build Coastguard Worker static int mke2fs_setup_tdb(const char *name, io_manager *io_ptr)
2745*6a54128fSAndroid Build Coastguard Worker {
2746*6a54128fSAndroid Build Coastguard Worker 	errcode_t retval = ENOMEM;
2747*6a54128fSAndroid Build Coastguard Worker 	char *tdb_dir = NULL, *tdb_file = NULL;
2748*6a54128fSAndroid Build Coastguard Worker 	char *dev_name, *tmp_name;
2749*6a54128fSAndroid Build Coastguard Worker 	int free_tdb_dir = 0;
2750*6a54128fSAndroid Build Coastguard Worker 
2751*6a54128fSAndroid Build Coastguard Worker 	/* (re)open a specific undo file */
2752*6a54128fSAndroid Build Coastguard Worker 	if (undo_file && undo_file[0] != 0) {
2753*6a54128fSAndroid Build Coastguard Worker 		retval = set_undo_io_backing_manager(*io_ptr);
2754*6a54128fSAndroid Build Coastguard Worker 		if (retval)
2755*6a54128fSAndroid Build Coastguard Worker 			goto err;
2756*6a54128fSAndroid Build Coastguard Worker 		*io_ptr = undo_io_manager;
2757*6a54128fSAndroid Build Coastguard Worker 		retval = set_undo_io_backup_file(undo_file);
2758*6a54128fSAndroid Build Coastguard Worker 		if (retval)
2759*6a54128fSAndroid Build Coastguard Worker 			goto err;
2760*6a54128fSAndroid Build Coastguard Worker 		printf(_("Overwriting existing filesystem; this can be undone "
2761*6a54128fSAndroid Build Coastguard Worker 			 "using the command:\n"
2762*6a54128fSAndroid Build Coastguard Worker 			 "    e2undo %s %s\n\n"), undo_file, name);
2763*6a54128fSAndroid Build Coastguard Worker 		return retval;
2764*6a54128fSAndroid Build Coastguard Worker 	}
2765*6a54128fSAndroid Build Coastguard Worker 
2766*6a54128fSAndroid Build Coastguard Worker 	/*
2767*6a54128fSAndroid Build Coastguard Worker 	 * Configuration via a conf file would be
2768*6a54128fSAndroid Build Coastguard Worker 	 * nice
2769*6a54128fSAndroid Build Coastguard Worker 	 */
2770*6a54128fSAndroid Build Coastguard Worker 	tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
2771*6a54128fSAndroid Build Coastguard Worker 	if (!tdb_dir) {
2772*6a54128fSAndroid Build Coastguard Worker 		profile_get_string(profile, "defaults",
2773*6a54128fSAndroid Build Coastguard Worker 				   "undo_dir", 0, "/var/lib/e2fsprogs",
2774*6a54128fSAndroid Build Coastguard Worker 				   &tdb_dir);
2775*6a54128fSAndroid Build Coastguard Worker 		free_tdb_dir = 1;
2776*6a54128fSAndroid Build Coastguard Worker 	}
2777*6a54128fSAndroid Build Coastguard Worker 
2778*6a54128fSAndroid Build Coastguard Worker 	if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
2779*6a54128fSAndroid Build Coastguard Worker 	    access(tdb_dir, W_OK)) {
2780*6a54128fSAndroid Build Coastguard Worker 		if (free_tdb_dir)
2781*6a54128fSAndroid Build Coastguard Worker 			free(tdb_dir);
2782*6a54128fSAndroid Build Coastguard Worker 		return 0;
2783*6a54128fSAndroid Build Coastguard Worker 	}
2784*6a54128fSAndroid Build Coastguard Worker 
2785*6a54128fSAndroid Build Coastguard Worker 	tmp_name = strdup(name);
2786*6a54128fSAndroid Build Coastguard Worker 	if (!tmp_name)
2787*6a54128fSAndroid Build Coastguard Worker 		goto errout;
2788*6a54128fSAndroid Build Coastguard Worker 	dev_name = basename(tmp_name);
2789*6a54128fSAndroid Build Coastguard Worker 	tdb_file = malloc(strlen(tdb_dir) + 8 + strlen(dev_name) + 7 + 1);
2790*6a54128fSAndroid Build Coastguard Worker 	if (!tdb_file) {
2791*6a54128fSAndroid Build Coastguard Worker 		free(tmp_name);
2792*6a54128fSAndroid Build Coastguard Worker 		goto errout;
2793*6a54128fSAndroid Build Coastguard Worker 	}
2794*6a54128fSAndroid Build Coastguard Worker 	sprintf(tdb_file, "%s/mke2fs-%s.e2undo", tdb_dir, dev_name);
2795*6a54128fSAndroid Build Coastguard Worker 	free(tmp_name);
2796*6a54128fSAndroid Build Coastguard Worker 
2797*6a54128fSAndroid Build Coastguard Worker 	if ((unlink(tdb_file) < 0) && (errno != ENOENT)) {
2798*6a54128fSAndroid Build Coastguard Worker 		retval = errno;
2799*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval,
2800*6a54128fSAndroid Build Coastguard Worker 			_("while trying to delete %s"), tdb_file);
2801*6a54128fSAndroid Build Coastguard Worker 		goto errout;
2802*6a54128fSAndroid Build Coastguard Worker 	}
2803*6a54128fSAndroid Build Coastguard Worker 
2804*6a54128fSAndroid Build Coastguard Worker 	retval = set_undo_io_backing_manager(*io_ptr);
2805*6a54128fSAndroid Build Coastguard Worker 	if (retval)
2806*6a54128fSAndroid Build Coastguard Worker 		goto errout;
2807*6a54128fSAndroid Build Coastguard Worker 	*io_ptr = undo_io_manager;
2808*6a54128fSAndroid Build Coastguard Worker 	retval = set_undo_io_backup_file(tdb_file);
2809*6a54128fSAndroid Build Coastguard Worker 	if (retval)
2810*6a54128fSAndroid Build Coastguard Worker 		goto errout;
2811*6a54128fSAndroid Build Coastguard Worker 	printf(_("Overwriting existing filesystem; this can be undone "
2812*6a54128fSAndroid Build Coastguard Worker 		 "using the command:\n"
2813*6a54128fSAndroid Build Coastguard Worker 		 "    e2undo %s %s\n\n"), tdb_file, name);
2814*6a54128fSAndroid Build Coastguard Worker 
2815*6a54128fSAndroid Build Coastguard Worker 	if (free_tdb_dir)
2816*6a54128fSAndroid Build Coastguard Worker 		free(tdb_dir);
2817*6a54128fSAndroid Build Coastguard Worker 	free(tdb_file);
2818*6a54128fSAndroid Build Coastguard Worker 	return 0;
2819*6a54128fSAndroid Build Coastguard Worker 
2820*6a54128fSAndroid Build Coastguard Worker errout:
2821*6a54128fSAndroid Build Coastguard Worker 	if (free_tdb_dir)
2822*6a54128fSAndroid Build Coastguard Worker 		free(tdb_dir);
2823*6a54128fSAndroid Build Coastguard Worker 	free(tdb_file);
2824*6a54128fSAndroid Build Coastguard Worker err:
2825*6a54128fSAndroid Build Coastguard Worker 	com_err(program_name, retval, "%s",
2826*6a54128fSAndroid Build Coastguard Worker 		_("while trying to setup undo file\n"));
2827*6a54128fSAndroid Build Coastguard Worker 	return retval;
2828*6a54128fSAndroid Build Coastguard Worker }
2829*6a54128fSAndroid Build Coastguard Worker 
mke2fs_discard_device(ext2_filsys fs)2830*6a54128fSAndroid Build Coastguard Worker static int mke2fs_discard_device(ext2_filsys fs)
2831*6a54128fSAndroid Build Coastguard Worker {
2832*6a54128fSAndroid Build Coastguard Worker 	struct ext2fs_numeric_progress_struct progress;
2833*6a54128fSAndroid Build Coastguard Worker 	blk64_t blocks = ext2fs_blocks_count(fs->super);
2834*6a54128fSAndroid Build Coastguard Worker 	blk64_t count = DISCARD_STEP_MB;
2835*6a54128fSAndroid Build Coastguard Worker 	blk64_t cur = 0;
2836*6a54128fSAndroid Build Coastguard Worker 	int retval = 0;
2837*6a54128fSAndroid Build Coastguard Worker 
2838*6a54128fSAndroid Build Coastguard Worker 	/*
2839*6a54128fSAndroid Build Coastguard Worker 	 * Let's try if discard really works on the device, so
2840*6a54128fSAndroid Build Coastguard Worker 	 * we do not print numeric progress resulting in failure
2841*6a54128fSAndroid Build Coastguard Worker 	 * afterwards.
2842*6a54128fSAndroid Build Coastguard Worker 	 */
2843*6a54128fSAndroid Build Coastguard Worker 	retval = io_channel_discard(fs->io, 0, 1);
2844*6a54128fSAndroid Build Coastguard Worker 	if (retval)
2845*6a54128fSAndroid Build Coastguard Worker 		return retval;
2846*6a54128fSAndroid Build Coastguard Worker 
2847*6a54128fSAndroid Build Coastguard Worker 	count *= (1024 * 1024);
2848*6a54128fSAndroid Build Coastguard Worker 	count /= fs->blocksize;
2849*6a54128fSAndroid Build Coastguard Worker 
2850*6a54128fSAndroid Build Coastguard Worker 	ext2fs_numeric_progress_init(fs, &progress,
2851*6a54128fSAndroid Build Coastguard Worker 				     _("Discarding device blocks: "),
2852*6a54128fSAndroid Build Coastguard Worker 				     blocks);
2853*6a54128fSAndroid Build Coastguard Worker 	while (cur < blocks) {
2854*6a54128fSAndroid Build Coastguard Worker 		ext2fs_numeric_progress_update(fs, &progress, cur);
2855*6a54128fSAndroid Build Coastguard Worker 
2856*6a54128fSAndroid Build Coastguard Worker 		if (cur + count > blocks)
2857*6a54128fSAndroid Build Coastguard Worker 			count = blocks - cur;
2858*6a54128fSAndroid Build Coastguard Worker 
2859*6a54128fSAndroid Build Coastguard Worker 		retval = io_channel_discard(fs->io, cur, count);
2860*6a54128fSAndroid Build Coastguard Worker 		if (retval)
2861*6a54128fSAndroid Build Coastguard Worker 			break;
2862*6a54128fSAndroid Build Coastguard Worker 		cur += count;
2863*6a54128fSAndroid Build Coastguard Worker 	}
2864*6a54128fSAndroid Build Coastguard Worker 
2865*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
2866*6a54128fSAndroid Build Coastguard Worker 		ext2fs_numeric_progress_close(fs, &progress,
2867*6a54128fSAndroid Build Coastguard Worker 				      _("failed - "));
2868*6a54128fSAndroid Build Coastguard Worker 		if (!quiet)
2869*6a54128fSAndroid Build Coastguard Worker 			printf("%s\n",error_message(retval));
2870*6a54128fSAndroid Build Coastguard Worker 	} else
2871*6a54128fSAndroid Build Coastguard Worker 		ext2fs_numeric_progress_close(fs, &progress,
2872*6a54128fSAndroid Build Coastguard Worker 				      _("done                            \n"));
2873*6a54128fSAndroid Build Coastguard Worker 
2874*6a54128fSAndroid Build Coastguard Worker 	return retval;
2875*6a54128fSAndroid Build Coastguard Worker }
2876*6a54128fSAndroid Build Coastguard Worker 
fix_cluster_bg_counts(ext2_filsys fs)2877*6a54128fSAndroid Build Coastguard Worker static void fix_cluster_bg_counts(ext2_filsys fs)
2878*6a54128fSAndroid Build Coastguard Worker {
2879*6a54128fSAndroid Build Coastguard Worker 	blk64_t		block, num_blocks, last_block, next;
2880*6a54128fSAndroid Build Coastguard Worker 	blk64_t		tot_free = 0;
2881*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval;
2882*6a54128fSAndroid Build Coastguard Worker 	dgrp_t		group = 0;
2883*6a54128fSAndroid Build Coastguard Worker 	int		grp_free = 0;
2884*6a54128fSAndroid Build Coastguard Worker 
2885*6a54128fSAndroid Build Coastguard Worker 	num_blocks = ext2fs_blocks_count(fs->super);
2886*6a54128fSAndroid Build Coastguard Worker 	last_block = ext2fs_group_last_block2(fs, group);
2887*6a54128fSAndroid Build Coastguard Worker 	block = fs->super->s_first_data_block;
2888*6a54128fSAndroid Build Coastguard Worker 	while (block < num_blocks) {
2889*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_find_first_zero_block_bitmap2(fs->block_map,
2890*6a54128fSAndroid Build Coastguard Worker 						block, last_block, &next);
2891*6a54128fSAndroid Build Coastguard Worker 		if (retval == 0)
2892*6a54128fSAndroid Build Coastguard Worker 			block = next;
2893*6a54128fSAndroid Build Coastguard Worker 		else {
2894*6a54128fSAndroid Build Coastguard Worker 			block = last_block + 1;
2895*6a54128fSAndroid Build Coastguard Worker 			goto next_bg;
2896*6a54128fSAndroid Build Coastguard Worker 		}
2897*6a54128fSAndroid Build Coastguard Worker 
2898*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_find_first_set_block_bitmap2(fs->block_map,
2899*6a54128fSAndroid Build Coastguard Worker 						block, last_block, &next);
2900*6a54128fSAndroid Build Coastguard Worker 		if (retval)
2901*6a54128fSAndroid Build Coastguard Worker 			next = last_block + 1;
2902*6a54128fSAndroid Build Coastguard Worker 		grp_free += EXT2FS_NUM_B2C(fs, next - block);
2903*6a54128fSAndroid Build Coastguard Worker 		tot_free += next - block;
2904*6a54128fSAndroid Build Coastguard Worker 		block = next;
2905*6a54128fSAndroid Build Coastguard Worker 
2906*6a54128fSAndroid Build Coastguard Worker 		if (block > last_block) {
2907*6a54128fSAndroid Build Coastguard Worker 		next_bg:
2908*6a54128fSAndroid Build Coastguard Worker 			ext2fs_bg_free_blocks_count_set(fs, group, grp_free);
2909*6a54128fSAndroid Build Coastguard Worker 			ext2fs_group_desc_csum_set(fs, group);
2910*6a54128fSAndroid Build Coastguard Worker 			grp_free = 0;
2911*6a54128fSAndroid Build Coastguard Worker 			group++;
2912*6a54128fSAndroid Build Coastguard Worker 			last_block = ext2fs_group_last_block2(fs, group);
2913*6a54128fSAndroid Build Coastguard Worker 		}
2914*6a54128fSAndroid Build Coastguard Worker 	}
2915*6a54128fSAndroid Build Coastguard Worker 	ext2fs_free_blocks_count_set(fs->super, tot_free);
2916*6a54128fSAndroid Build Coastguard Worker }
2917*6a54128fSAndroid Build Coastguard Worker 
create_quota_inodes(ext2_filsys fs)2918*6a54128fSAndroid Build Coastguard Worker static int create_quota_inodes(ext2_filsys fs)
2919*6a54128fSAndroid Build Coastguard Worker {
2920*6a54128fSAndroid Build Coastguard Worker 	quota_ctx_t qctx;
2921*6a54128fSAndroid Build Coastguard Worker 	errcode_t retval;
2922*6a54128fSAndroid Build Coastguard Worker 
2923*6a54128fSAndroid Build Coastguard Worker 	retval = quota_init_context(&qctx, fs, quotatype_bits);
2924*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
2925*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval,
2926*6a54128fSAndroid Build Coastguard Worker 			_("while initializing quota context"));
2927*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2928*6a54128fSAndroid Build Coastguard Worker 	}
2929*6a54128fSAndroid Build Coastguard Worker 	quota_compute_usage(qctx);
2930*6a54128fSAndroid Build Coastguard Worker 	retval = quota_write_inode(qctx, quotatype_bits);
2931*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
2932*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval,
2933*6a54128fSAndroid Build Coastguard Worker 			_("while writing quota inodes"));
2934*6a54128fSAndroid Build Coastguard Worker 		exit(1);
2935*6a54128fSAndroid Build Coastguard Worker 	}
2936*6a54128fSAndroid Build Coastguard Worker 	quota_release_context(&qctx);
2937*6a54128fSAndroid Build Coastguard Worker 
2938*6a54128fSAndroid Build Coastguard Worker 	return 0;
2939*6a54128fSAndroid Build Coastguard Worker }
2940*6a54128fSAndroid Build Coastguard Worker 
set_error_behavior(ext2_filsys fs)2941*6a54128fSAndroid Build Coastguard Worker static errcode_t set_error_behavior(ext2_filsys fs)
2942*6a54128fSAndroid Build Coastguard Worker {
2943*6a54128fSAndroid Build Coastguard Worker 	char	*arg = NULL;
2944*6a54128fSAndroid Build Coastguard Worker 	short	errors = fs->super->s_errors;
2945*6a54128fSAndroid Build Coastguard Worker 
2946*6a54128fSAndroid Build Coastguard Worker 	arg = get_string_from_profile(fs_types, "errors", NULL);
2947*6a54128fSAndroid Build Coastguard Worker 	if (arg == NULL)
2948*6a54128fSAndroid Build Coastguard Worker 		goto try_user;
2949*6a54128fSAndroid Build Coastguard Worker 
2950*6a54128fSAndroid Build Coastguard Worker 	if (strcmp(arg, "continue") == 0)
2951*6a54128fSAndroid Build Coastguard Worker 		errors = EXT2_ERRORS_CONTINUE;
2952*6a54128fSAndroid Build Coastguard Worker 	else if (strcmp(arg, "remount-ro") == 0)
2953*6a54128fSAndroid Build Coastguard Worker 		errors = EXT2_ERRORS_RO;
2954*6a54128fSAndroid Build Coastguard Worker 	else if (strcmp(arg, "panic") == 0)
2955*6a54128fSAndroid Build Coastguard Worker 		errors = EXT2_ERRORS_PANIC;
2956*6a54128fSAndroid Build Coastguard Worker 	else {
2957*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, 0,
2958*6a54128fSAndroid Build Coastguard Worker 			_("bad error behavior in profile - %s"),
2959*6a54128fSAndroid Build Coastguard Worker 			arg);
2960*6a54128fSAndroid Build Coastguard Worker 		free(arg);
2961*6a54128fSAndroid Build Coastguard Worker 		return EXT2_ET_INVALID_ARGUMENT;
2962*6a54128fSAndroid Build Coastguard Worker 	}
2963*6a54128fSAndroid Build Coastguard Worker 	free(arg);
2964*6a54128fSAndroid Build Coastguard Worker 
2965*6a54128fSAndroid Build Coastguard Worker try_user:
2966*6a54128fSAndroid Build Coastguard Worker 	if (errors_behavior)
2967*6a54128fSAndroid Build Coastguard Worker 		errors = errors_behavior;
2968*6a54128fSAndroid Build Coastguard Worker 
2969*6a54128fSAndroid Build Coastguard Worker 	fs->super->s_errors = errors;
2970*6a54128fSAndroid Build Coastguard Worker 	return 0;
2971*6a54128fSAndroid Build Coastguard Worker }
2972*6a54128fSAndroid Build Coastguard Worker 
main(int argc,char * argv[])2973*6a54128fSAndroid Build Coastguard Worker int main (int argc, char *argv[])
2974*6a54128fSAndroid Build Coastguard Worker {
2975*6a54128fSAndroid Build Coastguard Worker 	errcode_t	retval = 0;
2976*6a54128fSAndroid Build Coastguard Worker 	ext2_filsys	fs;
2977*6a54128fSAndroid Build Coastguard Worker 	badblocks_list	bb_list = 0;
2978*6a54128fSAndroid Build Coastguard Worker 	badblocks_iterate	bb_iter;
2979*6a54128fSAndroid Build Coastguard Worker 	blk_t		blk;
2980*6a54128fSAndroid Build Coastguard Worker 	struct ext2fs_journal_params	jparams = {0};
2981*6a54128fSAndroid Build Coastguard Worker 	unsigned int	i, checkinterval;
2982*6a54128fSAndroid Build Coastguard Worker 	int		max_mnt_count;
2983*6a54128fSAndroid Build Coastguard Worker 	int		val, hash_alg;
2984*6a54128fSAndroid Build Coastguard Worker 	int		flags;
2985*6a54128fSAndroid Build Coastguard Worker 	int		old_bitmaps;
2986*6a54128fSAndroid Build Coastguard Worker 	io_manager	io_ptr;
2987*6a54128fSAndroid Build Coastguard Worker 	char		opt_string[40];
2988*6a54128fSAndroid Build Coastguard Worker 	char		*hash_alg_str;
2989*6a54128fSAndroid Build Coastguard Worker 	int		itable_zeroed = 0;
2990*6a54128fSAndroid Build Coastguard Worker 	blk64_t		overhead;
2991*6a54128fSAndroid Build Coastguard Worker 
2992*6a54128fSAndroid Build Coastguard Worker #ifdef ENABLE_NLS
2993*6a54128fSAndroid Build Coastguard Worker 	setlocale(LC_MESSAGES, "");
2994*6a54128fSAndroid Build Coastguard Worker 	setlocale(LC_CTYPE, "");
2995*6a54128fSAndroid Build Coastguard Worker 	bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
2996*6a54128fSAndroid Build Coastguard Worker 	textdomain(NLS_CAT_NAME);
2997*6a54128fSAndroid Build Coastguard Worker 	set_com_err_gettext(gettext);
2998*6a54128fSAndroid Build Coastguard Worker #endif
2999*6a54128fSAndroid Build Coastguard Worker 	PRS(argc, argv);
3000*6a54128fSAndroid Build Coastguard Worker 
3001*6a54128fSAndroid Build Coastguard Worker #ifdef CONFIG_TESTIO_DEBUG
3002*6a54128fSAndroid Build Coastguard Worker 	if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
3003*6a54128fSAndroid Build Coastguard Worker 		io_ptr = test_io_manager;
3004*6a54128fSAndroid Build Coastguard Worker 		test_io_backing_manager = default_io_manager;
3005*6a54128fSAndroid Build Coastguard Worker 	} else
3006*6a54128fSAndroid Build Coastguard Worker #endif
3007*6a54128fSAndroid Build Coastguard Worker 		io_ptr = default_io_manager;
3008*6a54128fSAndroid Build Coastguard Worker 
3009*6a54128fSAndroid Build Coastguard Worker 	if (undo_file != NULL || should_do_undo(device_name)) {
3010*6a54128fSAndroid Build Coastguard Worker 		retval = mke2fs_setup_tdb(device_name, &io_ptr);
3011*6a54128fSAndroid Build Coastguard Worker 		if (retval)
3012*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3013*6a54128fSAndroid Build Coastguard Worker 	}
3014*6a54128fSAndroid Build Coastguard Worker 
3015*6a54128fSAndroid Build Coastguard Worker 	/*
3016*6a54128fSAndroid Build Coastguard Worker 	 * Initialize the superblock....
3017*6a54128fSAndroid Build Coastguard Worker 	 */
3018*6a54128fSAndroid Build Coastguard Worker 	flags = EXT2_FLAG_EXCLUSIVE;
3019*6a54128fSAndroid Build Coastguard Worker 	if (direct_io)
3020*6a54128fSAndroid Build Coastguard Worker 		flags |= EXT2_FLAG_DIRECT_IO;
3021*6a54128fSAndroid Build Coastguard Worker 	profile_get_boolean(profile, "options", "old_bitmaps", 0, 0,
3022*6a54128fSAndroid Build Coastguard Worker 			    &old_bitmaps);
3023*6a54128fSAndroid Build Coastguard Worker 	if (!old_bitmaps)
3024*6a54128fSAndroid Build Coastguard Worker 		flags |= EXT2_FLAG_64BITS;
3025*6a54128fSAndroid Build Coastguard Worker 	/*
3026*6a54128fSAndroid Build Coastguard Worker 	 * By default, we print how many inode tables or block groups
3027*6a54128fSAndroid Build Coastguard Worker 	 * or whatever we've written so far.  The quiet flag disables
3028*6a54128fSAndroid Build Coastguard Worker 	 * this, along with a lot of other output.
3029*6a54128fSAndroid Build Coastguard Worker 	 */
3030*6a54128fSAndroid Build Coastguard Worker 	if (!quiet)
3031*6a54128fSAndroid Build Coastguard Worker 		flags |= EXT2_FLAG_PRINT_PROGRESS;
3032*6a54128fSAndroid Build Coastguard Worker 	if (android_sparse_file) {
3033*6a54128fSAndroid Build Coastguard Worker 		char *android_sparse_params = malloc(strlen(device_name) + 48);
3034*6a54128fSAndroid Build Coastguard Worker 
3035*6a54128fSAndroid Build Coastguard Worker 		if (!android_sparse_params) {
3036*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, ENOMEM, "%s",
3037*6a54128fSAndroid Build Coastguard Worker 				_("in malloc for android_sparse_params"));
3038*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3039*6a54128fSAndroid Build Coastguard Worker 		}
3040*6a54128fSAndroid Build Coastguard Worker 		sprintf(android_sparse_params, "(%s):%u:%u",
3041*6a54128fSAndroid Build Coastguard Worker 			 device_name, fs_param.s_blocks_count,
3042*6a54128fSAndroid Build Coastguard Worker 			 1024 << fs_param.s_log_block_size);
3043*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_initialize(android_sparse_params, flags,
3044*6a54128fSAndroid Build Coastguard Worker 					   &fs_param, sparse_io_manager, &fs);
3045*6a54128fSAndroid Build Coastguard Worker 		free(android_sparse_params);
3046*6a54128fSAndroid Build Coastguard Worker 	} else
3047*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_initialize(device_name, flags, &fs_param,
3048*6a54128fSAndroid Build Coastguard Worker 					   io_ptr, &fs);
3049*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
3050*6a54128fSAndroid Build Coastguard Worker 		com_err(device_name, retval, "%s",
3051*6a54128fSAndroid Build Coastguard Worker 			_("while setting up superblock"));
3052*6a54128fSAndroid Build Coastguard Worker 		exit(1);
3053*6a54128fSAndroid Build Coastguard Worker 	}
3054*6a54128fSAndroid Build Coastguard Worker 	fs->progress_ops = &ext2fs_numeric_progress_ops;
3055*6a54128fSAndroid Build Coastguard Worker 
3056*6a54128fSAndroid Build Coastguard Worker 	/* Set the error behavior */
3057*6a54128fSAndroid Build Coastguard Worker 	retval = set_error_behavior(fs);
3058*6a54128fSAndroid Build Coastguard Worker 	if (retval)
3059*6a54128fSAndroid Build Coastguard Worker 		usage();
3060*6a54128fSAndroid Build Coastguard Worker 
3061*6a54128fSAndroid Build Coastguard Worker 	/* Check the user's mkfs options for metadata checksumming */
3062*6a54128fSAndroid Build Coastguard Worker 	if (!quiet &&
3063*6a54128fSAndroid Build Coastguard Worker 	    !ext2fs_has_feature_journal_dev(fs->super) &&
3064*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_metadata_csum(fs->super)) {
3065*6a54128fSAndroid Build Coastguard Worker 		if (!ext2fs_has_feature_extents(fs->super))
3066*6a54128fSAndroid Build Coastguard Worker 			printf("%s",
3067*6a54128fSAndroid Build Coastguard Worker 			       _("Extents are not enabled.  The file extent "
3068*6a54128fSAndroid Build Coastguard Worker 				 "tree can be checksummed, whereas block maps "
3069*6a54128fSAndroid Build Coastguard Worker 				 "cannot.  Not enabling extents reduces the "
3070*6a54128fSAndroid Build Coastguard Worker 				 "coverage of metadata checksumming.  "
3071*6a54128fSAndroid Build Coastguard Worker 				 "Pass -O extents to rectify.\n"));
3072*6a54128fSAndroid Build Coastguard Worker 		if (!ext2fs_has_feature_64bit(fs->super))
3073*6a54128fSAndroid Build Coastguard Worker 			printf("%s",
3074*6a54128fSAndroid Build Coastguard Worker 			       _("64-bit filesystem support is not enabled.  "
3075*6a54128fSAndroid Build Coastguard Worker 				 "The larger fields afforded by this feature "
3076*6a54128fSAndroid Build Coastguard Worker 				 "enable full-strength checksumming.  "
3077*6a54128fSAndroid Build Coastguard Worker 				 "Pass -O 64bit to rectify.\n"));
3078*6a54128fSAndroid Build Coastguard Worker 	}
3079*6a54128fSAndroid Build Coastguard Worker 
3080*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_csum_seed(fs->super) &&
3081*6a54128fSAndroid Build Coastguard Worker 	    !ext2fs_has_feature_metadata_csum(fs->super)) {
3082*6a54128fSAndroid Build Coastguard Worker 		printf("%s", _("The metadata_csum_seed feature "
3083*6a54128fSAndroid Build Coastguard Worker 			       "requires the metadata_csum feature.\n"));
3084*6a54128fSAndroid Build Coastguard Worker 		exit(1);
3085*6a54128fSAndroid Build Coastguard Worker 	}
3086*6a54128fSAndroid Build Coastguard Worker 
3087*6a54128fSAndroid Build Coastguard Worker 	/* Calculate journal blocks */
3088*6a54128fSAndroid Build Coastguard Worker 	if (!journal_device && ((journal_size) ||
3089*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_journal(&fs_param)))
3090*6a54128fSAndroid Build Coastguard Worker 		figure_journal_size(&jparams, journal_size, journal_fc_size, fs);
3091*6a54128fSAndroid Build Coastguard Worker 
3092*6a54128fSAndroid Build Coastguard Worker 	sprintf(opt_string, "tdb_data_size=%d", fs->blocksize <= 4096 ?
3093*6a54128fSAndroid Build Coastguard Worker 		32768 : fs->blocksize * 8);
3094*6a54128fSAndroid Build Coastguard Worker 	io_channel_set_options(fs->io, opt_string);
3095*6a54128fSAndroid Build Coastguard Worker 	if (offset) {
3096*6a54128fSAndroid Build Coastguard Worker 		sprintf(opt_string, "offset=%llu", (unsigned long long) offset);
3097*6a54128fSAndroid Build Coastguard Worker 		io_channel_set_options(fs->io, opt_string);
3098*6a54128fSAndroid Build Coastguard Worker 	}
3099*6a54128fSAndroid Build Coastguard Worker 
3100*6a54128fSAndroid Build Coastguard Worker 	/* Can't undo discard ... */
3101*6a54128fSAndroid Build Coastguard Worker 	if (!noaction && discard && dev_size && (io_ptr != undo_io_manager)) {
3102*6a54128fSAndroid Build Coastguard Worker 		retval = mke2fs_discard_device(fs);
3103*6a54128fSAndroid Build Coastguard Worker 		if (!retval && io_channel_discard_zeroes_data(fs->io)) {
3104*6a54128fSAndroid Build Coastguard Worker 			if (verbose)
3105*6a54128fSAndroid Build Coastguard Worker 				printf("%s",
3106*6a54128fSAndroid Build Coastguard Worker 				       _("Discard succeeded and will return "
3107*6a54128fSAndroid Build Coastguard Worker 					 "0s - skipping inode table wipe\n"));
3108*6a54128fSAndroid Build Coastguard Worker 			lazy_itable_init = 1;
3109*6a54128fSAndroid Build Coastguard Worker 			itable_zeroed = 1;
3110*6a54128fSAndroid Build Coastguard Worker 			zero_hugefile = 0;
3111*6a54128fSAndroid Build Coastguard Worker 		}
3112*6a54128fSAndroid Build Coastguard Worker 	}
3113*6a54128fSAndroid Build Coastguard Worker 
3114*6a54128fSAndroid Build Coastguard Worker 	if (fs_param.s_flags & EXT2_FLAGS_TEST_FILESYS)
3115*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_flags |= EXT2_FLAGS_TEST_FILESYS;
3116*6a54128fSAndroid Build Coastguard Worker 
3117*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_flex_bg(&fs_param) ||
3118*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_huge_file(&fs_param) ||
3119*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_gdt_csum(&fs_param) ||
3120*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_dir_nlink(&fs_param) ||
3121*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_metadata_csum(&fs_param) ||
3122*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_extra_isize(&fs_param))
3123*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_kbytes_written = 1;
3124*6a54128fSAndroid Build Coastguard Worker 
3125*6a54128fSAndroid Build Coastguard Worker 	/*
3126*6a54128fSAndroid Build Coastguard Worker 	 * Wipe out the old on-disk superblock
3127*6a54128fSAndroid Build Coastguard Worker 	 */
3128*6a54128fSAndroid Build Coastguard Worker 	if (!noaction)
3129*6a54128fSAndroid Build Coastguard Worker 		zap_sector(fs, 2, 6);
3130*6a54128fSAndroid Build Coastguard Worker 
3131*6a54128fSAndroid Build Coastguard Worker 	/*
3132*6a54128fSAndroid Build Coastguard Worker 	 * Parse or generate a UUID for the filesystem
3133*6a54128fSAndroid Build Coastguard Worker 	 */
3134*6a54128fSAndroid Build Coastguard Worker 	if (fs_uuid) {
3135*6a54128fSAndroid Build Coastguard Worker 		if ((strcasecmp(fs_uuid, "null") == 0) ||
3136*6a54128fSAndroid Build Coastguard Worker 		    (strcasecmp(fs_uuid, "clear") == 0)) {
3137*6a54128fSAndroid Build Coastguard Worker 			uuid_clear(fs->super->s_uuid);
3138*6a54128fSAndroid Build Coastguard Worker 		} else if (strcasecmp(fs_uuid, "time") == 0) {
3139*6a54128fSAndroid Build Coastguard Worker 			uuid_generate_time(fs->super->s_uuid);
3140*6a54128fSAndroid Build Coastguard Worker 		} else if (strcasecmp(fs_uuid, "random") == 0) {
3141*6a54128fSAndroid Build Coastguard Worker 			uuid_generate(fs->super->s_uuid);
3142*6a54128fSAndroid Build Coastguard Worker 		} else if (uuid_parse(fs_uuid, fs->super->s_uuid) != 0) {
3143*6a54128fSAndroid Build Coastguard Worker 			com_err(device_name, 0, "could not parse UUID: %s\n",
3144*6a54128fSAndroid Build Coastguard Worker 				fs_uuid);
3145*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3146*6a54128fSAndroid Build Coastguard Worker 		}
3147*6a54128fSAndroid Build Coastguard Worker 	} else
3148*6a54128fSAndroid Build Coastguard Worker 		uuid_generate(fs->super->s_uuid);
3149*6a54128fSAndroid Build Coastguard Worker 
3150*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_csum_seed(fs->super))
3151*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_checksum_seed = ext2fs_crc32c_le(~0,
3152*6a54128fSAndroid Build Coastguard Worker 				fs->super->s_uuid, sizeof(fs->super->s_uuid));
3153*6a54128fSAndroid Build Coastguard Worker 
3154*6a54128fSAndroid Build Coastguard Worker 	ext2fs_init_csum_seed(fs);
3155*6a54128fSAndroid Build Coastguard Worker 
3156*6a54128fSAndroid Build Coastguard Worker 	/*
3157*6a54128fSAndroid Build Coastguard Worker 	 * Initialize the directory index variables
3158*6a54128fSAndroid Build Coastguard Worker 	 */
3159*6a54128fSAndroid Build Coastguard Worker 	hash_alg_str = get_string_from_profile(fs_types, "hash_alg",
3160*6a54128fSAndroid Build Coastguard Worker 					       "half_md4");
3161*6a54128fSAndroid Build Coastguard Worker 	hash_alg = e2p_string2hash(hash_alg_str);
3162*6a54128fSAndroid Build Coastguard Worker 	free(hash_alg_str);
3163*6a54128fSAndroid Build Coastguard Worker 	fs->super->s_def_hash_version = (hash_alg >= 0) ? hash_alg :
3164*6a54128fSAndroid Build Coastguard Worker 		EXT2_HASH_HALF_MD4;
3165*6a54128fSAndroid Build Coastguard Worker 
3166*6a54128fSAndroid Build Coastguard Worker 	if (memcmp(fs_param.s_hash_seed, zero_buf,
3167*6a54128fSAndroid Build Coastguard Worker 		sizeof(fs_param.s_hash_seed)) != 0) {
3168*6a54128fSAndroid Build Coastguard Worker 		memcpy(fs->super->s_hash_seed, fs_param.s_hash_seed,
3169*6a54128fSAndroid Build Coastguard Worker 			sizeof(fs->super->s_hash_seed));
3170*6a54128fSAndroid Build Coastguard Worker 	} else
3171*6a54128fSAndroid Build Coastguard Worker 		uuid_generate((unsigned char *) fs->super->s_hash_seed);
3172*6a54128fSAndroid Build Coastguard Worker 
3173*6a54128fSAndroid Build Coastguard Worker 	/*
3174*6a54128fSAndroid Build Coastguard Worker 	 * Periodic checks can be enabled/disabled via config file.
3175*6a54128fSAndroid Build Coastguard Worker 	 * Note we override the kernel include file's idea of what the default
3176*6a54128fSAndroid Build Coastguard Worker 	 * check interval (never) should be.  It's a good idea to check at
3177*6a54128fSAndroid Build Coastguard Worker 	 * least *occasionally*, specially since servers will never rarely get
3178*6a54128fSAndroid Build Coastguard Worker 	 * to reboot, since Linux is so robust these days.  :-)
3179*6a54128fSAndroid Build Coastguard Worker 	 *
3180*6a54128fSAndroid Build Coastguard Worker 	 * 180 days (six months) seems like a good value.
3181*6a54128fSAndroid Build Coastguard Worker 	 */
3182*6a54128fSAndroid Build Coastguard Worker #ifdef EXT2_DFL_CHECKINTERVAL
3183*6a54128fSAndroid Build Coastguard Worker #undef EXT2_DFL_CHECKINTERVAL
3184*6a54128fSAndroid Build Coastguard Worker #endif
3185*6a54128fSAndroid Build Coastguard Worker #define EXT2_DFL_CHECKINTERVAL (86400L * 180L)
3186*6a54128fSAndroid Build Coastguard Worker 
3187*6a54128fSAndroid Build Coastguard Worker 	if (get_bool_from_profile(fs_types, "enable_periodic_fsck", 0)) {
3188*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_checkinterval = EXT2_DFL_CHECKINTERVAL;
3189*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_max_mnt_count = EXT2_DFL_MAX_MNT_COUNT;
3190*6a54128fSAndroid Build Coastguard Worker 		/*
3191*6a54128fSAndroid Build Coastguard Worker 		 * Add "jitter" to the superblock's check interval so that we
3192*6a54128fSAndroid Build Coastguard Worker 		 * don't check all the filesystems at the same time.  We use a
3193*6a54128fSAndroid Build Coastguard Worker 		 * kludgy hack of using the UUID to derive a random jitter value
3194*6a54128fSAndroid Build Coastguard Worker 		 */
3195*6a54128fSAndroid Build Coastguard Worker 		for (i = 0, val = 0 ; i < sizeof(fs->super->s_uuid); i++)
3196*6a54128fSAndroid Build Coastguard Worker 			val += fs->super->s_uuid[i];
3197*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_max_mnt_count += val % EXT2_DFL_MAX_MNT_COUNT;
3198*6a54128fSAndroid Build Coastguard Worker 	} else
3199*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_max_mnt_count = -1;
3200*6a54128fSAndroid Build Coastguard Worker 
3201*6a54128fSAndroid Build Coastguard Worker 	/*
3202*6a54128fSAndroid Build Coastguard Worker 	 * Override the creator OS, if applicable
3203*6a54128fSAndroid Build Coastguard Worker 	 */
3204*6a54128fSAndroid Build Coastguard Worker 	if (creator_os && !set_os(fs->super, creator_os)) {
3205*6a54128fSAndroid Build Coastguard Worker 		com_err (program_name, 0, _("unknown os - %s"), creator_os);
3206*6a54128fSAndroid Build Coastguard Worker 		exit(1);
3207*6a54128fSAndroid Build Coastguard Worker 	}
3208*6a54128fSAndroid Build Coastguard Worker 
3209*6a54128fSAndroid Build Coastguard Worker 	/*
3210*6a54128fSAndroid Build Coastguard Worker 	 * For the Hurd, we will turn off filetype since it doesn't
3211*6a54128fSAndroid Build Coastguard Worker 	 * support it.
3212*6a54128fSAndroid Build Coastguard Worker 	 */
3213*6a54128fSAndroid Build Coastguard Worker 	if (fs->super->s_creator_os == EXT2_OS_HURD)
3214*6a54128fSAndroid Build Coastguard Worker 		ext2fs_clear_feature_filetype(fs->super);
3215*6a54128fSAndroid Build Coastguard Worker 
3216*6a54128fSAndroid Build Coastguard Worker 	/*
3217*6a54128fSAndroid Build Coastguard Worker 	 * Set the volume label...
3218*6a54128fSAndroid Build Coastguard Worker 	 */
3219*6a54128fSAndroid Build Coastguard Worker 	if (volume_label) {
3220*6a54128fSAndroid Build Coastguard Worker 		memset(fs->super->s_volume_name, 0,
3221*6a54128fSAndroid Build Coastguard Worker 		       sizeof(fs->super->s_volume_name));
3222*6a54128fSAndroid Build Coastguard Worker 		strncpy((char *) fs->super->s_volume_name, volume_label,
3223*6a54128fSAndroid Build Coastguard Worker 			sizeof(fs->super->s_volume_name));
3224*6a54128fSAndroid Build Coastguard Worker 	}
3225*6a54128fSAndroid Build Coastguard Worker 
3226*6a54128fSAndroid Build Coastguard Worker 	/*
3227*6a54128fSAndroid Build Coastguard Worker 	 * Set the last mount directory
3228*6a54128fSAndroid Build Coastguard Worker 	 */
3229*6a54128fSAndroid Build Coastguard Worker 	if (mount_dir) {
3230*6a54128fSAndroid Build Coastguard Worker 		memset(fs->super->s_last_mounted, 0,
3231*6a54128fSAndroid Build Coastguard Worker 		       sizeof(fs->super->s_last_mounted));
3232*6a54128fSAndroid Build Coastguard Worker 		strncpy((char *) fs->super->s_last_mounted, mount_dir,
3233*6a54128fSAndroid Build Coastguard Worker 			sizeof(fs->super->s_last_mounted));
3234*6a54128fSAndroid Build Coastguard Worker 	}
3235*6a54128fSAndroid Build Coastguard Worker 
3236*6a54128fSAndroid Build Coastguard Worker 	/* Set current default encryption algorithms for data and
3237*6a54128fSAndroid Build Coastguard Worker 	 * filename encryption */
3238*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_encrypt(fs->super)) {
3239*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_encrypt_algos[0] =
3240*6a54128fSAndroid Build Coastguard Worker 			EXT4_ENCRYPTION_MODE_AES_256_XTS;
3241*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_encrypt_algos[1] =
3242*6a54128fSAndroid Build Coastguard Worker 			EXT4_ENCRYPTION_MODE_AES_256_CTS;
3243*6a54128fSAndroid Build Coastguard Worker 	}
3244*6a54128fSAndroid Build Coastguard Worker 
3245*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_metadata_csum(fs->super))
3246*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_checksum_type = EXT2_CRC32C_CHKSUM;
3247*6a54128fSAndroid Build Coastguard Worker 
3248*6a54128fSAndroid Build Coastguard Worker 	if (!quiet || noaction)
3249*6a54128fSAndroid Build Coastguard Worker 		show_stats(fs);
3250*6a54128fSAndroid Build Coastguard Worker 
3251*6a54128fSAndroid Build Coastguard Worker 	if (noaction)
3252*6a54128fSAndroid Build Coastguard Worker 		exit(0);
3253*6a54128fSAndroid Build Coastguard Worker 
3254*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_journal_dev(fs->super)) {
3255*6a54128fSAndroid Build Coastguard Worker 		create_journal_dev(fs);
3256*6a54128fSAndroid Build Coastguard Worker 		printf("\n");
3257*6a54128fSAndroid Build Coastguard Worker 		exit(ext2fs_close_free(&fs) ? 1 : 0);
3258*6a54128fSAndroid Build Coastguard Worker 	}
3259*6a54128fSAndroid Build Coastguard Worker 
3260*6a54128fSAndroid Build Coastguard Worker 	if (bad_blocks_filename)
3261*6a54128fSAndroid Build Coastguard Worker 		read_bb_file(fs, &bb_list, bad_blocks_filename);
3262*6a54128fSAndroid Build Coastguard Worker 	if (cflag)
3263*6a54128fSAndroid Build Coastguard Worker 		test_disk(fs, &bb_list);
3264*6a54128fSAndroid Build Coastguard Worker 	handle_bad_blocks(fs, bb_list);
3265*6a54128fSAndroid Build Coastguard Worker 
3266*6a54128fSAndroid Build Coastguard Worker 	fs->stride = fs_stride = fs->super->s_raid_stride;
3267*6a54128fSAndroid Build Coastguard Worker 	if (!quiet)
3268*6a54128fSAndroid Build Coastguard Worker 		printf("%s", _("Allocating group tables: "));
3269*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_flex_bg(fs->super) &&
3270*6a54128fSAndroid Build Coastguard Worker 	    packed_meta_blocks)
3271*6a54128fSAndroid Build Coastguard Worker 		retval = packed_allocate_tables(fs);
3272*6a54128fSAndroid Build Coastguard Worker 	else
3273*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_allocate_tables(fs);
3274*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
3275*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "%s",
3276*6a54128fSAndroid Build Coastguard Worker 			_("while trying to allocate filesystem tables"));
3277*6a54128fSAndroid Build Coastguard Worker 		exit(1);
3278*6a54128fSAndroid Build Coastguard Worker 	}
3279*6a54128fSAndroid Build Coastguard Worker 	if (!quiet)
3280*6a54128fSAndroid Build Coastguard Worker 		printf("%s", _("done                            \n"));
3281*6a54128fSAndroid Build Coastguard Worker 
3282*6a54128fSAndroid Build Coastguard Worker 	/*
3283*6a54128fSAndroid Build Coastguard Worker 	 * Unmark bad blocks to calculate overhead, because metadata
3284*6a54128fSAndroid Build Coastguard Worker 	 * blocks and bad blocks can land on the same allocation cluster.
3285*6a54128fSAndroid Build Coastguard Worker 	 */
3286*6a54128fSAndroid Build Coastguard Worker 	if (bb_list) {
3287*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_badblocks_list_iterate_begin(bb_list,
3288*6a54128fSAndroid Build Coastguard Worker 							     &bb_iter);
3289*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
3290*6a54128fSAndroid Build Coastguard Worker 			com_err("ext2fs_badblocks_list_iterate_begin", retval,
3291*6a54128fSAndroid Build Coastguard Worker 				"%s", _("while unmarking bad blocks"));
3292*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3293*6a54128fSAndroid Build Coastguard Worker 		}
3294*6a54128fSAndroid Build Coastguard Worker 		while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
3295*6a54128fSAndroid Build Coastguard Worker 			ext2fs_unmark_block_bitmap2(fs->block_map, blk);
3296*6a54128fSAndroid Build Coastguard Worker 		ext2fs_badblocks_list_iterate_end(bb_iter);
3297*6a54128fSAndroid Build Coastguard Worker 	}
3298*6a54128fSAndroid Build Coastguard Worker 
3299*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_convert_subcluster_bitmap(fs, &fs->block_map);
3300*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
3301*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "%s",
3302*6a54128fSAndroid Build Coastguard Worker 			_("\n\twhile converting subcluster bitmap"));
3303*6a54128fSAndroid Build Coastguard Worker 		exit(1);
3304*6a54128fSAndroid Build Coastguard Worker 	}
3305*6a54128fSAndroid Build Coastguard Worker 
3306*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_count_used_clusters(fs, fs->super->s_first_data_block,
3307*6a54128fSAndroid Build Coastguard Worker 					ext2fs_blocks_count(fs->super) - 1,
3308*6a54128fSAndroid Build Coastguard Worker 					&overhead);
3309*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
3310*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "%s",
3311*6a54128fSAndroid Build Coastguard Worker 			_("while calculating overhead"));
3312*6a54128fSAndroid Build Coastguard Worker 		exit(1);
3313*6a54128fSAndroid Build Coastguard Worker 	}
3314*6a54128fSAndroid Build Coastguard Worker 
3315*6a54128fSAndroid Build Coastguard Worker 	if (bb_list) {
3316*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_badblocks_list_iterate_begin(bb_list,
3317*6a54128fSAndroid Build Coastguard Worker 							     &bb_iter);
3318*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
3319*6a54128fSAndroid Build Coastguard Worker 			com_err("ext2fs_badblocks_list_iterate_begin", retval,
3320*6a54128fSAndroid Build Coastguard Worker 				"%s", _("while marking bad blocks as used"));
3321*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3322*6a54128fSAndroid Build Coastguard Worker 		}
3323*6a54128fSAndroid Build Coastguard Worker 		while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
3324*6a54128fSAndroid Build Coastguard Worker 			ext2fs_mark_block_bitmap2(fs->block_map, blk);
3325*6a54128fSAndroid Build Coastguard Worker 		ext2fs_badblocks_list_iterate_end(bb_iter);
3326*6a54128fSAndroid Build Coastguard Worker 	}
3327*6a54128fSAndroid Build Coastguard Worker 
3328*6a54128fSAndroid Build Coastguard Worker 	if (super_only) {
3329*6a54128fSAndroid Build Coastguard Worker 		check_plausibility(device_name, CHECK_FS_EXIST, NULL);
3330*6a54128fSAndroid Build Coastguard Worker 		printf(_("%s may be further corrupted by superblock rewrite\n"),
3331*6a54128fSAndroid Build Coastguard Worker 		       device_name);
3332*6a54128fSAndroid Build Coastguard Worker 		if (!force)
3333*6a54128fSAndroid Build Coastguard Worker 			proceed_question(proceed_delay);
3334*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_state |= EXT2_ERROR_FS;
3335*6a54128fSAndroid Build Coastguard Worker 		fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
3336*6a54128fSAndroid Build Coastguard Worker 		/*
3337*6a54128fSAndroid Build Coastguard Worker 		 * The command "mke2fs -S" is used to recover
3338*6a54128fSAndroid Build Coastguard Worker 		 * corrupted file systems, so do not mark any of the
3339*6a54128fSAndroid Build Coastguard Worker 		 * inodes as unused; we want e2fsck to consider all
3340*6a54128fSAndroid Build Coastguard Worker 		 * inodes as potentially containing recoverable data.
3341*6a54128fSAndroid Build Coastguard Worker 		 */
3342*6a54128fSAndroid Build Coastguard Worker 		if (ext2fs_has_group_desc_csum(fs)) {
3343*6a54128fSAndroid Build Coastguard Worker 			for (i = 0; i < fs->group_desc_count; i++)
3344*6a54128fSAndroid Build Coastguard Worker 				ext2fs_bg_itable_unused_set(fs, i, 0);
3345*6a54128fSAndroid Build Coastguard Worker 		}
3346*6a54128fSAndroid Build Coastguard Worker 	} else {
3347*6a54128fSAndroid Build Coastguard Worker 		/* rsv must be a power of two (64kB is MD RAID sb alignment) */
3348*6a54128fSAndroid Build Coastguard Worker 		blk64_t rsv = 65536 / fs->blocksize;
3349*6a54128fSAndroid Build Coastguard Worker 		blk64_t blocks = ext2fs_blocks_count(fs->super);
3350*6a54128fSAndroid Build Coastguard Worker 		blk64_t start;
3351*6a54128fSAndroid Build Coastguard Worker 		blk64_t ret_blk;
3352*6a54128fSAndroid Build Coastguard Worker 
3353*6a54128fSAndroid Build Coastguard Worker #ifdef ZAP_BOOTBLOCK
3354*6a54128fSAndroid Build Coastguard Worker 		zap_sector(fs, 0, 2);
3355*6a54128fSAndroid Build Coastguard Worker #endif
3356*6a54128fSAndroid Build Coastguard Worker 
3357*6a54128fSAndroid Build Coastguard Worker 		/*
3358*6a54128fSAndroid Build Coastguard Worker 		 * Wipe out any old MD RAID (or other) metadata at the end
3359*6a54128fSAndroid Build Coastguard Worker 		 * of the device.  This will also verify that the device is
3360*6a54128fSAndroid Build Coastguard Worker 		 * as large as we think.  Be careful with very small devices.
3361*6a54128fSAndroid Build Coastguard Worker 		 */
3362*6a54128fSAndroid Build Coastguard Worker 		start = (blocks & ~(rsv - 1));
3363*6a54128fSAndroid Build Coastguard Worker 		if (start > rsv)
3364*6a54128fSAndroid Build Coastguard Worker 			start -= rsv;
3365*6a54128fSAndroid Build Coastguard Worker 		if (start > 0)
3366*6a54128fSAndroid Build Coastguard Worker 			retval = ext2fs_zero_blocks2(fs, start, blocks - start,
3367*6a54128fSAndroid Build Coastguard Worker 						    &ret_blk, NULL);
3368*6a54128fSAndroid Build Coastguard Worker 
3369*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
3370*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, retval,
3371*6a54128fSAndroid Build Coastguard Worker 				_("while zeroing block %llu at end of filesystem"),
3372*6a54128fSAndroid Build Coastguard Worker 				(unsigned long long) ret_blk);
3373*6a54128fSAndroid Build Coastguard Worker 		}
3374*6a54128fSAndroid Build Coastguard Worker 		write_inode_tables(fs, lazy_itable_init, itable_zeroed);
3375*6a54128fSAndroid Build Coastguard Worker 		create_root_dir(fs);
3376*6a54128fSAndroid Build Coastguard Worker 		create_lost_and_found(fs);
3377*6a54128fSAndroid Build Coastguard Worker 		reserve_inodes(fs);
3378*6a54128fSAndroid Build Coastguard Worker 		create_bad_block_inode(fs, bb_list);
3379*6a54128fSAndroid Build Coastguard Worker 		if (ext2fs_has_feature_resize_inode(fs->super)) {
3380*6a54128fSAndroid Build Coastguard Worker 			retval = ext2fs_create_resize_inode(fs);
3381*6a54128fSAndroid Build Coastguard Worker 			if (retval) {
3382*6a54128fSAndroid Build Coastguard Worker 				com_err("ext2fs_create_resize_inode", retval,
3383*6a54128fSAndroid Build Coastguard Worker 					"%s",
3384*6a54128fSAndroid Build Coastguard Worker 				_("while reserving blocks for online resize"));
3385*6a54128fSAndroid Build Coastguard Worker 				exit(1);
3386*6a54128fSAndroid Build Coastguard Worker 			}
3387*6a54128fSAndroid Build Coastguard Worker 		}
3388*6a54128fSAndroid Build Coastguard Worker 	}
3389*6a54128fSAndroid Build Coastguard Worker 
3390*6a54128fSAndroid Build Coastguard Worker 	if (journal_device) {
3391*6a54128fSAndroid Build Coastguard Worker 		ext2_filsys	jfs;
3392*6a54128fSAndroid Build Coastguard Worker 
3393*6a54128fSAndroid Build Coastguard Worker 		if (!check_plausibility(journal_device, CHECK_BLOCK_DEV,
3394*6a54128fSAndroid Build Coastguard Worker 					NULL) && !force)
3395*6a54128fSAndroid Build Coastguard Worker 			proceed_question(proceed_delay);
3396*6a54128fSAndroid Build Coastguard Worker 		check_mount(journal_device, force, _("journal"));
3397*6a54128fSAndroid Build Coastguard Worker 
3398*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
3399*6a54128fSAndroid Build Coastguard Worker 				     EXT2_FLAG_JOURNAL_DEV_OK, 0,
3400*6a54128fSAndroid Build Coastguard Worker 				     fs->blocksize, default_io_manager, &jfs);
3401*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
3402*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, retval,
3403*6a54128fSAndroid Build Coastguard Worker 				_("while trying to open journal device %s\n"),
3404*6a54128fSAndroid Build Coastguard Worker 				journal_device);
3405*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3406*6a54128fSAndroid Build Coastguard Worker 		}
3407*6a54128fSAndroid Build Coastguard Worker 		if (!quiet) {
3408*6a54128fSAndroid Build Coastguard Worker 			printf(_("Adding journal to device %s: "),
3409*6a54128fSAndroid Build Coastguard Worker 			       journal_device);
3410*6a54128fSAndroid Build Coastguard Worker 			fflush(stdout);
3411*6a54128fSAndroid Build Coastguard Worker 		}
3412*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_add_journal_device(fs, jfs);
3413*6a54128fSAndroid Build Coastguard Worker 		if(retval) {
3414*6a54128fSAndroid Build Coastguard Worker 			com_err (program_name, retval,
3415*6a54128fSAndroid Build Coastguard Worker 				 _("\n\twhile trying to add journal to device %s"),
3416*6a54128fSAndroid Build Coastguard Worker 				 journal_device);
3417*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3418*6a54128fSAndroid Build Coastguard Worker 		}
3419*6a54128fSAndroid Build Coastguard Worker 		if (!quiet)
3420*6a54128fSAndroid Build Coastguard Worker 			printf("%s", _("done\n"));
3421*6a54128fSAndroid Build Coastguard Worker 		ext2fs_close_free(&jfs);
3422*6a54128fSAndroid Build Coastguard Worker 		free(journal_device);
3423*6a54128fSAndroid Build Coastguard Worker 	} else if ((journal_size) ||
3424*6a54128fSAndroid Build Coastguard Worker 		   ext2fs_has_feature_journal(&fs_param)) {
3425*6a54128fSAndroid Build Coastguard Worker 		overhead += EXT2FS_NUM_B2C(fs, jparams.num_journal_blocks + jparams.num_fc_blocks);
3426*6a54128fSAndroid Build Coastguard Worker 		if (super_only) {
3427*6a54128fSAndroid Build Coastguard Worker 			printf("%s", _("Skipping journal creation in super-only mode\n"));
3428*6a54128fSAndroid Build Coastguard Worker 			fs->super->s_journal_inum = EXT2_JOURNAL_INO;
3429*6a54128fSAndroid Build Coastguard Worker 			goto no_journal;
3430*6a54128fSAndroid Build Coastguard Worker 		}
3431*6a54128fSAndroid Build Coastguard Worker 
3432*6a54128fSAndroid Build Coastguard Worker 		if (!jparams.num_journal_blocks) {
3433*6a54128fSAndroid Build Coastguard Worker 			ext2fs_clear_feature_journal(fs->super);
3434*6a54128fSAndroid Build Coastguard Worker 			goto no_journal;
3435*6a54128fSAndroid Build Coastguard Worker 		}
3436*6a54128fSAndroid Build Coastguard Worker 		if (!quiet) {
3437*6a54128fSAndroid Build Coastguard Worker 			printf(_("Creating journal (%u blocks): "),
3438*6a54128fSAndroid Build Coastguard Worker 			       jparams.num_journal_blocks + jparams.num_fc_blocks);
3439*6a54128fSAndroid Build Coastguard Worker 			fflush(stdout);
3440*6a54128fSAndroid Build Coastguard Worker 		}
3441*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_add_journal_inode3(fs, &jparams,
3442*6a54128fSAndroid Build Coastguard Worker 						   journal_location,
3443*6a54128fSAndroid Build Coastguard Worker 						   journal_flags);
3444*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
3445*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, retval, "%s",
3446*6a54128fSAndroid Build Coastguard Worker 				_("\n\twhile trying to create journal"));
3447*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3448*6a54128fSAndroid Build Coastguard Worker 		}
3449*6a54128fSAndroid Build Coastguard Worker 		if (!quiet)
3450*6a54128fSAndroid Build Coastguard Worker 			printf("%s", _("done\n"));
3451*6a54128fSAndroid Build Coastguard Worker 	}
3452*6a54128fSAndroid Build Coastguard Worker no_journal:
3453*6a54128fSAndroid Build Coastguard Worker 	if (!super_only &&
3454*6a54128fSAndroid Build Coastguard Worker 	    ext2fs_has_feature_mmp(fs->super)) {
3455*6a54128fSAndroid Build Coastguard Worker 		retval = ext2fs_mmp_init(fs);
3456*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
3457*6a54128fSAndroid Build Coastguard Worker 			fprintf(stderr, "%s",
3458*6a54128fSAndroid Build Coastguard Worker 				_("\nError while enabling multiple "
3459*6a54128fSAndroid Build Coastguard Worker 				  "mount protection feature."));
3460*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3461*6a54128fSAndroid Build Coastguard Worker 		}
3462*6a54128fSAndroid Build Coastguard Worker 		if (!quiet)
3463*6a54128fSAndroid Build Coastguard Worker 			printf(_("Multiple mount protection is enabled "
3464*6a54128fSAndroid Build Coastguard Worker 				 "with update interval %d seconds.\n"),
3465*6a54128fSAndroid Build Coastguard Worker 			       fs->super->s_mmp_update_interval);
3466*6a54128fSAndroid Build Coastguard Worker 	}
3467*6a54128fSAndroid Build Coastguard Worker 
3468*6a54128fSAndroid Build Coastguard Worker 	overhead += fs->super->s_first_data_block;
3469*6a54128fSAndroid Build Coastguard Worker 	if (!super_only)
3470*6a54128fSAndroid Build Coastguard Worker 		fs->super->s_overhead_clusters = overhead;
3471*6a54128fSAndroid Build Coastguard Worker 
3472*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_bigalloc(&fs_param))
3473*6a54128fSAndroid Build Coastguard Worker 		fix_cluster_bg_counts(fs);
3474*6a54128fSAndroid Build Coastguard Worker 	if (ext2fs_has_feature_quota(&fs_param))
3475*6a54128fSAndroid Build Coastguard Worker 		create_quota_inodes(fs);
3476*6a54128fSAndroid Build Coastguard Worker 
3477*6a54128fSAndroid Build Coastguard Worker 	retval = mk_hugefiles(fs, device_name);
3478*6a54128fSAndroid Build Coastguard Worker 	if (retval)
3479*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "while creating huge files");
3480*6a54128fSAndroid Build Coastguard Worker 	/* Copy files from the specified directory */
3481*6a54128fSAndroid Build Coastguard Worker 	if (src_root_dir) {
3482*6a54128fSAndroid Build Coastguard Worker 		if (!quiet)
3483*6a54128fSAndroid Build Coastguard Worker 			printf("%s", _("Copying files into the device: "));
3484*6a54128fSAndroid Build Coastguard Worker 
3485*6a54128fSAndroid Build Coastguard Worker 		retval = populate_fs(fs, EXT2_ROOT_INO, src_root_dir,
3486*6a54128fSAndroid Build Coastguard Worker 				     EXT2_ROOT_INO);
3487*6a54128fSAndroid Build Coastguard Worker 		if (retval) {
3488*6a54128fSAndroid Build Coastguard Worker 			com_err(program_name, retval, "%s",
3489*6a54128fSAndroid Build Coastguard Worker 				_("while populating file system"));
3490*6a54128fSAndroid Build Coastguard Worker 			exit(1);
3491*6a54128fSAndroid Build Coastguard Worker 		} else if (!quiet)
3492*6a54128fSAndroid Build Coastguard Worker 			printf("%s", _("done\n"));
3493*6a54128fSAndroid Build Coastguard Worker 	}
3494*6a54128fSAndroid Build Coastguard Worker 
3495*6a54128fSAndroid Build Coastguard Worker 	if (!quiet)
3496*6a54128fSAndroid Build Coastguard Worker 		printf("%s", _("Writing superblocks and "
3497*6a54128fSAndroid Build Coastguard Worker 		       "filesystem accounting information: "));
3498*6a54128fSAndroid Build Coastguard Worker 	checkinterval = fs->super->s_checkinterval;
3499*6a54128fSAndroid Build Coastguard Worker 	max_mnt_count = fs->super->s_max_mnt_count;
3500*6a54128fSAndroid Build Coastguard Worker 	retval = ext2fs_close_free(&fs);
3501*6a54128fSAndroid Build Coastguard Worker 	if (retval) {
3502*6a54128fSAndroid Build Coastguard Worker 		com_err(program_name, retval, "%s",
3503*6a54128fSAndroid Build Coastguard Worker 			_("while writing out and closing file system"));
3504*6a54128fSAndroid Build Coastguard Worker 		retval = 1;
3505*6a54128fSAndroid Build Coastguard Worker 	} else if (!quiet) {
3506*6a54128fSAndroid Build Coastguard Worker 		printf("%s", _("done\n\n"));
3507*6a54128fSAndroid Build Coastguard Worker 		if (!getenv("MKE2FS_SKIP_CHECK_MSG"))
3508*6a54128fSAndroid Build Coastguard Worker 			print_check_message(max_mnt_count, checkinterval);
3509*6a54128fSAndroid Build Coastguard Worker 	}
3510*6a54128fSAndroid Build Coastguard Worker 
3511*6a54128fSAndroid Build Coastguard Worker 	remove_error_table(&et_ext2_error_table);
3512*6a54128fSAndroid Build Coastguard Worker 	remove_error_table(&et_prof_error_table);
3513*6a54128fSAndroid Build Coastguard Worker 	profile_release(profile);
3514*6a54128fSAndroid Build Coastguard Worker 	for (i=0; fs_types[i]; i++)
3515*6a54128fSAndroid Build Coastguard Worker 		free(fs_types[i]);
3516*6a54128fSAndroid Build Coastguard Worker 	free(fs_types);
3517*6a54128fSAndroid Build Coastguard Worker 	return retval;
3518*6a54128fSAndroid Build Coastguard Worker }
3519