blob: d03d80a9b6311e3618d656a5064809a9e7f0793a [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * mke2fs.c - Make a ext2fs filesystem.
3 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00004 * Copyright (C) 1994, 1995, 1996, 1997 Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000010 */
11
12/* Usage: mke2fs [options] device
13 *
14 * The device may be a block device or a image of one, but this isn't
15 * enforced (but it's not much fun on a character device :-).
16 */
17
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000018#include <stdio.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000019#include <string.h>
20#include <fcntl.h>
21#include <ctype.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000022#include <time.h>
Theodore Ts'o756df352002-03-07 20:52:12 -050023#ifdef __linux__
Theodore Ts'o27401561999-09-14 20:11:19 +000024#include <sys/utsname.h>
25#endif
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000026#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000027#include <getopt.h>
Theodore Ts'o373b8332000-04-03 16:22:35 +000028#else
29extern char *optarg;
30extern int optind;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000031#endif
32#ifdef HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000033#include <unistd.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000034#endif
35#ifdef HAVE_STDLIB_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000036#include <stdlib.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000037#endif
38#ifdef HAVE_ERRNO_H
39#include <errno.h>
40#endif
41#ifdef HAVE_MNTENT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000042#include <mntent.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000043#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000044#include <sys/ioctl.h>
Theodore Ts'of3db3561997-04-26 13:34:30 +000045#include <sys/types.h>
46
Theodore Ts'o54c637d2001-05-14 11:45:38 +000047#include "ext2fs/ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000048#include "et/com_err.h"
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000049#include "uuid/uuid.h"
Theodore Ts'o896938d1999-10-23 01:04:50 +000050#include "e2p/e2p.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000051#include "ext2fs/ext2fs.h"
Theodore Ts'o63985322001-01-03 17:02:13 +000052#include "util.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000053#include "../version.h"
Theodore Ts'od9c56d32000-02-08 00:47:55 +000054#include "nls-enable.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000055
56#define STRIDE_LENGTH 8
57
Theodore Ts'o6733c2f1999-11-23 02:23:30 +000058#ifndef __sparc__
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000059#define ZAP_BOOTBLOCK
60#endif
61
Theodore Ts'o3839e651997-04-26 13:21:57 +000062extern int isatty(int);
Theodore Ts'of3db3561997-04-26 13:34:30 +000063extern FILE *fpopen(const char *cmd, const char *mode);
Theodore Ts'o3839e651997-04-26 13:21:57 +000064
65const char * program_name = "mke2fs";
Theodore Ts'od48755e2000-12-09 14:36:04 +000066const char * device_name /* = NULL */;
Theodore Ts'o3839e651997-04-26 13:21:57 +000067
68/* Command line options */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000069int cflag;
70int verbose;
71int quiet;
72int super_only;
73int force;
74int noaction;
75int journal_size;
76int journal_flags;
77char *bad_blocks_filename;
78__u32 fs_stride;
Theodore Ts'o3839e651997-04-26 13:21:57 +000079
80struct ext2_super_block param;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000081char *creator_os;
82char *volume_label;
83char *mount_dir;
84char *journal_device;
85int sync_kludge; /* Set using the MKE2FS_SYNC env. option */
Theodore Ts'o3839e651997-04-26 13:21:57 +000086
Theodore Ts'o31e29a12002-05-17 10:53:07 -040087int sys_page_size = 4096;
88
Theodore Ts'o63985322001-01-03 17:02:13 +000089static void usage(void)
Theodore Ts'o3839e651997-04-26 13:21:57 +000090{
Theodore Ts'od9c56d32000-02-08 00:47:55 +000091 fprintf(stderr, _("Usage: %s [-c|-t|-l filename] [-b block-size] "
Theodore Ts'odc2ec522001-01-18 01:51:15 +000092 "[-f fragment-size]\n\t[-i bytes-per-inode] [-j] [-J journal-options]"
Theodore Ts'o5515e6b1999-01-05 07:25:06 +000093 " [-N number-of-inodes]\n\t[-m reserved-blocks-percentage] "
94 "[-o creator-os] [-g blocks-per-group]\n\t[-L volume-label] "
Theodore Ts'o18160d21999-10-23 01:22:17 +000095 "[-M last-mounted-directory] [-O feature[,...]]\n\t"
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +000096 "[-r fs-revision] [-R raid_opts] [-qvSV] device [blocks-count]\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +000097 program_name);
98 exit(1);
99}
100
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000101static int int_log2(int arg)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000102{
103 int l = 0;
104
105 arg >>= 1;
106 while (arg) {
107 l++;
108 arg >>= 1;
109 }
110 return l;
111}
112
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000113static int int_log10(unsigned int arg)
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000114{
115 int l;
116
117 for (l=0; arg ; l++)
118 arg = arg / 10;
119 return l;
120}
121
Theodore Ts'o3839e651997-04-26 13:21:57 +0000122/*
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000123 * This function sets the default parameters for a filesystem
124 *
Theodore Ts'o27401561999-09-14 20:11:19 +0000125 * The type is specified by the user. The size is the maximum size
126 * (in megabytes) for which a set of parameters applies, with a size
127 * of zero meaning that it is the default parameter for the type.
128 * Note that order is important in the table below.
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000129 */
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400130#define DEF_MAX_BLOCKSIZE -1
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000131static char default_str[] = "default";
132struct mke2fs_defaults {
Theodore Ts'o4a600561999-10-26 14:35:51 +0000133 const char *type;
134 int size;
135 int blocksize;
136 int inode_ratio;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000137} settings[] = {
138 { default_str, 0, 4096, 8192 },
139 { default_str, 512, 1024, 4096 },
140 { default_str, 3, 1024, 8192 },
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000141 { "journal", 0, 4096, 8192 },
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000142 { "news", 0, 4096, 4096 },
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400143 { "largefile", 0, DEF_MAX_BLOCKSIZE, 1024 * 1024 },
144 { "largefile4", 0, DEF_MAX_BLOCKSIZE, 4096 * 1024 },
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000145 { 0, 0, 0, 0},
146};
147
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500148static void set_fs_defaults(const char *fs_type,
149 struct ext2_super_block *super,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000150 int blocksize, int *inode_ratio)
151{
152 int megs;
153 int ratio = 0;
154 struct mke2fs_defaults *p;
155
Andreas Dilger932a4892002-05-16 03:20:07 -0600156 megs = super->s_blocks_count * (EXT2_BLOCK_SIZE(super) / 1024) / 1024;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000157 if (inode_ratio)
158 ratio = *inode_ratio;
159 if (!fs_type)
160 fs_type = default_str;
161 for (p = settings; p->type; p++) {
162 if ((strcmp(p->type, fs_type) != 0) &&
163 (strcmp(p->type, default_str) != 0))
164 continue;
165 if ((p->size != 0) &&
166 (megs > p->size))
167 continue;
168 if (ratio == 0)
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600169 *inode_ratio = p->inode_ratio < blocksize ?
170 blocksize : p->inode_ratio;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000171 if (blocksize == 0) {
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400172 if (p->blocksize == DEF_MAX_BLOCKSIZE)
173 p->blocksize = sys_page_size;
Theodore Ts'o9094f281999-10-26 16:42:50 +0000174 super->s_log_frag_size = super->s_log_block_size =
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000175 int_log2(p->blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000176 }
177 }
178 if (blocksize == 0)
Theodore Ts'o9094f281999-10-26 16:42:50 +0000179 super->s_blocks_count /= EXT2_BLOCK_SIZE(super) / 1024;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000180}
181
182/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000183 * Helper function for read_bb_file and test_disk
184 */
185static void invalid_block(ext2_filsys fs, blk_t blk)
186{
Theodore Ts'o66938372002-03-08 00:14:46 -0500187 fprintf(stderr, _("Bad block %u out of range; ignored.\n"), blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000188 return;
189}
190
191/*
192 * Reads the bad blocks list from a file
193 */
194static void read_bb_file(ext2_filsys fs, badblocks_list *bb_list,
195 const char *bad_blocks_file)
196{
197 FILE *f;
198 errcode_t retval;
199
200 f = fopen(bad_blocks_file, "r");
201 if (!f) {
202 com_err("read_bad_blocks_file", errno,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000203 _("while trying to open %s"), bad_blocks_file);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000204 exit(1);
205 }
206 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
207 fclose (f);
208 if (retval) {
209 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000210 _("while reading in list of bad blocks from file"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211 exit(1);
212 }
213}
214
215/*
216 * Runs the badblocks program to test the disk
217 */
218static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
219{
220 FILE *f;
221 errcode_t retval;
222 char buf[1024];
223
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500224 sprintf(buf, "badblocks -b %d %s%s%s %d", fs->blocksize,
225 quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
226 fs->device_name, fs->super->s_blocks_count);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000227 if (verbose)
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000228 printf(_("Running command: %s\n"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000229 f = popen(buf, "r");
230 if (!f) {
231 com_err("popen", errno,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000232 _("while trying run '%s'"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000233 exit(1);
234 }
235 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000236 pclose(f);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000237 if (retval) {
238 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000239 _("while processing list of bad blocks from program"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000240 exit(1);
241 }
242}
243
244static void handle_bad_blocks(ext2_filsys fs, badblocks_list bb_list)
245{
Theodore Ts'of3db3561997-04-26 13:34:30 +0000246 int i, j;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000247 int must_be_good;
248 blk_t blk;
249 badblocks_iterate bb_iter;
250 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000251 blk_t group_block;
252 int group;
253 int group_bad;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000254
255 if (!bb_list)
256 return;
257
258 /*
259 * The primary superblock and group descriptors *must* be
260 * good; if not, abort.
261 */
262 must_be_good = fs->super->s_first_data_block + 1 + fs->desc_blocks;
263 for (i = fs->super->s_first_data_block; i <= must_be_good; i++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000264 if (ext2fs_badblocks_list_test(bb_list, i)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000265 fprintf(stderr, _("Block %d in primary "
266 "superblock/group descriptor area bad.\n"), i);
267 fprintf(stderr, _("Blocks %d through %d must be good "
268 "in order to build a filesystem.\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000269 fs->super->s_first_data_block, must_be_good);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000270 fprintf(stderr, _("Aborting....\n"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000271 exit(1);
272 }
273 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000274
275 /*
276 * See if any of the bad blocks are showing up in the backup
277 * superblocks and/or group descriptors. If so, issue a
278 * warning and adjust the block counts appropriately.
279 */
280 group_block = fs->super->s_first_data_block +
281 fs->super->s_blocks_per_group;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000282
283 for (i = 1; i < fs->group_desc_count; i++) {
Theodore Ts'o92bcc591998-02-16 22:29:34 +0000284 group_bad = 0;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000285 for (j=0; j < fs->desc_blocks+1; j++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000286 if (ext2fs_badblocks_list_test(bb_list,
287 group_block + j)) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000288 if (!group_bad)
289 fprintf(stderr,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000290_("Warning: the backup superblock/group descriptors at block %d contain\n"
291" bad blocks.\n\n"),
Theodore Ts'of3db3561997-04-26 13:34:30 +0000292 group_block);
293 group_bad++;
294 group = ext2fs_group_of_blk(fs, group_block+j);
295 fs->group_desc[group].bg_free_blocks_count++;
296 fs->super->s_free_blocks_count++;
297 }
298 }
299 group_block += fs->super->s_blocks_per_group;
300 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000301
302 /*
303 * Mark all the bad blocks as used...
304 */
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000305 retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000306 if (retval) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000307 com_err("ext2fs_badblocks_list_iterate_begin", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000308 _("while marking bad blocks as used"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000309 exit(1);
310 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000311 while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'of3db3561997-04-26 13:34:30 +0000312 ext2fs_mark_block_bitmap(fs->block_map, blk);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000313 ext2fs_badblocks_list_iterate_end(bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000314}
315
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000316/*
317 * These functions implement a generalized progress meter.
318 */
319struct progress_struct {
320 char format[20];
321 char backup[80];
322 __u32 max;
323};
324
325static void progress_init(struct progress_struct *progress,
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500326 const char *label,__u32 max)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000327{
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000328 int i;
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000329
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000330 memset(progress, 0, sizeof(struct progress_struct));
331 if (quiet)
332 return;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000333
334 /*
335 * Figure out how many digits we need
336 */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000337 i = int_log10(max);
338 sprintf(progress->format, "%%%dd/%%%dld", i, i);
339 memset(progress->backup, '\b', sizeof(progress->backup)-1);
340 progress->backup[sizeof(progress->backup)-1] = 0;
341 if ((2*i)+1 < sizeof(progress->backup))
342 progress->backup[(2*i)+1] = 0;
343 progress->max = max;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000344
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000345 fputs(label, stdout);
346 fflush(stdout);
347}
348
349static void progress_update(struct progress_struct *progress, __u32 val)
350{
351 if (progress->format[0] == 0)
352 return;
353 printf(progress->format, val, progress->max);
354 fputs(progress->backup, stdout);
355}
356
357static void progress_close(struct progress_struct *progress)
358{
359 if (progress->format[0] == 0)
360 return;
361 fputs(_("done \n"), stdout);
362}
363
364
365/*
366 * Helper function which zeros out _num_ blocks starting at _blk_. In
367 * case of an error, the details of the error is returned via _ret_blk_
368 * and _ret_count_ if they are non-NULL pointers. Returns 0 on
369 * success, and an error code on an error.
370 *
371 * As a special case, if the first argument is NULL, then it will
372 * attempt to free the static zeroizing buffer. (This is to keep
373 * programs that check for memory leaks happy.)
374 */
375static errcode_t zero_blocks(ext2_filsys fs, blk_t blk, int num,
376 struct progress_struct *progress,
377 blk_t *ret_blk, int *ret_count)
378{
379 int j, count, next_update, next_update_incr;
380 static char *buf;
381 errcode_t retval;
382
383 /* If fs is null, clean up the static buffer and return */
384 if (!fs) {
385 if (buf) {
386 free(buf);
387 buf = 0;
388 }
389 return 0;
390 }
391 /* Allocate the zeroizing buffer if necessary */
392 if (!buf) {
393 buf = malloc(fs->blocksize * STRIDE_LENGTH);
394 if (!buf) {
395 com_err("malloc", ENOMEM,
396 _("while allocating zeroizing buffer"));
397 exit(1);
398 }
399 memset(buf, 0, fs->blocksize * STRIDE_LENGTH);
400 }
401 /* OK, do the write loop */
402 next_update = 0;
403 next_update_incr = num / 100;
404 if (next_update_incr < 1)
405 next_update_incr = 1;
406 for (j=0; j < num; j += STRIDE_LENGTH, blk += STRIDE_LENGTH) {
Theodore Ts'of044b4d2002-08-17 13:32:21 -0400407 count = num - j;
408 if (count > STRIDE_LENGTH)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000409 count = STRIDE_LENGTH;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000410 retval = io_channel_write_blk(fs->io, blk, count, buf);
411 if (retval) {
412 if (ret_count)
413 *ret_count = count;
414 if (ret_blk)
415 *ret_blk = blk;
416 return retval;
417 }
418 if (progress && j > next_update) {
419 next_update += num / 100;
420 progress_update(progress, blk);
421 }
422 }
423 return 0;
424}
425
426static void write_inode_tables(ext2_filsys fs)
427{
428 errcode_t retval;
429 blk_t blk;
430 int i, num;
431 struct progress_struct progress;
432
433 if (quiet)
434 memset(&progress, 0, sizeof(progress));
435 else
436 progress_init(&progress, _("Writing inode tables: "),
437 fs->group_desc_count);
438
Theodore Ts'o3839e651997-04-26 13:21:57 +0000439 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000440 progress_update(&progress, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000441
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000442 blk = fs->group_desc[i].bg_inode_table;
443 num = fs->inode_blocks_per_group;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000444
445 retval = zero_blocks(fs, blk, num, 0, &blk, &num);
446 if (retval) {
Theodore Ts'o66938372002-03-08 00:14:46 -0500447 fprintf(stderr, _("\nCould not write %d blocks "
448 "in inode table starting at %d: %s\n"),
449 num, blk, error_message(retval));
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000450 exit(1);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000451 }
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000452 if (sync_kludge) {
453 if (sync_kludge == 1)
454 sync();
455 else if ((i % sync_kludge) == 0)
456 sync();
457 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000458 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000459 zero_blocks(0, 0, 0, 0, 0, 0);
460 progress_close(&progress);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000461}
462
463static void create_root_dir(ext2_filsys fs)
464{
465 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000466 struct ext2_inode inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000467
468 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, 0);
469 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000470 com_err("ext2fs_mkdir", retval, _("while creating root dir"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000471 exit(1);
472 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000473 if (geteuid()) {
474 retval = ext2fs_read_inode(fs, EXT2_ROOT_INO, &inode);
475 if (retval) {
476 com_err("ext2fs_read_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000477 _("while reading root inode"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000478 exit(1);
479 }
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000480 inode.i_uid = getuid();
481 if (inode.i_uid)
482 inode.i_gid = getgid();
Theodore Ts'of3db3561997-04-26 13:34:30 +0000483 retval = ext2fs_write_inode(fs, EXT2_ROOT_INO, &inode);
484 if (retval) {
485 com_err("ext2fs_write_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000486 _("while setting root inode ownership"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000487 exit(1);
488 }
489 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000490}
491
492static void create_lost_and_found(ext2_filsys fs)
493{
494 errcode_t retval;
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000495 ext2_ino_t ino;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000496 const char *name = "lost+found";
497 int i;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000498 int lpf_size = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000499
Theodore Ts'o6a525062001-12-24 09:40:00 -0500500 fs->umask = 077;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000501 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, 0, name);
502 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000503 com_err("ext2fs_mkdir", retval,
504 _("while creating /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000505 exit(1);
506 }
507
508 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name, strlen(name), 0, &ino);
509 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000510 com_err("ext2_lookup", retval,
511 _("while looking up /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000512 exit(1);
513 }
514
515 for (i=1; i < EXT2_NDIR_BLOCKS; i++) {
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000516 if ((lpf_size += fs->blocksize) >= 16*1024)
517 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000518 retval = ext2fs_expand_dir(fs, ino);
519 if (retval) {
520 com_err("ext2fs_expand_dir", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000521 _("while expanding /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000522 exit(1);
523 }
Theodore Ts'o6a525062001-12-24 09:40:00 -0500524 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000525}
526
527static void create_bad_block_inode(ext2_filsys fs, badblocks_list bb_list)
528{
529 errcode_t retval;
530
Theodore Ts'of3db3561997-04-26 13:34:30 +0000531 ext2fs_mark_inode_bitmap(fs->inode_map, EXT2_BAD_INO);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000532 fs->group_desc[0].bg_free_inodes_count--;
533 fs->super->s_free_inodes_count--;
534 retval = ext2fs_update_bb_inode(fs, bb_list);
535 if (retval) {
536 com_err("ext2fs_update_bb_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000537 _("while setting bad block inode"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000538 exit(1);
539 }
540
541}
542
543static void reserve_inodes(ext2_filsys fs)
544{
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000545 ext2_ino_t i;
546 int group;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000547
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000548 for (i = EXT2_ROOT_INO + 1; i < EXT2_FIRST_INODE(fs->super); i++) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000549 ext2fs_mark_inode_bitmap(fs->inode_map, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000550 group = ext2fs_group_of_ino(fs, i);
551 fs->group_desc[group].bg_free_inodes_count--;
552 fs->super->s_free_inodes_count--;
553 }
554 ext2fs_mark_ib_dirty(fs);
555}
556
Theodore Ts'o756df352002-03-07 20:52:12 -0500557#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500558#define BSD_MAGICDISK (0x57455682UL) /* The disk magic number reversed */
Theodore Ts'o756df352002-03-07 20:52:12 -0500559#define BSD_LABEL_OFFSET 64
Theodore Ts'o756df352002-03-07 20:52:12 -0500560
Theodore Ts'o04a96852001-08-30 21:55:26 -0400561static void zap_sector(ext2_filsys fs, int sect, int nsect)
Theodore Ts'of3db3561997-04-26 13:34:30 +0000562{
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400563 char *buf;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000564 int retval;
Theodore Ts'o756df352002-03-07 20:52:12 -0500565 unsigned int *magic;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000566
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400567 buf = malloc(512*nsect);
Andreas Dilger568101f2001-10-13 01:22:25 -0600568 if (!buf) {
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500569 printf(_("Out of memory erasing sectors %d-%d\n"),
570 sect, sect + nsect - 1);
Andreas Dilger568101f2001-10-13 01:22:25 -0600571 exit(1);
572 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500573
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500574 if (sect == 0) {
575 /* Check for a BSD disklabel, and don't erase it if so */
576 retval = io_channel_read_blk(fs->io, 0, -512, buf);
577 if (retval)
578 fprintf(stderr,
579 _("Warning: could not read block 0: %s\n"),
580 error_message(retval));
581 else {
582 magic = (unsigned int *) (buf + BSD_LABEL_OFFSET);
583 if ((*magic == BSD_DISKMAGIC) ||
584 (*magic == BSD_MAGICDISK))
585 return;
586 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500587 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500588
Theodore Ts'o70988102002-07-14 08:00:00 -0400589 memset(buf, 0, 512*nsect);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000590 io_channel_set_blksize(fs->io, 512);
Theodore Ts'o04a96852001-08-30 21:55:26 -0400591 retval = io_channel_write_blk(fs->io, sect, -512*nsect, buf);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000592 io_channel_set_blksize(fs->io, fs->blocksize);
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400593 free(buf);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000594 if (retval)
Theodore Ts'o66938372002-03-08 00:14:46 -0500595 fprintf(stderr, _("Warning: could not erase sector %d: %s\n"),
596 sect, error_message(retval));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000597}
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000598
599static void create_journal_dev(ext2_filsys fs)
600{
601 struct progress_struct progress;
602 errcode_t retval;
603 char *buf;
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000604 blk_t blk;
605 int count;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000606
Theodore Ts'od6a27e02001-04-17 02:34:41 +0000607 retval = ext2fs_create_journal_superblock(fs,
608 fs->super->s_blocks_count, 0, &buf);
609 if (retval) {
610 com_err("create_journal_dev", retval,
611 _("while initializing journal superblock"));
612 exit(1);
613 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000614 if (quiet)
615 memset(&progress, 0, sizeof(progress));
616 else
617 progress_init(&progress, _("Zeroing journal device: "),
618 fs->super->s_blocks_count);
619
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000620 retval = zero_blocks(fs, 0, fs->super->s_blocks_count,
621 &progress, &blk, &count);
622 if (retval) {
623 com_err("create_journal_dev", retval,
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000624 _("while zeroing journal device (block %u, count %d)"),
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000625 blk, count);
626 exit(1);
627 }
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000628 zero_blocks(0, 0, 0, 0, 0, 0);
629
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000630 retval = io_channel_write_blk(fs->io,
631 fs->super->s_first_data_block+1,
632 1, buf);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000633 if (retval) {
634 com_err("create_journal_dev", retval,
635 _("while writing journal superblock"));
636 exit(1);
637 }
638 progress_close(&progress);
639}
Theodore Ts'of3db3561997-04-26 13:34:30 +0000640
Theodore Ts'o3839e651997-04-26 13:21:57 +0000641static void show_stats(ext2_filsys fs)
642{
Theodore Ts'oef9abe52001-01-01 15:31:53 +0000643 struct ext2_super_block *s = fs->super;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000644 char buf[80];
Theodore Ts'o3839e651997-04-26 13:21:57 +0000645 blk_t group_block;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000646 int i, need, col_left;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000647
648 if (param.s_blocks_count != s->s_blocks_count)
Theodore Ts'o66938372002-03-08 00:14:46 -0500649 fprintf(stderr, _("warning: %d blocks unused.\n\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000650 param.s_blocks_count - s->s_blocks_count);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000651
652 memset(buf, 0, sizeof(buf));
653 strncpy(buf, s->s_volume_name, sizeof(s->s_volume_name));
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000654 printf(_("Filesystem label=%s\n"), buf);
655 printf(_("OS type: "));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000656 switch (fs->super->s_creator_os) {
657 case EXT2_OS_LINUX: printf ("Linux"); break;
Theodore Ts'oad6783d1999-10-26 01:58:54 +0000658 case EXT2_OS_HURD: printf ("GNU/Hurd"); break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000659 case EXT2_OS_MASIX: printf ("Masix"); break;
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000660 default: printf (_("(unknown os)"));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000661 }
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000662 printf("\n");
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000663 printf(_("Block size=%u (log=%u)\n"), fs->blocksize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000664 s->s_log_block_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000665 printf(_("Fragment size=%u (log=%u)\n"), fs->fragsize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000666 s->s_log_frag_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000667 printf(_("%u inodes, %u blocks\n"), s->s_inodes_count,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000668 s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000669 printf(_("%u blocks (%2.2f%%) reserved for the super user\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000670 s->s_r_blocks_count,
671 100.0 * s->s_r_blocks_count / s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000672 printf(_("First data block=%u\n"), s->s_first_data_block);
673 if (fs->group_desc_count > 1)
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000674 printf(_("%u block groups\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000675 else
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000676 printf(_("%u block group\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000677 printf(_("%u blocks per group, %u fragments per group\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000678 s->s_blocks_per_group, s->s_frags_per_group);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000679 printf(_("%u inodes per group\n"), s->s_inodes_per_group);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000680
681 if (fs->group_desc_count == 1) {
682 printf("\n");
683 return;
684 }
685
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000686 printf(_("Superblock backups stored on blocks: "));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000687 group_block = s->s_first_data_block;
688 col_left = 0;
689 for (i = 1; i < fs->group_desc_count; i++) {
690 group_block += s->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000691 if (!ext2fs_bg_has_super(fs, i))
692 continue;
Theodore Ts'o76714331999-10-20 18:06:29 +0000693 if (i != 1)
694 printf(", ");
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000695 need = int_log10(group_block) + 2;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000696 if (need > col_left) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000697 printf("\n\t");
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000698 col_left = 72;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000699 }
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000700 col_left -= need;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000701 printf("%u", group_block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000702 }
703 printf("\n\n");
704}
705
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000706/*
707 * Set the S_CREATOR_OS field. Return true if OS is known,
708 * otherwise, 0.
709 */
710static int set_os(struct ext2_super_block *sb, char *os)
711{
712 if (isdigit (*os))
713 sb->s_creator_os = atoi (os);
714 else if (strcasecmp(os, "linux") == 0)
715 sb->s_creator_os = EXT2_OS_LINUX;
716 else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
717 sb->s_creator_os = EXT2_OS_HURD;
718 else if (strcasecmp(os, "masix") == 0)
719 sb->s_creator_os = EXT2_OS_MASIX;
720 else
721 return 0;
722 return 1;
723}
724
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000725#define PATH_SET "PATH=/sbin"
726
Theodore Ts'od163b091997-10-03 17:42:28 +0000727static void parse_raid_opts(const char *opts)
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000728{
729 char *buf, *token, *next, *p, *arg;
730 int len;
731 int raid_usage = 0;
732
733 len = strlen(opts);
734 buf = malloc(len+1);
735 if (!buf) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000736 fprintf(stderr, _("Couldn't allocate memory to parse "
737 "raid options!\n"));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000738 exit(1);
739 }
740 strcpy(buf, opts);
741 for (token = buf; token && *token; token = next) {
742 p = strchr(token, ',');
743 next = 0;
744 if (p) {
745 *p = 0;
746 next = p+1;
747 }
748 arg = strchr(token, '=');
749 if (arg) {
750 *arg = 0;
751 arg++;
752 }
753 if (strcmp(token, "stride") == 0) {
754 if (!arg) {
755 raid_usage++;
756 continue;
757 }
758 fs_stride = strtoul(arg, &p, 0);
759 if (*p || (fs_stride == 0)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000760 fprintf(stderr,
761 _("Invalid stride parameter.\n"));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000762 raid_usage++;
763 continue;
764 }
765 } else
766 raid_usage++;
767 }
768 if (raid_usage) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000769 fprintf(stderr, _("\nBad raid options specified.\n\n"
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000770 "Raid options are separated by commas, "
771 "and may take an argument which\n"
772 "\tis set off by an equals ('=') sign.\n\n"
773 "Valid raid options are:\n"
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000774 "\tstride=<stride length in blocks>\n\n"));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000775 exit(1);
776 }
777}
778
Theodore Ts'o896938d1999-10-23 01:04:50 +0000779static __u32 ok_features[3] = {
Theodore Ts'o843049c2002-09-22 15:37:40 -0400780 EXT3_FEATURE_COMPAT_HAS_JOURNAL |
781 EXT2_FEATURE_COMPAT_DIR_INDEX, /* Compat */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000782 EXT2_FEATURE_INCOMPAT_FILETYPE| /* Incompat */
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400783 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|
784 EXT2_FEATURE_INCOMPAT_META_BG,
Theodore Ts'o896938d1999-10-23 01:04:50 +0000785 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER /* R/O compat */
786};
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000787
788
Theodore Ts'o3839e651997-04-26 13:21:57 +0000789static void PRS(int argc, char *argv[])
790{
Theodore Ts'o4a600561999-10-26 14:35:51 +0000791 int c;
792 int size;
793 char * tmp;
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000794 blk_t group_blk_max = 8192;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000795 int blocksize = 0;
796 int inode_ratio = 0;
Andreas Dilger932a4892002-05-16 03:20:07 -0600797 int inode_size = 0;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000798 int reserved_ratio = 5;
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000799 ext2_ino_t num_inodes = 0;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000800 errcode_t retval;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000801 char * oldpath = getenv("PATH");
Theodore Ts'o4a600561999-10-26 14:35:51 +0000802 char * raid_opts = 0;
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500803 const char * fs_type = 0;
Theodore Ts'of3561ed2001-08-15 11:58:16 -0400804 int default_features = 1;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000805 blk_t dev_size;
Theodore Ts'o756df352002-03-07 20:52:12 -0500806#ifdef __linux__
Theodore Ts'o4a600561999-10-26 14:35:51 +0000807 struct utsname ut;
Theodore Ts'o27401561999-09-14 20:11:19 +0000808#endif
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400809 long sysval;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000810
Theodore Ts'o3839e651997-04-26 13:21:57 +0000811 /* Update our PATH to include /sbin */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000812 if (oldpath) {
813 char *newpath;
814
815 newpath = malloc(sizeof (PATH_SET) + 1 + strlen (oldpath));
816 strcpy (newpath, PATH_SET);
817 strcat (newpath, ":");
818 strcat (newpath, oldpath);
819 putenv (newpath);
820 } else
821 putenv (PATH_SET);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000822
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000823 tmp = getenv("MKE2FS_SYNC");
824 if (tmp)
825 sync_kludge = atoi(tmp);
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400826
827 /* Determine the system page size if possible */
828#ifdef HAVE_SYSCONF
829#if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
830#define _SC_PAGESIZE _SC_PAGE_SIZE
831#endif
832#ifdef _SC_PAGESIZE
833 sysval = sysconf(_SC_PAGESIZE);
Andreas Dilgeraab6fe72002-05-18 13:27:33 -0600834 if (sysval > 0)
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400835 sys_page_size = sysval;
836#endif /* _SC_PAGESIZE */
837#endif /* HAVE_SYSCONF */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000838
Theodore Ts'o3839e651997-04-26 13:21:57 +0000839 setbuf(stdout, NULL);
840 setbuf(stderr, NULL);
841 initialize_ext2_error_table();
842 memset(&param, 0, sizeof(struct ext2_super_block));
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000843 param.s_rev_level = 1; /* Create revision 1 filesystems now */
Theodore Ts'of3561ed2001-08-15 11:58:16 -0400844 param.s_feature_incompat |= EXT2_FEATURE_INCOMPAT_FILETYPE;
845 param.s_feature_ro_compat |= EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
Theodore Ts'o54779c62002-11-13 07:00:16 -0500846#if 0
Theodore Ts'o843049c2002-09-22 15:37:40 -0400847 param.s_feature_compat |= EXT2_FEATURE_COMPAT_DIR_INDEX;
Theodore Ts'o54779c62002-11-13 07:00:16 -0500848#endif
Theodore Ts'o843049c2002-09-22 15:37:40 -0400849
Theodore Ts'o756df352002-03-07 20:52:12 -0500850#ifdef __linux__
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000851 if (uname(&ut)) {
852 perror("uname");
853 exit(1);
854 }
855 if ((ut.release[0] == '1') ||
856 (ut.release[0] == '2' && ut.release[1] == '.' &&
857 ut.release[2] < '2' && ut.release[3] == '.')) {
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000858 param.s_rev_level = 0;
Theodore Ts'of3561ed2001-08-15 11:58:16 -0400859 param.s_feature_incompat = 0;
860 param.s_feature_compat = 0;
861 param.s_feature_ro_compat = 0;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000862 }
863#endif
Andreas Dilger9d8e6342001-08-31 10:24:46 -0600864 fprintf (stderr, "mke2fs %s (%s)\n",
Theodore Ts'o04a96852001-08-30 21:55:26 -0400865 E2FSPROGS_VERSION, E2FSPROGS_DATE);
Andreas Dilger0072f8d2002-02-25 23:11:26 -0700866
867 if (argc && *argv) {
868 program_name = get_progname(*argv);
869
870 /* If called as mkfs.ext3, create a journal inode */
871 if (!strcmp(program_name, "mkfs.ext3"))
872 journal_size = -1;
873 }
874
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000875 while ((c = getopt (argc, argv,
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000876 "b:cf:g:i:jl:m:no:qr:R:s:tvI:J:ST:FL:M:N:O:V")) != EOF)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000877 switch (c) {
878 case 'b':
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000879 blocksize = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -0600880 if (blocksize < EXT2_MIN_BLOCK_SIZE ||
881 blocksize > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000882 com_err(program_name, 0,
883 _("bad block size - %s"), optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000884 exit(1);
885 }
Andreas Dilger932a4892002-05-16 03:20:07 -0600886 if (blocksize > 4096)
887 fprintf(stderr, _("Warning: blocksize %d not "
888 "usable on most systems.\n"),
889 blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000890 param.s_log_block_size =
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000891 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o80c22c92000-08-14 15:32:11 +0000892 group_blk_max = blocksize * 8;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000893 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +0000894 case 'c': /* Check for bad blocks */
895 case 't': /* deprecated */
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500896 cflag++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000897 break;
898 case 'f':
899 size = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -0600900 if (size < EXT2_MIN_BLOCK_SIZE ||
901 size > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000902 com_err(program_name, 0,
903 _("bad fragment size - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000904 optarg);
905 exit(1);
906 }
907 param.s_log_frag_size =
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000908 int_log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o66938372002-03-08 00:14:46 -0500909 fprintf(stderr, _("Warning: fragments not supported. "
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000910 "Ignoring -f option\n"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000911 break;
912 case 'g':
913 param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000914 if (*tmp) {
915 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000916 _("Illegal number for blocks per group"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000917 exit(1);
918 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000919 if ((param.s_blocks_per_group % 8) != 0) {
920 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000921 _("blocks per group must be multiple of 8"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000922 exit(1);
923 }
924 break;
925 case 'i':
926 inode_ratio = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -0600927 if (inode_ratio < EXT2_MIN_BLOCK_SIZE ||
928 inode_ratio > EXT2_MAX_BLOCK_SIZE * 1024 ||
Theodore Ts'o3839e651997-04-26 13:21:57 +0000929 *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000930 com_err(program_name, 0,
Andreas Dilger932a4892002-05-16 03:20:07 -0600931 _("bad inode ratio %s (min %d/max %d"),
932 optarg, EXT2_MIN_BLOCK_SIZE,
933 EXT2_MAX_BLOCK_SIZE);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000934 exit(1);
935 }
936 break;
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000937 case 'J':
938 parse_journal_opts(optarg);
939 break;
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +0000940 case 'j':
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000941 param.s_feature_compat |=
942 EXT3_FEATURE_COMPAT_HAS_JOURNAL;
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000943 if (!journal_size)
944 journal_size = -1;
Theodore Ts'o8ddaa662000-11-17 04:55:24 +0000945 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000946 case 'l':
Theodore Ts'of3db3561997-04-26 13:34:30 +0000947 bad_blocks_filename = malloc(strlen(optarg)+1);
948 if (!bad_blocks_filename) {
949 com_err(program_name, ENOMEM,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000950 _("in malloc for bad_blocks_filename"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000951 exit(1);
952 }
953 strcpy(bad_blocks_filename, optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000954 break;
955 case 'm':
956 reserved_ratio = strtoul(optarg, &tmp, 0);
957 if (reserved_ratio > 50 || *tmp) {
958 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000959 _("bad reserved blocks percent - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000960 optarg);
961 exit(1);
962 }
963 break;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000964 case 'n':
965 noaction++;
966 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000967 case 'o':
968 creator_os = optarg;
969 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000970 case 'r':
971 param.s_rev_level = atoi(optarg);
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000972 if (param.s_rev_level == EXT2_GOOD_OLD_REV) {
Theodore Ts'of3561ed2001-08-15 11:58:16 -0400973 param.s_feature_incompat = 0;
974 param.s_feature_compat = 0;
975 param.s_feature_ro_compat = 0;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000976 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000977 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +0000978 case 's': /* deprecated */
Theodore Ts'of3561ed2001-08-15 11:58:16 -0400979 if (atoi(optarg))
980 param.s_feature_ro_compat |=
981 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
982 else
983 param.s_feature_ro_compat &=
984 ~EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000985 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000986#ifdef EXT2_DYNAMIC_REV
987 case 'I':
Andreas Dilger932a4892002-05-16 03:20:07 -0600988 inode_size = strtoul(optarg, &tmp, 0);
989 if (*tmp) {
990 com_err(program_name, 0,
991 _("bad inode size - %s"), optarg);
992 exit(1);
993 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000994 break;
995#endif
Theodore Ts'o5515e6b1999-01-05 07:25:06 +0000996 case 'N':
997 num_inodes = atoi(optarg);
998 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000999 case 'v':
1000 verbose = 1;
1001 break;
1002 case 'q':
1003 quiet = 1;
1004 break;
Theodore Ts'o74becf31997-04-26 14:37:06 +00001005 case 'F':
1006 force = 1;
1007 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001008 case 'L':
1009 volume_label = optarg;
1010 break;
1011 case 'M':
1012 mount_dir = optarg;
1013 break;
Theodore Ts'o896938d1999-10-23 01:04:50 +00001014 case 'O':
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001015 if (!strcmp(optarg, "none") || default_features) {
1016 param.s_feature_compat = 0;
1017 param.s_feature_incompat = 0;
1018 param.s_feature_ro_compat = 0;
1019 default_features = 0;
1020 }
1021 if (!strcmp(optarg, "none"))
1022 break;
1023 if (e2p_edit_feature(optarg,
1024 &param.s_feature_compat,
1025 ok_features)) {
1026 fprintf(stderr,
1027 _("Invalid filesystem option set: %s\n"), optarg);
1028 exit(1);
1029 }
Theodore Ts'o896938d1999-10-23 01:04:50 +00001030 break;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001031 case 'R':
1032 raid_opts = optarg;
1033 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +00001034 case 'S':
1035 super_only = 1;
1036 break;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001037 case 'T':
1038 fs_type = optarg;
1039 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001040 case 'V':
1041 /* Print version number and exit */
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001042 fprintf(stderr, _("\tUsing %s\n"),
Theodore Ts'o818180c1998-06-27 05:11:14 +00001043 error_message(EXT2_ET_BASE));
1044 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001045 default:
1046 usage();
1047 }
1048 if (optind == argc)
1049 usage();
1050 device_name = argv[optind];
1051 optind++;
1052 if (optind < argc) {
Theodore Ts'oe1a0a3e2000-02-11 05:00:19 +00001053 unsigned long tmp2 = strtoul(argv[optind++], &tmp, 0);
1054
1055 if ((*tmp) || (tmp2 > 0xfffffffful)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001056 com_err(program_name, 0, _("bad blocks count - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +00001057 argv[optind - 1]);
1058 exit(1);
1059 }
Theodore Ts'oe1a0a3e2000-02-11 05:00:19 +00001060 param.s_blocks_count = tmp2;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001061 }
1062 if (optind < argc)
1063 usage();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001064
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001065 if (raid_opts)
1066 parse_raid_opts(raid_opts);
1067
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001068 /*
1069 * If there's no blocksize specified and there is a journal
1070 * device, use it to figure out the blocksize
1071 */
1072 if (blocksize == 0 && journal_device) {
1073 ext2_filsys jfs;
1074
1075 retval = ext2fs_open(journal_device,
1076 EXT2_FLAG_JOURNAL_DEV_OK, 0,
1077 0, unix_io_manager, &jfs);
1078 if (retval) {
1079 com_err(program_name, retval,
1080 _("while trying to open journal device %s\n"),
1081 journal_device);
1082 exit(1);
1083 }
1084 blocksize = jfs->blocksize;
1085 param.s_log_block_size =
1086 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1087 ext2fs_close(jfs);
1088 }
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001089
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001090 if (blocksize > sys_page_size) {
Andreas Dilger932a4892002-05-16 03:20:07 -06001091 if (!force) {
1092 com_err(program_name, 0,
1093 _("%d-byte blocks too big for system (max %d)"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001094 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001095 proceed_question();
1096 }
1097 fprintf(stderr, _("Warning: %d-byte blocks too big for system "
1098 "(max %d), forced to continue\n"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001099 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001100 }
1101
Andreas Dilgerfa724582001-08-04 01:18:34 -06001102 if (param.s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1103 if (!fs_type)
1104 fs_type = "journal";
1105 reserved_ratio = 0;
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001106 param.s_feature_incompat = EXT3_FEATURE_INCOMPAT_JOURNAL_DEV;
1107 param.s_feature_compat = 0;
1108 param.s_feature_ro_compat = 0;
1109 }
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001110 if (param.s_rev_level == EXT2_GOOD_OLD_REV &&
1111 (param.s_feature_compat || param.s_feature_ro_compat ||
1112 param.s_feature_incompat))
1113 param.s_rev_level = 1; /* Create a revision 1 filesystem */
1114
Theodore Ts'o74becf31997-04-26 14:37:06 +00001115 if (!force)
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001116 check_plausibility(device_name);
Theodore Ts'o63985322001-01-03 17:02:13 +00001117 check_mount(device_name, force, _("filesystem"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001118
Theodore Ts'o3839e651997-04-26 13:21:57 +00001119 param.s_log_frag_size = param.s_log_block_size;
1120
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001121 if (noaction && param.s_blocks_count) {
1122 dev_size = param.s_blocks_count;
1123 retval = 0;
1124 } else
1125 retval = ext2fs_get_device_size(device_name,
1126 EXT2_BLOCK_SIZE(&param),
1127 &dev_size);
Theodore Ts'oa789d841998-03-30 01:20:55 +00001128 if (retval && (retval != EXT2_ET_UNIMPLEMENTED)) {
1129 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001130 _("while trying to determine filesystem size"));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001131 exit(1);
1132 }
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001133 if (!param.s_blocks_count) {
Theodore Ts'oa789d841998-03-30 01:20:55 +00001134 if (retval == EXT2_ET_UNIMPLEMENTED) {
1135 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001136 _("Couldn't determine device size; you "
Theodore Ts'oa789d841998-03-30 01:20:55 +00001137 "must specify\nthe size of the "
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001138 "filesystem\n"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001139 exit(1);
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001140 } else {
1141 if (dev_size == 0) {
1142 com_err(program_name, 0,
1143 _("Device size reported to be zero. "
1144 "Invalid partition specified, or\n\t"
1145 "partition table wasn't reread "
1146 "after running fdisk, due to\n\t"
1147 "a modified partition being busy "
1148 "and in use. You may need to reboot\n\t"
1149 "to re-read your partition table.\n"
1150 ));
1151 exit(1);
1152 }
Theodore Ts'oa789d841998-03-30 01:20:55 +00001153 param.s_blocks_count = dev_size;
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001154 }
1155
Theodore Ts'oa789d841998-03-30 01:20:55 +00001156 } else if (!force && (param.s_blocks_count > dev_size)) {
1157 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001158 _("Filesystem larger than apparent filesystem size."));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001159 proceed_question();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001160 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001161
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001162 /*
1163 * If the user asked for HAS_JOURNAL, then make sure a journal
1164 * gets created.
1165 */
1166 if ((param.s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL) &&
1167 !journal_size)
1168 journal_size = -1;
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001169
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001170 /* Set first meta blockgroup via an environment variable */
1171 /* (this is mostly for debugging purposes) */
1172 if ((param.s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) &&
1173 ((tmp = getenv("MKE2FS_FIRST_META_BG"))))
1174 param.s_first_meta_bg = atoi(tmp);
1175
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001176 set_fs_defaults(fs_type, &param, blocksize, &inode_ratio);
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001177
Theodore Ts'o521e3681997-04-29 17:48:10 +00001178 if (param.s_blocks_per_group) {
1179 if (param.s_blocks_per_group < 256 ||
Theodore Ts'o76dd5e52002-10-30 23:07:21 -05001180 param.s_blocks_per_group > group_blk_max) {
Theodore Ts'o521e3681997-04-29 17:48:10 +00001181 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001182 _("blocks per group count out of range"));
Theodore Ts'o521e3681997-04-29 17:48:10 +00001183 exit(1);
1184 }
1185 }
1186
Andreas Dilger932a4892002-05-16 03:20:07 -06001187 if (inode_size) {
1188 if (inode_size < EXT2_GOOD_OLD_INODE_SIZE ||
1189 inode_size > EXT2_BLOCK_SIZE(&param) ||
1190 inode_size & (inode_size - 1)) {
1191 com_err(program_name, 0,
1192 _("bad inode size %d (min %d/max %d)"),
1193 inode_size, EXT2_GOOD_OLD_INODE_SIZE,
1194 EXT2_BLOCK_SIZE(&param));
1195 exit(1);
1196 }
1197 if (inode_size != EXT2_GOOD_OLD_INODE_SIZE)
1198 fprintf(stderr, _("Warning: %d-byte inodes not usable "
1199 "on most systems\n"),
1200 inode_size);
1201 param.s_inode_size = inode_size;
1202 }
1203
Theodore Ts'o3839e651997-04-26 13:21:57 +00001204 /*
1205 * Calculate number of inodes based on the inode ratio
1206 */
Theodore Ts'o5515e6b1999-01-05 07:25:06 +00001207 param.s_inodes_count = num_inodes ? num_inodes :
Theodore Ts'oe6597041999-10-26 02:30:16 +00001208 ((__u64) param.s_blocks_count * EXT2_BLOCK_SIZE(&param))
Theodore Ts'of3db3561997-04-26 13:34:30 +00001209 / inode_ratio;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001210
1211 /*
1212 * Calculate number of blocks to reserve
1213 */
1214 param.s_r_blocks_count = (param.s_blocks_count * reserved_ratio) / 100;
Theodore Ts'o521e3681997-04-29 17:48:10 +00001215
Theodore Ts'o3839e651997-04-26 13:21:57 +00001216}
1217
1218int main (int argc, char *argv[])
1219{
1220 errcode_t retval = 0;
1221 ext2_filsys fs;
1222 badblocks_list bb_list = 0;
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001223 int journal_blocks;
Theodore Ts'o44c09c02001-01-14 17:02:09 +00001224 int i, val;
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001225
1226#ifdef ENABLE_NLS
1227 setlocale(LC_MESSAGES, "");
Theodore Ts'o14308a52002-03-05 03:26:52 -05001228 setlocale(LC_CTYPE, "");
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001229 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1230 textdomain(NLS_CAT_NAME);
1231#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +00001232 PRS(argc, argv);
1233
Theodore Ts'o3839e651997-04-26 13:21:57 +00001234 /*
1235 * Initialize the superblock....
1236 */
1237 retval = ext2fs_initialize(device_name, 0, &param,
1238 unix_io_manager, &fs);
1239 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001240 com_err(device_name, retval, _("while setting up superblock"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001241 exit(1);
1242 }
1243
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001244 /*
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001245 * Wipe out the old on-disk superblock
1246 */
Theodore Ts'o04a96852001-08-30 21:55:26 -04001247 if (!noaction)
1248 zap_sector(fs, 2, 6);
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001249
1250 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001251 * Generate a UUID for it...
1252 */
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001253 uuid_generate(fs->super->s_uuid);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001254
1255 /*
Theodore Ts'o843049c2002-09-22 15:37:40 -04001256 * Initialize the directory index variables
1257 */
1258 fs->super->s_def_hash_version = EXT2_HASH_TEA;
1259 uuid_generate((unsigned char *) fs->super->s_hash_seed);
1260
1261 /*
Theodore Ts'o44c09c02001-01-14 17:02:09 +00001262 * Add "jitter" to the superblock's check interval so that we
1263 * don't check all the filesystems at the same time. We use a
1264 * kludgy hack of using the UUID to derive a random jitter value.
1265 */
1266 for (i = 0, val = 0 ; i < sizeof(fs->super->s_uuid); i++)
1267 val += fs->super->s_uuid[i];
1268 fs->super->s_max_mnt_count += val % EXT2_DFL_MAX_MNT_COUNT;
1269
1270 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001271 * Override the creator OS, if applicable
1272 */
1273 if (creator_os && !set_os(fs->super, creator_os)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001274 com_err (program_name, 0, _("unknown os - %s"), creator_os);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001275 exit(1);
1276 }
1277
1278 /*
Theodore Ts'o4ea0a112000-05-08 13:33:17 +00001279 * For the Hurd, we will turn off filetype since it doesn't
1280 * support it.
1281 */
1282 if (fs->super->s_creator_os == EXT2_OS_HURD)
1283 fs->super->s_feature_incompat &=
1284 ~EXT2_FEATURE_INCOMPAT_FILETYPE;
1285
1286 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001287 * Set the volume label...
1288 */
1289 if (volume_label) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001290 memset(fs->super->s_volume_name, 0,
1291 sizeof(fs->super->s_volume_name));
1292 strncpy(fs->super->s_volume_name, volume_label,
1293 sizeof(fs->super->s_volume_name));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001294 }
1295
1296 /*
1297 * Set the last mount directory
1298 */
1299 if (mount_dir) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001300 memset(fs->super->s_last_mounted, 0,
1301 sizeof(fs->super->s_last_mounted));
1302 strncpy(fs->super->s_last_mounted, mount_dir,
1303 sizeof(fs->super->s_last_mounted));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001304 }
1305
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001306 if (!quiet || noaction)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001307 show_stats(fs);
1308
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001309 if (noaction)
1310 exit(0);
1311
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001312 if (fs->super->s_feature_incompat &
1313 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1314 create_journal_dev(fs);
Andreas Dilger568101f2001-10-13 01:22:25 -06001315 exit(ext2fs_close(fs) ? 1 : 0);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001316 }
1317
Theodore Ts'o3839e651997-04-26 13:21:57 +00001318 if (bad_blocks_filename)
1319 read_bb_file(fs, &bb_list, bad_blocks_filename);
1320 if (cflag)
1321 test_disk(fs, &bb_list);
1322
1323 handle_bad_blocks(fs, bb_list);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001324 fs->stride = fs_stride;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001325 retval = ext2fs_allocate_tables(fs);
1326 if (retval) {
1327 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001328 _("while trying to allocate filesystem tables"));
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001329 exit(1);
1330 }
Theodore Ts'of3db3561997-04-26 13:34:30 +00001331 if (super_only) {
1332 fs->super->s_state |= EXT2_ERROR_FS;
1333 fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
1334 } else {
Andreas Dilger59f27242001-08-30 15:39:04 -06001335 /* rsv must be a power of two (64kB is MD RAID sb alignment) */
Theodore Ts'o04a96852001-08-30 21:55:26 -04001336 int rsv = 65536 / fs->blocksize;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001337 unsigned long blocks = fs->super->s_blocks_count;
Andreas Dilger59f27242001-08-30 15:39:04 -06001338 unsigned long start;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001339 blk_t ret_blk;
1340
1341#ifdef ZAP_BOOTBLOCK
Theodore Ts'o04a96852001-08-30 21:55:26 -04001342 zap_sector(fs, 0, 2);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001343#endif
Andreas Dilger59f27242001-08-30 15:39:04 -06001344
1345 /*
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001346 * Wipe out any old MD RAID (or other) metadata at the end
1347 * of the device. This will also verify that the device is
Andreas Dilger59f27242001-08-30 15:39:04 -06001348 * as large as we think. Be careful with very small devices.
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001349 */
Andreas Dilger59f27242001-08-30 15:39:04 -06001350 start = (blocks & ~(rsv - 1));
1351 if (start > rsv)
1352 start -= rsv;
1353 if (start > 0)
1354 retval = zero_blocks(fs, start, blocks - start,
1355 NULL, &ret_blk, NULL);
1356
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001357 if (retval) {
1358 com_err(program_name, retval,
Theodore Ts'of044b4d2002-08-17 13:32:21 -04001359 _("while zeroing block %u at end of filesystem"),
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001360 ret_blk);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001361 }
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001362 write_inode_tables(fs);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001363 create_root_dir(fs);
1364 create_lost_and_found(fs);
1365 reserve_inodes(fs);
1366 create_bad_block_inode(fs, bb_list);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001367 }
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001368
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001369 if (journal_device) {
1370 ext2_filsys jfs;
1371
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001372 if (!force)
1373 check_plausibility(journal_device);
Theodore Ts'o63985322001-01-03 17:02:13 +00001374 check_mount(journal_device, force, _("journal"));
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001375
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001376 retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
1377 EXT2_FLAG_JOURNAL_DEV_OK, 0,
1378 fs->blocksize, unix_io_manager, &jfs);
1379 if (retval) {
1380 com_err(program_name, retval,
1381 _("while trying to open journal device %s\n"),
1382 journal_device);
1383 exit(1);
1384 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001385 if (!quiet) {
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001386 printf(_("Adding journal to device %s: "),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001387 journal_device);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001388 fflush(stdout);
1389 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001390 retval = ext2fs_add_journal_device(fs, jfs);
1391 if(retval) {
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001392 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00001393 _("\n\twhile trying to add journal to device %s"),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001394 journal_device);
1395 exit(1);
1396 }
1397 if (!quiet)
1398 printf(_("done\n"));
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001399 ext2fs_close(jfs);
Andreas Dilger2d155762001-08-17 03:48:11 -06001400 free(journal_device);
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001401 } else if (journal_size) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00001402 journal_blocks = figure_journal_size(journal_size, fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001403
1404 if (!journal_blocks) {
1405 fs->super->s_feature_compat &=
1406 ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
1407 goto no_journal;
1408 }
1409 if (!quiet) {
Theodore Ts'o16ad3332000-12-31 03:21:56 +00001410 printf(_("Creating journal (%d blocks): "),
1411 journal_blocks);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001412 fflush(stdout);
1413 }
Theodore Ts'o63985322001-01-03 17:02:13 +00001414 retval = ext2fs_add_journal_inode(fs, journal_blocks,
1415 journal_flags);
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001416 if (retval) {
1417 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00001418 _("\n\twhile trying to create journal"));
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001419 exit(1);
1420 }
1421 if (!quiet)
1422 printf(_("done\n"));
1423 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001424no_journal:
1425
Theodore Ts'o3839e651997-04-26 13:21:57 +00001426 if (!quiet)
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001427 printf(_("Writing superblocks and "
1428 "filesystem accounting information: "));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00001429 retval = ext2fs_flush(fs);
1430 if (retval) {
Theodore Ts'o66938372002-03-08 00:14:46 -05001431 fprintf(stderr,
1432 _("\nWarning, had trouble writing out superblocks."));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00001433 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001434 if (!quiet) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00001435 printf(_("done\n\n"));
Theodore Ts'o66cf2f62001-06-14 06:42:44 +00001436 print_check_message(fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001437 }
Andreas Dilger568101f2001-10-13 01:22:25 -06001438 val = ext2fs_close(fs);
1439 return (retval || val) ? 1 : 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001440}