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