blob: 7d9b898947262c3293343001721ad541ddad057d [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'oa418d3a1997-04-26 14:00:26 +000019#include <stdio.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000020#include <string.h>
21#include <fcntl.h>
22#include <ctype.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000023#include <time.h>
Theodore Ts'o756df352002-03-07 20:52:12 -050024#ifdef __linux__
Theodore Ts'o27401561999-09-14 20:11:19 +000025#include <sys/utsname.h>
26#endif
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000027#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000028#include <getopt.h>
Theodore Ts'o373b8332000-04-03 16:22:35 +000029#else
30extern char *optarg;
31extern int optind;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000032#endif
33#ifdef HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000034#include <unistd.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000035#endif
36#ifdef HAVE_STDLIB_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000037#include <stdlib.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000038#endif
39#ifdef HAVE_ERRNO_H
40#include <errno.h>
41#endif
42#ifdef HAVE_MNTENT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000043#include <mntent.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000044#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000045#include <sys/ioctl.h>
Theodore Ts'of3db3561997-04-26 13:34:30 +000046#include <sys/types.h>
47
Theodore Ts'o54c637d2001-05-14 11:45:38 +000048#include "ext2fs/ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000049#include "et/com_err.h"
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000050#include "uuid/uuid.h"
Theodore Ts'o896938d1999-10-23 01:04:50 +000051#include "e2p/e2p.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000052#include "ext2fs/ext2fs.h"
Theodore Ts'o63985322001-01-03 17:02:13 +000053#include "util.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000054#include "../version.h"
Theodore Ts'od9c56d32000-02-08 00:47:55 +000055#include "nls-enable.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000056
57#define STRIDE_LENGTH 8
58
Theodore Ts'o6733c2f1999-11-23 02:23:30 +000059#ifndef __sparc__
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000060#define ZAP_BOOTBLOCK
61#endif
62
Theodore Ts'o3839e651997-04-26 13:21:57 +000063extern int isatty(int);
Theodore Ts'of3db3561997-04-26 13:34:30 +000064extern FILE *fpopen(const char *cmd, const char *mode);
Theodore Ts'o3839e651997-04-26 13:21:57 +000065
66const char * program_name = "mke2fs";
Theodore Ts'od48755e2000-12-09 14:36:04 +000067const char * device_name /* = NULL */;
Theodore Ts'o3839e651997-04-26 13:21:57 +000068
69/* Command line options */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000070int cflag;
71int verbose;
72int quiet;
73int super_only;
74int force;
75int noaction;
76int journal_size;
77int journal_flags;
78char *bad_blocks_filename;
79__u32 fs_stride;
Theodore Ts'o3839e651997-04-26 13:21:57 +000080
Theodore Ts'o9b9a7802005-12-10 21:50:30 -050081struct ext2_super_block fs_param;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000082char *creator_os;
83char *volume_label;
84char *mount_dir;
85char *journal_device;
86int sync_kludge; /* Set using the MKE2FS_SYNC env. option */
Theodore Ts'o3839e651997-04-26 13:21:57 +000087
Theodore Ts'o31e29a12002-05-17 10:53:07 -040088int sys_page_size = 4096;
Theodore Ts'od99225e2004-09-25 07:40:12 -040089int linux_version_code = 0;
Theodore Ts'o31e29a12002-05-17 10:53:07 -040090
Theodore Ts'o63985322001-01-03 17:02:13 +000091static void usage(void)
Theodore Ts'o3839e651997-04-26 13:21:57 +000092{
Theodore Ts'od9c56d32000-02-08 00:47:55 +000093 fprintf(stderr, _("Usage: %s [-c|-t|-l filename] [-b block-size] "
Theodore Ts'odc2ec522001-01-18 01:51:15 +000094 "[-f fragment-size]\n\t[-i bytes-per-inode] [-j] [-J journal-options]"
Theodore Ts'o5515e6b1999-01-05 07:25:06 +000095 " [-N number-of-inodes]\n\t[-m reserved-blocks-percentage] "
96 "[-o creator-os] [-g blocks-per-group]\n\t[-L volume-label] "
Theodore Ts'o18160d21999-10-23 01:22:17 +000097 "[-M last-mounted-directory] [-O feature[,...]]\n\t"
Theodore Ts'od323f8f2004-12-15 14:39:16 -050098 "[-r fs-revision] [-R options] [-qvSV] device [blocks-count]\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +000099 program_name);
100 exit(1);
101}
102
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000103static int int_log2(int arg)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000104{
105 int l = 0;
106
107 arg >>= 1;
108 while (arg) {
109 l++;
110 arg >>= 1;
111 }
112 return l;
113}
114
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000115static int int_log10(unsigned int arg)
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000116{
117 int l;
118
119 for (l=0; arg ; l++)
120 arg = arg / 10;
121 return l;
122}
123
Theodore Ts'od99225e2004-09-25 07:40:12 -0400124static int parse_version_number(const char *s)
125{
126 int major, minor, rev;
127 char *endptr;
128 const char *cp = s;
129
130 if (!s)
131 return 0;
132 major = strtol(cp, &endptr, 10);
133 if (cp == endptr || *endptr != '.')
134 return 0;
135 cp = endptr + 1;
136 minor = strtol(cp, &endptr, 10);
137 if (cp == endptr || *endptr != '.')
138 return 0;
139 cp = endptr + 1;
140 rev = strtol(cp, &endptr, 10);
141 if (cp == endptr)
142 return 0;
143 return ((((major * 256) + minor) * 256) + rev);
144}
145
146
147
Theodore Ts'o3839e651997-04-26 13:21:57 +0000148/*
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000149 * This function sets the default parameters for a filesystem
150 *
Theodore Ts'o27401561999-09-14 20:11:19 +0000151 * The type is specified by the user. The size is the maximum size
152 * (in megabytes) for which a set of parameters applies, with a size
153 * of zero meaning that it is the default parameter for the type.
154 * Note that order is important in the table below.
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000155 */
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400156#define DEF_MAX_BLOCKSIZE -1
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000157static char default_str[] = "default";
158struct mke2fs_defaults {
Theodore Ts'o4a600561999-10-26 14:35:51 +0000159 const char *type;
160 int size;
161 int blocksize;
162 int inode_ratio;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000163} settings[] = {
164 { default_str, 0, 4096, 8192 },
165 { default_str, 512, 1024, 4096 },
166 { default_str, 3, 1024, 8192 },
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000167 { "journal", 0, 4096, 8192 },
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000168 { "news", 0, 4096, 4096 },
Theodore Ts'o84302032005-01-27 19:12:05 -0500169 { "largefile", 0, 4096, 1024 * 1024 },
170 { "largefile4", 0, 4096, 4096 * 1024 },
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000171 { 0, 0, 0, 0},
172};
173
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500174static void set_fs_defaults(const char *fs_type,
175 struct ext2_super_block *super,
Theodore Ts'o93d5c382003-05-21 17:28:29 -0400176 int blocksize, int sector_size,
177 int *inode_ratio)
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000178{
179 int megs;
180 int ratio = 0;
181 struct mke2fs_defaults *p;
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400182 int use_bsize = 1024;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000183
Andreas Dilger932a4892002-05-16 03:20:07 -0600184 megs = super->s_blocks_count * (EXT2_BLOCK_SIZE(super) / 1024) / 1024;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000185 if (inode_ratio)
186 ratio = *inode_ratio;
187 if (!fs_type)
188 fs_type = default_str;
189 for (p = settings; p->type; p++) {
190 if ((strcmp(p->type, fs_type) != 0) &&
191 (strcmp(p->type, default_str) != 0))
192 continue;
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400193 if ((p->size != 0) && (megs > p->size))
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000194 continue;
195 if (ratio == 0)
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600196 *inode_ratio = p->inode_ratio < blocksize ?
197 blocksize : p->inode_ratio;
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400198 use_bsize = p->blocksize;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000199 }
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400200 if (blocksize <= 0) {
Theodore Ts'od99225e2004-09-25 07:40:12 -0400201 if (use_bsize == DEF_MAX_BLOCKSIZE) {
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400202 use_bsize = sys_page_size;
Theodore Ts'od99225e2004-09-25 07:40:12 -0400203 if ((linux_version_code < (2*65536 + 6*256)) &&
204 (use_bsize > 4096))
205 use_bsize = 4096;
206 }
Theodore Ts'o79120f82003-08-31 20:56:57 -0400207 if (sector_size && use_bsize < sector_size)
208 use_bsize = sector_size;
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400209 if ((blocksize < 0) && (use_bsize < (-blocksize)))
210 use_bsize = -blocksize;
211 blocksize = use_bsize;
212 super->s_blocks_count /= blocksize / 1024;
213 }
214 super->s_log_frag_size = super->s_log_block_size =
215 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000216}
217
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400218
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000219/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000220 * Helper function for read_bb_file and test_disk
221 */
Theodore Ts'o54434922003-12-07 01:28:50 -0500222static void invalid_block(ext2_filsys fs EXT2FS_ATTR((unused)), blk_t blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000223{
Theodore Ts'o66938372002-03-08 00:14:46 -0500224 fprintf(stderr, _("Bad block %u out of range; ignored.\n"), blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000225 return;
226}
227
228/*
229 * Reads the bad blocks list from a file
230 */
231static void read_bb_file(ext2_filsys fs, badblocks_list *bb_list,
232 const char *bad_blocks_file)
233{
234 FILE *f;
235 errcode_t retval;
236
237 f = fopen(bad_blocks_file, "r");
238 if (!f) {
239 com_err("read_bad_blocks_file", errno,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000240 _("while trying to open %s"), bad_blocks_file);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000241 exit(1);
242 }
243 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
244 fclose (f);
245 if (retval) {
246 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000247 _("while reading in list of bad blocks from file"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248 exit(1);
249 }
250}
251
252/*
253 * Runs the badblocks program to test the disk
254 */
255static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
256{
257 FILE *f;
258 errcode_t retval;
259 char buf[1024];
260
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500261 sprintf(buf, "badblocks -b %d %s%s%s %d", fs->blocksize,
262 quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
263 fs->device_name, fs->super->s_blocks_count);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000264 if (verbose)
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000265 printf(_("Running command: %s\n"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000266 f = popen(buf, "r");
267 if (!f) {
268 com_err("popen", errno,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400269 _("while trying to run '%s'"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000270 exit(1);
271 }
272 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000273 pclose(f);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000274 if (retval) {
275 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000276 _("while processing list of bad blocks from program"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000277 exit(1);
278 }
279}
280
281static void handle_bad_blocks(ext2_filsys fs, badblocks_list bb_list)
282{
Theodore Ts'o54434922003-12-07 01:28:50 -0500283 dgrp_t i;
284 blk_t j;
285 unsigned must_be_good;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000286 blk_t blk;
287 badblocks_iterate bb_iter;
288 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000289 blk_t group_block;
290 int group;
291 int group_bad;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000292
293 if (!bb_list)
294 return;
295
296 /*
297 * The primary superblock and group descriptors *must* be
298 * good; if not, abort.
299 */
300 must_be_good = fs->super->s_first_data_block + 1 + fs->desc_blocks;
301 for (i = fs->super->s_first_data_block; i <= must_be_good; i++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000302 if (ext2fs_badblocks_list_test(bb_list, i)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000303 fprintf(stderr, _("Block %d in primary "
304 "superblock/group descriptor area bad.\n"), i);
305 fprintf(stderr, _("Blocks %d through %d must be good "
306 "in order to build a filesystem.\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000307 fs->super->s_first_data_block, must_be_good);
Theodore Ts'o54434922003-12-07 01:28:50 -0500308 fputs(_("Aborting....\n"), stderr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000309 exit(1);
310 }
311 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000312
313 /*
314 * See if any of the bad blocks are showing up in the backup
315 * superblocks and/or group descriptors. If so, issue a
316 * warning and adjust the block counts appropriately.
317 */
318 group_block = fs->super->s_first_data_block +
319 fs->super->s_blocks_per_group;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000320
321 for (i = 1; i < fs->group_desc_count; i++) {
Theodore Ts'o92bcc591998-02-16 22:29:34 +0000322 group_bad = 0;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000323 for (j=0; j < fs->desc_blocks+1; j++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000324 if (ext2fs_badblocks_list_test(bb_list,
325 group_block + j)) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000326 if (!group_bad)
327 fprintf(stderr,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000328_("Warning: the backup superblock/group descriptors at block %d contain\n"
329" bad blocks.\n\n"),
Theodore Ts'of3db3561997-04-26 13:34:30 +0000330 group_block);
331 group_bad++;
332 group = ext2fs_group_of_blk(fs, group_block+j);
333 fs->group_desc[group].bg_free_blocks_count++;
334 fs->super->s_free_blocks_count++;
335 }
336 }
337 group_block += fs->super->s_blocks_per_group;
338 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000339
340 /*
341 * Mark all the bad blocks as used...
342 */
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000343 retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000344 if (retval) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000345 com_err("ext2fs_badblocks_list_iterate_begin", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000346 _("while marking bad blocks as used"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000347 exit(1);
348 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000349 while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'of3db3561997-04-26 13:34:30 +0000350 ext2fs_mark_block_bitmap(fs->block_map, blk);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000351 ext2fs_badblocks_list_iterate_end(bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000352}
353
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000354/*
355 * These functions implement a generalized progress meter.
356 */
357struct progress_struct {
358 char format[20];
359 char backup[80];
360 __u32 max;
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400361 int skip_progress;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000362};
363
364static void progress_init(struct progress_struct *progress,
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500365 const char *label,__u32 max)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000366{
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000367 int i;
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000368
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000369 memset(progress, 0, sizeof(struct progress_struct));
370 if (quiet)
371 return;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000372
373 /*
374 * Figure out how many digits we need
375 */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000376 i = int_log10(max);
377 sprintf(progress->format, "%%%dd/%%%dld", i, i);
378 memset(progress->backup, '\b', sizeof(progress->backup)-1);
379 progress->backup[sizeof(progress->backup)-1] = 0;
Theodore Ts'o54434922003-12-07 01:28:50 -0500380 if ((2*i)+1 < (int) sizeof(progress->backup))
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000381 progress->backup[(2*i)+1] = 0;
382 progress->max = max;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000383
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400384 progress->skip_progress = 0;
385 if (getenv("MKE2FS_SKIP_PROGRESS"))
386 progress->skip_progress++;
387
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000388 fputs(label, stdout);
389 fflush(stdout);
390}
391
392static void progress_update(struct progress_struct *progress, __u32 val)
393{
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400394 if ((progress->format[0] == 0) || progress->skip_progress)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000395 return;
396 printf(progress->format, val, progress->max);
397 fputs(progress->backup, stdout);
398}
399
400static void progress_close(struct progress_struct *progress)
401{
402 if (progress->format[0] == 0)
403 return;
404 fputs(_("done \n"), stdout);
405}
406
407
408/*
409 * Helper function which zeros out _num_ blocks starting at _blk_. In
410 * case of an error, the details of the error is returned via _ret_blk_
411 * and _ret_count_ if they are non-NULL pointers. Returns 0 on
412 * success, and an error code on an error.
413 *
414 * As a special case, if the first argument is NULL, then it will
415 * attempt to free the static zeroizing buffer. (This is to keep
416 * programs that check for memory leaks happy.)
417 */
418static errcode_t zero_blocks(ext2_filsys fs, blk_t blk, int num,
419 struct progress_struct *progress,
420 blk_t *ret_blk, int *ret_count)
421{
422 int j, count, next_update, next_update_incr;
423 static char *buf;
424 errcode_t retval;
425
426 /* If fs is null, clean up the static buffer and return */
427 if (!fs) {
428 if (buf) {
429 free(buf);
430 buf = 0;
431 }
432 return 0;
433 }
434 /* Allocate the zeroizing buffer if necessary */
435 if (!buf) {
436 buf = malloc(fs->blocksize * STRIDE_LENGTH);
437 if (!buf) {
438 com_err("malloc", ENOMEM,
439 _("while allocating zeroizing buffer"));
440 exit(1);
441 }
442 memset(buf, 0, fs->blocksize * STRIDE_LENGTH);
443 }
444 /* OK, do the write loop */
445 next_update = 0;
446 next_update_incr = num / 100;
447 if (next_update_incr < 1)
448 next_update_incr = 1;
449 for (j=0; j < num; j += STRIDE_LENGTH, blk += STRIDE_LENGTH) {
Theodore Ts'of044b4d2002-08-17 13:32:21 -0400450 count = num - j;
451 if (count > STRIDE_LENGTH)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000452 count = STRIDE_LENGTH;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000453 retval = io_channel_write_blk(fs->io, blk, count, buf);
454 if (retval) {
455 if (ret_count)
456 *ret_count = count;
457 if (ret_blk)
458 *ret_blk = blk;
459 return retval;
460 }
461 if (progress && j > next_update) {
462 next_update += num / 100;
463 progress_update(progress, blk);
464 }
465 }
466 return 0;
467}
468
469static void write_inode_tables(ext2_filsys fs)
470{
471 errcode_t retval;
472 blk_t blk;
Theodore Ts'o54434922003-12-07 01:28:50 -0500473 dgrp_t i;
474 int num;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000475 struct progress_struct progress;
476
477 if (quiet)
478 memset(&progress, 0, sizeof(progress));
479 else
480 progress_init(&progress, _("Writing inode tables: "),
481 fs->group_desc_count);
482
Theodore Ts'o3839e651997-04-26 13:21:57 +0000483 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000484 progress_update(&progress, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000485
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000486 blk = fs->group_desc[i].bg_inode_table;
487 num = fs->inode_blocks_per_group;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000488
489 retval = zero_blocks(fs, blk, num, 0, &blk, &num);
490 if (retval) {
Theodore Ts'o66938372002-03-08 00:14:46 -0500491 fprintf(stderr, _("\nCould not write %d blocks "
492 "in inode table starting at %d: %s\n"),
493 num, blk, error_message(retval));
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000494 exit(1);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000495 }
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000496 if (sync_kludge) {
497 if (sync_kludge == 1)
498 sync();
499 else if ((i % sync_kludge) == 0)
500 sync();
501 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000502 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000503 zero_blocks(0, 0, 0, 0, 0, 0);
504 progress_close(&progress);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000505}
506
507static void create_root_dir(ext2_filsys fs)
508{
509 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000510 struct ext2_inode inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000511
512 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, 0);
513 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000514 com_err("ext2fs_mkdir", retval, _("while creating root dir"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000515 exit(1);
516 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000517 if (geteuid()) {
518 retval = ext2fs_read_inode(fs, EXT2_ROOT_INO, &inode);
519 if (retval) {
520 com_err("ext2fs_read_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000521 _("while reading root inode"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000522 exit(1);
523 }
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000524 inode.i_uid = getuid();
525 if (inode.i_uid)
526 inode.i_gid = getgid();
Theodore Ts'oe27b4562005-03-21 01:02:53 -0500527 retval = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000528 if (retval) {
529 com_err("ext2fs_write_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000530 _("while setting root inode ownership"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000531 exit(1);
532 }
533 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000534}
535
536static void create_lost_and_found(ext2_filsys fs)
537{
538 errcode_t retval;
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000539 ext2_ino_t ino;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000540 const char *name = "lost+found";
541 int i;
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000542 int lpf_size = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000543
Theodore Ts'o6a525062001-12-24 09:40:00 -0500544 fs->umask = 077;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000545 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, 0, name);
546 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000547 com_err("ext2fs_mkdir", retval,
548 _("while creating /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000549 exit(1);
550 }
551
552 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name, strlen(name), 0, &ino);
553 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000554 com_err("ext2_lookup", retval,
555 _("while looking up /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000556 exit(1);
557 }
558
559 for (i=1; i < EXT2_NDIR_BLOCKS; i++) {
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000560 if ((lpf_size += fs->blocksize) >= 16*1024)
561 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000562 retval = ext2fs_expand_dir(fs, ino);
563 if (retval) {
564 com_err("ext2fs_expand_dir", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000565 _("while expanding /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000566 exit(1);
567 }
Theodore Ts'o6a525062001-12-24 09:40:00 -0500568 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000569}
570
571static void create_bad_block_inode(ext2_filsys fs, badblocks_list bb_list)
572{
573 errcode_t retval;
574
Theodore Ts'of3db3561997-04-26 13:34:30 +0000575 ext2fs_mark_inode_bitmap(fs->inode_map, EXT2_BAD_INO);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000576 fs->group_desc[0].bg_free_inodes_count--;
577 fs->super->s_free_inodes_count--;
578 retval = ext2fs_update_bb_inode(fs, bb_list);
579 if (retval) {
580 com_err("ext2fs_update_bb_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000581 _("while setting bad block inode"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000582 exit(1);
583 }
584
585}
586
587static void reserve_inodes(ext2_filsys fs)
588{
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000589 ext2_ino_t i;
590 int group;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000591
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000592 for (i = EXT2_ROOT_INO + 1; i < EXT2_FIRST_INODE(fs->super); i++) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000593 ext2fs_mark_inode_bitmap(fs->inode_map, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000594 group = ext2fs_group_of_ino(fs, i);
595 fs->group_desc[group].bg_free_inodes_count--;
596 fs->super->s_free_inodes_count--;
597 }
598 ext2fs_mark_ib_dirty(fs);
599}
600
Theodore Ts'o756df352002-03-07 20:52:12 -0500601#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500602#define BSD_MAGICDISK (0x57455682UL) /* The disk magic number reversed */
Theodore Ts'o756df352002-03-07 20:52:12 -0500603#define BSD_LABEL_OFFSET 64
Theodore Ts'o756df352002-03-07 20:52:12 -0500604
Theodore Ts'o04a96852001-08-30 21:55:26 -0400605static void zap_sector(ext2_filsys fs, int sect, int nsect)
Theodore Ts'of3db3561997-04-26 13:34:30 +0000606{
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400607 char *buf;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000608 int retval;
Theodore Ts'o756df352002-03-07 20:52:12 -0500609 unsigned int *magic;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000610
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400611 buf = malloc(512*nsect);
Andreas Dilger568101f2001-10-13 01:22:25 -0600612 if (!buf) {
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500613 printf(_("Out of memory erasing sectors %d-%d\n"),
614 sect, sect + nsect - 1);
Andreas Dilger568101f2001-10-13 01:22:25 -0600615 exit(1);
616 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500617
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500618 if (sect == 0) {
619 /* Check for a BSD disklabel, and don't erase it if so */
620 retval = io_channel_read_blk(fs->io, 0, -512, buf);
621 if (retval)
622 fprintf(stderr,
623 _("Warning: could not read block 0: %s\n"),
624 error_message(retval));
625 else {
626 magic = (unsigned int *) (buf + BSD_LABEL_OFFSET);
627 if ((*magic == BSD_DISKMAGIC) ||
628 (*magic == BSD_MAGICDISK))
629 return;
630 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500631 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500632
Theodore Ts'o70988102002-07-14 08:00:00 -0400633 memset(buf, 0, 512*nsect);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000634 io_channel_set_blksize(fs->io, 512);
Theodore Ts'o04a96852001-08-30 21:55:26 -0400635 retval = io_channel_write_blk(fs->io, sect, -512*nsect, buf);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000636 io_channel_set_blksize(fs->io, fs->blocksize);
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400637 free(buf);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000638 if (retval)
Theodore Ts'o66938372002-03-08 00:14:46 -0500639 fprintf(stderr, _("Warning: could not erase sector %d: %s\n"),
640 sect, error_message(retval));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000641}
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000642
643static void create_journal_dev(ext2_filsys fs)
644{
645 struct progress_struct progress;
646 errcode_t retval;
647 char *buf;
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000648 blk_t blk;
649 int count;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000650
Theodore Ts'od6a27e02001-04-17 02:34:41 +0000651 retval = ext2fs_create_journal_superblock(fs,
652 fs->super->s_blocks_count, 0, &buf);
653 if (retval) {
654 com_err("create_journal_dev", retval,
655 _("while initializing journal superblock"));
656 exit(1);
657 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000658 if (quiet)
659 memset(&progress, 0, sizeof(progress));
660 else
661 progress_init(&progress, _("Zeroing journal device: "),
662 fs->super->s_blocks_count);
663
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000664 retval = zero_blocks(fs, 0, fs->super->s_blocks_count,
665 &progress, &blk, &count);
666 if (retval) {
667 com_err("create_journal_dev", retval,
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000668 _("while zeroing journal device (block %u, count %d)"),
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000669 blk, count);
670 exit(1);
671 }
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000672 zero_blocks(0, 0, 0, 0, 0, 0);
673
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000674 retval = io_channel_write_blk(fs->io,
675 fs->super->s_first_data_block+1,
676 1, buf);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000677 if (retval) {
678 com_err("create_journal_dev", retval,
679 _("while writing journal superblock"));
680 exit(1);
681 }
682 progress_close(&progress);
683}
Theodore Ts'of3db3561997-04-26 13:34:30 +0000684
Theodore Ts'o3839e651997-04-26 13:21:57 +0000685static void show_stats(ext2_filsys fs)
686{
Theodore Ts'oef9abe52001-01-01 15:31:53 +0000687 struct ext2_super_block *s = fs->super;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000688 char buf[80];
Theodore Ts'o63253942005-03-19 01:13:22 -0500689 char *os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000690 blk_t group_block;
Theodore Ts'o54434922003-12-07 01:28:50 -0500691 dgrp_t i;
692 int need, col_left;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000693
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500694 if (fs_param.s_blocks_count != s->s_blocks_count)
Theodore Ts'o66938372002-03-08 00:14:46 -0500695 fprintf(stderr, _("warning: %d blocks unused.\n\n"),
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500696 fs_param.s_blocks_count - s->s_blocks_count);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000697
698 memset(buf, 0, sizeof(buf));
699 strncpy(buf, s->s_volume_name, sizeof(s->s_volume_name));
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000700 printf(_("Filesystem label=%s\n"), buf);
Theodore Ts'o54434922003-12-07 01:28:50 -0500701 fputs(_("OS type: "), stdout);
Theodore Ts'o63253942005-03-19 01:13:22 -0500702 os = e2p_os2string(fs->super->s_creator_os);
703 fputs(os, stdout);
704 free(os);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000705 printf("\n");
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000706 printf(_("Block size=%u (log=%u)\n"), fs->blocksize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000707 s->s_log_block_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000708 printf(_("Fragment size=%u (log=%u)\n"), fs->fragsize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000709 s->s_log_frag_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000710 printf(_("%u inodes, %u blocks\n"), s->s_inodes_count,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000711 s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000712 printf(_("%u blocks (%2.2f%%) reserved for the super user\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000713 s->s_r_blocks_count,
714 100.0 * s->s_r_blocks_count / s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000715 printf(_("First data block=%u\n"), s->s_first_data_block);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500716 if (s->s_reserved_gdt_blocks)
717 printf(_("Maximum filesystem blocks=%lu\n"),
718 (s->s_reserved_gdt_blocks + fs->desc_blocks) *
719 (fs->blocksize / sizeof(struct ext2_group_desc)) *
720 s->s_blocks_per_group);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000721 if (fs->group_desc_count > 1)
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000722 printf(_("%u block groups\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000723 else
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000724 printf(_("%u block group\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000725 printf(_("%u blocks per group, %u fragments per group\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000726 s->s_blocks_per_group, s->s_frags_per_group);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000727 printf(_("%u inodes per group\n"), s->s_inodes_per_group);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000728
729 if (fs->group_desc_count == 1) {
730 printf("\n");
731 return;
732 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500733
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000734 printf(_("Superblock backups stored on blocks: "));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000735 group_block = s->s_first_data_block;
736 col_left = 0;
737 for (i = 1; i < fs->group_desc_count; i++) {
738 group_block += s->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000739 if (!ext2fs_bg_has_super(fs, i))
740 continue;
Theodore Ts'o76714331999-10-20 18:06:29 +0000741 if (i != 1)
742 printf(", ");
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000743 need = int_log10(group_block) + 2;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000744 if (need > col_left) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000745 printf("\n\t");
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000746 col_left = 72;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000747 }
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000748 col_left -= need;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000749 printf("%u", group_block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000750 }
751 printf("\n\n");
752}
753
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000754/*
755 * Set the S_CREATOR_OS field. Return true if OS is known,
756 * otherwise, 0.
757 */
758static int set_os(struct ext2_super_block *sb, char *os)
759{
760 if (isdigit (*os))
761 sb->s_creator_os = atoi (os);
762 else if (strcasecmp(os, "linux") == 0)
763 sb->s_creator_os = EXT2_OS_LINUX;
764 else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
765 sb->s_creator_os = EXT2_OS_HURD;
766 else if (strcasecmp(os, "masix") == 0)
767 sb->s_creator_os = EXT2_OS_MASIX;
Theodore Ts'oea1e8f42005-01-19 18:18:44 -0500768 else if (strcasecmp(os, "freebsd") == 0)
769 sb->s_creator_os = EXT2_OS_FREEBSD;
770 else if (strcasecmp(os, "lites") == 0)
771 sb->s_creator_os = EXT2_OS_LITES;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000772 else
773 return 0;
774 return 1;
775}
776
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000777#define PATH_SET "PATH=/sbin"
778
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500779static void parse_extended_opts(struct ext2_super_block *param,
780 const char *opts)
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000781{
782 char *buf, *token, *next, *p, *arg;
783 int len;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500784 int r_usage = 0;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000785
786 len = strlen(opts);
787 buf = malloc(len+1);
788 if (!buf) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500789 fprintf(stderr,
790 _("Couldn't allocate memory to parse options!\n"));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000791 exit(1);
792 }
793 strcpy(buf, opts);
794 for (token = buf; token && *token; token = next) {
795 p = strchr(token, ',');
796 next = 0;
797 if (p) {
798 *p = 0;
799 next = p+1;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500800 }
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000801 arg = strchr(token, '=');
802 if (arg) {
803 *arg = 0;
804 arg++;
805 }
806 if (strcmp(token, "stride") == 0) {
807 if (!arg) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500808 r_usage++;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000809 continue;
810 }
811 fs_stride = strtoul(arg, &p, 0);
812 if (*p || (fs_stride == 0)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000813 fprintf(stderr,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400814 _("Invalid stride parameter: %s\n"),
815 arg);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500816 r_usage++;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000817 continue;
818 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500819 } else if (!strcmp(token, "resize")) {
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500820 unsigned long resize, bpg, rsv_groups;
821 unsigned long group_desc_count, desc_blocks;
822 unsigned int gdpb, blocksize;
823 int rsv_gdb;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500824
825 if (!arg) {
826 r_usage++;
827 continue;
828 }
829
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500830 resize = parse_num_blocks(arg,
831 param->s_log_block_size);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500832
833 if (resize == 0) {
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500834 fprintf(stderr,
835 _("Invalid resize parameter: %s\n"),
836 arg);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500837 r_usage++;
838 continue;
839 }
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500840 if (resize <= param->s_blocks_count) {
841 fprintf(stderr,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400842 _("The resize maximum must be greater "
843 "than the filesystem size.\n"));
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500844 r_usage++;
845 continue;
846 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500847
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500848 blocksize = EXT2_BLOCK_SIZE(param);
849 bpg = param->s_blocks_per_group;
850 if (!bpg)
851 bpg = blocksize * 8;
852 gdpb = blocksize / sizeof(struct ext2_group_desc);
853 group_desc_count = (param->s_blocks_count +
854 bpg - 1) / bpg;
855 desc_blocks = (group_desc_count +
856 gdpb - 1) / gdpb;
857 rsv_groups = (resize + bpg - 1) / bpg;
858 rsv_gdb = (rsv_groups + gdpb - 1) / gdpb -
859 desc_blocks;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500860 if (rsv_gdb > (int) EXT2_ADDR_PER_BLOCK(param))
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500861 rsv_gdb = EXT2_ADDR_PER_BLOCK(param);
862
863 if (rsv_gdb > 0) {
864 param->s_feature_compat |=
865 EXT2_FEATURE_COMPAT_RESIZE_INODE;
866
867 param->s_reserved_gdt_blocks = rsv_gdb;
868 }
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000869 } else
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500870 r_usage++;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000871 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500872 if (r_usage) {
873 fprintf(stderr, _("\nBad options specified.\n\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -0400874 "Extended options are separated by commas, "
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000875 "and may take an argument which\n"
876 "\tis set off by an equals ('=') sign.\n\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -0400877 "Valid extended options are:\n"
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500878 "\tstride=<stride length in blocks>\n"
879 "\tresize=<resize maximum size in blocks>\n\n"));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000880 exit(1);
881 }
882}
883
Theodore Ts'o896938d1999-10-23 01:04:50 +0000884static __u32 ok_features[3] = {
Theodore Ts'o843049c2002-09-22 15:37:40 -0400885 EXT3_FEATURE_COMPAT_HAS_JOURNAL |
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500886 EXT2_FEATURE_COMPAT_RESIZE_INODE |
Theodore Ts'o843049c2002-09-22 15:37:40 -0400887 EXT2_FEATURE_COMPAT_DIR_INDEX, /* Compat */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000888 EXT2_FEATURE_INCOMPAT_FILETYPE| /* Incompat */
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400889 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|
890 EXT2_FEATURE_INCOMPAT_META_BG,
Theodore Ts'o896938d1999-10-23 01:04:50 +0000891 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER /* R/O compat */
892};
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000893
894
Theodore Ts'o3839e651997-04-26 13:21:57 +0000895static void PRS(int argc, char *argv[])
896{
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400897 int b, c;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000898 int size;
899 char * tmp;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000900 int blocksize = 0;
901 int inode_ratio = 0;
Andreas Dilger932a4892002-05-16 03:20:07 -0600902 int inode_size = 0;
Andreas Dilgerce911142005-07-06 11:50:08 -0500903 double reserved_ratio = 5.0;
Theodore Ts'o93d5c382003-05-21 17:28:29 -0400904 int sector_size = 0;
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -0500905 int show_version_only = 0;
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000906 ext2_ino_t num_inodes = 0;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000907 errcode_t retval;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000908 char * oldpath = getenv("PATH");
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500909 char * extended_opts = 0;
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500910 const char * fs_type = 0;
Theodore Ts'o4a600561999-10-26 14:35:51 +0000911 blk_t dev_size;
Theodore Ts'o756df352002-03-07 20:52:12 -0500912#ifdef __linux__
Theodore Ts'o4a600561999-10-26 14:35:51 +0000913 struct utsname ut;
Theodore Ts'o27401561999-09-14 20:11:19 +0000914#endif
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400915 long sysval;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000916
Theodore Ts'o3839e651997-04-26 13:21:57 +0000917 /* Update our PATH to include /sbin */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000918 if (oldpath) {
919 char *newpath;
920
921 newpath = malloc(sizeof (PATH_SET) + 1 + strlen (oldpath));
922 strcpy (newpath, PATH_SET);
923 strcat (newpath, ":");
924 strcat (newpath, oldpath);
925 putenv (newpath);
926 } else
927 putenv (PATH_SET);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000928
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000929 tmp = getenv("MKE2FS_SYNC");
930 if (tmp)
931 sync_kludge = atoi(tmp);
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400932
933 /* Determine the system page size if possible */
934#ifdef HAVE_SYSCONF
935#if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
936#define _SC_PAGESIZE _SC_PAGE_SIZE
937#endif
938#ifdef _SC_PAGESIZE
939 sysval = sysconf(_SC_PAGESIZE);
Andreas Dilgeraab6fe72002-05-18 13:27:33 -0600940 if (sysval > 0)
Theodore Ts'o31e29a12002-05-17 10:53:07 -0400941 sys_page_size = sysval;
942#endif /* _SC_PAGESIZE */
943#endif /* HAVE_SYSCONF */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000944
Theodore Ts'o3839e651997-04-26 13:21:57 +0000945 setbuf(stdout, NULL);
946 setbuf(stderr, NULL);
947 initialize_ext2_error_table();
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500948 memset(&fs_param, 0, sizeof(struct ext2_super_block));
949 fs_param.s_rev_level = 1; /* Create revision 1 filesystems now */
950 fs_param.s_feature_incompat |= EXT2_FEATURE_INCOMPAT_FILETYPE;
951 fs_param.s_feature_ro_compat |= EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
Theodore Ts'o54779c62002-11-13 07:00:16 -0500952#if 0
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500953 fs_param.s_feature_compat |= EXT2_FEATURE_COMPAT_DIR_INDEX;
Theodore Ts'o54779c62002-11-13 07:00:16 -0500954#endif
Theodore Ts'o843049c2002-09-22 15:37:40 -0400955
Theodore Ts'o756df352002-03-07 20:52:12 -0500956#ifdef __linux__
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000957 if (uname(&ut)) {
958 perror("uname");
959 exit(1);
960 }
Theodore Ts'od99225e2004-09-25 07:40:12 -0400961 linux_version_code = parse_version_number(ut.release);
962 if (linux_version_code && linux_version_code < (2*65536 + 2*256)) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500963 fs_param.s_rev_level = 0;
964 fs_param.s_feature_incompat = 0;
965 fs_param.s_feature_compat = 0;
966 fs_param.s_feature_ro_compat = 0;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000967 }
968#endif
Andreas Dilger0072f8d2002-02-25 23:11:26 -0700969
970 if (argc && *argv) {
971 program_name = get_progname(*argv);
972
973 /* If called as mkfs.ext3, create a journal inode */
974 if (!strcmp(program_name, "mkfs.ext3"))
975 journal_size = -1;
976 }
977
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000978 while ((c = getopt (argc, argv,
Andreas Dilger25247852005-07-06 12:58:15 -0500979 "b:cf:g:i:jl:m:no:qr:s:tvE:FI:J:L:M:N:O:R:ST:V")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000980 switch (c) {
981 case 'b':
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400982 blocksize = strtol(optarg, &tmp, 0);
983 b = (blocksize > 0) ? blocksize : -blocksize;
984 if (b < EXT2_MIN_BLOCK_SIZE ||
985 b > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000986 com_err(program_name, 0,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400987 _("invalid block size - %s"), optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000988 exit(1);
989 }
Andreas Dilger932a4892002-05-16 03:20:07 -0600990 if (blocksize > 4096)
991 fprintf(stderr, _("Warning: blocksize %d not "
992 "usable on most systems.\n"),
993 blocksize);
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400994 if (blocksize > 0)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500995 fs_param.s_log_block_size =
Theodore Ts'oc5290fa2003-04-11 22:10:50 -0400996 int_log2(blocksize >>
997 EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000998 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +0000999 case 'c': /* Check for bad blocks */
1000 case 't': /* deprecated */
Theodore Ts'o3ed57c22001-12-24 15:01:59 -05001001 cflag++;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001002 break;
1003 case 'f':
1004 size = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -06001005 if (size < EXT2_MIN_BLOCK_SIZE ||
1006 size > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001007 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001008 _("invalid fragment size - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +00001009 optarg);
1010 exit(1);
1011 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001012 fs_param.s_log_frag_size =
Theodore Ts'o6733c2f1999-11-23 02:23:30 +00001013 int_log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o66938372002-03-08 00:14:46 -05001014 fprintf(stderr, _("Warning: fragments not supported. "
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001015 "Ignoring -f option\n"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001016 break;
1017 case 'g':
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001018 fs_param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001019 if (*tmp) {
1020 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001021 _("Illegal number for blocks per group"));
Theodore Ts'of3db3561997-04-26 13:34:30 +00001022 exit(1);
1023 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001024 if ((fs_param.s_blocks_per_group % 8) != 0) {
Theodore Ts'of3db3561997-04-26 13:34:30 +00001025 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001026 _("blocks per group must be multiple of 8"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001027 exit(1);
1028 }
1029 break;
1030 case 'i':
1031 inode_ratio = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -06001032 if (inode_ratio < EXT2_MIN_BLOCK_SIZE ||
1033 inode_ratio > EXT2_MAX_BLOCK_SIZE * 1024 ||
Theodore Ts'o3839e651997-04-26 13:21:57 +00001034 *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001035 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001036 _("invalid inode ratio %s (min %d/max %d)"),
Andreas Dilger932a4892002-05-16 03:20:07 -06001037 optarg, EXT2_MIN_BLOCK_SIZE,
1038 EXT2_MAX_BLOCK_SIZE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001039 exit(1);
1040 }
1041 break;
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001042 case 'J':
1043 parse_journal_opts(optarg);
1044 break;
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001045 case 'j':
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001046 fs_param.s_feature_compat |=
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001047 EXT3_FEATURE_COMPAT_HAS_JOURNAL;
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001048 if (!journal_size)
1049 journal_size = -1;
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001050 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001051 case 'l':
Theodore Ts'of3db3561997-04-26 13:34:30 +00001052 bad_blocks_filename = malloc(strlen(optarg)+1);
1053 if (!bad_blocks_filename) {
1054 com_err(program_name, ENOMEM,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001055 _("in malloc for bad_blocks_filename"));
Theodore Ts'of3db3561997-04-26 13:34:30 +00001056 exit(1);
1057 }
1058 strcpy(bad_blocks_filename, optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001059 break;
1060 case 'm':
Andreas Dilgerce911142005-07-06 11:50:08 -05001061 reserved_ratio = strtod(optarg, &tmp);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001062 if (reserved_ratio > 50 || *tmp) {
1063 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001064 _("invalid reserved blocks percent - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +00001065 optarg);
1066 exit(1);
1067 }
1068 break;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001069 case 'n':
1070 noaction++;
1071 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001072 case 'o':
1073 creator_os = optarg;
1074 break;
Andreas Dilger25247852005-07-06 12:58:15 -05001075 case 'q':
1076 quiet = 1;
1077 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001078 case 'r':
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001079 fs_param.s_rev_level = strtoul(optarg, &tmp, 0);
Andreas Dilger25247852005-07-06 12:58:15 -05001080 if (*tmp) {
1081 com_err(program_name, 0,
1082 _("bad revision level - %s"), optarg);
1083 exit(1);
1084 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001085 if (fs_param.s_rev_level == EXT2_GOOD_OLD_REV) {
1086 fs_param.s_feature_incompat = 0;
1087 fs_param.s_feature_compat = 0;
1088 fs_param.s_feature_ro_compat = 0;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001089 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001090 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +00001091 case 's': /* deprecated */
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001092 if (atoi(optarg))
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001093 fs_param.s_feature_ro_compat |=
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001094 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
1095 else
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001096 fs_param.s_feature_ro_compat &=
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001097 ~EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
Theodore Ts'o521e3681997-04-29 17:48:10 +00001098 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001099#ifdef EXT2_DYNAMIC_REV
1100 case 'I':
Andreas Dilger932a4892002-05-16 03:20:07 -06001101 inode_size = strtoul(optarg, &tmp, 0);
1102 if (*tmp) {
1103 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001104 _("invalid inode size - %s"), optarg);
Andreas Dilger932a4892002-05-16 03:20:07 -06001105 exit(1);
1106 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001107 break;
1108#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +00001109 case 'v':
1110 verbose = 1;
1111 break;
Theodore Ts'o74becf31997-04-26 14:37:06 +00001112 case 'F':
1113 force = 1;
1114 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001115 case 'L':
1116 volume_label = optarg;
1117 break;
1118 case 'M':
1119 mount_dir = optarg;
1120 break;
Andreas Dilger25247852005-07-06 12:58:15 -05001121 case 'N':
1122 num_inodes = strtoul(optarg, &tmp, 0);
1123 if (*tmp) {
1124 com_err(program_name, 0,
1125 _("bad num inodes - %s"), optarg);
1126 exit(1);
1127 }
1128 break;
Theodore Ts'o896938d1999-10-23 01:04:50 +00001129 case 'O':
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001130 if (!strcmp(optarg, "none")) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001131 fs_param.s_feature_compat = 0;
1132 fs_param.s_feature_incompat = 0;
1133 fs_param.s_feature_ro_compat = 0;
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001134 break;
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001135 }
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001136 if (e2p_edit_feature(optarg,
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001137 &fs_param.s_feature_compat,
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001138 ok_features)) {
1139 fprintf(stderr,
1140 _("Invalid filesystem option set: %s\n"), optarg);
1141 exit(1);
1142 }
Theodore Ts'o896938d1999-10-23 01:04:50 +00001143 break;
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001144 case 'E':
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001145 case 'R':
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001146 extended_opts = optarg;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001147 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +00001148 case 'S':
1149 super_only = 1;
1150 break;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001151 case 'T':
1152 fs_type = optarg;
1153 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001154 case 'V':
1155 /* Print version number and exit */
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001156 show_version_only++;
1157 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001158 default:
1159 usage();
1160 }
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001161 }
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001162 if ((optind == argc) && !show_version_only)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001163 usage();
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001164 device_name = argv[optind++];
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001165
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001166 if (!quiet || show_version_only)
Theodore Ts'o38798572003-04-16 15:29:39 -04001167 fprintf (stderr, "mke2fs %s (%s)\n", E2FSPROGS_VERSION,
1168 E2FSPROGS_DATE);
1169
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001170 if (show_version_only) {
1171 fprintf(stderr, _("\tUsing %s\n"),
1172 error_message(EXT2_ET_BASE));
1173 exit(0);
1174 }
1175
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001176 /*
1177 * If there's no blocksize specified and there is a journal
1178 * device, use it to figure out the blocksize
1179 */
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001180 if (blocksize <= 0 && journal_device) {
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001181 ext2_filsys jfs;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001182 io_manager io_ptr;
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001183
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001184#ifdef CONFIG_TESTIO_DEBUG
1185 io_ptr = test_io_manager;
1186 test_io_backing_manager = unix_io_manager;
1187#else
1188 io_ptr = unix_io_manager;
1189#endif
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001190 retval = ext2fs_open(journal_device,
1191 EXT2_FLAG_JOURNAL_DEV_OK, 0,
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001192 0, io_ptr, &jfs);
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001193 if (retval) {
1194 com_err(program_name, retval,
1195 _("while trying to open journal device %s\n"),
1196 journal_device);
1197 exit(1);
1198 }
Theodore Ts'o54434922003-12-07 01:28:50 -05001199 if ((blocksize < 0) && (jfs->blocksize < (unsigned) (-blocksize))) {
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001200 com_err(program_name, 0,
Theodore Ts'oddc32a02003-05-03 18:45:55 -04001201 _("Journal dev blocksize (%d) smaller than "
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001202 "minimum blocksize %d\n"), jfs->blocksize,
1203 -blocksize);
1204 exit(1);
1205 }
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001206 blocksize = jfs->blocksize;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001207 fs_param.s_log_block_size =
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001208 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1209 ext2fs_close(jfs);
1210 }
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001211
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001212 if (blocksize > sys_page_size) {
Andreas Dilger932a4892002-05-16 03:20:07 -06001213 if (!force) {
1214 com_err(program_name, 0,
1215 _("%d-byte blocks too big for system (max %d)"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001216 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001217 proceed_question();
1218 }
1219 fprintf(stderr, _("Warning: %d-byte blocks too big for system "
1220 "(max %d), forced to continue\n"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001221 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001222 }
Theodore Ts'ocf7d5f12003-07-25 17:39:51 -04001223 if ((blocksize > 4096) &&
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001224 (fs_param.s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL))
Theodore Ts'obb145b02005-06-20 08:35:27 -04001225 fprintf(stderr, _("\nWarning: some 2.4 kernels do not support "
1226 "blocksizes greater than 4096\n\tusing ext3. "
1227 "Use -b 4096 if this is an issue for you.\n\n"));
Andreas Dilger932a4892002-05-16 03:20:07 -06001228
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001229 if (optind < argc) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001230 fs_param.s_blocks_count = parse_num_blocks(argv[optind++],
1231 fs_param.s_log_block_size);
1232 if (!fs_param.s_blocks_count) {
Theodore Ts'of37ab682005-05-05 23:15:55 -04001233 com_err(program_name, 0, _("invalid blocks count - %s"),
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001234 argv[optind - 1]);
1235 exit(1);
1236 }
1237 }
1238 if (optind < argc)
1239 usage();
1240
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001241 if (fs_param.s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
Andreas Dilgerfa724582001-08-04 01:18:34 -06001242 if (!fs_type)
1243 fs_type = "journal";
1244 reserved_ratio = 0;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001245 fs_param.s_feature_incompat = EXT3_FEATURE_INCOMPAT_JOURNAL_DEV;
1246 fs_param.s_feature_compat = 0;
1247 fs_param.s_feature_ro_compat = 0;
Theodore Ts'of3561ed2001-08-15 11:58:16 -04001248 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001249 if (fs_param.s_rev_level == EXT2_GOOD_OLD_REV &&
1250 (fs_param.s_feature_compat || fs_param.s_feature_ro_compat ||
1251 fs_param.s_feature_incompat))
1252 fs_param.s_rev_level = 1; /* Create a revision 1 filesystem */
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001253
Theodore Ts'o74becf31997-04-26 14:37:06 +00001254 if (!force)
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001255 check_plausibility(device_name);
Theodore Ts'o63985322001-01-03 17:02:13 +00001256 check_mount(device_name, force, _("filesystem"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001257
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001258 fs_param.s_log_frag_size = fs_param.s_log_block_size;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001259
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001260 if (noaction && fs_param.s_blocks_count) {
1261 dev_size = fs_param.s_blocks_count;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001262 retval = 0;
Theodore Ts'o20953122005-01-27 19:07:26 -05001263 } else {
1264 retry:
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001265 retval = ext2fs_get_device_size(device_name,
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001266 EXT2_BLOCK_SIZE(&fs_param),
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001267 &dev_size);
Theodore Ts'o20953122005-01-27 19:07:26 -05001268 if ((retval == EFBIG) &&
1269 (blocksize == 0) &&
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001270 (fs_param.s_log_block_size == 0)) {
1271 fs_param.s_log_block_size = 2;
Theodore Ts'o20953122005-01-27 19:07:26 -05001272 blocksize = 4096;
1273 goto retry;
1274 }
1275 }
1276
Theodore Ts'oa789d841998-03-30 01:20:55 +00001277 if (retval && (retval != EXT2_ET_UNIMPLEMENTED)) {
1278 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001279 _("while trying to determine filesystem size"));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001280 exit(1);
1281 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001282 if (!fs_param.s_blocks_count) {
Theodore Ts'oa789d841998-03-30 01:20:55 +00001283 if (retval == EXT2_ET_UNIMPLEMENTED) {
1284 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001285 _("Couldn't determine device size; you "
Theodore Ts'oa789d841998-03-30 01:20:55 +00001286 "must specify\nthe size of the "
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001287 "filesystem\n"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001288 exit(1);
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001289 } else {
1290 if (dev_size == 0) {
1291 com_err(program_name, 0,
1292 _("Device size reported to be zero. "
1293 "Invalid partition specified, or\n\t"
1294 "partition table wasn't reread "
1295 "after running fdisk, due to\n\t"
1296 "a modified partition being busy "
1297 "and in use. You may need to reboot\n\t"
1298 "to re-read your partition table.\n"
1299 ));
1300 exit(1);
1301 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001302 fs_param.s_blocks_count = dev_size;
1303 if (sys_page_size > EXT2_BLOCK_SIZE(&fs_param))
1304 fs_param.s_blocks_count &= ~((sys_page_size /
1305 EXT2_BLOCK_SIZE(&fs_param))-1);
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001306 }
1307
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001308 } else if (!force && (fs_param.s_blocks_count > dev_size)) {
Theodore Ts'oa789d841998-03-30 01:20:55 +00001309 com_err(program_name, 0,
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001310 _("Filesystem larger than apparent device size."));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001311 proceed_question();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001312 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001313
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001314 /*
1315 * If the user asked for HAS_JOURNAL, then make sure a journal
1316 * gets created.
1317 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001318 if ((fs_param.s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL) &&
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001319 !journal_size)
1320 journal_size = -1;
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001321
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001322 /* Set first meta blockgroup via an environment variable */
1323 /* (this is mostly for debugging purposes) */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001324 if ((fs_param.s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) &&
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001325 ((tmp = getenv("MKE2FS_FIRST_META_BG"))))
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001326 fs_param.s_first_meta_bg = atoi(tmp);
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001327
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001328 /* Get the hardware sector size, if available */
1329 retval = ext2fs_get_device_sectsize(device_name, &sector_size);
1330 if (retval) {
1331 com_err(program_name, retval,
1332 _("while trying to determine hardware sector size"));
1333 exit(1);
1334 }
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001335
Theodore Ts'o54434922003-12-07 01:28:50 -05001336 if ((tmp = getenv("MKE2FS_DEVICE_SECTSIZE")) != NULL)
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001337 sector_size = atoi(tmp);
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001338
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001339 set_fs_defaults(fs_type, &fs_param, blocksize, sector_size,
1340 &inode_ratio);
1341 blocksize = EXT2_BLOCK_SIZE(&fs_param);
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001342
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001343 if (extended_opts)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001344 parse_extended_opts(&fs_param, extended_opts);
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001345
1346 /* Since sparse_super is the default, we would only have a problem
1347 * here if it was explicitly disabled.
1348 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001349 if ((fs_param.s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE) &&
1350 !(fs_param.s_feature_ro_compat&EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001351 com_err(program_name, 0,
1352 _("reserved online resize blocks not supported "
1353 "on non-sparse filesystem"));
1354 exit(1);
1355 }
1356
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001357 if (fs_param.s_blocks_per_group) {
1358 if (fs_param.s_blocks_per_group < 256 ||
1359 fs_param.s_blocks_per_group > 8 * (unsigned) blocksize) {
Theodore Ts'o521e3681997-04-29 17:48:10 +00001360 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001361 _("blocks per group count out of range"));
Theodore Ts'o521e3681997-04-29 17:48:10 +00001362 exit(1);
1363 }
1364 }
1365
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001366 if (!force && fs_param.s_blocks_count >= (1 << 31)) {
Theodore Ts'o675b79c2005-06-30 20:00:41 -04001367 com_err(program_name, 0,
1368 _("Filesystem too large. No more than 2**31-1 blocks\n"
1369 "\t (8TB using a blocksize of 4k) are currently supported."));
1370 exit(1);
1371 }
1372
Andreas Dilger932a4892002-05-16 03:20:07 -06001373 if (inode_size) {
1374 if (inode_size < EXT2_GOOD_OLD_INODE_SIZE ||
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001375 inode_size > EXT2_BLOCK_SIZE(&fs_param) ||
Andreas Dilger932a4892002-05-16 03:20:07 -06001376 inode_size & (inode_size - 1)) {
1377 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001378 _("invalid inode size %d (min %d/max %d)"),
Andreas Dilger932a4892002-05-16 03:20:07 -06001379 inode_size, EXT2_GOOD_OLD_INODE_SIZE,
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001380 blocksize);
Andreas Dilger932a4892002-05-16 03:20:07 -06001381 exit(1);
1382 }
1383 if (inode_size != EXT2_GOOD_OLD_INODE_SIZE)
1384 fprintf(stderr, _("Warning: %d-byte inodes not usable "
1385 "on most systems\n"),
1386 inode_size);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001387 fs_param.s_inode_size = inode_size;
Andreas Dilger932a4892002-05-16 03:20:07 -06001388 }
1389
Theodore Ts'o3839e651997-04-26 13:21:57 +00001390 /*
1391 * Calculate number of inodes based on the inode ratio
1392 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001393 fs_param.s_inodes_count = num_inodes ? num_inodes :
1394 ((__u64) fs_param.s_blocks_count * blocksize)
Theodore Ts'of3db3561997-04-26 13:34:30 +00001395 / inode_ratio;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001396
1397 /*
1398 * Calculate number of blocks to reserve
1399 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001400 fs_param.s_r_blocks_count = (fs_param.s_blocks_count * reserved_ratio)
1401 / 100;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001402}
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001403
Theodore Ts'o3839e651997-04-26 13:21:57 +00001404int main (int argc, char *argv[])
1405{
1406 errcode_t retval = 0;
1407 ext2_filsys fs;
1408 badblocks_list bb_list = 0;
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001409 int journal_blocks;
Theodore Ts'o54434922003-12-07 01:28:50 -05001410 unsigned int i;
1411 int val;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001412 io_manager io_ptr;
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001413
1414#ifdef ENABLE_NLS
1415 setlocale(LC_MESSAGES, "");
Theodore Ts'o14308a52002-03-05 03:26:52 -05001416 setlocale(LC_CTYPE, "");
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001417 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1418 textdomain(NLS_CAT_NAME);
1419#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +00001420 PRS(argc, argv);
1421
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001422#ifdef CONFIG_TESTIO_DEBUG
1423 io_ptr = test_io_manager;
1424 test_io_backing_manager = unix_io_manager;
1425#else
1426 io_ptr = unix_io_manager;
1427#endif
1428
Theodore Ts'o3839e651997-04-26 13:21:57 +00001429 /*
1430 * Initialize the superblock....
1431 */
Theodore Ts'o616059b2006-03-18 20:02:05 -05001432 retval = ext2fs_initialize(device_name, EXT2_FLAG_EXCLUSIVE, &fs_param,
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001433 io_ptr, &fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001434 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001435 com_err(device_name, retval, _("while setting up superblock"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001436 exit(1);
1437 }
1438
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001439 /*
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001440 * Wipe out the old on-disk superblock
1441 */
Theodore Ts'o04a96852001-08-30 21:55:26 -04001442 if (!noaction)
1443 zap_sector(fs, 2, 6);
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001444
1445 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001446 * Generate a UUID for it...
1447 */
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001448 uuid_generate(fs->super->s_uuid);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001449
1450 /*
Theodore Ts'o843049c2002-09-22 15:37:40 -04001451 * Initialize the directory index variables
1452 */
1453 fs->super->s_def_hash_version = EXT2_HASH_TEA;
1454 uuid_generate((unsigned char *) fs->super->s_hash_seed);
1455
1456 /*
Theodore Ts'o44c09c02001-01-14 17:02:09 +00001457 * Add "jitter" to the superblock's check interval so that we
1458 * don't check all the filesystems at the same time. We use a
1459 * kludgy hack of using the UUID to derive a random jitter value.
1460 */
1461 for (i = 0, val = 0 ; i < sizeof(fs->super->s_uuid); i++)
1462 val += fs->super->s_uuid[i];
1463 fs->super->s_max_mnt_count += val % EXT2_DFL_MAX_MNT_COUNT;
1464
1465 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001466 * Override the creator OS, if applicable
1467 */
1468 if (creator_os && !set_os(fs->super, creator_os)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001469 com_err (program_name, 0, _("unknown os - %s"), creator_os);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001470 exit(1);
1471 }
1472
1473 /*
Theodore Ts'o4ea0a112000-05-08 13:33:17 +00001474 * For the Hurd, we will turn off filetype since it doesn't
1475 * support it.
1476 */
1477 if (fs->super->s_creator_os == EXT2_OS_HURD)
1478 fs->super->s_feature_incompat &=
1479 ~EXT2_FEATURE_INCOMPAT_FILETYPE;
1480
1481 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001482 * Set the volume label...
1483 */
1484 if (volume_label) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001485 memset(fs->super->s_volume_name, 0,
1486 sizeof(fs->super->s_volume_name));
1487 strncpy(fs->super->s_volume_name, volume_label,
1488 sizeof(fs->super->s_volume_name));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001489 }
1490
1491 /*
1492 * Set the last mount directory
1493 */
1494 if (mount_dir) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001495 memset(fs->super->s_last_mounted, 0,
1496 sizeof(fs->super->s_last_mounted));
1497 strncpy(fs->super->s_last_mounted, mount_dir,
1498 sizeof(fs->super->s_last_mounted));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001499 }
1500
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001501 if (!quiet || noaction)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001502 show_stats(fs);
1503
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001504 if (noaction)
1505 exit(0);
1506
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001507 if (fs->super->s_feature_incompat &
1508 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1509 create_journal_dev(fs);
Andreas Dilger568101f2001-10-13 01:22:25 -06001510 exit(ext2fs_close(fs) ? 1 : 0);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001511 }
1512
Theodore Ts'o3839e651997-04-26 13:21:57 +00001513 if (bad_blocks_filename)
1514 read_bb_file(fs, &bb_list, bad_blocks_filename);
1515 if (cflag)
1516 test_disk(fs, &bb_list);
1517
1518 handle_bad_blocks(fs, bb_list);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001519 fs->stride = fs_stride;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001520 retval = ext2fs_allocate_tables(fs);
1521 if (retval) {
1522 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001523 _("while trying to allocate filesystem tables"));
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001524 exit(1);
1525 }
Theodore Ts'of3db3561997-04-26 13:34:30 +00001526 if (super_only) {
1527 fs->super->s_state |= EXT2_ERROR_FS;
1528 fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
1529 } else {
Andreas Dilger59f27242001-08-30 15:39:04 -06001530 /* rsv must be a power of two (64kB is MD RAID sb alignment) */
Theodore Ts'o54434922003-12-07 01:28:50 -05001531 unsigned int rsv = 65536 / fs->blocksize;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001532 unsigned long blocks = fs->super->s_blocks_count;
Andreas Dilger59f27242001-08-30 15:39:04 -06001533 unsigned long start;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001534 blk_t ret_blk;
1535
1536#ifdef ZAP_BOOTBLOCK
Theodore Ts'o04a96852001-08-30 21:55:26 -04001537 zap_sector(fs, 0, 2);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001538#endif
Andreas Dilger59f27242001-08-30 15:39:04 -06001539
1540 /*
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001541 * Wipe out any old MD RAID (or other) metadata at the end
1542 * of the device. This will also verify that the device is
Andreas Dilger59f27242001-08-30 15:39:04 -06001543 * as large as we think. Be careful with very small devices.
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001544 */
Andreas Dilger59f27242001-08-30 15:39:04 -06001545 start = (blocks & ~(rsv - 1));
1546 if (start > rsv)
1547 start -= rsv;
1548 if (start > 0)
1549 retval = zero_blocks(fs, start, blocks - start,
1550 NULL, &ret_blk, NULL);
1551
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001552 if (retval) {
1553 com_err(program_name, retval,
Theodore Ts'of044b4d2002-08-17 13:32:21 -04001554 _("while zeroing block %u at end of filesystem"),
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001555 ret_blk);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001556 }
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001557 write_inode_tables(fs);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001558 create_root_dir(fs);
1559 create_lost_and_found(fs);
1560 reserve_inodes(fs);
1561 create_bad_block_inode(fs, bb_list);
Theodore Ts'oea774312005-01-28 11:45:28 -05001562 if (fs->super->s_feature_compat &
1563 EXT2_FEATURE_COMPAT_RESIZE_INODE) {
1564 retval = ext2fs_create_resize_inode(fs);
1565 if (retval) {
1566 com_err("ext2fs_create_resize_inode", retval,
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001567 _("while reserving blocks for online resize"));
Theodore Ts'oea774312005-01-28 11:45:28 -05001568 exit(1);
1569 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001570 }
Theodore Ts'of3db3561997-04-26 13:34:30 +00001571 }
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001572
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001573 if (journal_device) {
1574 ext2_filsys jfs;
1575
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001576 if (!force)
1577 check_plausibility(journal_device);
Theodore Ts'o63985322001-01-03 17:02:13 +00001578 check_mount(journal_device, force, _("journal"));
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001579
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001580 retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
1581 EXT2_FLAG_JOURNAL_DEV_OK, 0,
1582 fs->blocksize, unix_io_manager, &jfs);
1583 if (retval) {
1584 com_err(program_name, retval,
1585 _("while trying to open journal device %s\n"),
1586 journal_device);
1587 exit(1);
1588 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001589 if (!quiet) {
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001590 printf(_("Adding journal to device %s: "),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001591 journal_device);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001592 fflush(stdout);
1593 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001594 retval = ext2fs_add_journal_device(fs, jfs);
1595 if(retval) {
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001596 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00001597 _("\n\twhile trying to add journal to device %s"),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001598 journal_device);
1599 exit(1);
1600 }
1601 if (!quiet)
1602 printf(_("done\n"));
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001603 ext2fs_close(jfs);
Andreas Dilger2d155762001-08-17 03:48:11 -06001604 free(journal_device);
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001605 } else if (journal_size) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00001606 journal_blocks = figure_journal_size(journal_size, fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001607
1608 if (!journal_blocks) {
1609 fs->super->s_feature_compat &=
1610 ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
1611 goto no_journal;
1612 }
1613 if (!quiet) {
Theodore Ts'o16ad3332000-12-31 03:21:56 +00001614 printf(_("Creating journal (%d blocks): "),
1615 journal_blocks);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001616 fflush(stdout);
1617 }
Theodore Ts'o63985322001-01-03 17:02:13 +00001618 retval = ext2fs_add_journal_inode(fs, journal_blocks,
1619 journal_flags);
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001620 if (retval) {
1621 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00001622 _("\n\twhile trying to create journal"));
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001623 exit(1);
1624 }
1625 if (!quiet)
1626 printf(_("done\n"));
1627 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001628no_journal:
1629
Theodore Ts'o3839e651997-04-26 13:21:57 +00001630 if (!quiet)
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001631 printf(_("Writing superblocks and "
1632 "filesystem accounting information: "));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00001633 retval = ext2fs_flush(fs);
1634 if (retval) {
Theodore Ts'o66938372002-03-08 00:14:46 -05001635 fprintf(stderr,
1636 _("\nWarning, had trouble writing out superblocks."));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00001637 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001638 if (!quiet) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00001639 printf(_("done\n\n"));
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001640 if (!getenv("MKE2FS_SKIP_CHECK_MSG"))
1641 print_check_message(fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001642 }
Andreas Dilger568101f2001-10-13 01:22:25 -06001643 val = ext2fs_close(fs);
1644 return (retval || val) ? 1 : 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001645}