mke2fs.c revision da2a5a4baede2a227d2da587eb74ceae66778fbc
1/*
2 * mke2fs.c - Make a ext2fs filesystem.
3 *
4 * Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 * 	2003, 2004, 2005 by Theodore Ts'o.
6 *
7 * %Begin-Header%
8 * This file may be redistributed under the terms of the GNU Public
9 * License.
10 * %End-Header%
11 */
12
13/* Usage: mke2fs [options] device
14 *
15 * The device may be a block device or a image of one, but this isn't
16 * enforced (but it's not much fun on a character device :-).
17 */
18
19#define _XOPEN_SOURCE 600 /* for inclusion of PATH_MAX in Solaris */
20
21#include <stdio.h>
22#include <string.h>
23#include <strings.h>
24#include <fcntl.h>
25#include <ctype.h>
26#include <time.h>
27#ifdef __linux__
28#include <sys/utsname.h>
29#endif
30#ifdef HAVE_GETOPT_H
31#include <getopt.h>
32#else
33extern char *optarg;
34extern int optind;
35#endif
36#ifdef HAVE_UNISTD_H
37#include <unistd.h>
38#endif
39#ifdef HAVE_STDLIB_H
40#include <stdlib.h>
41#endif
42#ifdef HAVE_ERRNO_H
43#include <errno.h>
44#endif
45#ifdef HAVE_MNTENT_H
46#include <mntent.h>
47#endif
48#include <sys/ioctl.h>
49#include <sys/types.h>
50#include <sys/stat.h>
51#include <libgen.h>
52#include <limits.h>
53#include <blkid/blkid.h>
54
55#include "ext2fs/ext2_fs.h"
56#include "ext2fs/ext2fsP.h"
57#include "et/com_err.h"
58#include "uuid/uuid.h"
59#include "e2p/e2p.h"
60#include "ext2fs/ext2fs.h"
61#include "util.h"
62#include "profile.h"
63#include "prof_err.h"
64#include "../version.h"
65#include "nls-enable.h"
66
67#define STRIDE_LENGTH 8
68
69#define MAX_32_NUM ((((unsigned long long) 1) << 32) - 1)
70
71#ifndef __sparc__
72#define ZAP_BOOTBLOCK
73#endif
74
75extern int isatty(int);
76extern FILE *fpopen(const char *cmd, const char *mode);
77
78const char * program_name = "mke2fs";
79const char * device_name /* = NULL */;
80
81/* Command line options */
82int	cflag;
83int	verbose;
84int	quiet;
85int	super_only;
86int	discard = 1;	/* attempt to discard device before fs creation */
87int	force;
88int	noaction;
89int	journal_size;
90int	journal_flags;
91int	lazy_itable_init;
92char	*bad_blocks_filename;
93__u32	fs_stride;
94
95struct ext2_super_block fs_param;
96char *fs_uuid = NULL;
97char *creator_os;
98char *volume_label;
99char *mount_dir;
100char *journal_device;
101int sync_kludge;	/* Set using the MKE2FS_SYNC env. option */
102char **fs_types;
103
104profile_t	profile;
105
106int sys_page_size = 4096;
107int linux_version_code = 0;
108
109static void usage(void)
110{
111	fprintf(stderr, _("Usage: %s [-c|-l filename] [-b block-size] "
112	"[-f fragment-size]\n\t[-i bytes-per-inode] [-I inode-size] "
113	"[-J journal-options]\n"
114	"\t[-G meta group size] [-N number-of-inodes]\n"
115	"\t[-m reserved-blocks-percentage] [-o creator-os]\n"
116	"\t[-g blocks-per-group] [-L volume-label] "
117	"[-M last-mounted-directory]\n\t[-O feature[,...]] "
118	"[-r fs-revision] [-E extended-option[,...]]\n"
119	"\t[-T fs-type] [-U UUID] [-jnqvFKSV] device [blocks-count]\n"),
120		program_name);
121	exit(1);
122}
123
124static int int_log2(unsigned long long arg)
125{
126	int	l = 0;
127
128	arg >>= 1;
129	while (arg) {
130		l++;
131		arg >>= 1;
132	}
133	return l;
134}
135
136static int int_log10(unsigned long long arg)
137{
138	int	l;
139
140	for (l=0; arg ; l++)
141		arg = arg / 10;
142	return l;
143}
144
145static int parse_version_number(const char *s)
146{
147	int	major, minor, rev;
148	char	*endptr;
149	const char *cp = s;
150
151	if (!s)
152		return 0;
153	major = strtol(cp, &endptr, 10);
154	if (cp == endptr || *endptr != '.')
155		return 0;
156	cp = endptr + 1;
157	minor = strtol(cp, &endptr, 10);
158	if (cp == endptr || *endptr != '.')
159		return 0;
160	cp = endptr + 1;
161	rev = strtol(cp, &endptr, 10);
162	if (cp == endptr)
163		return 0;
164	return ((((major * 256) + minor) * 256) + rev);
165}
166
167/*
168 * Helper function for read_bb_file and test_disk
169 */
170static void invalid_block(ext2_filsys fs EXT2FS_ATTR((unused)), blk_t blk)
171{
172	fprintf(stderr, _("Bad block %u out of range; ignored.\n"), blk);
173	return;
174}
175
176/*
177 * Reads the bad blocks list from a file
178 */
179static void read_bb_file(ext2_filsys fs, badblocks_list *bb_list,
180			 const char *bad_blocks_file)
181{
182	FILE		*f;
183	errcode_t	retval;
184
185	f = fopen(bad_blocks_file, "r");
186	if (!f) {
187		com_err("read_bad_blocks_file", errno,
188			_("while trying to open %s"), bad_blocks_file);
189		exit(1);
190	}
191	retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
192	fclose (f);
193	if (retval) {
194		com_err("ext2fs_read_bb_FILE", retval,
195			_("while reading in list of bad blocks from file"));
196		exit(1);
197	}
198}
199
200/*
201 * Runs the badblocks program to test the disk
202 */
203static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
204{
205	FILE		*f;
206	errcode_t	retval;
207	char		buf[1024];
208
209	sprintf(buf, "badblocks -b %d -X %s%s%s %llu", fs->blocksize,
210		quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
211		fs->device_name, ext2fs_blocks_count(fs->super)-1);
212	if (verbose)
213		printf(_("Running command: %s\n"), buf);
214	f = popen(buf, "r");
215	if (!f) {
216		com_err("popen", errno,
217			_("while trying to run '%s'"), buf);
218		exit(1);
219	}
220	retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
221	pclose(f);
222	if (retval) {
223		com_err("ext2fs_read_bb_FILE", retval,
224			_("while processing list of bad blocks from program"));
225		exit(1);
226	}
227}
228
229static void handle_bad_blocks(ext2_filsys fs, badblocks_list bb_list)
230{
231	dgrp_t			i;
232	blk_t			j;
233	unsigned 		must_be_good;
234	blk_t			blk;
235	badblocks_iterate	bb_iter;
236	errcode_t		retval;
237	blk_t			group_block;
238	int			group;
239	int			group_bad;
240
241	if (!bb_list)
242		return;
243
244	/*
245	 * The primary superblock and group descriptors *must* be
246	 * good; if not, abort.
247	 */
248	must_be_good = fs->super->s_first_data_block + 1 + fs->desc_blocks;
249	for (i = fs->super->s_first_data_block; i <= must_be_good; i++) {
250		if (ext2fs_badblocks_list_test(bb_list, i)) {
251			fprintf(stderr, _("Block %d in primary "
252				"superblock/group descriptor area bad.\n"), i);
253			fprintf(stderr, _("Blocks %u through %u must be good "
254				"in order to build a filesystem.\n"),
255				fs->super->s_first_data_block, must_be_good);
256			fputs(_("Aborting....\n"), stderr);
257			exit(1);
258		}
259	}
260
261	/*
262	 * See if any of the bad blocks are showing up in the backup
263	 * superblocks and/or group descriptors.  If so, issue a
264	 * warning and adjust the block counts appropriately.
265	 */
266	group_block = fs->super->s_first_data_block +
267		fs->super->s_blocks_per_group;
268
269	for (i = 1; i < fs->group_desc_count; i++) {
270		group_bad = 0;
271		for (j=0; j < fs->desc_blocks+1; j++) {
272			if (ext2fs_badblocks_list_test(bb_list,
273						       group_block + j)) {
274				if (!group_bad)
275					fprintf(stderr,
276_("Warning: the backup superblock/group descriptors at block %u contain\n"
277"	bad blocks.\n\n"),
278						group_block);
279				group_bad++;
280				group = ext2fs_group_of_blk2(fs, group_block+j);
281				ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) + 1);
282				ext2fs_group_desc_csum_set(fs, group);
283				ext2fs_free_blocks_count_add(fs->super, 1);
284			}
285		}
286		group_block += fs->super->s_blocks_per_group;
287	}
288
289	/*
290	 * Mark all the bad blocks as used...
291	 */
292	retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
293	if (retval) {
294		com_err("ext2fs_badblocks_list_iterate_begin", retval,
295			_("while marking bad blocks as used"));
296		exit(1);
297	}
298	while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
299		ext2fs_mark_block_bitmap2(fs->block_map, blk);
300	ext2fs_badblocks_list_iterate_end(bb_iter);
301}
302
303static void write_inode_tables(ext2_filsys fs, int lazy_flag, int itable_zeroed)
304{
305	errcode_t	retval;
306	blk64_t		blk;
307	dgrp_t		i;
308	int		num;
309	struct ext2fs_numeric_progress_struct progress;
310
311	ext2fs_numeric_progress_init(fs, &progress,
312				     _("Writing inode tables: "),
313				     fs->group_desc_count);
314
315	for (i = 0; i < fs->group_desc_count; i++) {
316		ext2fs_numeric_progress_update(fs, &progress, i);
317
318		blk = ext2fs_inode_table_loc(fs, i);
319		num = fs->inode_blocks_per_group;
320
321		if (lazy_flag)
322			num = ext2fs_div_ceil((fs->super->s_inodes_per_group -
323					       ext2fs_bg_itable_unused(fs, i)) *
324					      EXT2_INODE_SIZE(fs->super),
325					      EXT2_BLOCK_SIZE(fs->super));
326		if (!lazy_flag || itable_zeroed) {
327			/* The kernel doesn't need to zero the itable blocks */
328			ext2fs_bg_flags_set(fs, i, EXT2_BG_INODE_ZEROED);
329			ext2fs_group_desc_csum_set(fs, i);
330		}
331		retval = ext2fs_zero_blocks2(fs, blk, num, &blk, &num);
332		if (retval) {
333			fprintf(stderr, _("\nCould not write %d "
334				  "blocks in inode table starting at %llu: %s\n"),
335				num, blk, error_message(retval));
336			exit(1);
337		}
338		if (sync_kludge) {
339			if (sync_kludge == 1)
340				sync();
341			else if ((i % sync_kludge) == 0)
342				sync();
343		}
344	}
345	ext2fs_zero_blocks2(0, 0, 0, 0, 0);
346	ext2fs_numeric_progress_close(fs, &progress,
347				      _("done                            \n"));
348}
349
350static void create_root_dir(ext2_filsys fs)
351{
352	errcode_t		retval;
353	struct ext2_inode	inode;
354	__u32			uid, gid;
355
356	retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, 0);
357	if (retval) {
358		com_err("ext2fs_mkdir", retval, _("while creating root dir"));
359		exit(1);
360	}
361	if (geteuid()) {
362		retval = ext2fs_read_inode(fs, EXT2_ROOT_INO, &inode);
363		if (retval) {
364			com_err("ext2fs_read_inode", retval,
365				_("while reading root inode"));
366			exit(1);
367		}
368		uid = getuid();
369		inode.i_uid = uid;
370		ext2fs_set_i_uid_high(inode, uid >> 16);
371		if (uid) {
372			gid = getgid();
373			inode.i_gid = gid;
374			ext2fs_set_i_gid_high(inode, gid >> 16);
375		}
376		retval = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
377		if (retval) {
378			com_err("ext2fs_write_inode", retval,
379				_("while setting root inode ownership"));
380			exit(1);
381		}
382	}
383}
384
385static void create_lost_and_found(ext2_filsys fs)
386{
387	unsigned int		lpf_size = 0;
388	errcode_t		retval;
389	ext2_ino_t		ino;
390	const char		*name = "lost+found";
391	int			i;
392
393	fs->umask = 077;
394	retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, 0, name);
395	if (retval) {
396		com_err("ext2fs_mkdir", retval,
397			_("while creating /lost+found"));
398		exit(1);
399	}
400
401	retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name, strlen(name), 0, &ino);
402	if (retval) {
403		com_err("ext2_lookup", retval,
404			_("while looking up /lost+found"));
405		exit(1);
406	}
407
408	for (i=1; i < EXT2_NDIR_BLOCKS; i++) {
409		/* Ensure that lost+found is at least 2 blocks, so we always
410		 * test large empty blocks for big-block filesystems.  */
411		if ((lpf_size += fs->blocksize) >= 16*1024 &&
412		    lpf_size >= 2 * fs->blocksize)
413			break;
414		retval = ext2fs_expand_dir(fs, ino);
415		if (retval) {
416			com_err("ext2fs_expand_dir", retval,
417				_("while expanding /lost+found"));
418			exit(1);
419		}
420	}
421}
422
423static void create_bad_block_inode(ext2_filsys fs, badblocks_list bb_list)
424{
425	errcode_t	retval;
426
427	ext2fs_mark_inode_bitmap2(fs->inode_map, EXT2_BAD_INO);
428	ext2fs_inode_alloc_stats2(fs, EXT2_BAD_INO, +1, 0);
429	retval = ext2fs_update_bb_inode(fs, bb_list);
430	if (retval) {
431		com_err("ext2fs_update_bb_inode", retval,
432			_("while setting bad block inode"));
433		exit(1);
434	}
435
436}
437
438static void reserve_inodes(ext2_filsys fs)
439{
440	ext2_ino_t	i;
441
442	for (i = EXT2_ROOT_INO + 1; i < EXT2_FIRST_INODE(fs->super); i++)
443		ext2fs_inode_alloc_stats2(fs, i, +1, 0);
444	ext2fs_mark_ib_dirty(fs);
445}
446
447#define BSD_DISKMAGIC   (0x82564557UL)  /* The disk magic number */
448#define BSD_MAGICDISK   (0x57455682UL)  /* The disk magic number reversed */
449#define BSD_LABEL_OFFSET        64
450
451static void zap_sector(ext2_filsys fs, int sect, int nsect)
452{
453	char *buf;
454	int retval;
455	unsigned int *magic;
456
457	buf = malloc(512*nsect);
458	if (!buf) {
459		printf(_("Out of memory erasing sectors %d-%d\n"),
460		       sect, sect + nsect - 1);
461		exit(1);
462	}
463
464	if (sect == 0) {
465		/* Check for a BSD disklabel, and don't erase it if so */
466		retval = io_channel_read_blk64(fs->io, 0, -512, buf);
467		if (retval)
468			fprintf(stderr,
469				_("Warning: could not read block 0: %s\n"),
470				error_message(retval));
471		else {
472			magic = (unsigned int *) (buf + BSD_LABEL_OFFSET);
473			if ((*magic == BSD_DISKMAGIC) ||
474			    (*magic == BSD_MAGICDISK))
475				return;
476		}
477	}
478
479	memset(buf, 0, 512*nsect);
480	io_channel_set_blksize(fs->io, 512);
481	retval = io_channel_write_blk64(fs->io, sect, -512*nsect, buf);
482	io_channel_set_blksize(fs->io, fs->blocksize);
483	free(buf);
484	if (retval)
485		fprintf(stderr, _("Warning: could not erase sector %d: %s\n"),
486			sect, error_message(retval));
487}
488
489static void create_journal_dev(ext2_filsys fs)
490{
491	struct ext2fs_numeric_progress_struct progress;
492	errcode_t		retval;
493	char			*buf;
494	blk64_t			blk, err_blk;
495	int			c, count, err_count;
496
497	retval = ext2fs_create_journal_superblock(fs,
498				  ext2fs_blocks_count(fs->super), 0, &buf);
499	if (retval) {
500		com_err("create_journal_dev", retval,
501			_("while initializing journal superblock"));
502		exit(1);
503	}
504	ext2fs_numeric_progress_init(fs, &progress,
505				     _("Zeroing journal device: "),
506				     ext2fs_blocks_count(fs->super));
507	blk = 0;
508	count = ext2fs_blocks_count(fs->super);
509	while (count > 0) {
510		if (count > 1024)
511			c = 1024;
512		else
513			c = count;
514		retval = ext2fs_zero_blocks2(fs, blk, c, &err_blk, &err_count);
515		if (retval) {
516			com_err("create_journal_dev", retval,
517				_("while zeroing journal device "
518				  "(block %llu, count %d)"),
519				err_blk, err_count);
520			exit(1);
521		}
522		blk += c;
523		count -= c;
524		ext2fs_numeric_progress_update(fs, &progress, blk);
525	}
526	ext2fs_zero_blocks2(0, 0, 0, 0, 0);
527
528	retval = io_channel_write_blk64(fs->io,
529					fs->super->s_first_data_block+1,
530					1, buf);
531	if (retval) {
532		com_err("create_journal_dev", retval,
533			_("while writing journal superblock"));
534		exit(1);
535	}
536	ext2fs_numeric_progress_close(fs, &progress, NULL);
537}
538
539static void show_stats(ext2_filsys fs)
540{
541	struct ext2_super_block *s = fs->super;
542	char 			buf[80];
543        char                    *os;
544	blk64_t			group_block;
545	dgrp_t			i;
546	int			need, col_left;
547
548	if (ext2fs_blocks_count(&fs_param) != ext2fs_blocks_count(s))
549		fprintf(stderr, _("warning: %llu blocks unused.\n\n"),
550		       ext2fs_blocks_count(&fs_param) - ext2fs_blocks_count(s));
551
552	memset(buf, 0, sizeof(buf));
553	strncpy(buf, s->s_volume_name, sizeof(s->s_volume_name));
554	printf(_("Filesystem label=%s\n"), buf);
555	os = e2p_os2string(fs->super->s_creator_os);
556	if (os)
557		printf(_("OS type: %s\n"), os);
558	free(os);
559	printf(_("Block size=%u (log=%u)\n"), fs->blocksize,
560		s->s_log_block_size);
561	printf(_("Fragment size=%u (log=%u)\n"), fs->fragsize,
562		s->s_log_frag_size);
563	printf(_("Stride=%u blocks, Stripe width=%u blocks\n"),
564	       s->s_raid_stride, s->s_raid_stripe_width);
565	printf(_("%u inodes, %llu blocks\n"), s->s_inodes_count,
566	       ext2fs_blocks_count(s));
567	printf(_("%llu blocks (%2.2f%%) reserved for the super user\n"),
568		ext2fs_r_blocks_count(s),
569	       100.0 *  ext2fs_r_blocks_count(s) / ext2fs_blocks_count(s));
570	printf(_("First data block=%u\n"), s->s_first_data_block);
571	if (s->s_reserved_gdt_blocks)
572		printf(_("Maximum filesystem blocks=%lu\n"),
573		       (s->s_reserved_gdt_blocks + fs->desc_blocks) *
574		       EXT2_DESC_PER_BLOCK(s) * s->s_blocks_per_group);
575	if (fs->group_desc_count > 1)
576		printf(_("%u block groups\n"), fs->group_desc_count);
577	else
578		printf(_("%u block group\n"), fs->group_desc_count);
579	printf(_("%u blocks per group, %u fragments per group\n"),
580	       s->s_blocks_per_group, s->s_frags_per_group);
581	printf(_("%u inodes per group\n"), s->s_inodes_per_group);
582
583	if (fs->group_desc_count == 1) {
584		printf("\n");
585		return;
586	}
587
588	printf(_("Superblock backups stored on blocks: "));
589	group_block = s->s_first_data_block;
590	col_left = 0;
591	for (i = 1; i < fs->group_desc_count; i++) {
592		group_block += s->s_blocks_per_group;
593		if (!ext2fs_bg_has_super(fs, i))
594			continue;
595		if (i != 1)
596			printf(", ");
597		need = int_log10(group_block) + 2;
598		if (need > col_left) {
599			printf("\n\t");
600			col_left = 72;
601		}
602		col_left -= need;
603		printf("%llu", group_block);
604	}
605	printf("\n\n");
606}
607
608/*
609 * Set the S_CREATOR_OS field.  Return true if OS is known,
610 * otherwise, 0.
611 */
612static int set_os(struct ext2_super_block *sb, char *os)
613{
614	if (isdigit (*os))
615		sb->s_creator_os = atoi (os);
616	else if (strcasecmp(os, "linux") == 0)
617		sb->s_creator_os = EXT2_OS_LINUX;
618	else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
619		sb->s_creator_os = EXT2_OS_HURD;
620	else if (strcasecmp(os, "freebsd") == 0)
621		sb->s_creator_os = EXT2_OS_FREEBSD;
622	else if (strcasecmp(os, "lites") == 0)
623		sb->s_creator_os = EXT2_OS_LITES;
624	else
625		return 0;
626	return 1;
627}
628
629#define PATH_SET "PATH=/sbin"
630
631static void parse_extended_opts(struct ext2_super_block *param,
632				const char *opts)
633{
634	char	*buf, *token, *next, *p, *arg, *badopt = 0;
635	int	len;
636	int	r_usage = 0;
637
638	len = strlen(opts);
639	buf = malloc(len+1);
640	if (!buf) {
641		fprintf(stderr,
642			_("Couldn't allocate memory to parse options!\n"));
643		exit(1);
644	}
645	strcpy(buf, opts);
646	for (token = buf; token && *token; token = next) {
647		p = strchr(token, ',');
648		next = 0;
649		if (p) {
650			*p = 0;
651			next = p+1;
652		}
653		arg = strchr(token, '=');
654		if (arg) {
655			*arg = 0;
656			arg++;
657		}
658		if (strcmp(token, "stride") == 0) {
659			if (!arg) {
660				r_usage++;
661				badopt = token;
662				continue;
663			}
664			param->s_raid_stride = strtoul(arg, &p, 0);
665			if (*p || (param->s_raid_stride == 0)) {
666				fprintf(stderr,
667					_("Invalid stride parameter: %s\n"),
668					arg);
669				r_usage++;
670				continue;
671			}
672		} else if (strcmp(token, "stripe-width") == 0 ||
673			   strcmp(token, "stripe_width") == 0) {
674			if (!arg) {
675				r_usage++;
676				badopt = token;
677				continue;
678			}
679			param->s_raid_stripe_width = strtoul(arg, &p, 0);
680			if (*p || (param->s_raid_stripe_width == 0)) {
681				fprintf(stderr,
682					_("Invalid stripe-width parameter: %s\n"),
683					arg);
684				r_usage++;
685				continue;
686			}
687		} else if (!strcmp(token, "resize")) {
688			blk64_t resize;
689			unsigned long bpg, rsv_groups;
690			unsigned long group_desc_count, desc_blocks;
691			unsigned int gdpb, blocksize;
692			int rsv_gdb;
693
694			if (!arg) {
695				r_usage++;
696				badopt = token;
697				continue;
698			}
699
700			resize = parse_num_blocks2(arg,
701						   param->s_log_block_size);
702
703			if (resize == 0) {
704				fprintf(stderr,
705					_("Invalid resize parameter: %s\n"),
706					arg);
707				r_usage++;
708				continue;
709			}
710			if (resize <= ext2fs_blocks_count(param)) {
711				fprintf(stderr,
712					_("The resize maximum must be greater "
713					  "than the filesystem size.\n"));
714				r_usage++;
715				continue;
716			}
717
718			blocksize = EXT2_BLOCK_SIZE(param);
719			bpg = param->s_blocks_per_group;
720			if (!bpg)
721				bpg = blocksize * 8;
722			gdpb = EXT2_DESC_PER_BLOCK(param);
723			group_desc_count = (__u32) ext2fs_div64_ceil(
724				ext2fs_blocks_count(param), bpg);
725			desc_blocks = (group_desc_count +
726				       gdpb - 1) / gdpb;
727			rsv_groups = ext2fs_div64_ceil(resize, bpg);
728			rsv_gdb = ext2fs_div_ceil(rsv_groups, gdpb) -
729				desc_blocks;
730			if (rsv_gdb > (int) EXT2_ADDR_PER_BLOCK(param))
731				rsv_gdb = EXT2_ADDR_PER_BLOCK(param);
732
733			if (rsv_gdb > 0) {
734				if (param->s_rev_level == EXT2_GOOD_OLD_REV) {
735					fprintf(stderr,
736	_("On-line resizing not supported with revision 0 filesystems\n"));
737					free(buf);
738					exit(1);
739				}
740				param->s_feature_compat |=
741					EXT2_FEATURE_COMPAT_RESIZE_INODE;
742
743				param->s_reserved_gdt_blocks = rsv_gdb;
744			}
745		} else if (!strcmp(token, "test_fs")) {
746			param->s_flags |= EXT2_FLAGS_TEST_FILESYS;
747		} else if (!strcmp(token, "lazy_itable_init")) {
748			if (arg)
749				lazy_itable_init = strtoul(arg, &p, 0);
750			else
751				lazy_itable_init = 1;
752		} else if (!strcmp(token, "discard")) {
753			discard = 1;
754		} else if (!strcmp(token, "nodiscard")) {
755			discard = 0;
756		} else {
757			r_usage++;
758			badopt = token;
759		}
760	}
761	if (r_usage) {
762		fprintf(stderr, _("\nBad option(s) specified: %s\n\n"
763			"Extended options are separated by commas, "
764			"and may take an argument which\n"
765			"\tis set off by an equals ('=') sign.\n\n"
766			"Valid extended options are:\n"
767			"\tstride=<RAID per-disk data chunk in blocks>\n"
768			"\tstripe-width=<RAID stride * data disks in blocks>\n"
769			"\tresize=<resize maximum size in blocks>\n"
770			"\tlazy_itable_init=<0 to disable, 1 to enable>\n"
771			"\ttest_fs\n"
772			"\tdiscard\n"
773			"\tnodiscard\n\n"),
774			badopt ? badopt : "");
775		free(buf);
776		exit(1);
777	}
778	if (param->s_raid_stride &&
779	    (param->s_raid_stripe_width % param->s_raid_stride) != 0)
780		fprintf(stderr, _("\nWarning: RAID stripe-width %u not an even "
781				  "multiple of stride %u.\n\n"),
782			param->s_raid_stripe_width, param->s_raid_stride);
783
784	free(buf);
785}
786
787static __u32 ok_features[3] = {
788	/* Compat */
789	EXT3_FEATURE_COMPAT_HAS_JOURNAL |
790		EXT2_FEATURE_COMPAT_RESIZE_INODE |
791		EXT2_FEATURE_COMPAT_DIR_INDEX |
792		EXT2_FEATURE_COMPAT_EXT_ATTR,
793	/* Incompat */
794	EXT2_FEATURE_INCOMPAT_FILETYPE|
795		EXT3_FEATURE_INCOMPAT_EXTENTS|
796		EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|
797		EXT2_FEATURE_INCOMPAT_META_BG|
798		EXT4_FEATURE_INCOMPAT_FLEX_BG|
799		EXT4_FEATURE_INCOMPAT_64BIT,
800	/* R/O compat */
801	EXT2_FEATURE_RO_COMPAT_LARGE_FILE|
802		EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
803		EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
804		EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
805		EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER|
806		EXT4_FEATURE_RO_COMPAT_GDT_CSUM
807};
808
809
810static void syntax_err_report(const char *filename, long err, int line_num)
811{
812	fprintf(stderr,
813		_("Syntax error in mke2fs config file (%s, line #%d)\n\t%s\n"),
814		filename, line_num, error_message(err));
815	exit(1);
816}
817
818static const char *config_fn[] = { ROOT_SYSCONFDIR "/mke2fs.conf", 0 };
819
820static void edit_feature(const char *str, __u32 *compat_array)
821{
822	if (!str)
823		return;
824
825	if (e2p_edit_feature(str, compat_array, ok_features)) {
826		fprintf(stderr, _("Invalid filesystem option set: %s\n"),
827			str);
828		exit(1);
829	}
830}
831
832struct str_list {
833	char **list;
834	int num;
835	int max;
836};
837
838static errcode_t init_list(struct str_list *sl)
839{
840	sl->num = 0;
841	sl->max = 0;
842	sl->list = malloc((sl->max+1) * sizeof(char *));
843	if (!sl->list)
844		return ENOMEM;
845	sl->list[0] = 0;
846	return 0;
847}
848
849static errcode_t push_string(struct str_list *sl, const char *str)
850{
851	char **new_list;
852
853	if (sl->num >= sl->max) {
854		sl->max += 2;
855		new_list = realloc(sl->list, (sl->max+1) * sizeof(char *));
856		if (!new_list)
857			return ENOMEM;
858		sl->list = new_list;
859	}
860	sl->list[sl->num] = malloc(strlen(str)+1);
861	if (sl->list[sl->num] == 0)
862		return ENOMEM;
863	strcpy(sl->list[sl->num], str);
864	sl->num++;
865	sl->list[sl->num] = 0;
866	return 0;
867}
868
869static void print_str_list(char **list)
870{
871	char **cpp;
872
873	for (cpp = list; *cpp; cpp++) {
874		printf("'%s'", *cpp);
875		if (cpp[1])
876			fputs(", ", stdout);
877	}
878	fputc('\n', stdout);
879}
880
881/*
882 * Return TRUE if the profile has the given subsection
883 */
884static int profile_has_subsection(profile_t profile, const char *section,
885				  const char *subsection)
886{
887	void			*state;
888	const char		*names[4];
889	char			*name;
890	int			ret = 0;
891
892	names[0] = section;
893	names[1] = subsection;
894	names[2] = 0;
895
896	if (profile_iterator_create(profile, names,
897				    PROFILE_ITER_LIST_SECTION |
898				    PROFILE_ITER_RELATIONS_ONLY, &state))
899		return 0;
900
901	if ((profile_iterator(&state, &name, 0) == 0) && name) {
902		free(name);
903		ret = 1;
904	}
905
906	profile_iterator_free(&state);
907	return ret;
908}
909
910static char **parse_fs_type(const char *fs_type,
911			    const char *usage_types,
912			    struct ext2_super_block *fs_param,
913			    blk64_t fs_blocks_count,
914			    char *progname)
915{
916	const char	*ext_type = 0;
917	char		*parse_str;
918	char		*profile_type = 0;
919	char		*cp, *t;
920	const char	*size_type;
921	struct str_list	list;
922	unsigned long long meg;
923	int		is_hurd = 0;
924
925	if (init_list(&list))
926		return 0;
927
928	if (creator_os && (!strcasecmp(creator_os, "GNU") ||
929			   !strcasecmp(creator_os, "hurd")))
930		is_hurd = 1;
931
932	if (fs_type)
933		ext_type = fs_type;
934	else if (is_hurd)
935		ext_type = "ext2";
936	else if (!strcmp(program_name, "mke3fs"))
937		ext_type = "ext3";
938	else if (progname) {
939		ext_type = strrchr(progname, '/');
940		if (ext_type)
941			ext_type++;
942		else
943			ext_type = progname;
944
945		if (!strncmp(ext_type, "mkfs.", 5)) {
946			ext_type += 5;
947			if (ext_type[0] == 0)
948				ext_type = 0;
949		} else
950			ext_type = 0;
951	}
952
953	if (!ext_type) {
954		profile_get_string(profile, "defaults", "fs_type", 0,
955				   "ext2", &profile_type);
956		ext_type = profile_type;
957		if (!strcmp(ext_type, "ext2") && (journal_size != 0))
958			ext_type = "ext3";
959	}
960
961
962	if (!profile_has_subsection(profile, "fs_types", ext_type) &&
963	    strcmp(ext_type, "ext2")) {
964		printf(_("\nYour mke2fs.conf file does not define the "
965			 "%s filesystem type.\n"), ext_type);
966		if (!strcmp(ext_type, "ext3") || !strcmp(ext_type, "ext4") ||
967		    !strcmp(ext_type, "ext4dev")) {
968			printf(_("You probably need to install an updated "
969				 "mke2fs.conf file.\n\n"));
970		}
971		if (!force) {
972			printf(_("Aborting...\n"));
973			exit(1);
974		}
975	}
976
977	meg = (1024 * 1024) / EXT2_BLOCK_SIZE(fs_param);
978	if (fs_blocks_count < 3 * meg)
979		size_type = "floppy";
980	else if (fs_blocks_count < 512 * meg)
981		size_type = "small";
982	else if (fs_blocks_count < 4 * 1024 * 1024 * meg)
983		size_type = "default";
984	else if (fs_blocks_count < 16 * 1024 * 1024 * meg)
985		size_type = "big";
986	else
987		size_type = "huge";
988
989	if (!usage_types)
990		usage_types = size_type;
991
992	parse_str = malloc(usage_types ? strlen(usage_types)+1 : 1);
993	if (!parse_str) {
994		free(list.list);
995		return 0;
996	}
997	if (usage_types)
998		strcpy(parse_str, usage_types);
999	else
1000		*parse_str = '\0';
1001
1002	if (ext_type)
1003		push_string(&list, ext_type);
1004	cp = parse_str;
1005	while (1) {
1006		t = strchr(cp, ',');
1007		if (t)
1008			*t = '\0';
1009
1010		if (*cp) {
1011			if (profile_has_subsection(profile, "fs_types", cp))
1012				push_string(&list, cp);
1013			else if (strcmp(cp, "default") != 0)
1014				fprintf(stderr,
1015					_("\nWarning: the fs_type %s is not "
1016					  "defined in mke2fs.conf\n\n"),
1017					cp);
1018		}
1019		if (t)
1020			cp = t+1;
1021		else {
1022			cp = "";
1023			break;
1024		}
1025	}
1026	free(parse_str);
1027	free(profile_type);
1028	if (is_hurd)
1029		push_string(&list, "hurd");
1030	return (list.list);
1031}
1032
1033static char *get_string_from_profile(char **fs_types, const char *opt,
1034				     const char *def_val)
1035{
1036	char *ret = 0;
1037	int i;
1038
1039	for (i=0; fs_types[i]; i++);
1040	for (i-=1; i >=0 ; i--) {
1041		profile_get_string(profile, "fs_types", fs_types[i],
1042				   opt, 0, &ret);
1043		if (ret)
1044			return ret;
1045	}
1046	profile_get_string(profile, "defaults", opt, 0, def_val, &ret);
1047	return (ret);
1048}
1049
1050static int get_int_from_profile(char **fs_types, const char *opt, int def_val)
1051{
1052	int ret;
1053	char **cpp;
1054
1055	profile_get_integer(profile, "defaults", opt, 0, def_val, &ret);
1056	for (cpp = fs_types; *cpp; cpp++)
1057		profile_get_integer(profile, "fs_types", *cpp, opt, ret, &ret);
1058	return ret;
1059}
1060
1061static int get_bool_from_profile(char **fs_types, const char *opt, int def_val)
1062{
1063	int ret;
1064	char **cpp;
1065
1066	profile_get_boolean(profile, "defaults", opt, 0, def_val, &ret);
1067	for (cpp = fs_types; *cpp; cpp++)
1068		profile_get_boolean(profile, "fs_types", *cpp, opt, ret, &ret);
1069	return ret;
1070}
1071
1072extern const char *mke2fs_default_profile;
1073static const char *default_files[] = { "<default>", 0 };
1074
1075#ifdef HAVE_BLKID_PROBE_GET_TOPOLOGY
1076/*
1077 * Sets the geometry of a device (stripe/stride), and returns the
1078 * device's alignment offset, if any, or a negative error.
1079 */
1080static int get_device_geometry(const char *file,
1081			       struct ext2_super_block *fs_param,
1082			       int psector_size)
1083{
1084	int rc = -1;
1085	int blocksize;
1086	blkid_probe pr;
1087	blkid_topology tp;
1088	unsigned long min_io;
1089	unsigned long opt_io;
1090	struct stat statbuf;
1091
1092	/* Nothing to do for a regular file */
1093	if (!stat(file, &statbuf) && S_ISREG(statbuf.st_mode))
1094		return 0;
1095
1096	pr = blkid_new_probe_from_filename(file);
1097	if (!pr)
1098		goto out;
1099
1100	tp = blkid_probe_get_topology(pr);
1101	if (!tp)
1102		goto out;
1103
1104	min_io = blkid_topology_get_minimum_io_size(tp);
1105	opt_io = blkid_topology_get_optimal_io_size(tp);
1106	blocksize = EXT2_BLOCK_SIZE(fs_param);
1107	if ((min_io == 0) && (psector_size > blocksize))
1108		min_io = psector_size;
1109	if ((opt_io == 0) && min_io)
1110		opt_io = min_io;
1111	if ((opt_io == 0) && (psector_size > blocksize))
1112		opt_io = psector_size;
1113
1114	fs_param->s_raid_stride = min_io / blocksize;
1115	fs_param->s_raid_stripe_width = opt_io / blocksize;
1116
1117	rc = blkid_topology_get_alignment_offset(tp);
1118out:
1119	blkid_free_probe(pr);
1120	return rc;
1121}
1122#endif
1123
1124static void PRS(int argc, char *argv[])
1125{
1126	int		b, c;
1127	int		size;
1128	char 		*tmp, **cpp;
1129	int		blocksize = 0;
1130	int		inode_ratio = 0;
1131	int		inode_size = 0;
1132	unsigned long	flex_bg_size = 0;
1133	double		reserved_ratio = 5.0;
1134	int		lsector_size = 0, psector_size = 0;
1135	int		show_version_only = 0;
1136	unsigned long long num_inodes = 0; /* unsigned long long to catch too-large input */
1137	errcode_t	retval;
1138	char *		oldpath = getenv("PATH");
1139	char *		extended_opts = 0;
1140	const char *	fs_type = 0;
1141	const char *	usage_types = 0;
1142	blk64_t		dev_size;
1143	blk64_t		fs_blocks_count = 0;
1144#ifdef __linux__
1145	struct 		utsname ut;
1146#endif
1147	long		sysval;
1148	int		s_opt = -1, r_opt = -1;
1149	char		*fs_features = 0;
1150	int		use_bsize;
1151	char		*newpath;
1152	int		pathlen = sizeof(PATH_SET) + 1;
1153
1154	if (oldpath)
1155		pathlen += strlen(oldpath);
1156	newpath = malloc(pathlen);
1157	if (!newpath) {
1158		fprintf(stderr, _("Couldn't allocate memory for new PATH.\n"));
1159		exit(1);
1160	}
1161	strcpy(newpath, PATH_SET);
1162
1163	/* Update our PATH to include /sbin  */
1164	if (oldpath) {
1165		strcat (newpath, ":");
1166		strcat (newpath, oldpath);
1167	}
1168	putenv (newpath);
1169
1170	tmp = getenv("MKE2FS_SYNC");
1171	if (tmp)
1172		sync_kludge = atoi(tmp);
1173
1174	/* Determine the system page size if possible */
1175#ifdef HAVE_SYSCONF
1176#if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
1177#define _SC_PAGESIZE _SC_PAGE_SIZE
1178#endif
1179#ifdef _SC_PAGESIZE
1180	sysval = sysconf(_SC_PAGESIZE);
1181	if (sysval > 0)
1182		sys_page_size = sysval;
1183#endif /* _SC_PAGESIZE */
1184#endif /* HAVE_SYSCONF */
1185
1186	if ((tmp = getenv("MKE2FS_CONFIG")) != NULL)
1187		config_fn[0] = tmp;
1188	profile_set_syntax_err_cb(syntax_err_report);
1189	retval = profile_init(config_fn, &profile);
1190	if (retval == ENOENT) {
1191		retval = profile_init(default_files, &profile);
1192		if (retval)
1193			goto profile_error;
1194		retval = profile_set_default(profile, mke2fs_default_profile);
1195		if (retval)
1196			goto profile_error;
1197	} else if (retval) {
1198profile_error:
1199		fprintf(stderr, _("Couldn't init profile successfully"
1200				  " (error: %ld).\n"), retval);
1201		exit(1);
1202	}
1203
1204	setbuf(stdout, NULL);
1205	setbuf(stderr, NULL);
1206	add_error_table(&et_ext2_error_table);
1207	add_error_table(&et_prof_error_table);
1208	memset(&fs_param, 0, sizeof(struct ext2_super_block));
1209	fs_param.s_rev_level = 1;  /* Create revision 1 filesystems now */
1210
1211#ifdef __linux__
1212	if (uname(&ut)) {
1213		perror("uname");
1214		exit(1);
1215	}
1216	linux_version_code = parse_version_number(ut.release);
1217	if (linux_version_code && linux_version_code < (2*65536 + 2*256))
1218		fs_param.s_rev_level = 0;
1219#endif
1220
1221	if (argc && *argv) {
1222		program_name = get_progname(*argv);
1223
1224		/* If called as mkfs.ext3, create a journal inode */
1225		if (!strcmp(program_name, "mkfs.ext3") ||
1226		    !strcmp(program_name, "mke3fs"))
1227			journal_size = -1;
1228	}
1229
1230	while ((c = getopt (argc, argv,
1231		    "b:cf:g:G:i:jl:m:no:qr:s:t:vE:FI:J:KL:M:N:O:R:ST:U:V")) != EOF) {
1232		switch (c) {
1233		case 'b':
1234			blocksize = strtol(optarg, &tmp, 0);
1235			b = (blocksize > 0) ? blocksize : -blocksize;
1236			if (b < EXT2_MIN_BLOCK_SIZE ||
1237			    b > EXT2_MAX_BLOCK_SIZE || *tmp) {
1238				com_err(program_name, 0,
1239					_("invalid block size - %s"), optarg);
1240				exit(1);
1241			}
1242			if (blocksize > 4096)
1243				fprintf(stderr, _("Warning: blocksize %d not "
1244						  "usable on most systems.\n"),
1245					blocksize);
1246			if (blocksize > 0)
1247				fs_param.s_log_block_size =
1248					int_log2(blocksize >>
1249						 EXT2_MIN_BLOCK_LOG_SIZE);
1250			break;
1251		case 'c':	/* Check for bad blocks */
1252			cflag++;
1253			break;
1254		case 'f':
1255			size = strtoul(optarg, &tmp, 0);
1256			if (size < EXT2_MIN_BLOCK_SIZE ||
1257			    size > EXT2_MAX_BLOCK_SIZE || *tmp) {
1258				com_err(program_name, 0,
1259					_("invalid fragment size - %s"),
1260					optarg);
1261				exit(1);
1262			}
1263			fs_param.s_log_frag_size =
1264				int_log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
1265			fprintf(stderr, _("Warning: fragments not supported.  "
1266			       "Ignoring -f option\n"));
1267			break;
1268		case 'g':
1269			fs_param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
1270			if (*tmp) {
1271				com_err(program_name, 0,
1272					_("Illegal number for blocks per group"));
1273				exit(1);
1274			}
1275			if ((fs_param.s_blocks_per_group % 8) != 0) {
1276				com_err(program_name, 0,
1277				_("blocks per group must be multiple of 8"));
1278				exit(1);
1279			}
1280			break;
1281		case 'G':
1282			flex_bg_size = strtoul(optarg, &tmp, 0);
1283			if (*tmp) {
1284				com_err(program_name, 0,
1285					_("Illegal number for flex_bg size"));
1286				exit(1);
1287			}
1288			if (flex_bg_size < 1 ||
1289			    (flex_bg_size & (flex_bg_size-1)) != 0) {
1290				com_err(program_name, 0,
1291					_("flex_bg size must be a power of 2"));
1292				exit(1);
1293			}
1294			break;
1295		case 'i':
1296			inode_ratio = strtoul(optarg, &tmp, 0);
1297			if (inode_ratio < EXT2_MIN_BLOCK_SIZE ||
1298			    inode_ratio > EXT2_MAX_BLOCK_SIZE * 1024 ||
1299			    *tmp) {
1300				com_err(program_name, 0,
1301					_("invalid inode ratio %s (min %d/max %d)"),
1302					optarg, EXT2_MIN_BLOCK_SIZE,
1303					EXT2_MAX_BLOCK_SIZE * 1024);
1304				exit(1);
1305			}
1306			break;
1307		case 'J':
1308			parse_journal_opts(optarg);
1309			break;
1310		case 'K':
1311			fprintf(stderr, _("Warning: -K option is deprecated and "
1312					  "should not be used anymore. Use "
1313					  "\'-E nodiscard\' extended option "
1314					  "instead!\n"));
1315			discard = 0;
1316			break;
1317		case 'j':
1318			if (!journal_size)
1319				journal_size = -1;
1320			break;
1321		case 'l':
1322			bad_blocks_filename = malloc(strlen(optarg)+1);
1323			if (!bad_blocks_filename) {
1324				com_err(program_name, ENOMEM,
1325					_("in malloc for bad_blocks_filename"));
1326				exit(1);
1327			}
1328			strcpy(bad_blocks_filename, optarg);
1329			break;
1330		case 'm':
1331			reserved_ratio = strtod(optarg, &tmp);
1332			if ( *tmp || reserved_ratio > 50 ||
1333			     reserved_ratio < 0) {
1334				com_err(program_name, 0,
1335					_("invalid reserved blocks percent - %s"),
1336					optarg);
1337				exit(1);
1338			}
1339			break;
1340		case 'n':
1341			noaction++;
1342			break;
1343		case 'o':
1344			creator_os = optarg;
1345			break;
1346		case 'q':
1347			quiet = 1;
1348			break;
1349		case 'r':
1350			r_opt = strtoul(optarg, &tmp, 0);
1351			if (*tmp) {
1352				com_err(program_name, 0,
1353					_("bad revision level - %s"), optarg);
1354				exit(1);
1355			}
1356			fs_param.s_rev_level = r_opt;
1357			break;
1358		case 's':	/* deprecated */
1359			s_opt = atoi(optarg);
1360			break;
1361		case 'I':
1362			inode_size = strtoul(optarg, &tmp, 0);
1363			if (*tmp) {
1364				com_err(program_name, 0,
1365					_("invalid inode size - %s"), optarg);
1366				exit(1);
1367			}
1368			break;
1369		case 'v':
1370			verbose = 1;
1371			break;
1372		case 'F':
1373			force++;
1374			break;
1375		case 'L':
1376			volume_label = optarg;
1377			break;
1378		case 'M':
1379			mount_dir = optarg;
1380			break;
1381		case 'N':
1382			num_inodes = strtoul(optarg, &tmp, 0);
1383			if (*tmp) {
1384				com_err(program_name, 0,
1385					_("bad num inodes - %s"), optarg);
1386					exit(1);
1387			}
1388			break;
1389		case 'O':
1390			fs_features = optarg;
1391			break;
1392		case 'E':
1393		case 'R':
1394			extended_opts = optarg;
1395			break;
1396		case 'S':
1397			super_only = 1;
1398			break;
1399		case 't':
1400			fs_type = optarg;
1401			break;
1402		case 'T':
1403			usage_types = optarg;
1404			break;
1405		case 'U':
1406			fs_uuid = optarg;
1407			break;
1408		case 'V':
1409			/* Print version number and exit */
1410			show_version_only++;
1411			break;
1412		default:
1413			usage();
1414		}
1415	}
1416	if ((optind == argc) && !show_version_only)
1417		usage();
1418	device_name = argv[optind++];
1419
1420	if (!quiet || show_version_only)
1421		fprintf (stderr, "mke2fs %s (%s)\n", E2FSPROGS_VERSION,
1422			 E2FSPROGS_DATE);
1423
1424	if (show_version_only) {
1425		fprintf(stderr, _("\tUsing %s\n"),
1426			error_message(EXT2_ET_BASE));
1427		exit(0);
1428	}
1429
1430	/*
1431	 * If there's no blocksize specified and there is a journal
1432	 * device, use it to figure out the blocksize
1433	 */
1434	if (blocksize <= 0 && journal_device) {
1435		ext2_filsys	jfs;
1436		io_manager	io_ptr;
1437
1438#ifdef CONFIG_TESTIO_DEBUG
1439		if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
1440			io_ptr = test_io_manager;
1441			test_io_backing_manager = unix_io_manager;
1442		} else
1443#endif
1444			io_ptr = unix_io_manager;
1445		retval = ext2fs_open(journal_device,
1446				     EXT2_FLAG_JOURNAL_DEV_OK, 0,
1447				     0, io_ptr, &jfs);
1448		if (retval) {
1449			com_err(program_name, retval,
1450				_("while trying to open journal device %s\n"),
1451				journal_device);
1452			exit(1);
1453		}
1454		if ((blocksize < 0) && (jfs->blocksize < (unsigned) (-blocksize))) {
1455			com_err(program_name, 0,
1456				_("Journal dev blocksize (%d) smaller than "
1457				  "minimum blocksize %d\n"), jfs->blocksize,
1458				-blocksize);
1459			exit(1);
1460		}
1461		blocksize = jfs->blocksize;
1462		printf(_("Using journal device's blocksize: %d\n"), blocksize);
1463		fs_param.s_log_block_size =
1464			int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1465		ext2fs_close(jfs);
1466	}
1467
1468	if (blocksize > sys_page_size) {
1469		if (!force) {
1470			com_err(program_name, 0,
1471				_("%d-byte blocks too big for system (max %d)"),
1472				blocksize, sys_page_size);
1473			proceed_question();
1474		}
1475		fprintf(stderr, _("Warning: %d-byte blocks too big for system "
1476				  "(max %d), forced to continue\n"),
1477			blocksize, sys_page_size);
1478	}
1479	if (optind < argc) {
1480		fs_blocks_count = parse_num_blocks2(argv[optind++],
1481						   fs_param.s_log_block_size);
1482		if (!fs_blocks_count) {
1483			com_err(program_name, 0,
1484				_("invalid blocks '%s' on device '%s'"),
1485				argv[optind - 1], device_name);
1486			exit(1);
1487		}
1488	}
1489	if (optind < argc)
1490		usage();
1491
1492	if (!force)
1493		check_plausibility(device_name);
1494	check_mount(device_name, force, _("filesystem"));
1495
1496	fs_param.s_log_frag_size = fs_param.s_log_block_size;
1497
1498	/* Determine the size of the device (if possible) */
1499	if (noaction && fs_blocks_count) {
1500		dev_size = fs_blocks_count;
1501		retval = 0;
1502	} else
1503		retval = ext2fs_get_device_size2(device_name,
1504						 EXT2_BLOCK_SIZE(&fs_param),
1505						 &dev_size);
1506
1507	if (retval && (retval != EXT2_ET_UNIMPLEMENTED)) {
1508		com_err(program_name, retval,
1509			_("while trying to determine filesystem size"));
1510		exit(1);
1511	}
1512	if (!fs_blocks_count) {
1513		if (retval == EXT2_ET_UNIMPLEMENTED) {
1514			com_err(program_name, 0,
1515				_("Couldn't determine device size; you "
1516				"must specify\nthe size of the "
1517				"filesystem\n"));
1518			exit(1);
1519		} else {
1520			if (dev_size == 0) {
1521				com_err(program_name, 0,
1522				_("Device size reported to be zero.  "
1523				  "Invalid partition specified, or\n\t"
1524				  "partition table wasn't reread "
1525				  "after running fdisk, due to\n\t"
1526				  "a modified partition being busy "
1527				  "and in use.  You may need to reboot\n\t"
1528				  "to re-read your partition table.\n"
1529				  ));
1530				exit(1);
1531			}
1532			fs_blocks_count = dev_size;
1533			if (sys_page_size > EXT2_BLOCK_SIZE(&fs_param))
1534				fs_blocks_count &= ~((blk64_t) ((sys_page_size /
1535					     EXT2_BLOCK_SIZE(&fs_param))-1));
1536		}
1537	} else if (!force && (fs_blocks_count > dev_size)) {
1538		com_err(program_name, 0,
1539			_("Filesystem larger than apparent device size."));
1540		proceed_question();
1541	}
1542
1543	/*
1544	 * We have the file system (or device) size, so we can now
1545	 * determine the appropriate file system types so the fs can
1546	 * be appropriately configured.
1547	 */
1548	fs_types = parse_fs_type(fs_type, usage_types, &fs_param,
1549				 fs_blocks_count ? fs_blocks_count : dev_size,
1550				 argv[0]);
1551	if (!fs_types) {
1552		fprintf(stderr, _("Failed to parse fs types list\n"));
1553		exit(1);
1554	}
1555
1556	/* Figure out what features should be enabled */
1557
1558	tmp = NULL;
1559	if (fs_param.s_rev_level != EXT2_GOOD_OLD_REV) {
1560		tmp = get_string_from_profile(fs_types, "base_features",
1561		      "sparse_super,filetype,resize_inode,dir_index");
1562		edit_feature(tmp, &fs_param.s_feature_compat);
1563		free(tmp);
1564
1565		for (cpp = fs_types; *cpp; cpp++) {
1566			tmp = NULL;
1567			profile_get_string(profile, "fs_types", *cpp,
1568					   "features", "", &tmp);
1569			if (tmp && *tmp)
1570				edit_feature(tmp, &fs_param.s_feature_compat);
1571			if (tmp)
1572				free(tmp);
1573		}
1574		tmp = get_string_from_profile(fs_types, "default_features",
1575					      "");
1576	}
1577	edit_feature(fs_features ? fs_features : tmp,
1578		     &fs_param.s_feature_compat);
1579	if (tmp)
1580		free(tmp);
1581
1582	/*
1583	 * We now need to do a sanity check of fs_blocks_count for
1584	 * 32-bit vs 64-bit block number support.
1585	 */
1586	if ((fs_blocks_count > MAX_32_NUM) && (blocksize == 0)) {
1587		fs_blocks_count /= 4; /* Try using a 4k blocksize */
1588		blocksize = 4096;
1589		fs_param.s_log_block_size = 2;
1590	}
1591	if ((fs_blocks_count > MAX_32_NUM) &&
1592	    !(fs_param.s_feature_incompat & EXT4_FEATURE_INCOMPAT_64BIT) &&
1593	    get_bool_from_profile(fs_types, "auto_64-bit_support", 0)) {
1594		fs_param.s_feature_incompat |= EXT4_FEATURE_INCOMPAT_64BIT;
1595		fs_param.s_feature_compat &= ~EXT2_FEATURE_COMPAT_RESIZE_INODE;
1596	}
1597	if ((fs_blocks_count > MAX_32_NUM) &&
1598	    !(fs_param.s_feature_incompat & EXT4_FEATURE_INCOMPAT_64BIT)) {
1599		fprintf(stderr, _("%s: Size of device (0x%llx blocks) %s "
1600				  "too big to be expressed\n\t"
1601				  "in 32 bits using a blocksize of %d.\n"),
1602			program_name, fs_blocks_count, device_name,
1603			EXT2_BLOCK_SIZE(&fs_param));
1604		exit(1);
1605	}
1606
1607	ext2fs_blocks_count_set(&fs_param, fs_blocks_count);
1608
1609	if (fs_param.s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1610		fs_types[0] = strdup("journal");
1611		fs_types[1] = 0;
1612	}
1613
1614	if (verbose) {
1615		fputs(_("fs_types for mke2fs.conf resolution: "), stdout);
1616		print_str_list(fs_types);
1617	}
1618
1619	if (r_opt == EXT2_GOOD_OLD_REV &&
1620	    (fs_param.s_feature_compat || fs_param.s_feature_incompat ||
1621	     fs_param.s_feature_ro_compat)) {
1622		fprintf(stderr, _("Filesystem features not supported "
1623				  "with revision 0 filesystems\n"));
1624		exit(1);
1625	}
1626
1627	if (s_opt > 0) {
1628		if (r_opt == EXT2_GOOD_OLD_REV) {
1629			fprintf(stderr, _("Sparse superblocks not supported "
1630				  "with revision 0 filesystems\n"));
1631			exit(1);
1632		}
1633		fs_param.s_feature_ro_compat |=
1634			EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
1635	} else if (s_opt == 0)
1636		fs_param.s_feature_ro_compat &=
1637			~EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
1638
1639	if (journal_size != 0) {
1640		if (r_opt == EXT2_GOOD_OLD_REV) {
1641			fprintf(stderr, _("Journals not supported "
1642				  "with revision 0 filesystems\n"));
1643			exit(1);
1644		}
1645		fs_param.s_feature_compat |=
1646			EXT3_FEATURE_COMPAT_HAS_JOURNAL;
1647	}
1648
1649	if (fs_param.s_feature_incompat &
1650	    EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1651		reserved_ratio = 0;
1652		fs_param.s_feature_incompat = EXT3_FEATURE_INCOMPAT_JOURNAL_DEV;
1653		fs_param.s_feature_compat = 0;
1654		fs_param.s_feature_ro_compat = 0;
1655 	}
1656
1657	if ((fs_param.s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) &&
1658	    (fs_param.s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE)) {
1659		fprintf(stderr, _("The resize_inode and meta_bg features "
1660				  "are not compatible.\n"
1661				  "They can not be both enabled "
1662				  "simultaneously.\n"));
1663		exit(1);
1664	}
1665
1666	/* Set first meta blockgroup via an environment variable */
1667	/* (this is mostly for debugging purposes) */
1668	if ((fs_param.s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) &&
1669	    ((tmp = getenv("MKE2FS_FIRST_META_BG"))))
1670		fs_param.s_first_meta_bg = atoi(tmp);
1671
1672	/* Get the hardware sector sizes, if available */
1673	retval = ext2fs_get_device_sectsize(device_name, &lsector_size);
1674	if (retval) {
1675		com_err(program_name, retval,
1676			_("while trying to determine hardware sector size"));
1677		exit(1);
1678	}
1679	retval = ext2fs_get_device_phys_sectsize(device_name, &psector_size);
1680	if (retval) {
1681		com_err(program_name, retval,
1682			_("while trying to determine physical sector size"));
1683		exit(1);
1684	}
1685
1686	if ((tmp = getenv("MKE2FS_DEVICE_SECTSIZE")) != NULL)
1687		lsector_size = atoi(tmp);
1688	if ((tmp = getenv("MKE2FS_DEVICE_PHYS_SECTSIZE")) != NULL)
1689		psector_size = atoi(tmp);
1690
1691	/* Older kernels may not have physical/logical distinction */
1692	if (!psector_size)
1693		psector_size = lsector_size;
1694
1695	if (blocksize <= 0) {
1696		use_bsize = get_int_from_profile(fs_types, "blocksize", 4096);
1697
1698		if (use_bsize == -1) {
1699			use_bsize = sys_page_size;
1700			if ((linux_version_code < (2*65536 + 6*256)) &&
1701			    (use_bsize > 4096))
1702				use_bsize = 4096;
1703		}
1704		if (lsector_size && use_bsize < lsector_size)
1705			use_bsize = lsector_size;
1706		if ((blocksize < 0) && (use_bsize < (-blocksize)))
1707			use_bsize = -blocksize;
1708		blocksize = use_bsize;
1709		ext2fs_blocks_count_set(&fs_param,
1710					ext2fs_blocks_count(&fs_param) /
1711					(blocksize / 1024));
1712	} else {
1713		if (blocksize < lsector_size) {			/* Impossible */
1714			com_err(program_name, EINVAL,
1715				_("while setting blocksize; too small "
1716				  "for device\n"));
1717			exit(1);
1718		} else if ((blocksize < psector_size) &&
1719			   (psector_size <= sys_page_size)) {	/* Suboptimal */
1720			fprintf(stderr, _("Warning: specified blocksize %d is "
1721				"less than device physical sectorsize %d\n"),
1722				blocksize, psector_size);
1723		}
1724	}
1725
1726	if (inode_ratio == 0) {
1727		inode_ratio = get_int_from_profile(fs_types, "inode_ratio",
1728						   8192);
1729		if (inode_ratio < blocksize)
1730			inode_ratio = blocksize;
1731	}
1732
1733	fs_param.s_log_frag_size = fs_param.s_log_block_size =
1734		int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1735
1736#ifdef HAVE_BLKID_PROBE_GET_TOPOLOGY
1737	retval = get_device_geometry(device_name, &fs_param, psector_size);
1738	if (retval < 0) {
1739		fprintf(stderr,
1740			_("warning: Unable to get device geometry for %s\n"),
1741			device_name);
1742	} else if (retval) {
1743		printf(_("%s alignment is offset by %lu bytes.\n"),
1744		       device_name, retval);
1745		printf(_("This may result in very poor performance, "
1746			  "(re)-partitioning suggested.\n"));
1747	}
1748#endif
1749
1750	blocksize = EXT2_BLOCK_SIZE(&fs_param);
1751
1752	lazy_itable_init = 0;
1753	if (access("/sys/fs/ext4/features/lazy_itable_init", R_OK) == 0)
1754		lazy_itable_init = 1;
1755
1756	lazy_itable_init = get_bool_from_profile(fs_types,
1757						 "lazy_itable_init",
1758						 lazy_itable_init);
1759	discard = get_bool_from_profile(fs_types, "discard" , discard);
1760
1761	/* Get options from profile */
1762	for (cpp = fs_types; *cpp; cpp++) {
1763		tmp = NULL;
1764		profile_get_string(profile, "fs_types", *cpp, "options", "", &tmp);
1765			if (tmp && *tmp)
1766				parse_extended_opts(&fs_param, tmp);
1767			free(tmp);
1768	}
1769
1770	if (extended_opts)
1771		parse_extended_opts(&fs_param, extended_opts);
1772
1773	/* Since sparse_super is the default, we would only have a problem
1774	 * here if it was explicitly disabled.
1775	 */
1776	if ((fs_param.s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE) &&
1777	    !(fs_param.s_feature_ro_compat&EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
1778		com_err(program_name, 0,
1779			_("reserved online resize blocks not supported "
1780			  "on non-sparse filesystem"));
1781		exit(1);
1782	}
1783
1784	if (fs_param.s_blocks_per_group) {
1785		if (fs_param.s_blocks_per_group < 256 ||
1786		    fs_param.s_blocks_per_group > 8 * (unsigned) blocksize) {
1787			com_err(program_name, 0,
1788				_("blocks per group count out of range"));
1789			exit(1);
1790		}
1791	}
1792
1793	if (inode_size == 0)
1794		inode_size = get_int_from_profile(fs_types, "inode_size", 0);
1795	if (!flex_bg_size && (fs_param.s_feature_incompat &
1796			      EXT4_FEATURE_INCOMPAT_FLEX_BG))
1797		flex_bg_size = get_int_from_profile(fs_types,
1798						    "flex_bg_size", 16);
1799	if (flex_bg_size) {
1800		if (!(fs_param.s_feature_incompat &
1801		      EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
1802			com_err(program_name, 0,
1803				_("Flex_bg feature not enabled, so "
1804				  "flex_bg size may not be specified"));
1805			exit(1);
1806		}
1807		fs_param.s_log_groups_per_flex = int_log2(flex_bg_size);
1808	}
1809
1810	if (inode_size && fs_param.s_rev_level >= EXT2_DYNAMIC_REV) {
1811		if (inode_size < EXT2_GOOD_OLD_INODE_SIZE ||
1812		    inode_size > EXT2_BLOCK_SIZE(&fs_param) ||
1813		    inode_size & (inode_size - 1)) {
1814			com_err(program_name, 0,
1815				_("invalid inode size %d (min %d/max %d)"),
1816				inode_size, EXT2_GOOD_OLD_INODE_SIZE,
1817				blocksize);
1818			exit(1);
1819		}
1820		fs_param.s_inode_size = inode_size;
1821	}
1822
1823	/* Make sure number of inodes specified will fit in 32 bits */
1824	if (num_inodes == 0) {
1825		unsigned long long n;
1826		n = ext2fs_blocks_count(&fs_param) * blocksize / inode_ratio;
1827		if (n > MAX_32_NUM) {
1828			if (fs_param.s_feature_incompat &
1829			    EXT4_FEATURE_INCOMPAT_64BIT)
1830				num_inodes = MAX_32_NUM;
1831			else {
1832				com_err(program_name, 0,
1833					_("too many inodes (%llu), raise"
1834					  "inode ratio?"), n);
1835				exit(1);
1836			}
1837		}
1838	} else if (num_inodes > MAX_32_NUM) {
1839		com_err(program_name, 0,
1840			_("too many inodes (%llu), specify < 2^32 inodes"),
1841			  num_inodes);
1842		exit(1);
1843	}
1844	/*
1845	 * Calculate number of inodes based on the inode ratio
1846	 */
1847	fs_param.s_inodes_count = num_inodes ? num_inodes :
1848		(ext2fs_blocks_count(&fs_param) * blocksize) / inode_ratio;
1849
1850	if ((((long long)fs_param.s_inodes_count) *
1851	     (inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE)) >=
1852	    ((ext2fs_blocks_count(&fs_param)) *
1853	     EXT2_BLOCK_SIZE(&fs_param))) {
1854		com_err(program_name, 0, _("inode_size (%u) * inodes_count "
1855					  "(%u) too big for a\n\t"
1856					  "filesystem with %llu blocks, "
1857					  "specify higher inode_ratio (-i)\n\t"
1858					  "or lower inode count (-N).\n"),
1859			inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE,
1860			fs_param.s_inodes_count,
1861			(unsigned long long) ext2fs_blocks_count(&fs_param));
1862		exit(1);
1863	}
1864
1865	/*
1866	 * Calculate number of blocks to reserve
1867	 */
1868	ext2fs_r_blocks_count_set(&fs_param, reserved_ratio *
1869				  ext2fs_blocks_count(&fs_param) / 100.0);
1870}
1871
1872static int should_do_undo(const char *name)
1873{
1874	errcode_t retval;
1875	io_channel channel;
1876	__u16	s_magic;
1877	struct ext2_super_block super;
1878	io_manager manager = unix_io_manager;
1879	int csum_flag, force_undo;
1880
1881	csum_flag = EXT2_HAS_RO_COMPAT_FEATURE(&fs_param,
1882					       EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
1883	force_undo = get_int_from_profile(fs_types, "force_undo", 0);
1884	if (!force_undo && (!csum_flag || !lazy_itable_init))
1885		return 0;
1886
1887	retval = manager->open(name, IO_FLAG_EXCLUSIVE,  &channel);
1888	if (retval) {
1889		/*
1890		 * We don't handle error cases instead we
1891		 * declare that the file system doesn't exist
1892		 * and let the rest of mke2fs take care of
1893		 * error
1894		 */
1895		retval = 0;
1896		goto open_err_out;
1897	}
1898
1899	io_channel_set_blksize(channel, SUPERBLOCK_OFFSET);
1900	retval = io_channel_read_blk64(channel, 1, -SUPERBLOCK_SIZE, &super);
1901	if (retval) {
1902		retval = 0;
1903		goto err_out;
1904	}
1905
1906#if defined(WORDS_BIGENDIAN)
1907	s_magic = ext2fs_swab16(super.s_magic);
1908#else
1909	s_magic = super.s_magic;
1910#endif
1911
1912	if (s_magic == EXT2_SUPER_MAGIC)
1913		retval = 1;
1914
1915err_out:
1916	io_channel_close(channel);
1917
1918open_err_out:
1919
1920	return retval;
1921}
1922
1923static int mke2fs_setup_tdb(const char *name, io_manager *io_ptr)
1924{
1925	errcode_t retval = ENOMEM;
1926	char *tdb_dir, *tdb_file = NULL;
1927	char *device_name, *tmp_name;
1928
1929	/*
1930	 * Configuration via a conf file would be
1931	 * nice
1932	 */
1933	tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
1934	if (!tdb_dir)
1935		profile_get_string(profile, "defaults",
1936				   "undo_dir", 0, "/var/lib/e2fsprogs",
1937				   &tdb_dir);
1938
1939	if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
1940	    access(tdb_dir, W_OK))
1941		return 0;
1942
1943	tmp_name = strdup(name);
1944	if (!tmp_name)
1945		goto errout;
1946	device_name = basename(tmp_name);
1947	tdb_file = malloc(strlen(tdb_dir) + 8 + strlen(device_name) + 7 + 1);
1948	if (!tdb_file) {
1949		free(tmp_name);
1950		goto errout;
1951	}
1952	sprintf(tdb_file, "%s/mke2fs-%s.e2undo", tdb_dir, device_name);
1953	free(tmp_name);
1954
1955	if (!access(tdb_file, F_OK)) {
1956		if (unlink(tdb_file) < 0) {
1957			retval = errno;
1958			goto errout;
1959		}
1960	}
1961
1962	set_undo_io_backing_manager(*io_ptr);
1963	*io_ptr = undo_io_manager;
1964	retval = set_undo_io_backup_file(tdb_file);
1965	if (retval)
1966		goto errout;
1967	printf(_("Overwriting existing filesystem; this can be undone "
1968		 "using the command:\n"
1969		 "    e2undo %s %s\n\n"), tdb_file, name);
1970
1971	free(tdb_file);
1972	return 0;
1973
1974errout:
1975	free(tdb_file);
1976	com_err(program_name, retval,
1977		_("while trying to setup undo file\n"));
1978	return retval;
1979}
1980
1981int main (int argc, char *argv[])
1982{
1983	errcode_t	retval = 0;
1984	ext2_filsys	fs;
1985	badblocks_list	bb_list = 0;
1986	unsigned int	journal_blocks;
1987	unsigned int	i;
1988	int		val, hash_alg;
1989	int		flags;
1990	int		old_bitmaps;
1991	io_manager	io_ptr;
1992	char		tdb_string[40];
1993	char		*hash_alg_str;
1994	int		itable_zeroed = 0;
1995
1996#ifdef ENABLE_NLS
1997	setlocale(LC_MESSAGES, "");
1998	setlocale(LC_CTYPE, "");
1999	bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
2000	textdomain(NLS_CAT_NAME);
2001#endif
2002	PRS(argc, argv);
2003
2004#ifdef CONFIG_TESTIO_DEBUG
2005	if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
2006		io_ptr = test_io_manager;
2007		test_io_backing_manager = unix_io_manager;
2008	} else
2009#endif
2010		io_ptr = unix_io_manager;
2011
2012	if (should_do_undo(device_name)) {
2013		retval = mke2fs_setup_tdb(device_name, &io_ptr);
2014		if (retval)
2015			exit(1);
2016	}
2017
2018	/*
2019	 * Initialize the superblock....
2020	 */
2021	flags = EXT2_FLAG_EXCLUSIVE;
2022	profile_get_boolean(profile, "options", "old_bitmaps", 0, 0,
2023			    &old_bitmaps);
2024	if (!old_bitmaps)
2025		flags |= EXT2_FLAG_64BITS;
2026	/*
2027	 * By default, we print how many inode tables or block groups
2028	 * or whatever we've written so far.  The quiet flag disables
2029	 * this, along with a lot of other output.
2030	 */
2031	if (!quiet)
2032		flags |= EXT2_FLAG_PRINT_PROGRESS;
2033	retval = ext2fs_initialize(device_name, flags, &fs_param, io_ptr, &fs);
2034	if (retval) {
2035		com_err(device_name, retval, _("while setting up superblock"));
2036		exit(1);
2037	}
2038
2039	/* Can't undo discard ... */
2040	if (discard && (io_ptr != undo_io_manager)) {
2041		blk64_t blocks = ext2fs_blocks_count(fs->super);
2042		if (verbose)
2043			printf(_("Calling BLKDISCARD from 0 to %llu... "),
2044			       (unsigned long long) blocks);
2045		retval = io_channel_discard(fs->io, 0, blocks, fs->blocksize);
2046		if (verbose) {
2047			if (retval)
2048				printf(_("failed (%s)\n"),
2049				       error_message(retval));
2050			else
2051				printf(_("succeeded\n"));
2052		}
2053
2054		if (!retval && io_channel_discard_zeroes_data(fs->io)) {
2055			if (verbose)
2056				printf(_("Discard succeeded and will return 0s "
2057					 " - skipping inode table wipe\n"));
2058			lazy_itable_init = 1;
2059			itable_zeroed = 1;
2060		}
2061	}
2062
2063	sprintf(tdb_string, "tdb_data_size=%d", fs->blocksize <= 4096 ?
2064		32768 : fs->blocksize * 8);
2065	io_channel_set_options(fs->io, tdb_string);
2066
2067	if (fs_param.s_flags & EXT2_FLAGS_TEST_FILESYS)
2068		fs->super->s_flags |= EXT2_FLAGS_TEST_FILESYS;
2069
2070	if ((fs_param.s_feature_incompat &
2071	     (EXT3_FEATURE_INCOMPAT_EXTENTS|EXT4_FEATURE_INCOMPAT_FLEX_BG)) ||
2072	    (fs_param.s_feature_ro_compat &
2073	     (EXT4_FEATURE_RO_COMPAT_HUGE_FILE|EXT4_FEATURE_RO_COMPAT_GDT_CSUM|
2074	      EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
2075	      EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)))
2076		fs->super->s_kbytes_written = 1;
2077
2078	/*
2079	 * Wipe out the old on-disk superblock
2080	 */
2081	if (!noaction)
2082		zap_sector(fs, 2, 6);
2083
2084	/*
2085	 * Parse or generate a UUID for the filesystem
2086	 */
2087	if (fs_uuid) {
2088		if (uuid_parse(fs_uuid, fs->super->s_uuid) !=0) {
2089			com_err(device_name, 0, "could not parse UUID: %s\n",
2090				fs_uuid);
2091			exit(1);
2092		}
2093	} else
2094		uuid_generate(fs->super->s_uuid);
2095
2096	/*
2097	 * Initialize the directory index variables
2098	 */
2099	hash_alg_str = get_string_from_profile(fs_types, "hash_alg",
2100					       "half_md4");
2101	hash_alg = e2p_string2hash(hash_alg_str);
2102	free(hash_alg_str);
2103	fs->super->s_def_hash_version = (hash_alg >= 0) ? hash_alg :
2104		EXT2_HASH_HALF_MD4;
2105	uuid_generate((unsigned char *) fs->super->s_hash_seed);
2106
2107	/*
2108	 * Add "jitter" to the superblock's check interval so that we
2109	 * don't check all the filesystems at the same time.  We use a
2110	 * kludgy hack of using the UUID to derive a random jitter value.
2111	 */
2112	for (i = 0, val = 0 ; i < sizeof(fs->super->s_uuid); i++)
2113		val += fs->super->s_uuid[i];
2114	fs->super->s_max_mnt_count += val % EXT2_DFL_MAX_MNT_COUNT;
2115
2116	/*
2117	 * Override the creator OS, if applicable
2118	 */
2119	if (creator_os && !set_os(fs->super, creator_os)) {
2120		com_err (program_name, 0, _("unknown os - %s"), creator_os);
2121		exit(1);
2122	}
2123
2124	/*
2125	 * For the Hurd, we will turn off filetype since it doesn't
2126	 * support it.
2127	 */
2128	if (fs->super->s_creator_os == EXT2_OS_HURD)
2129		fs->super->s_feature_incompat &=
2130			~EXT2_FEATURE_INCOMPAT_FILETYPE;
2131
2132	/*
2133	 * Set the volume label...
2134	 */
2135	if (volume_label) {
2136		memset(fs->super->s_volume_name, 0,
2137		       sizeof(fs->super->s_volume_name));
2138		strncpy(fs->super->s_volume_name, volume_label,
2139			sizeof(fs->super->s_volume_name));
2140	}
2141
2142	/*
2143	 * Set the last mount directory
2144	 */
2145	if (mount_dir) {
2146		memset(fs->super->s_last_mounted, 0,
2147		       sizeof(fs->super->s_last_mounted));
2148		strncpy(fs->super->s_last_mounted, mount_dir,
2149			sizeof(fs->super->s_last_mounted));
2150	}
2151
2152	if (!quiet || noaction)
2153		show_stats(fs);
2154
2155	if (noaction)
2156		exit(0);
2157
2158	if (fs->super->s_feature_incompat &
2159	    EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
2160		create_journal_dev(fs);
2161		exit(ext2fs_close(fs) ? 1 : 0);
2162	}
2163
2164	if (bad_blocks_filename)
2165		read_bb_file(fs, &bb_list, bad_blocks_filename);
2166	if (cflag)
2167		test_disk(fs, &bb_list);
2168
2169	handle_bad_blocks(fs, bb_list);
2170	fs->stride = fs_stride = fs->super->s_raid_stride;
2171	if (!quiet)
2172		printf(_("Allocating group tables: "));
2173	retval = ext2fs_allocate_tables(fs);
2174	if (retval) {
2175		com_err(program_name, retval,
2176			_("while trying to allocate filesystem tables"));
2177		exit(1);
2178	}
2179	if (!quiet)
2180		printf(_("done                            \n"));
2181	if (super_only) {
2182		fs->super->s_state |= EXT2_ERROR_FS;
2183		fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
2184	} else {
2185		/* rsv must be a power of two (64kB is MD RAID sb alignment) */
2186		blk64_t rsv = 65536 / fs->blocksize;
2187		blk64_t blocks = ext2fs_blocks_count(fs->super);
2188		blk64_t start;
2189		blk64_t ret_blk;
2190
2191#ifdef ZAP_BOOTBLOCK
2192		zap_sector(fs, 0, 2);
2193#endif
2194
2195		/*
2196		 * Wipe out any old MD RAID (or other) metadata at the end
2197		 * of the device.  This will also verify that the device is
2198		 * as large as we think.  Be careful with very small devices.
2199		 */
2200		start = (blocks & ~(rsv - 1));
2201		if (start > rsv)
2202			start -= rsv;
2203		if (start > 0)
2204			retval = ext2fs_zero_blocks2(fs, start, blocks - start,
2205						    &ret_blk, NULL);
2206
2207		if (retval) {
2208			com_err(program_name, retval,
2209				_("while zeroing block %llu at end of filesystem"),
2210				ret_blk);
2211		}
2212		write_inode_tables(fs, lazy_itable_init, itable_zeroed);
2213		create_root_dir(fs);
2214		create_lost_and_found(fs);
2215		reserve_inodes(fs);
2216		create_bad_block_inode(fs, bb_list);
2217		if (fs->super->s_feature_compat &
2218		    EXT2_FEATURE_COMPAT_RESIZE_INODE) {
2219			retval = ext2fs_create_resize_inode(fs);
2220			if (retval) {
2221				com_err("ext2fs_create_resize_inode", retval,
2222				_("while reserving blocks for online resize"));
2223				exit(1);
2224			}
2225		}
2226	}
2227
2228	if (journal_device) {
2229		ext2_filsys	jfs;
2230
2231		if (!force)
2232			check_plausibility(journal_device);
2233		check_mount(journal_device, force, _("journal"));
2234
2235		retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
2236				     EXT2_FLAG_JOURNAL_DEV_OK, 0,
2237				     fs->blocksize, unix_io_manager, &jfs);
2238		if (retval) {
2239			com_err(program_name, retval,
2240				_("while trying to open journal device %s\n"),
2241				journal_device);
2242			exit(1);
2243		}
2244		if (!quiet) {
2245			printf(_("Adding journal to device %s: "),
2246			       journal_device);
2247			fflush(stdout);
2248		}
2249		retval = ext2fs_add_journal_device(fs, jfs);
2250		if(retval) {
2251			com_err (program_name, retval,
2252				 _("\n\twhile trying to add journal to device %s"),
2253				 journal_device);
2254			exit(1);
2255		}
2256		if (!quiet)
2257			printf(_("done\n"));
2258		ext2fs_close(jfs);
2259		free(journal_device);
2260	} else if ((journal_size) ||
2261		   (fs_param.s_feature_compat &
2262		    EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
2263		journal_blocks = figure_journal_size(journal_size, fs);
2264
2265		if (super_only) {
2266			printf(_("Skipping journal creation in super-only mode\n"));
2267			fs->super->s_journal_inum = EXT2_JOURNAL_INO;
2268			goto no_journal;
2269		}
2270
2271		if (!journal_blocks) {
2272			fs->super->s_feature_compat &=
2273				~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
2274			goto no_journal;
2275		}
2276		if (!quiet) {
2277			printf(_("Creating journal (%u blocks): "),
2278			       journal_blocks);
2279			fflush(stdout);
2280		}
2281		retval = ext2fs_add_journal_inode(fs, journal_blocks,
2282						  journal_flags);
2283		if (retval) {
2284			com_err (program_name, retval,
2285				 _("\n\twhile trying to create journal"));
2286			exit(1);
2287		}
2288		if (!quiet)
2289			printf(_("done\n"));
2290	}
2291no_journal:
2292
2293	if (!quiet)
2294		printf(_("Writing superblocks and "
2295		       "filesystem accounting information: "));
2296	retval = ext2fs_flush(fs);
2297	if (retval) {
2298		fprintf(stderr,
2299			_("\nWarning, had trouble writing out superblocks."));
2300	}
2301	if (!quiet) {
2302		printf(_("done\n\n"));
2303		if (!getenv("MKE2FS_SKIP_CHECK_MSG"))
2304			print_check_message(fs);
2305	}
2306	val = ext2fs_close(fs);
2307	remove_error_table(&et_ext2_error_table);
2308	remove_error_table(&et_prof_error_table);
2309	profile_release(profile);
2310	for (i=0; fs_types[i]; i++)
2311		free(fs_types[i]);
2312	free(fs_types);
2313	return (retval || val) ? 1 : 0;
2314}
2315