blob: 9cba3b5da7b17ba1e762a3e65dcd40402a90e83d [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * mke2fs.c - Make a ext2fs filesystem.
3 *
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05004 * Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 * 2003, 2004, 2005 by Theodore Ts'o.
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00006 *
7 * %Begin-Header%
8 * This file may be redistributed under the terms of the GNU Public
9 * License.
10 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000011 */
12
13/* Usage: mke2fs [options] device
14 *
15 * The device may be a block device or a image of one, but this isn't
16 * enforced (but it's not much fun on a character device :-).
17 */
18
Theodore Ts'oebabf2a2008-07-13 15:32:37 -040019#define _XOPEN_SOURCE 600 /* for inclusion of PATH_MAX in Solaris */
20
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000021#include <stdio.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000022#include <string.h>
23#include <fcntl.h>
24#include <ctype.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000025#include <time.h>
Theodore Ts'o756df352002-03-07 20:52:12 -050026#ifdef __linux__
Theodore Ts'o27401561999-09-14 20:11:19 +000027#include <sys/utsname.h>
28#endif
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000029#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000030#include <getopt.h>
Theodore Ts'o373b8332000-04-03 16:22:35 +000031#else
32extern char *optarg;
33extern int optind;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000034#endif
35#ifdef HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000036#include <unistd.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000037#endif
38#ifdef HAVE_STDLIB_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000039#include <stdlib.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000040#endif
41#ifdef HAVE_ERRNO_H
42#include <errno.h>
43#endif
44#ifdef HAVE_MNTENT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000045#include <mntent.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000046#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000047#include <sys/ioctl.h>
Theodore Ts'of3db3561997-04-26 13:34:30 +000048#include <sys/types.h>
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +053049#include <libgen.h>
Theodore Ts'o36585792008-06-07 22:07:50 -040050#include <limits.h>
Theodore Ts'of3db3561997-04-26 13:34:30 +000051
Theodore Ts'o54c637d2001-05-14 11:45:38 +000052#include "ext2fs/ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000053#include "et/com_err.h"
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000054#include "uuid/uuid.h"
Theodore Ts'o896938d1999-10-23 01:04:50 +000055#include "e2p/e2p.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000056#include "ext2fs/ext2fs.h"
Theodore Ts'o63985322001-01-03 17:02:13 +000057#include "util.h"
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050058#include "profile.h"
Theodore Ts'oa6d83022006-12-26 03:38:07 -050059#include "prof_err.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000060#include "../version.h"
Theodore Ts'od9c56d32000-02-08 00:47:55 +000061#include "nls-enable.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000062
63#define STRIDE_LENGTH 8
64
Theodore Ts'o6733c2f1999-11-23 02:23:30 +000065#ifndef __sparc__
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000066#define ZAP_BOOTBLOCK
67#endif
68
Theodore Ts'o3839e651997-04-26 13:21:57 +000069extern int isatty(int);
Theodore Ts'of3db3561997-04-26 13:34:30 +000070extern FILE *fpopen(const char *cmd, const char *mode);
Theodore Ts'o3839e651997-04-26 13:21:57 +000071
72const char * program_name = "mke2fs";
Theodore Ts'od48755e2000-12-09 14:36:04 +000073const char * device_name /* = NULL */;
Theodore Ts'o3839e651997-04-26 13:21:57 +000074
75/* Command line options */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000076int cflag;
77int verbose;
78int quiet;
79int super_only;
80int force;
81int noaction;
82int journal_size;
83int journal_flags;
Theodore Ts'oa4396e92008-04-18 10:19:27 -040084int lazy_itable_init;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000085char *bad_blocks_filename;
86__u32 fs_stride;
Theodore Ts'o3839e651997-04-26 13:21:57 +000087
Theodore Ts'o9b9a7802005-12-10 21:50:30 -050088struct ext2_super_block fs_param;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000089char *creator_os;
90char *volume_label;
91char *mount_dir;
92char *journal_device;
93int sync_kludge; /* Set using the MKE2FS_SYNC env. option */
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +053094char **fs_types;
Theodore Ts'o3839e651997-04-26 13:21:57 +000095
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050096profile_t profile;
97
Theodore Ts'o31e29a12002-05-17 10:53:07 -040098int sys_page_size = 4096;
Theodore Ts'od99225e2004-09-25 07:40:12 -040099int linux_version_code = 0;
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400100
Theodore Ts'o63985322001-01-03 17:02:13 +0000101static void usage(void)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000102{
Theodore Ts'obdd80f22008-02-28 21:12:31 -0500103 fprintf(stderr, _("Usage: %s [-c|-l filename] [-b block-size] "
Andreas Dilger067911a2006-07-15 22:08:20 -0400104 "[-f fragment-size]\n\t[-i bytes-per-inode] [-I inode-size] "
Theodore Ts'obdd80f22008-02-28 21:12:31 -0500105 "[-J journal-options]\n"
Theodore Ts'o9ba40002008-04-22 08:27:01 -0400106 "\t[-G meta group size] [-N number-of-inodes]\n"
107 "\t[-m reserved-blocks-percentage] [-o creator-os]\n"
108 "\t[-g blocks-per-group] [-L volume-label] "
Andreas Dilger067911a2006-07-15 22:08:20 -0400109 "[-M last-mounted-directory]\n\t[-O feature[,...]] "
Theodore Ts'obdd80f22008-02-28 21:12:31 -0500110 "[-r fs-revision] [-E extended-option[,...]]\n"
111 "\t[-T fs-type] [-jnqvFSV] device [blocks-count]\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000112 program_name);
113 exit(1);
114}
115
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000116static int int_log2(int arg)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000117{
118 int l = 0;
119
120 arg >>= 1;
121 while (arg) {
122 l++;
123 arg >>= 1;
124 }
125 return l;
126}
127
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000128static int int_log10(unsigned int arg)
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000129{
130 int l;
131
132 for (l=0; arg ; l++)
133 arg = arg / 10;
134 return l;
135}
136
Theodore Ts'od99225e2004-09-25 07:40:12 -0400137static int parse_version_number(const char *s)
138{
139 int major, minor, rev;
140 char *endptr;
141 const char *cp = s;
142
143 if (!s)
144 return 0;
145 major = strtol(cp, &endptr, 10);
146 if (cp == endptr || *endptr != '.')
147 return 0;
148 cp = endptr + 1;
149 minor = strtol(cp, &endptr, 10);
150 if (cp == endptr || *endptr != '.')
151 return 0;
152 cp = endptr + 1;
153 rev = strtol(cp, &endptr, 10);
154 if (cp == endptr)
155 return 0;
156 return ((((major * 256) + minor) * 256) + rev);
157}
158
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000159/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000160 * Helper function for read_bb_file and test_disk
161 */
Theodore Ts'o54434922003-12-07 01:28:50 -0500162static void invalid_block(ext2_filsys fs EXT2FS_ATTR((unused)), blk_t blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000163{
Theodore Ts'o66938372002-03-08 00:14:46 -0500164 fprintf(stderr, _("Bad block %u out of range; ignored.\n"), blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000165 return;
166}
167
168/*
169 * Reads the bad blocks list from a file
170 */
171static void read_bb_file(ext2_filsys fs, badblocks_list *bb_list,
172 const char *bad_blocks_file)
173{
174 FILE *f;
175 errcode_t retval;
176
177 f = fopen(bad_blocks_file, "r");
178 if (!f) {
179 com_err("read_bad_blocks_file", errno,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000180 _("while trying to open %s"), bad_blocks_file);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000181 exit(1);
182 }
183 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
184 fclose (f);
185 if (retval) {
186 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000187 _("while reading in list of bad blocks from file"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000188 exit(1);
189 }
190}
191
192/*
193 * Runs the badblocks program to test the disk
194 */
195static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
196{
197 FILE *f;
198 errcode_t retval;
199 char buf[1024];
200
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400201 sprintf(buf, "badblocks -b %d -X %s%s%s %u", fs->blocksize,
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500202 quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
Theodore Ts'o8ade4792006-11-08 00:41:50 -0500203 fs->device_name, fs->super->s_blocks_count-1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000204 if (verbose)
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000205 printf(_("Running command: %s\n"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000206 f = popen(buf, "r");
207 if (!f) {
208 com_err("popen", errno,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400209 _("while trying to run '%s'"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000210 exit(1);
211 }
212 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000213 pclose(f);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000214 if (retval) {
215 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000216 _("while processing list of bad blocks from program"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000217 exit(1);
218 }
219}
220
221static void handle_bad_blocks(ext2_filsys fs, badblocks_list bb_list)
222{
Theodore Ts'o54434922003-12-07 01:28:50 -0500223 dgrp_t i;
224 blk_t j;
225 unsigned must_be_good;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000226 blk_t blk;
227 badblocks_iterate bb_iter;
228 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000229 blk_t group_block;
230 int group;
231 int group_bad;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000232
233 if (!bb_list)
234 return;
235
236 /*
237 * The primary superblock and group descriptors *must* be
238 * good; if not, abort.
239 */
240 must_be_good = fs->super->s_first_data_block + 1 + fs->desc_blocks;
241 for (i = fs->super->s_first_data_block; i <= must_be_good; i++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000242 if (ext2fs_badblocks_list_test(bb_list, i)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000243 fprintf(stderr, _("Block %d in primary "
244 "superblock/group descriptor area bad.\n"), i);
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400245 fprintf(stderr, _("Blocks %u through %u must be good "
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000246 "in order to build a filesystem.\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000247 fs->super->s_first_data_block, must_be_good);
Theodore Ts'o54434922003-12-07 01:28:50 -0500248 fputs(_("Aborting....\n"), stderr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000249 exit(1);
250 }
251 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000252
253 /*
254 * See if any of the bad blocks are showing up in the backup
255 * superblocks and/or group descriptors. If so, issue a
256 * warning and adjust the block counts appropriately.
257 */
258 group_block = fs->super->s_first_data_block +
259 fs->super->s_blocks_per_group;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000260
261 for (i = 1; i < fs->group_desc_count; i++) {
Theodore Ts'o92bcc591998-02-16 22:29:34 +0000262 group_bad = 0;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000263 for (j=0; j < fs->desc_blocks+1; j++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000264 if (ext2fs_badblocks_list_test(bb_list,
265 group_block + j)) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000266 if (!group_bad)
267 fprintf(stderr,
Takashi Sato8deb80a2006-03-18 21:43:46 -0500268_("Warning: the backup superblock/group descriptors at block %u contain\n"
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000269" bad blocks.\n\n"),
Theodore Ts'of3db3561997-04-26 13:34:30 +0000270 group_block);
271 group_bad++;
272 group = ext2fs_group_of_blk(fs, group_block+j);
273 fs->group_desc[group].bg_free_blocks_count++;
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400274 ext2fs_group_desc_csum_set(fs, group);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000275 fs->super->s_free_blocks_count++;
276 }
277 }
278 group_block += fs->super->s_blocks_per_group;
279 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000280
281 /*
282 * Mark all the bad blocks as used...
283 */
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000284 retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000285 if (retval) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000286 com_err("ext2fs_badblocks_list_iterate_begin", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000287 _("while marking bad blocks as used"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000288 exit(1);
289 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000290 while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'of3db3561997-04-26 13:34:30 +0000291 ext2fs_mark_block_bitmap(fs->block_map, blk);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000292 ext2fs_badblocks_list_iterate_end(bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000293}
294
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000295/*
296 * These functions implement a generalized progress meter.
297 */
298struct progress_struct {
299 char format[20];
300 char backup[80];
301 __u32 max;
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400302 int skip_progress;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000303};
304
305static void progress_init(struct progress_struct *progress,
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500306 const char *label,__u32 max)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000307{
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000308 int i;
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000309
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000310 memset(progress, 0, sizeof(struct progress_struct));
311 if (quiet)
312 return;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000313
314 /*
315 * Figure out how many digits we need
316 */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000317 i = int_log10(max);
318 sprintf(progress->format, "%%%dd/%%%dld", i, i);
319 memset(progress->backup, '\b', sizeof(progress->backup)-1);
320 progress->backup[sizeof(progress->backup)-1] = 0;
Theodore Ts'o54434922003-12-07 01:28:50 -0500321 if ((2*i)+1 < (int) sizeof(progress->backup))
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000322 progress->backup[(2*i)+1] = 0;
323 progress->max = max;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000324
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400325 progress->skip_progress = 0;
326 if (getenv("MKE2FS_SKIP_PROGRESS"))
327 progress->skip_progress++;
328
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000329 fputs(label, stdout);
330 fflush(stdout);
331}
332
333static void progress_update(struct progress_struct *progress, __u32 val)
334{
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400335 if ((progress->format[0] == 0) || progress->skip_progress)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000336 return;
337 printf(progress->format, val, progress->max);
338 fputs(progress->backup, stdout);
339}
340
341static void progress_close(struct progress_struct *progress)
342{
343 if (progress->format[0] == 0)
344 return;
345 fputs(_("done \n"), stdout);
346}
347
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400348static void write_inode_tables(ext2_filsys fs, int lazy_flag)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000349{
350 errcode_t retval;
351 blk_t blk;
Theodore Ts'o54434922003-12-07 01:28:50 -0500352 dgrp_t i;
Theodore Ts'o0f2794c2008-04-22 23:18:37 -0400353 int num, ipb;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000354 struct progress_struct progress;
355
356 if (quiet)
357 memset(&progress, 0, sizeof(progress));
358 else
359 progress_init(&progress, _("Writing inode tables: "),
360 fs->group_desc_count);
361
Theodore Ts'o3839e651997-04-26 13:21:57 +0000362 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000363 progress_update(&progress, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000364
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000365 blk = fs->group_desc[i].bg_inode_table;
366 num = fs->inode_blocks_per_group;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000367
Theodore Ts'o0f2794c2008-04-22 23:18:37 -0400368 if (lazy_flag) {
369 ipb = fs->blocksize / EXT2_INODE_SIZE(fs->super);
Theodore Ts'o0f2794c2008-04-22 23:18:37 -0400370 num = ((((fs->super->s_inodes_per_group -
371 fs->group_desc[i].bg_itable_unused) *
372 EXT2_INODE_SIZE(fs->super)) +
373 EXT2_BLOCK_SIZE(fs->super) - 1) /
374 EXT2_BLOCK_SIZE(fs->super));
Theodore Ts'o0f2794c2008-04-22 23:18:37 -0400375 } else {
Jose R. Santosd2d22a22007-10-21 21:03:36 -0500376 /* The kernel doesn't need to zero the itable blocks */
377 fs->group_desc[i].bg_flags |= EXT2_BG_INODE_ZEROED;
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400378 ext2fs_group_desc_csum_set(fs, i);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000379 }
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530380 retval = ext2fs_zero_blocks(fs, blk, num, &blk, &num);
Theodore Ts'o0f2794c2008-04-22 23:18:37 -0400381 if (retval) {
382 fprintf(stderr, _("\nCould not write %d "
383 "blocks in inode table starting at %u: %s\n"),
384 num, blk, error_message(retval));
385 exit(1);
386 }
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000387 if (sync_kludge) {
388 if (sync_kludge == 1)
389 sync();
390 else if ((i % sync_kludge) == 0)
391 sync();
392 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000393 }
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530394 ext2fs_zero_blocks(0, 0, 0, 0, 0);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000395 progress_close(&progress);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000396}
397
398static void create_root_dir(ext2_filsys fs)
399{
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400400 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000401 struct ext2_inode inode;
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400402 __u32 uid, gid;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000403
404 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, 0);
405 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000406 com_err("ext2fs_mkdir", retval, _("while creating root dir"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000407 exit(1);
408 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000409 if (geteuid()) {
410 retval = ext2fs_read_inode(fs, EXT2_ROOT_INO, &inode);
411 if (retval) {
412 com_err("ext2fs_read_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000413 _("while reading root inode"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000414 exit(1);
415 }
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400416 uid = getuid();
417 inode.i_uid = uid;
Theodore Ts'o15343922008-01-21 09:45:25 -0500418 ext2fs_set_i_uid_high(inode, uid >> 16);
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400419 if (uid) {
420 gid = getgid();
421 inode.i_gid = gid;
Theodore Ts'o15343922008-01-21 09:45:25 -0500422 ext2fs_set_i_gid_high(inode, gid >> 16);
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400423 }
Theodore Ts'oe27b4562005-03-21 01:02:53 -0500424 retval = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000425 if (retval) {
426 com_err("ext2fs_write_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000427 _("while setting root inode ownership"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000428 exit(1);
429 }
430 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000431}
432
433static void create_lost_and_found(ext2_filsys fs)
434{
Theodore Ts'o2d328bb2008-03-17 23:17:13 -0400435 unsigned int lpf_size = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000436 errcode_t retval;
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000437 ext2_ino_t ino;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000438 const char *name = "lost+found";
439 int i;
440
Theodore Ts'o6a525062001-12-24 09:40:00 -0500441 fs->umask = 077;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000442 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, 0, name);
443 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000444 com_err("ext2fs_mkdir", retval,
445 _("while creating /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000446 exit(1);
447 }
448
449 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name, strlen(name), 0, &ino);
450 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000451 com_err("ext2_lookup", retval,
452 _("while looking up /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000453 exit(1);
454 }
455
456 for (i=1; i < EXT2_NDIR_BLOCKS; i++) {
Andreas Dilger8c7c6eb2008-01-09 20:59:47 +0100457 /* Ensure that lost+found is at least 2 blocks, so we always
458 * test large empty blocks for big-block filesystems. */
459 if ((lpf_size += fs->blocksize) >= 16*1024 &&
460 lpf_size >= 2 * fs->blocksize)
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000461 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000462 retval = ext2fs_expand_dir(fs, ino);
463 if (retval) {
464 com_err("ext2fs_expand_dir", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000465 _("while expanding /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000466 exit(1);
467 }
Theodore Ts'o6a525062001-12-24 09:40:00 -0500468 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000469}
470
471static void create_bad_block_inode(ext2_filsys fs, badblocks_list bb_list)
472{
473 errcode_t retval;
474
Theodore Ts'of3db3561997-04-26 13:34:30 +0000475 ext2fs_mark_inode_bitmap(fs->inode_map, EXT2_BAD_INO);
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400476 ext2fs_inode_alloc_stats2(fs, EXT2_BAD_INO, +1, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000477 retval = ext2fs_update_bb_inode(fs, bb_list);
478 if (retval) {
479 com_err("ext2fs_update_bb_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000480 _("while setting bad block inode"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000481 exit(1);
482 }
483
484}
485
486static void reserve_inodes(ext2_filsys fs)
487{
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000488 ext2_ino_t i;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000489
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400490 for (i = EXT2_ROOT_INO + 1; i < EXT2_FIRST_INODE(fs->super); i++)
491 ext2fs_inode_alloc_stats2(fs, i, +1, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000492 ext2fs_mark_ib_dirty(fs);
493}
494
Theodore Ts'o756df352002-03-07 20:52:12 -0500495#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500496#define BSD_MAGICDISK (0x57455682UL) /* The disk magic number reversed */
Theodore Ts'o756df352002-03-07 20:52:12 -0500497#define BSD_LABEL_OFFSET 64
Theodore Ts'o756df352002-03-07 20:52:12 -0500498
Theodore Ts'o04a96852001-08-30 21:55:26 -0400499static void zap_sector(ext2_filsys fs, int sect, int nsect)
Theodore Ts'of3db3561997-04-26 13:34:30 +0000500{
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400501 char *buf;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000502 int retval;
Theodore Ts'o756df352002-03-07 20:52:12 -0500503 unsigned int *magic;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000504
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400505 buf = malloc(512*nsect);
Andreas Dilger568101f2001-10-13 01:22:25 -0600506 if (!buf) {
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500507 printf(_("Out of memory erasing sectors %d-%d\n"),
508 sect, sect + nsect - 1);
Andreas Dilger568101f2001-10-13 01:22:25 -0600509 exit(1);
510 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500511
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500512 if (sect == 0) {
513 /* Check for a BSD disklabel, and don't erase it if so */
514 retval = io_channel_read_blk(fs->io, 0, -512, buf);
515 if (retval)
516 fprintf(stderr,
517 _("Warning: could not read block 0: %s\n"),
518 error_message(retval));
519 else {
520 magic = (unsigned int *) (buf + BSD_LABEL_OFFSET);
521 if ((*magic == BSD_DISKMAGIC) ||
522 (*magic == BSD_MAGICDISK))
523 return;
524 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500525 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500526
Theodore Ts'o70988102002-07-14 08:00:00 -0400527 memset(buf, 0, 512*nsect);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000528 io_channel_set_blksize(fs->io, 512);
Theodore Ts'o04a96852001-08-30 21:55:26 -0400529 retval = io_channel_write_blk(fs->io, sect, -512*nsect, buf);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000530 io_channel_set_blksize(fs->io, fs->blocksize);
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400531 free(buf);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000532 if (retval)
Theodore Ts'o66938372002-03-08 00:14:46 -0500533 fprintf(stderr, _("Warning: could not erase sector %d: %s\n"),
534 sect, error_message(retval));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000535}
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000536
537static void create_journal_dev(ext2_filsys fs)
538{
539 struct progress_struct progress;
540 errcode_t retval;
541 char *buf;
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530542 blk_t blk, err_blk;
543 int c, count, err_count;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000544
Theodore Ts'od6a27e02001-04-17 02:34:41 +0000545 retval = ext2fs_create_journal_superblock(fs,
546 fs->super->s_blocks_count, 0, &buf);
547 if (retval) {
548 com_err("create_journal_dev", retval,
549 _("while initializing journal superblock"));
550 exit(1);
551 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000552 if (quiet)
553 memset(&progress, 0, sizeof(progress));
554 else
555 progress_init(&progress, _("Zeroing journal device: "),
556 fs->super->s_blocks_count);
557
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530558 blk = 0;
559 count = fs->super->s_blocks_count;
560 while (count > 0) {
561 if (count > 1024)
562 c = 1024;
563 else
564 c = count;
565 retval = ext2fs_zero_blocks(fs, blk, c, &err_blk, &err_count);
566 if (retval) {
567 com_err("create_journal_dev", retval,
568 _("while zeroing journal device "
569 "(block %u, count %d)"),
570 err_blk, err_count);
571 exit(1);
572 }
573 blk += c;
574 count -= c;
575 progress_update(&progress, blk);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000576 }
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530577 ext2fs_zero_blocks(0, 0, 0, 0, 0);
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000578
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000579 retval = io_channel_write_blk(fs->io,
580 fs->super->s_first_data_block+1,
581 1, buf);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000582 if (retval) {
583 com_err("create_journal_dev", retval,
584 _("while writing journal superblock"));
585 exit(1);
586 }
587 progress_close(&progress);
588}
Theodore Ts'of3db3561997-04-26 13:34:30 +0000589
Theodore Ts'o3839e651997-04-26 13:21:57 +0000590static void show_stats(ext2_filsys fs)
591{
Theodore Ts'oef9abe52001-01-01 15:31:53 +0000592 struct ext2_super_block *s = fs->super;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000593 char buf[80];
Theodore Ts'o63253942005-03-19 01:13:22 -0500594 char *os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000595 blk_t group_block;
Theodore Ts'o54434922003-12-07 01:28:50 -0500596 dgrp_t i;
597 int need, col_left;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000598
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500599 if (fs_param.s_blocks_count != s->s_blocks_count)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500600 fprintf(stderr, _("warning: %u blocks unused.\n\n"),
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500601 fs_param.s_blocks_count - s->s_blocks_count);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000602
603 memset(buf, 0, sizeof(buf));
604 strncpy(buf, s->s_volume_name, sizeof(s->s_volume_name));
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000605 printf(_("Filesystem label=%s\n"), buf);
Theodore Ts'o54434922003-12-07 01:28:50 -0500606 fputs(_("OS type: "), stdout);
Theodore Ts'o63253942005-03-19 01:13:22 -0500607 os = e2p_os2string(fs->super->s_creator_os);
608 fputs(os, stdout);
609 free(os);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000610 printf("\n");
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000611 printf(_("Block size=%u (log=%u)\n"), fs->blocksize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000612 s->s_log_block_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000613 printf(_("Fragment size=%u (log=%u)\n"), fs->fragsize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000614 s->s_log_frag_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000615 printf(_("%u inodes, %u blocks\n"), s->s_inodes_count,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000616 s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000617 printf(_("%u blocks (%2.2f%%) reserved for the super user\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000618 s->s_r_blocks_count,
619 100.0 * s->s_r_blocks_count / s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000620 printf(_("First data block=%u\n"), s->s_first_data_block);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500621 if (s->s_reserved_gdt_blocks)
622 printf(_("Maximum filesystem blocks=%lu\n"),
623 (s->s_reserved_gdt_blocks + fs->desc_blocks) *
Valerie Clementf2de1d32007-08-30 17:38:13 +0200624 EXT2_DESC_PER_BLOCK(s) * s->s_blocks_per_group);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000625 if (fs->group_desc_count > 1)
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000626 printf(_("%u block groups\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000627 else
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000628 printf(_("%u block group\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000629 printf(_("%u blocks per group, %u fragments per group\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000630 s->s_blocks_per_group, s->s_frags_per_group);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000631 printf(_("%u inodes per group\n"), s->s_inodes_per_group);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000632
633 if (fs->group_desc_count == 1) {
634 printf("\n");
635 return;
636 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500637
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000638 printf(_("Superblock backups stored on blocks: "));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000639 group_block = s->s_first_data_block;
640 col_left = 0;
641 for (i = 1; i < fs->group_desc_count; i++) {
642 group_block += s->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000643 if (!ext2fs_bg_has_super(fs, i))
644 continue;
Theodore Ts'o76714331999-10-20 18:06:29 +0000645 if (i != 1)
646 printf(", ");
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000647 need = int_log10(group_block) + 2;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000648 if (need > col_left) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000649 printf("\n\t");
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000650 col_left = 72;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000651 }
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000652 col_left -= need;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000653 printf("%u", group_block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000654 }
655 printf("\n\n");
656}
657
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000658/*
659 * Set the S_CREATOR_OS field. Return true if OS is known,
660 * otherwise, 0.
661 */
662static int set_os(struct ext2_super_block *sb, char *os)
663{
664 if (isdigit (*os))
665 sb->s_creator_os = atoi (os);
666 else if (strcasecmp(os, "linux") == 0)
667 sb->s_creator_os = EXT2_OS_LINUX;
668 else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
669 sb->s_creator_os = EXT2_OS_HURD;
Theodore Ts'oea1e8f42005-01-19 18:18:44 -0500670 else if (strcasecmp(os, "freebsd") == 0)
671 sb->s_creator_os = EXT2_OS_FREEBSD;
672 else if (strcasecmp(os, "lites") == 0)
673 sb->s_creator_os = EXT2_OS_LITES;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000674 else
675 return 0;
676 return 1;
677}
678
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000679#define PATH_SET "PATH=/sbin"
680
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500681static void parse_extended_opts(struct ext2_super_block *param,
682 const char *opts)
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000683{
Theodore Ts'o2d328bb2008-03-17 23:17:13 -0400684 char *buf, *token, *next, *p, *arg, *badopt = 0;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000685 int len;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500686 int r_usage = 0;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000687
688 len = strlen(opts);
689 buf = malloc(len+1);
690 if (!buf) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500691 fprintf(stderr,
692 _("Couldn't allocate memory to parse options!\n"));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000693 exit(1);
694 }
695 strcpy(buf, opts);
696 for (token = buf; token && *token; token = next) {
697 p = strchr(token, ',');
698 next = 0;
699 if (p) {
700 *p = 0;
701 next = p+1;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500702 }
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000703 arg = strchr(token, '=');
704 if (arg) {
705 *arg = 0;
706 arg++;
707 }
708 if (strcmp(token, "stride") == 0) {
709 if (!arg) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500710 r_usage++;
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500711 badopt = token;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000712 continue;
713 }
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500714 param->s_raid_stride = strtoul(arg, &p, 0);
715 if (*p || (param->s_raid_stride == 0)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000716 fprintf(stderr,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400717 _("Invalid stride parameter: %s\n"),
718 arg);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500719 r_usage++;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000720 continue;
721 }
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500722 } else if (strcmp(token, "stripe-width") == 0 ||
723 strcmp(token, "stripe_width") == 0) {
724 if (!arg) {
725 r_usage++;
726 badopt = token;
727 continue;
728 }
729 param->s_raid_stripe_width = strtoul(arg, &p, 0);
730 if (*p || (param->s_raid_stripe_width == 0)) {
731 fprintf(stderr,
732 _("Invalid stripe-width parameter: %s\n"),
733 arg);
734 r_usage++;
735 continue;
736 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500737 } else if (!strcmp(token, "resize")) {
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500738 unsigned long resize, bpg, rsv_groups;
739 unsigned long group_desc_count, desc_blocks;
740 unsigned int gdpb, blocksize;
741 int rsv_gdb;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500742
743 if (!arg) {
744 r_usage++;
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500745 badopt = token;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500746 continue;
747 }
748
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500749 resize = parse_num_blocks(arg,
750 param->s_log_block_size);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500751
752 if (resize == 0) {
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500753 fprintf(stderr,
754 _("Invalid resize parameter: %s\n"),
755 arg);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500756 r_usage++;
757 continue;
758 }
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500759 if (resize <= param->s_blocks_count) {
760 fprintf(stderr,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400761 _("The resize maximum must be greater "
762 "than the filesystem size.\n"));
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500763 r_usage++;
764 continue;
765 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500766
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500767 blocksize = EXT2_BLOCK_SIZE(param);
768 bpg = param->s_blocks_per_group;
769 if (!bpg)
770 bpg = blocksize * 8;
Valerie Clementf2de1d32007-08-30 17:38:13 +0200771 gdpb = EXT2_DESC_PER_BLOCK(param);
Theodore Ts'o69022e02006-08-30 01:57:00 -0400772 group_desc_count =
773 ext2fs_div_ceil(param->s_blocks_count, bpg);
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500774 desc_blocks = (group_desc_count +
775 gdpb - 1) / gdpb;
Theodore Ts'o69022e02006-08-30 01:57:00 -0400776 rsv_groups = ext2fs_div_ceil(resize, bpg);
777 rsv_gdb = ext2fs_div_ceil(rsv_groups, gdpb) -
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500778 desc_blocks;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500779 if (rsv_gdb > (int) EXT2_ADDR_PER_BLOCK(param))
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500780 rsv_gdb = EXT2_ADDR_PER_BLOCK(param);
781
782 if (rsv_gdb > 0) {
Theodore Ts'ob290d2d2006-10-18 00:31:11 -0400783 if (param->s_rev_level == EXT2_GOOD_OLD_REV) {
784 fprintf(stderr,
785 _("On-line resizing not supported with revision 0 filesystems\n"));
Brian Behlendorf21400382007-05-31 11:30:47 -0400786 free(buf);
Theodore Ts'ob290d2d2006-10-18 00:31:11 -0400787 exit(1);
788 }
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500789 param->s_feature_compat |=
790 EXT2_FEATURE_COMPAT_RESIZE_INODE;
791
792 param->s_reserved_gdt_blocks = rsv_gdb;
793 }
Theodore Ts'o6cb27402008-01-26 19:06:35 -0500794 } else if (!strcmp(token, "test_fs")) {
795 param->s_flags |= EXT2_FLAGS_TEST_FILESYS;
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400796 } else if (!strcmp(token, "lazy_itable_init")) {
Theodore Ts'o43781b92008-04-27 19:38:02 -0400797 if (arg)
798 lazy_itable_init = strtoul(arg, &p, 0);
799 else
800 lazy_itable_init = 1;
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500801 } else {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500802 r_usage++;
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500803 badopt = token;
804 }
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000805 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500806 if (r_usage) {
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500807 fprintf(stderr, _("\nBad option(s) specified: %s\n\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -0400808 "Extended options are separated by commas, "
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000809 "and may take an argument which\n"
810 "\tis set off by an equals ('=') sign.\n\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -0400811 "Valid extended options are:\n"
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500812 "\tstride=<RAID per-disk data chunk in blocks>\n"
813 "\tstripe-width=<RAID stride * data disks in blocks>\n"
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400814 "\tresize=<resize maximum size in blocks>\n"
815 "\tlazy_itable_init=<0 to disable, 1 to enable>\n"
816 "\ttest_fs\n\n"),
Theodore Ts'o2d328bb2008-03-17 23:17:13 -0400817 badopt ? badopt : "");
Brian Behlendorf21400382007-05-31 11:30:47 -0400818 free(buf);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000819 exit(1);
820 }
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500821 if (param->s_raid_stride &&
822 (param->s_raid_stripe_width % param->s_raid_stride) != 0)
823 fprintf(stderr, _("\nWarning: RAID stripe-width %u not an even "
824 "multiple of stride %u.\n\n"),
825 param->s_raid_stripe_width, param->s_raid_stride);
826
Brian Behlendorf21400382007-05-31 11:30:47 -0400827 free(buf);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000828}
829
Theodore Ts'o896938d1999-10-23 01:04:50 +0000830static __u32 ok_features[3] = {
Theodore Ts'o558df542008-02-27 15:01:19 -0500831 /* Compat */
Theodore Ts'o843049c2002-09-22 15:37:40 -0400832 EXT3_FEATURE_COMPAT_HAS_JOURNAL |
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500833 EXT2_FEATURE_COMPAT_RESIZE_INODE |
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400834 EXT2_FEATURE_COMPAT_DIR_INDEX |
Theodore Ts'o558df542008-02-27 15:01:19 -0500835 EXT2_FEATURE_COMPAT_EXT_ATTR,
836 /* Incompat */
837 EXT2_FEATURE_INCOMPAT_FILETYPE|
Theodore Ts'obf6b8482008-02-20 08:13:19 -0500838 EXT3_FEATURE_INCOMPAT_EXTENTS|
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400839 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|
Jose R. Santosc2d43002007-08-13 23:32:57 -0500840 EXT2_FEATURE_INCOMPAT_META_BG|
841 EXT4_FEATURE_INCOMPAT_FLEX_BG,
Theodore Ts'o558df542008-02-27 15:01:19 -0500842 /* R/O compat */
843 EXT2_FEATURE_RO_COMPAT_LARGE_FILE|
Theodore Ts'o2be8fe42008-07-10 10:49:59 -0400844 EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
845 EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
846 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
Jose R. Santosd2d22a22007-10-21 21:03:36 -0500847 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER|
848 EXT4_FEATURE_RO_COMPAT_GDT_CSUM
Theodore Ts'o896938d1999-10-23 01:04:50 +0000849};
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000850
851
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500852static void syntax_err_report(const char *filename, long err, int line_num)
853{
854 fprintf(stderr,
855 _("Syntax error in mke2fs config file (%s, line #%d)\n\t%s\n"),
856 filename, line_num, error_message(err));
857 exit(1);
858}
859
Matthias Andreeabcfdfd2006-06-10 16:08:18 +0200860static const char *config_fn[] = { ROOT_SYSCONFDIR "/mke2fs.conf", 0 };
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500861
862static void edit_feature(const char *str, __u32 *compat_array)
863{
864 if (!str)
865 return;
866
867 if (e2p_edit_feature(str, compat_array, ok_features)) {
868 fprintf(stderr, _("Invalid filesystem option set: %s\n"),
869 str);
870 exit(1);
871 }
872}
873
Theodore Ts'o3d438362008-02-19 08:32:58 -0500874struct str_list {
875 char **list;
876 int num;
877 int max;
878};
879
880static errcode_t init_list(struct str_list *sl)
881{
882 sl->num = 0;
883 sl->max = 0;
884 sl->list = malloc((sl->max+1) * sizeof(char *));
885 if (!sl->list)
886 return ENOMEM;
887 sl->list[0] = 0;
888 return 0;
889}
890
891static errcode_t push_string(struct str_list *sl, const char *str)
892{
893 char **new_list;
894
895 if (sl->num >= sl->max) {
896 sl->max += 2;
897 new_list = realloc(sl->list, (sl->max+1) * sizeof(char *));
898 if (!new_list)
899 return ENOMEM;
900 sl->list = new_list;
901 }
902 sl->list[sl->num] = malloc(strlen(str)+1);
903 if (sl->list[sl->num] == 0)
904 return ENOMEM;
905 strcpy(sl->list[sl->num], str);
906 sl->num++;
907 sl->list[sl->num] = 0;
908 return 0;
909}
910
911static void print_str_list(char **list)
912{
913 char **cpp;
914
915 for (cpp = list; *cpp; cpp++) {
916 printf("'%s'", *cpp);
917 if (cpp[1])
918 fputs(", ", stdout);
919 }
920 fputc('\n', stdout);
921}
922
923static char **parse_fs_type(const char *fs_type,
924 const char *usage_types,
925 struct ext2_super_block *fs_param,
926 char *progname)
927{
928 const char *ext_type = 0;
929 char *parse_str;
930 char *profile_type = 0;
931 char *cp, *t;
932 const char *size_type;
933 struct str_list list;
Theodore Ts'o3d438362008-02-19 08:32:58 -0500934 unsigned long meg;
Theodore Ts'o7f5601e2008-07-10 09:24:25 -0400935 int is_hurd = 0;
Theodore Ts'o3d438362008-02-19 08:32:58 -0500936
937 if (init_list(&list))
938 return 0;
939
Theodore Ts'o7f5601e2008-07-10 09:24:25 -0400940 if (creator_os && (!strcasecmp(creator_os, "GNU") ||
941 !strcasecmp(creator_os, "hurd")))
942 is_hurd = 1;
943
Theodore Ts'o3d438362008-02-19 08:32:58 -0500944 if (fs_type)
945 ext_type = fs_type;
Theodore Ts'o7f5601e2008-07-10 09:24:25 -0400946 else if (is_hurd)
947 ext_type = "ext2";
Theodore Ts'o3d438362008-02-19 08:32:58 -0500948 else if (progname) {
949 ext_type = strrchr(progname, '/');
950 if (ext_type)
951 ext_type++;
952 else
953 ext_type = progname;
954
955 if (!strncmp(ext_type, "mkfs.", 5)) {
956 ext_type += 5;
957 if (ext_type[0] == 0)
958 ext_type = 0;
959 } else
960 ext_type = 0;
961 }
962
963 if (!ext_type) {
964 profile_get_string(profile, "defaults", "fs_type", 0,
965 "ext2", &profile_type);
966 ext_type = profile_type;
967 if (!strcmp(ext_type, "ext2") && (journal_size != 0))
968 ext_type = "ext3";
969 }
970
Theodore Ts'obad89b22008-08-22 21:57:29 -0400971 if (!strcmp(ext_type, "ext3") || !strcmp(ext_type, "ext4") ||
972 !strcmp(ext_type, "ext4dev")) {
973 profile_get_string(profile, "fs_types", ext_type, "features",
974 0, &t);
975 if (!t) {
976 printf(_("\nWarning! Your mke2fs.conf file does "
977 "not define the %s filesystem type.\n"),
978 ext_type);
979 printf(_("You probably need to install an updated "
980 "mke2fs.conf file.\n\n"));
981 sleep(5);
982 }
983 }
984
Theodore Ts'o3d438362008-02-19 08:32:58 -0500985 meg = (1024 * 1024) / EXT2_BLOCK_SIZE(fs_param);
986 if (fs_param->s_blocks_count < 3 * meg)
987 size_type = "floppy";
988 else if (fs_param->s_blocks_count < 512 * meg)
989 size_type = "small";
990 else
991 size_type = "default";
992
993 if (!usage_types)
994 usage_types = size_type;
995
996 parse_str = malloc(usage_types ? strlen(usage_types)+1 : 1);
997 if (!parse_str) {
998 free(list.list);
999 return 0;
1000 }
1001 if (usage_types)
1002 strcpy(parse_str, usage_types);
1003 else
1004 *parse_str = '\0';
1005
1006 if (ext_type)
1007 push_string(&list, ext_type);
1008 cp = parse_str;
1009 while (1) {
1010 t = strchr(cp, ',');
1011 if (t)
1012 *t = '\0';
1013
1014 if (*cp)
1015 push_string(&list, cp);
1016 if (t)
1017 cp = t+1;
1018 else {
1019 cp = "";
1020 break;
1021 }
1022 }
1023 free(parse_str);
1024 if (profile_type)
1025 free(profile_type);
Theodore Ts'o7f5601e2008-07-10 09:24:25 -04001026 if (is_hurd)
1027 push_string(&list, "hurd");
Theodore Ts'o3d438362008-02-19 08:32:58 -05001028 return (list.list);
1029}
1030
1031static char *get_string_from_profile(char **fs_types, const char *opt,
1032 const char *def_val)
1033{
1034 char *ret = 0;
Theodore Ts'o3d438362008-02-19 08:32:58 -05001035 int i;
1036
1037 for (i=0; fs_types[i]; i++);
1038 for (i-=1; i >=0 ; i--) {
1039 profile_get_string(profile, "fs_types", fs_types[i],
1040 opt, 0, &ret);
1041 if (ret)
1042 return ret;
1043 }
1044 profile_get_string(profile, "defaults", opt, 0, def_val, &ret);
1045 return (ret);
1046}
1047
1048static int get_int_from_profile(char **fs_types, const char *opt, int def_val)
1049{
1050 int ret;
1051 char **cpp;
1052
1053 profile_get_integer(profile, "defaults", opt, 0, def_val, &ret);
1054 for (cpp = fs_types; *cpp; cpp++)
1055 profile_get_integer(profile, "fs_types", *cpp, opt, ret, &ret);
1056 return ret;
1057}
1058
Theodore Ts'oa4396e92008-04-18 10:19:27 -04001059static int get_bool_from_profile(char **fs_types, const char *opt, int def_val)
1060{
1061 int ret;
1062 char **cpp;
1063
1064 profile_get_boolean(profile, "defaults", opt, 0, def_val, &ret);
1065 for (cpp = fs_types; *cpp; cpp++)
1066 profile_get_boolean(profile, "fs_types", *cpp, opt, ret, &ret);
1067 return ret;
1068}
Theodore Ts'o3d438362008-02-19 08:32:58 -05001069
Theodore Ts'od48bc602007-07-04 14:10:46 -04001070extern const char *mke2fs_default_profile;
1071static const char *default_files[] = { "<default>", 0 };
1072
Theodore Ts'o3839e651997-04-26 13:21:57 +00001073static void PRS(int argc, char *argv[])
1074{
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001075 int b, c;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001076 int size;
Eric Sandeen79e62402008-07-06 18:36:56 -04001077 char *tmp, **cpp;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001078 int blocksize = 0;
1079 int inode_ratio = 0;
Andreas Dilger932a4892002-05-16 03:20:07 -06001080 int inode_size = 0;
Theodore Ts'o9ba40002008-04-22 08:27:01 -04001081 unsigned long flex_bg_size = 0;
Andreas Dilgerce911142005-07-06 11:50:08 -05001082 double reserved_ratio = 5.0;
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001083 int sector_size = 0;
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001084 int show_version_only = 0;
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001085 unsigned long long num_inodes = 0; /* unsigned long long to catch too-large input */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001086 errcode_t retval;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001087 char * oldpath = getenv("PATH");
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001088 char * extended_opts = 0;
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -05001089 const char * fs_type = 0;
Theodore Ts'o3d438362008-02-19 08:32:58 -05001090 const char * usage_types = 0;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001091 blk_t dev_size;
Theodore Ts'o756df352002-03-07 20:52:12 -05001092#ifdef __linux__
Theodore Ts'o4a600561999-10-26 14:35:51 +00001093 struct utsname ut;
Theodore Ts'o27401561999-09-14 20:11:19 +00001094#endif
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001095 long sysval;
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001096 int s_opt = -1, r_opt = -1;
1097 char *fs_features = 0;
1098 int use_bsize;
Theodore Ts'o642935c2006-11-14 23:38:17 -05001099 char *newpath;
1100 int pathlen = sizeof(PATH_SET) + 1;
1101
1102 if (oldpath)
1103 pathlen += strlen(oldpath);
1104 newpath = malloc(pathlen);
1105 strcpy(newpath, PATH_SET);
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001106
Theodore Ts'o3839e651997-04-26 13:21:57 +00001107 /* Update our PATH to include /sbin */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001108 if (oldpath) {
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001109 strcat (newpath, ":");
1110 strcat (newpath, oldpath);
Theodore Ts'o642935c2006-11-14 23:38:17 -05001111 }
1112 putenv (newpath);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001113
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001114 tmp = getenv("MKE2FS_SYNC");
1115 if (tmp)
1116 sync_kludge = atoi(tmp);
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001117
1118 /* Determine the system page size if possible */
1119#ifdef HAVE_SYSCONF
1120#if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
1121#define _SC_PAGESIZE _SC_PAGE_SIZE
1122#endif
1123#ifdef _SC_PAGESIZE
1124 sysval = sysconf(_SC_PAGESIZE);
Andreas Dilgeraab6fe72002-05-18 13:27:33 -06001125 if (sysval > 0)
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001126 sys_page_size = sysval;
1127#endif /* _SC_PAGESIZE */
1128#endif /* HAVE_SYSCONF */
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001129
1130 if ((tmp = getenv("MKE2FS_CONFIG")) != NULL)
1131 config_fn[0] = tmp;
1132 profile_set_syntax_err_cb(syntax_err_report);
Theodore Ts'od48bc602007-07-04 14:10:46 -04001133 retval = profile_init(config_fn, &profile);
1134 if (retval == ENOENT) {
1135 profile_init(default_files, &profile);
1136 profile_set_default(profile, mke2fs_default_profile);
1137 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001138
Theodore Ts'o3839e651997-04-26 13:21:57 +00001139 setbuf(stdout, NULL);
1140 setbuf(stderr, NULL);
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001141 add_error_table(&et_ext2_error_table);
1142 add_error_table(&et_prof_error_table);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001143 memset(&fs_param, 0, sizeof(struct ext2_super_block));
1144 fs_param.s_rev_level = 1; /* Create revision 1 filesystems now */
Theodore Ts'o843049c2002-09-22 15:37:40 -04001145
Theodore Ts'o756df352002-03-07 20:52:12 -05001146#ifdef __linux__
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001147 if (uname(&ut)) {
1148 perror("uname");
1149 exit(1);
1150 }
Theodore Ts'od99225e2004-09-25 07:40:12 -04001151 linux_version_code = parse_version_number(ut.release);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001152 if (linux_version_code && linux_version_code < (2*65536 + 2*256))
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001153 fs_param.s_rev_level = 0;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001154#endif
Andreas Dilger0072f8d2002-02-25 23:11:26 -07001155
1156 if (argc && *argv) {
1157 program_name = get_progname(*argv);
1158
1159 /* If called as mkfs.ext3, create a journal inode */
1160 if (!strcmp(program_name, "mkfs.ext3"))
1161 journal_size = -1;
1162 }
1163
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001164 while ((c = getopt (argc, argv,
Theodore Ts'o9ba40002008-04-22 08:27:01 -04001165 "b:cf:g:G:i:jl:m:no:qr:s:t:vE:FI:J:L:M:N:O:R:ST:V")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001166 switch (c) {
1167 case 'b':
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001168 blocksize = strtol(optarg, &tmp, 0);
1169 b = (blocksize > 0) ? blocksize : -blocksize;
1170 if (b < EXT2_MIN_BLOCK_SIZE ||
1171 b > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001172 com_err(program_name, 0,
Theodore Ts'of37ab682005-05-05 23:15:55 -04001173 _("invalid block size - %s"), optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001174 exit(1);
1175 }
Andreas Dilger932a4892002-05-16 03:20:07 -06001176 if (blocksize > 4096)
1177 fprintf(stderr, _("Warning: blocksize %d not "
1178 "usable on most systems.\n"),
1179 blocksize);
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001180 if (blocksize > 0)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001181 fs_param.s_log_block_size =
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001182 int_log2(blocksize >>
1183 EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001184 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +00001185 case 'c': /* Check for bad blocks */
Theodore Ts'o3ed57c22001-12-24 15:01:59 -05001186 cflag++;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001187 break;
1188 case 'f':
1189 size = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -06001190 if (size < EXT2_MIN_BLOCK_SIZE ||
1191 size > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001192 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001193 _("invalid fragment size - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +00001194 optarg);
1195 exit(1);
1196 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001197 fs_param.s_log_frag_size =
Theodore Ts'o6733c2f1999-11-23 02:23:30 +00001198 int_log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o66938372002-03-08 00:14:46 -05001199 fprintf(stderr, _("Warning: fragments not supported. "
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001200 "Ignoring -f option\n"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001201 break;
1202 case 'g':
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001203 fs_param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001204 if (*tmp) {
1205 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001206 _("Illegal number for blocks per group"));
Theodore Ts'of3db3561997-04-26 13:34:30 +00001207 exit(1);
1208 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001209 if ((fs_param.s_blocks_per_group % 8) != 0) {
Theodore Ts'of3db3561997-04-26 13:34:30 +00001210 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001211 _("blocks per group must be multiple of 8"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001212 exit(1);
1213 }
1214 break;
Theodore Ts'o9ba40002008-04-22 08:27:01 -04001215 case 'G':
1216 flex_bg_size = strtoul(optarg, &tmp, 0);
1217 if (*tmp) {
1218 com_err(program_name, 0,
1219 _("Illegal number for flex_bg size"));
1220 exit(1);
1221 }
1222 if (flex_bg_size < 2 ||
1223 (flex_bg_size & (flex_bg_size-1)) != 0) {
1224 com_err(program_name, 0,
1225 _("flex_bg size must be a power of 2"));
1226 exit(1);
1227 }
1228 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001229 case 'i':
1230 inode_ratio = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -06001231 if (inode_ratio < EXT2_MIN_BLOCK_SIZE ||
1232 inode_ratio > EXT2_MAX_BLOCK_SIZE * 1024 ||
Theodore Ts'o3839e651997-04-26 13:21:57 +00001233 *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001234 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001235 _("invalid inode ratio %s (min %d/max %d)"),
Andreas Dilger932a4892002-05-16 03:20:07 -06001236 optarg, EXT2_MIN_BLOCK_SIZE,
1237 EXT2_MAX_BLOCK_SIZE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001238 exit(1);
1239 }
1240 break;
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001241 case 'J':
1242 parse_journal_opts(optarg);
1243 break;
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001244 case 'j':
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001245 if (!journal_size)
1246 journal_size = -1;
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001247 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001248 case 'l':
Theodore Ts'of3db3561997-04-26 13:34:30 +00001249 bad_blocks_filename = malloc(strlen(optarg)+1);
1250 if (!bad_blocks_filename) {
1251 com_err(program_name, ENOMEM,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001252 _("in malloc for bad_blocks_filename"));
Theodore Ts'of3db3561997-04-26 13:34:30 +00001253 exit(1);
1254 }
1255 strcpy(bad_blocks_filename, optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001256 break;
1257 case 'm':
Andreas Dilgerce911142005-07-06 11:50:08 -05001258 reserved_ratio = strtod(optarg, &tmp);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001259 if (reserved_ratio > 50 || *tmp) {
1260 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001261 _("invalid reserved blocks percent - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +00001262 optarg);
1263 exit(1);
1264 }
1265 break;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001266 case 'n':
1267 noaction++;
1268 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001269 case 'o':
1270 creator_os = optarg;
1271 break;
Andreas Dilger25247852005-07-06 12:58:15 -05001272 case 'q':
1273 quiet = 1;
1274 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001275 case 'r':
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001276 r_opt = strtoul(optarg, &tmp, 0);
Andreas Dilger25247852005-07-06 12:58:15 -05001277 if (*tmp) {
1278 com_err(program_name, 0,
1279 _("bad revision level - %s"), optarg);
1280 exit(1);
1281 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001282 fs_param.s_rev_level = r_opt;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001283 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +00001284 case 's': /* deprecated */
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001285 s_opt = atoi(optarg);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001286 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001287 case 'I':
Andreas Dilger932a4892002-05-16 03:20:07 -06001288 inode_size = strtoul(optarg, &tmp, 0);
1289 if (*tmp) {
1290 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001291 _("invalid inode size - %s"), optarg);
Andreas Dilger932a4892002-05-16 03:20:07 -06001292 exit(1);
1293 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001294 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001295 case 'v':
1296 verbose = 1;
1297 break;
Theodore Ts'o74becf31997-04-26 14:37:06 +00001298 case 'F':
Andreas Dilgerc16e6102006-08-05 19:05:53 -04001299 force++;
Theodore Ts'o74becf31997-04-26 14:37:06 +00001300 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001301 case 'L':
1302 volume_label = optarg;
1303 break;
1304 case 'M':
1305 mount_dir = optarg;
1306 break;
Andreas Dilger25247852005-07-06 12:58:15 -05001307 case 'N':
1308 num_inodes = strtoul(optarg, &tmp, 0);
1309 if (*tmp) {
1310 com_err(program_name, 0,
1311 _("bad num inodes - %s"), optarg);
1312 exit(1);
1313 }
1314 break;
Theodore Ts'o896938d1999-10-23 01:04:50 +00001315 case 'O':
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001316 fs_features = optarg;
Theodore Ts'o896938d1999-10-23 01:04:50 +00001317 break;
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001318 case 'E':
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001319 case 'R':
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001320 extended_opts = optarg;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001321 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +00001322 case 'S':
1323 super_only = 1;
1324 break;
Theodore Ts'o3d438362008-02-19 08:32:58 -05001325 case 't':
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001326 fs_type = optarg;
1327 break;
Theodore Ts'o3d438362008-02-19 08:32:58 -05001328 case 'T':
1329 usage_types = optarg;
1330 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001331 case 'V':
1332 /* Print version number and exit */
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001333 show_version_only++;
1334 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001335 default:
1336 usage();
1337 }
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001338 }
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001339 if ((optind == argc) && !show_version_only)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001340 usage();
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001341 device_name = argv[optind++];
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001342
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001343 if (!quiet || show_version_only)
Theodore Ts'o38798572003-04-16 15:29:39 -04001344 fprintf (stderr, "mke2fs %s (%s)\n", E2FSPROGS_VERSION,
1345 E2FSPROGS_DATE);
1346
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001347 if (show_version_only) {
1348 fprintf(stderr, _("\tUsing %s\n"),
1349 error_message(EXT2_ET_BASE));
1350 exit(0);
1351 }
1352
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001353 /*
1354 * If there's no blocksize specified and there is a journal
1355 * device, use it to figure out the blocksize
1356 */
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001357 if (blocksize <= 0 && journal_device) {
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001358 ext2_filsys jfs;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001359 io_manager io_ptr;
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001360
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001361#ifdef CONFIG_TESTIO_DEBUG
1362 io_ptr = test_io_manager;
1363 test_io_backing_manager = unix_io_manager;
1364#else
1365 io_ptr = unix_io_manager;
1366#endif
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001367 retval = ext2fs_open(journal_device,
1368 EXT2_FLAG_JOURNAL_DEV_OK, 0,
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001369 0, io_ptr, &jfs);
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001370 if (retval) {
1371 com_err(program_name, retval,
1372 _("while trying to open journal device %s\n"),
1373 journal_device);
1374 exit(1);
1375 }
Theodore Ts'o54434922003-12-07 01:28:50 -05001376 if ((blocksize < 0) && (jfs->blocksize < (unsigned) (-blocksize))) {
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001377 com_err(program_name, 0,
Theodore Ts'oddc32a02003-05-03 18:45:55 -04001378 _("Journal dev blocksize (%d) smaller than "
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001379 "minimum blocksize %d\n"), jfs->blocksize,
1380 -blocksize);
1381 exit(1);
1382 }
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001383 blocksize = jfs->blocksize;
Theodore Ts'of8df04b2008-07-06 20:57:17 -04001384 printf(_("Using journal device's blocksize: %d\n"), blocksize);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001385 fs_param.s_log_block_size =
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001386 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1387 ext2fs_close(jfs);
1388 }
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001389
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001390 if (blocksize > sys_page_size) {
Andreas Dilger932a4892002-05-16 03:20:07 -06001391 if (!force) {
1392 com_err(program_name, 0,
1393 _("%d-byte blocks too big for system (max %d)"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001394 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001395 proceed_question();
1396 }
1397 fprintf(stderr, _("Warning: %d-byte blocks too big for system "
1398 "(max %d), forced to continue\n"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001399 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001400 }
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001401 if (optind < argc) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001402 fs_param.s_blocks_count = parse_num_blocks(argv[optind++],
1403 fs_param.s_log_block_size);
1404 if (!fs_param.s_blocks_count) {
Theodore Ts'of37ab682005-05-05 23:15:55 -04001405 com_err(program_name, 0, _("invalid blocks count - %s"),
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001406 argv[optind - 1]);
1407 exit(1);
1408 }
1409 }
1410 if (optind < argc)
1411 usage();
1412
Theodore Ts'o74becf31997-04-26 14:37:06 +00001413 if (!force)
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001414 check_plausibility(device_name);
Theodore Ts'o63985322001-01-03 17:02:13 +00001415 check_mount(device_name, force, _("filesystem"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001416
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001417 fs_param.s_log_frag_size = fs_param.s_log_block_size;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001418
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001419 if (noaction && fs_param.s_blocks_count) {
1420 dev_size = fs_param.s_blocks_count;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001421 retval = 0;
Theodore Ts'o20953122005-01-27 19:07:26 -05001422 } else {
1423 retry:
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001424 retval = ext2fs_get_device_size(device_name,
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001425 EXT2_BLOCK_SIZE(&fs_param),
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001426 &dev_size);
Theodore Ts'o20953122005-01-27 19:07:26 -05001427 if ((retval == EFBIG) &&
1428 (blocksize == 0) &&
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001429 (fs_param.s_log_block_size == 0)) {
1430 fs_param.s_log_block_size = 2;
Theodore Ts'o20953122005-01-27 19:07:26 -05001431 blocksize = 4096;
1432 goto retry;
1433 }
1434 }
1435
Theodore Ts'of8df04b2008-07-06 20:57:17 -04001436 if (retval == EFBIG) {
1437 fprintf(stderr, _("%s: Size of device %s too big "
1438 "to be expressed in 32 bits\n\t"
1439 "using a blocksize of %d.\n"),
1440 program_name, device_name, EXT2_BLOCK_SIZE(&fs_param));
1441 exit(1);
1442 }
Theodore Ts'oa789d841998-03-30 01:20:55 +00001443 if (retval && (retval != EXT2_ET_UNIMPLEMENTED)) {
1444 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001445 _("while trying to determine filesystem size"));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001446 exit(1);
1447 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001448 if (!fs_param.s_blocks_count) {
Theodore Ts'oa789d841998-03-30 01:20:55 +00001449 if (retval == EXT2_ET_UNIMPLEMENTED) {
1450 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001451 _("Couldn't determine device size; you "
Theodore Ts'oa789d841998-03-30 01:20:55 +00001452 "must specify\nthe size of the "
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001453 "filesystem\n"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001454 exit(1);
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001455 } else {
1456 if (dev_size == 0) {
1457 com_err(program_name, 0,
1458 _("Device size reported to be zero. "
1459 "Invalid partition specified, or\n\t"
1460 "partition table wasn't reread "
1461 "after running fdisk, due to\n\t"
1462 "a modified partition being busy "
1463 "and in use. You may need to reboot\n\t"
1464 "to re-read your partition table.\n"
1465 ));
1466 exit(1);
1467 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001468 fs_param.s_blocks_count = dev_size;
1469 if (sys_page_size > EXT2_BLOCK_SIZE(&fs_param))
1470 fs_param.s_blocks_count &= ~((sys_page_size /
1471 EXT2_BLOCK_SIZE(&fs_param))-1);
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001472 }
1473
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001474 } else if (!force && (fs_param.s_blocks_count > dev_size)) {
Theodore Ts'oa789d841998-03-30 01:20:55 +00001475 com_err(program_name, 0,
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001476 _("Filesystem larger than apparent device size."));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001477 proceed_question();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001478 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001479
Theodore Ts'o3d438362008-02-19 08:32:58 -05001480 fs_types = parse_fs_type(fs_type, usage_types, &fs_param, argv[0]);
1481 if (!fs_types) {
1482 fprintf(stderr, _("Failed to parse fs types list\n"));
1483 exit(1);
1484 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001485
1486 /* Figure out what features should be enabled */
1487
Theodore Ts'o3d438362008-02-19 08:32:58 -05001488 tmp = NULL;
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001489 if (fs_param.s_rev_level != EXT2_GOOD_OLD_REV) {
Theodore Ts'o3d438362008-02-19 08:32:58 -05001490 tmp = get_string_from_profile(fs_types, "base_features",
1491 "sparse_super,filetype,resize_inode,dir_index");
1492 edit_feature(tmp, &fs_param.s_feature_compat);
1493 free(tmp);
1494
1495 for (cpp = fs_types; *cpp; cpp++) {
1496 tmp = NULL;
1497 profile_get_string(profile, "fs_types", *cpp,
1498 "features", "", &tmp);
1499 if (tmp && *tmp)
1500 edit_feature(tmp, &fs_param.s_feature_compat);
1501 if (tmp)
1502 free(tmp);
1503 }
1504 tmp = get_string_from_profile(fs_types, "default_features",
1505 "");
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001506 }
Theodore Ts'o3d438362008-02-19 08:32:58 -05001507 edit_feature(fs_features ? fs_features : tmp,
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001508 &fs_param.s_feature_compat);
1509 if (tmp)
1510 free(tmp);
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001511
Theodore Ts'ob4d51052008-07-06 20:24:29 -04001512 if (fs_param.s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1513 fs_types[0] = strdup("journal");
1514 fs_types[1] = 0;
1515 }
1516
1517 if (verbose) {
1518 fputs(_("fs_types for mke2fs.conf resolution: "), stdout);
1519 print_str_list(fs_types);
1520 }
1521
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001522 if (r_opt == EXT2_GOOD_OLD_REV &&
1523 (fs_param.s_feature_compat || fs_param.s_feature_incompat ||
Theodore Ts'o92fb8542008-07-18 21:08:56 -04001524 fs_param.s_feature_ro_compat)) {
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001525 fprintf(stderr, _("Filesystem features not supported "
1526 "with revision 0 filesystems\n"));
1527 exit(1);
1528 }
1529
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001530 if (s_opt > 0) {
1531 if (r_opt == EXT2_GOOD_OLD_REV) {
1532 fprintf(stderr, _("Sparse superblocks not supported "
1533 "with revision 0 filesystems\n"));
1534 exit(1);
1535 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001536 fs_param.s_feature_ro_compat |=
1537 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001538 } else if (s_opt == 0)
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001539 fs_param.s_feature_ro_compat &=
1540 ~EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
1541
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001542 if (journal_size != 0) {
1543 if (r_opt == EXT2_GOOD_OLD_REV) {
1544 fprintf(stderr, _("Journals not supported "
1545 "with revision 0 filesystems\n"));
1546 exit(1);
1547 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001548 fs_param.s_feature_compat |=
1549 EXT3_FEATURE_COMPAT_HAS_JOURNAL;
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001550 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001551
1552 if (fs_param.s_feature_incompat &
1553 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001554 reserved_ratio = 0;
1555 fs_param.s_feature_incompat = EXT3_FEATURE_INCOMPAT_JOURNAL_DEV;
1556 fs_param.s_feature_compat = 0;
1557 fs_param.s_feature_ro_compat = 0;
1558 }
Theodore Ts'od94cc2e2008-04-27 00:08:14 -04001559
1560 if ((fs_param.s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) &&
1561 (fs_param.s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE)) {
1562 fprintf(stderr, _("The resize_inode and meta_bg features "
1563 "are not compatible.\n"
1564 "They can not be both enabled "
1565 "simultaneously.\n"));
1566 exit(1);
1567 }
1568
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001569 /* Set first meta blockgroup via an environment variable */
1570 /* (this is mostly for debugging purposes) */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001571 if ((fs_param.s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) &&
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001572 ((tmp = getenv("MKE2FS_FIRST_META_BG"))))
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001573 fs_param.s_first_meta_bg = atoi(tmp);
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001574
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001575 /* Get the hardware sector size, if available */
1576 retval = ext2fs_get_device_sectsize(device_name, &sector_size);
1577 if (retval) {
1578 com_err(program_name, retval,
1579 _("while trying to determine hardware sector size"));
1580 exit(1);
1581 }
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001582
Theodore Ts'o54434922003-12-07 01:28:50 -05001583 if ((tmp = getenv("MKE2FS_DEVICE_SECTSIZE")) != NULL)
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001584 sector_size = atoi(tmp);
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001585
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001586 if (blocksize <= 0) {
Theodore Ts'o3d438362008-02-19 08:32:58 -05001587 use_bsize = get_int_from_profile(fs_types, "blocksize", 4096);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001588
1589 if (use_bsize == -1) {
1590 use_bsize = sys_page_size;
1591 if ((linux_version_code < (2*65536 + 6*256)) &&
1592 (use_bsize > 4096))
1593 use_bsize = 4096;
1594 }
1595 if (sector_size && use_bsize < sector_size)
1596 use_bsize = sector_size;
1597 if ((blocksize < 0) && (use_bsize < (-blocksize)))
1598 use_bsize = -blocksize;
1599 blocksize = use_bsize;
1600 fs_param.s_blocks_count /= blocksize / 1024;
1601 }
1602
1603 if (inode_ratio == 0) {
Theodore Ts'o3d438362008-02-19 08:32:58 -05001604 inode_ratio = get_int_from_profile(fs_types, "inode_ratio",
1605 8192);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001606 if (inode_ratio < blocksize)
1607 inode_ratio = blocksize;
1608 }
1609
1610 fs_param.s_log_frag_size = fs_param.s_log_block_size =
1611 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1612
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001613 blocksize = EXT2_BLOCK_SIZE(&fs_param);
Theodore Ts'oa4396e92008-04-18 10:19:27 -04001614
1615 lazy_itable_init = get_bool_from_profile(fs_types,
1616 "lazy_itable_init", 0);
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001617
Theodore Ts'o2d363582008-05-14 18:09:37 -04001618 /* Get options from profile */
1619 for (cpp = fs_types; *cpp; cpp++) {
1620 tmp = NULL;
1621 profile_get_string(profile, "fs_types", *cpp, "options", "", &tmp);
1622 if (tmp && *tmp)
1623 parse_extended_opts(&fs_param, tmp);
1624 if (tmp)
1625 free(tmp);
1626 }
1627
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001628 if (extended_opts)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001629 parse_extended_opts(&fs_param, extended_opts);
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001630
1631 /* Since sparse_super is the default, we would only have a problem
1632 * here if it was explicitly disabled.
1633 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001634 if ((fs_param.s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE) &&
1635 !(fs_param.s_feature_ro_compat&EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001636 com_err(program_name, 0,
1637 _("reserved online resize blocks not supported "
1638 "on non-sparse filesystem"));
1639 exit(1);
1640 }
1641
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001642 if (fs_param.s_blocks_per_group) {
1643 if (fs_param.s_blocks_per_group < 256 ||
1644 fs_param.s_blocks_per_group > 8 * (unsigned) blocksize) {
Theodore Ts'o521e3681997-04-29 17:48:10 +00001645 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001646 _("blocks per group count out of range"));
Theodore Ts'o521e3681997-04-29 17:48:10 +00001647 exit(1);
1648 }
1649 }
1650
Theodore Ts'o3d438362008-02-19 08:32:58 -05001651 if (inode_size == 0)
1652 inode_size = get_int_from_profile(fs_types, "inode_size", 0);
Theodore Ts'o9ba40002008-04-22 08:27:01 -04001653 if (!flex_bg_size && (fs_param.s_feature_incompat &
1654 EXT4_FEATURE_INCOMPAT_FLEX_BG))
1655 flex_bg_size = get_int_from_profile(fs_types,
1656 "flex_bg_size", 16);
1657 if (flex_bg_size) {
1658 if (!(fs_param.s_feature_incompat &
1659 EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
1660 com_err(program_name, 0,
1661 _("Flex_bg feature not enabled, so "
1662 "flex_bg size may not be specified"));
1663 exit(1);
1664 }
1665 fs_param.s_log_groups_per_flex = int_log2(flex_bg_size);
1666 }
Andreas Dilger067911a2006-07-15 22:08:20 -04001667
1668 if (inode_size && fs_param.s_rev_level >= EXT2_DYNAMIC_REV) {
Andreas Dilger932a4892002-05-16 03:20:07 -06001669 if (inode_size < EXT2_GOOD_OLD_INODE_SIZE ||
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001670 inode_size > EXT2_BLOCK_SIZE(&fs_param) ||
Andreas Dilger932a4892002-05-16 03:20:07 -06001671 inode_size & (inode_size - 1)) {
1672 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001673 _("invalid inode size %d (min %d/max %d)"),
Andreas Dilger932a4892002-05-16 03:20:07 -06001674 inode_size, EXT2_GOOD_OLD_INODE_SIZE,
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001675 blocksize);
Andreas Dilger932a4892002-05-16 03:20:07 -06001676 exit(1);
1677 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001678 fs_param.s_inode_size = inode_size;
Andreas Dilger932a4892002-05-16 03:20:07 -06001679 }
1680
Eric Sandeenf3358642006-09-12 14:56:17 -04001681 /* Make sure number of inodes specified will fit in 32 bits */
1682 if (num_inodes == 0) {
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001683 unsigned long long n;
1684 n = (unsigned long long) fs_param.s_blocks_count * blocksize / inode_ratio;
Eric Sandeenf3358642006-09-12 14:56:17 -04001685 if (n > ~0U) {
1686 com_err(program_name, 0,
1687 _("too many inodes (%llu), raise inode ratio?"), n);
1688 exit(1);
1689 }
1690 } else if (num_inodes > ~0U) {
1691 com_err(program_name, 0,
1692 _("too many inodes (%llu), specify < 2^32 inodes"),
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001693 num_inodes);
Eric Sandeenf3358642006-09-12 14:56:17 -04001694 exit(1);
1695 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001696 /*
1697 * Calculate number of inodes based on the inode ratio
1698 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001699 fs_param.s_inodes_count = num_inodes ? num_inodes :
1700 ((__u64) fs_param.s_blocks_count * blocksize)
Theodore Ts'of3db3561997-04-26 13:34:30 +00001701 / inode_ratio;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001702
Andreas Dilgerdcf7b092007-05-22 16:04:51 -04001703 if ((((long long)fs_param.s_inodes_count) *
1704 (inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE)) >=
1705 (((long long)fs_param.s_blocks_count) *
1706 EXT2_BLOCK_SIZE(&fs_param))) {
1707 com_err(program_name, 0, _("inode_size (%u) * inodes_count "
1708 "(%u) too big for a\n\t"
1709 "filesystem with %lu blocks, "
1710 "specify higher inode_ratio (-i)\n\t"
1711 "or lower inode count (-N).\n"),
1712 inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE,
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001713 fs_param.s_inodes_count,
1714 (unsigned long) fs_param.s_blocks_count);
Andreas Dilgerdcf7b092007-05-22 16:04:51 -04001715 exit(1);
1716 }
1717
Theodore Ts'o3839e651997-04-26 13:21:57 +00001718 /*
1719 * Calculate number of blocks to reserve
1720 */
Theodore Ts'o9ff8ece2008-06-17 19:58:29 -04001721 fs_param.s_r_blocks_count = (unsigned int) (reserved_ratio *
1722 fs_param.s_blocks_count / 100.0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001723}
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001724
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +05301725static int should_do_undo(const char *name)
1726{
1727 errcode_t retval;
1728 io_channel channel;
1729 __u16 s_magic;
1730 struct ext2_super_block super;
1731 io_manager manager = unix_io_manager;
1732 int csum_flag, force_undo;
1733
1734 csum_flag = EXT2_HAS_RO_COMPAT_FEATURE(&fs_param,
1735 EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
1736 force_undo = get_int_from_profile(fs_types, "force_undo", 0);
1737 if (!force_undo && (!csum_flag || !lazy_itable_init))
1738 return 0;
1739
1740 retval = manager->open(name, IO_FLAG_EXCLUSIVE, &channel);
1741 if (retval) {
1742 /*
1743 * We don't handle error cases instead we
1744 * declare that the file system doesn't exist
1745 * and let the rest of mke2fs take care of
1746 * error
1747 */
1748 retval = 0;
1749 goto open_err_out;
1750 }
1751
1752 io_channel_set_blksize(channel, SUPERBLOCK_OFFSET);
1753 retval = io_channel_read_blk(channel, 1, -SUPERBLOCK_SIZE, &super);
1754 if (retval) {
1755 retval = 0;
1756 goto err_out;
1757 }
1758
1759#if defined(WORDS_BIGENDIAN)
1760 s_magic = ext2fs_swab16(super.s_magic);
1761#else
1762 s_magic = super.s_magic;
1763#endif
1764
1765 if (s_magic == EXT2_SUPER_MAGIC)
1766 retval = 1;
1767
1768err_out:
1769 io_channel_close(channel);
1770
1771open_err_out:
1772
1773 return retval;
1774}
1775
1776static int mke2fs_setup_tdb(const char *name, io_manager *io_ptr)
1777{
1778 errcode_t retval = 0;
1779 char *tdb_dir, tdb_file[PATH_MAX];
1780 char *device_name, *tmp_name;
1781
1782 /*
1783 * Configuration via a conf file would be
1784 * nice
1785 */
1786 tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
1787 if (!tdb_dir)
1788 profile_get_string(profile, "defaults",
1789 "undo_dir", 0, "/var/lib/e2fsprogs",
1790 &tdb_dir);
1791
1792 if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
1793 access(tdb_dir, W_OK))
1794 return 0;
1795
1796 tmp_name = strdup(name);
1797 device_name = basename(tmp_name);
1798 sprintf(tdb_file, "%s/mke2fs-%s.e2undo", tdb_dir, device_name);
1799
1800 if (!access(tdb_file, F_OK)) {
1801 if (unlink(tdb_file) < 0) {
1802 retval = errno;
1803 com_err(program_name, retval,
1804 _("while trying to delete %s"),
1805 tdb_file);
1806 return retval;
1807 }
1808 }
1809
1810 set_undo_io_backing_manager(*io_ptr);
1811 *io_ptr = undo_io_manager;
1812 set_undo_io_backup_file(tdb_file);
1813 printf(_("Overwriting existing filesystem; this can be undone "
1814 "using the command:\n"
1815 " e2undo %s %s\n\n"), tdb_file, name);
Eric Sandeen79e62402008-07-06 18:36:56 -04001816
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +05301817 free(tmp_name);
1818 return retval;
1819}
1820
Theodore Ts'o3839e651997-04-26 13:21:57 +00001821int main (int argc, char *argv[])
1822{
1823 errcode_t retval = 0;
1824 ext2_filsys fs;
1825 badblocks_list bb_list = 0;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001826 unsigned int journal_blocks;
Theodore Ts'o54434922003-12-07 01:28:50 -05001827 unsigned int i;
1828 int val;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001829 io_manager io_ptr;
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +05301830 char tdb_string[40];
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001831
1832#ifdef ENABLE_NLS
1833 setlocale(LC_MESSAGES, "");
Theodore Ts'o14308a52002-03-05 03:26:52 -05001834 setlocale(LC_CTYPE, "");
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001835 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1836 textdomain(NLS_CAT_NAME);
1837#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +00001838 PRS(argc, argv);
1839
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001840#ifdef CONFIG_TESTIO_DEBUG
1841 io_ptr = test_io_manager;
1842 test_io_backing_manager = unix_io_manager;
1843#else
1844 io_ptr = unix_io_manager;
1845#endif
1846
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +05301847 if (should_do_undo(device_name)) {
1848 retval = mke2fs_setup_tdb(device_name, &io_ptr);
1849 if (retval)
1850 exit(1);
1851 }
1852
Theodore Ts'o3839e651997-04-26 13:21:57 +00001853 /*
1854 * Initialize the superblock....
1855 */
Theodore Ts'o616059b2006-03-18 20:02:05 -05001856 retval = ext2fs_initialize(device_name, EXT2_FLAG_EXCLUSIVE, &fs_param,
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001857 io_ptr, &fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001858 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001859 com_err(device_name, retval, _("while setting up superblock"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001860 exit(1);
1861 }
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +05301862 sprintf(tdb_string, "tdb_data_size=%d", fs->blocksize <= 4096 ?
1863 32768 : fs->blocksize * 8);
1864 io_channel_set_options(fs->io, tdb_string);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001865
Theodore Ts'o6cb27402008-01-26 19:06:35 -05001866 if (fs_param.s_flags & EXT2_FLAGS_TEST_FILESYS)
1867 fs->super->s_flags |= EXT2_FLAGS_TEST_FILESYS;
1868
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001869 /*
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001870 * Wipe out the old on-disk superblock
1871 */
Theodore Ts'o04a96852001-08-30 21:55:26 -04001872 if (!noaction)
1873 zap_sector(fs, 2, 6);
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001874
1875 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001876 * Generate a UUID for it...
1877 */
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001878 uuid_generate(fs->super->s_uuid);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001879
1880 /*
Theodore Ts'o843049c2002-09-22 15:37:40 -04001881 * Initialize the directory index variables
1882 */
1883 fs->super->s_def_hash_version = EXT2_HASH_TEA;
1884 uuid_generate((unsigned char *) fs->super->s_hash_seed);
1885
1886 /*
Theodore Ts'o44c09c02001-01-14 17:02:09 +00001887 * Add "jitter" to the superblock's check interval so that we
1888 * don't check all the filesystems at the same time. We use a
1889 * kludgy hack of using the UUID to derive a random jitter value.
1890 */
1891 for (i = 0, val = 0 ; i < sizeof(fs->super->s_uuid); i++)
1892 val += fs->super->s_uuid[i];
1893 fs->super->s_max_mnt_count += val % EXT2_DFL_MAX_MNT_COUNT;
1894
1895 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001896 * Override the creator OS, if applicable
1897 */
1898 if (creator_os && !set_os(fs->super, creator_os)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001899 com_err (program_name, 0, _("unknown os - %s"), creator_os);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001900 exit(1);
1901 }
1902
1903 /*
Theodore Ts'o4ea0a112000-05-08 13:33:17 +00001904 * For the Hurd, we will turn off filetype since it doesn't
1905 * support it.
1906 */
1907 if (fs->super->s_creator_os == EXT2_OS_HURD)
1908 fs->super->s_feature_incompat &=
1909 ~EXT2_FEATURE_INCOMPAT_FILETYPE;
1910
1911 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001912 * Set the volume label...
1913 */
1914 if (volume_label) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001915 memset(fs->super->s_volume_name, 0,
1916 sizeof(fs->super->s_volume_name));
1917 strncpy(fs->super->s_volume_name, volume_label,
1918 sizeof(fs->super->s_volume_name));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001919 }
1920
1921 /*
1922 * Set the last mount directory
1923 */
1924 if (mount_dir) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001925 memset(fs->super->s_last_mounted, 0,
1926 sizeof(fs->super->s_last_mounted));
1927 strncpy(fs->super->s_last_mounted, mount_dir,
1928 sizeof(fs->super->s_last_mounted));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001929 }
1930
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001931 if (!quiet || noaction)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001932 show_stats(fs);
1933
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001934 if (noaction)
1935 exit(0);
1936
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001937 if (fs->super->s_feature_incompat &
1938 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1939 create_journal_dev(fs);
Andreas Dilger568101f2001-10-13 01:22:25 -06001940 exit(ext2fs_close(fs) ? 1 : 0);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001941 }
1942
Theodore Ts'o3839e651997-04-26 13:21:57 +00001943 if (bad_blocks_filename)
1944 read_bb_file(fs, &bb_list, bad_blocks_filename);
1945 if (cflag)
1946 test_disk(fs, &bb_list);
1947
1948 handle_bad_blocks(fs, bb_list);
Theodore Ts'o0c17cb22008-02-18 22:56:25 -05001949 fs->stride = fs_stride = fs->super->s_raid_stride;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001950 retval = ext2fs_allocate_tables(fs);
1951 if (retval) {
1952 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001953 _("while trying to allocate filesystem tables"));
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001954 exit(1);
1955 }
Theodore Ts'of3db3561997-04-26 13:34:30 +00001956 if (super_only) {
1957 fs->super->s_state |= EXT2_ERROR_FS;
1958 fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
1959 } else {
Andreas Dilger59f27242001-08-30 15:39:04 -06001960 /* rsv must be a power of two (64kB is MD RAID sb alignment) */
Theodore Ts'o54434922003-12-07 01:28:50 -05001961 unsigned int rsv = 65536 / fs->blocksize;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001962 unsigned long blocks = fs->super->s_blocks_count;
Andreas Dilger59f27242001-08-30 15:39:04 -06001963 unsigned long start;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001964 blk_t ret_blk;
1965
1966#ifdef ZAP_BOOTBLOCK
Theodore Ts'o04a96852001-08-30 21:55:26 -04001967 zap_sector(fs, 0, 2);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001968#endif
Andreas Dilger59f27242001-08-30 15:39:04 -06001969
1970 /*
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001971 * Wipe out any old MD RAID (or other) metadata at the end
1972 * of the device. This will also verify that the device is
Andreas Dilger59f27242001-08-30 15:39:04 -06001973 * as large as we think. Be careful with very small devices.
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001974 */
Andreas Dilger59f27242001-08-30 15:39:04 -06001975 start = (blocks & ~(rsv - 1));
1976 if (start > rsv)
1977 start -= rsv;
1978 if (start > 0)
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +05301979 retval = ext2fs_zero_blocks(fs, start, blocks - start,
1980 &ret_blk, NULL);
Andreas Dilger59f27242001-08-30 15:39:04 -06001981
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001982 if (retval) {
1983 com_err(program_name, retval,
Theodore Ts'of044b4d2002-08-17 13:32:21 -04001984 _("while zeroing block %u at end of filesystem"),
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001985 ret_blk);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001986 }
Theodore Ts'oa4396e92008-04-18 10:19:27 -04001987 write_inode_tables(fs, lazy_itable_init);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001988 create_root_dir(fs);
1989 create_lost_and_found(fs);
1990 reserve_inodes(fs);
1991 create_bad_block_inode(fs, bb_list);
Theodore Ts'oea774312005-01-28 11:45:28 -05001992 if (fs->super->s_feature_compat &
1993 EXT2_FEATURE_COMPAT_RESIZE_INODE) {
1994 retval = ext2fs_create_resize_inode(fs);
1995 if (retval) {
1996 com_err("ext2fs_create_resize_inode", retval,
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001997 _("while reserving blocks for online resize"));
Theodore Ts'oea774312005-01-28 11:45:28 -05001998 exit(1);
1999 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -05002000 }
Theodore Ts'of3db3561997-04-26 13:34:30 +00002001 }
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00002002
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00002003 if (journal_device) {
2004 ext2_filsys jfs;
2005
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00002006 if (!force)
2007 check_plausibility(journal_device);
Theodore Ts'o63985322001-01-03 17:02:13 +00002008 check_mount(journal_device, force, _("journal"));
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00002009
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00002010 retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
2011 EXT2_FLAG_JOURNAL_DEV_OK, 0,
2012 fs->blocksize, unix_io_manager, &jfs);
2013 if (retval) {
2014 com_err(program_name, retval,
2015 _("while trying to open journal device %s\n"),
2016 journal_device);
2017 exit(1);
2018 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00002019 if (!quiet) {
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04002020 printf(_("Adding journal to device %s: "),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00002021 journal_device);
Theodore Ts'o93345d12001-02-17 06:09:50 +00002022 fflush(stdout);
2023 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00002024 retval = ext2fs_add_journal_device(fs, jfs);
2025 if(retval) {
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00002026 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00002027 _("\n\twhile trying to add journal to device %s"),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00002028 journal_device);
2029 exit(1);
2030 }
2031 if (!quiet)
2032 printf(_("done\n"));
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00002033 ext2fs_close(jfs);
Andreas Dilger2d155762001-08-17 03:48:11 -06002034 free(journal_device);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05002035 } else if ((journal_size) ||
2036 (fs_param.s_feature_compat &
2037 EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00002038 journal_blocks = figure_journal_size(journal_size, fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00002039
2040 if (!journal_blocks) {
2041 fs->super->s_feature_compat &=
2042 ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
2043 goto no_journal;
2044 }
2045 if (!quiet) {
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04002046 printf(_("Creating journal (%u blocks): "),
Theodore Ts'o16ad3332000-12-31 03:21:56 +00002047 journal_blocks);
Theodore Ts'o93345d12001-02-17 06:09:50 +00002048 fflush(stdout);
2049 }
Theodore Ts'o63985322001-01-03 17:02:13 +00002050 retval = ext2fs_add_journal_inode(fs, journal_blocks,
2051 journal_flags);
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00002052 if (retval) {
2053 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00002054 _("\n\twhile trying to create journal"));
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00002055 exit(1);
2056 }
2057 if (!quiet)
2058 printf(_("done\n"));
2059 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00002060no_journal:
2061
Theodore Ts'o3839e651997-04-26 13:21:57 +00002062 if (!quiet)
Theodore Ts'od9c56d32000-02-08 00:47:55 +00002063 printf(_("Writing superblocks and "
2064 "filesystem accounting information: "));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00002065 retval = ext2fs_flush(fs);
2066 if (retval) {
Theodore Ts'o66938372002-03-08 00:14:46 -05002067 fprintf(stderr,
2068 _("\nWarning, had trouble writing out superblocks."));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00002069 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00002070 if (!quiet) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00002071 printf(_("done\n\n"));
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04002072 if (!getenv("MKE2FS_SKIP_CHECK_MSG"))
2073 print_check_message(fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00002074 }
Andreas Dilger568101f2001-10-13 01:22:25 -06002075 val = ext2fs_close(fs);
Theodore Ts'oa6d83022006-12-26 03:38:07 -05002076 remove_error_table(&et_ext2_error_table);
2077 remove_error_table(&et_prof_error_table);
Theodore Ts'o3d438362008-02-19 08:32:58 -05002078 profile_release(profile);
Andreas Dilger568101f2001-10-13 01:22:25 -06002079 return (retval || val) ? 1 : 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00002080}