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