blob: 61f45aa67506f5e150eedfea08ac2c61150ab183 [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'o9dc6ad12006-03-23 22:00:01 -050054#include "profile.h"
Theodore Ts'oa6d83022006-12-26 03:38:07 -050055#include "prof_err.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000056#include "../version.h"
Theodore Ts'od9c56d32000-02-08 00:47:55 +000057#include "nls-enable.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000058
59#define STRIDE_LENGTH 8
60
Theodore Ts'o6733c2f1999-11-23 02:23:30 +000061#ifndef __sparc__
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000062#define ZAP_BOOTBLOCK
63#endif
64
Theodore Ts'o3839e651997-04-26 13:21:57 +000065extern int isatty(int);
Theodore Ts'of3db3561997-04-26 13:34:30 +000066extern FILE *fpopen(const char *cmd, const char *mode);
Theodore Ts'o3839e651997-04-26 13:21:57 +000067
68const char * program_name = "mke2fs";
Theodore Ts'od48755e2000-12-09 14:36:04 +000069const char * device_name /* = NULL */;
Theodore Ts'o3839e651997-04-26 13:21:57 +000070
71/* Command line options */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000072int cflag;
73int verbose;
74int quiet;
75int super_only;
76int force;
77int noaction;
78int journal_size;
79int journal_flags;
Theodore Ts'oa4396e92008-04-18 10:19:27 -040080int lazy_itable_init;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000081char *bad_blocks_filename;
82__u32 fs_stride;
Theodore Ts'o3839e651997-04-26 13:21:57 +000083
Theodore Ts'o9b9a7802005-12-10 21:50:30 -050084struct ext2_super_block fs_param;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +000085char *creator_os;
86char *volume_label;
87char *mount_dir;
88char *journal_device;
89int sync_kludge; /* Set using the MKE2FS_SYNC env. option */
Theodore Ts'o3839e651997-04-26 13:21:57 +000090
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050091profile_t profile;
92
Theodore Ts'o31e29a12002-05-17 10:53:07 -040093int sys_page_size = 4096;
Theodore Ts'od99225e2004-09-25 07:40:12 -040094int linux_version_code = 0;
Theodore Ts'o31e29a12002-05-17 10:53:07 -040095
Theodore Ts'o63985322001-01-03 17:02:13 +000096static void usage(void)
Theodore Ts'o3839e651997-04-26 13:21:57 +000097{
Theodore Ts'obdd80f22008-02-28 21:12:31 -050098 fprintf(stderr, _("Usage: %s [-c|-l filename] [-b block-size] "
Andreas Dilger067911a2006-07-15 22:08:20 -040099 "[-f fragment-size]\n\t[-i bytes-per-inode] [-I inode-size] "
Theodore Ts'obdd80f22008-02-28 21:12:31 -0500100 "[-J journal-options]\n"
Andreas Dilger067911a2006-07-15 22:08:20 -0400101 "\t[-N number-of-inodes] [-m reserved-blocks-percentage] "
102 "[-o creator-os]\n\t[-g blocks-per-group] [-L volume-label] "
103 "[-M last-mounted-directory]\n\t[-O feature[,...]] "
Theodore Ts'obdd80f22008-02-28 21:12:31 -0500104 "[-r fs-revision] [-E extended-option[,...]]\n"
105 "\t[-T fs-type] [-jnqvFSV] device [blocks-count]\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000106 program_name);
107 exit(1);
108}
109
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000110static int int_log2(int arg)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000111{
112 int l = 0;
113
114 arg >>= 1;
115 while (arg) {
116 l++;
117 arg >>= 1;
118 }
119 return l;
120}
121
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000122static int int_log10(unsigned int arg)
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000123{
124 int l;
125
126 for (l=0; arg ; l++)
127 arg = arg / 10;
128 return l;
129}
130
Theodore Ts'od99225e2004-09-25 07:40:12 -0400131static int parse_version_number(const char *s)
132{
133 int major, minor, rev;
134 char *endptr;
135 const char *cp = s;
136
137 if (!s)
138 return 0;
139 major = strtol(cp, &endptr, 10);
140 if (cp == endptr || *endptr != '.')
141 return 0;
142 cp = endptr + 1;
143 minor = strtol(cp, &endptr, 10);
144 if (cp == endptr || *endptr != '.')
145 return 0;
146 cp = endptr + 1;
147 rev = strtol(cp, &endptr, 10);
148 if (cp == endptr)
149 return 0;
150 return ((((major * 256) + minor) * 256) + rev);
151}
152
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000153/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000154 * Helper function for read_bb_file and test_disk
155 */
Theodore Ts'o54434922003-12-07 01:28:50 -0500156static void invalid_block(ext2_filsys fs EXT2FS_ATTR((unused)), blk_t blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000157{
Theodore Ts'o66938372002-03-08 00:14:46 -0500158 fprintf(stderr, _("Bad block %u out of range; ignored.\n"), blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000159 return;
160}
161
162/*
163 * Reads the bad blocks list from a file
164 */
165static void read_bb_file(ext2_filsys fs, badblocks_list *bb_list,
166 const char *bad_blocks_file)
167{
168 FILE *f;
169 errcode_t retval;
170
171 f = fopen(bad_blocks_file, "r");
172 if (!f) {
173 com_err("read_bad_blocks_file", errno,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000174 _("while trying to open %s"), bad_blocks_file);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000175 exit(1);
176 }
177 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
178 fclose (f);
179 if (retval) {
180 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000181 _("while reading in list of bad blocks from file"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000182 exit(1);
183 }
184}
185
186/*
187 * Runs the badblocks program to test the disk
188 */
189static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
190{
191 FILE *f;
192 errcode_t retval;
193 char buf[1024];
194
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400195 sprintf(buf, "badblocks -b %d -X %s%s%s %u", fs->blocksize,
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500196 quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
Theodore Ts'o8ade4792006-11-08 00:41:50 -0500197 fs->device_name, fs->super->s_blocks_count-1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000198 if (verbose)
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000199 printf(_("Running command: %s\n"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000200 f = popen(buf, "r");
201 if (!f) {
202 com_err("popen", errno,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400203 _("while trying to run '%s'"), buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000204 exit(1);
205 }
206 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000207 pclose(f);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000208 if (retval) {
209 com_err("ext2fs_read_bb_FILE", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000210 _("while processing list of bad blocks from program"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211 exit(1);
212 }
213}
214
215static void handle_bad_blocks(ext2_filsys fs, badblocks_list bb_list)
216{
Theodore Ts'o54434922003-12-07 01:28:50 -0500217 dgrp_t i;
218 blk_t j;
219 unsigned must_be_good;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000220 blk_t blk;
221 badblocks_iterate bb_iter;
222 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000223 blk_t group_block;
224 int group;
225 int group_bad;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000226
227 if (!bb_list)
228 return;
229
230 /*
231 * The primary superblock and group descriptors *must* be
232 * good; if not, abort.
233 */
234 must_be_good = fs->super->s_first_data_block + 1 + fs->desc_blocks;
235 for (i = fs->super->s_first_data_block; i <= must_be_good; i++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000236 if (ext2fs_badblocks_list_test(bb_list, i)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000237 fprintf(stderr, _("Block %d in primary "
238 "superblock/group descriptor area bad.\n"), i);
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400239 fprintf(stderr, _("Blocks %u through %u must be good "
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000240 "in order to build a filesystem.\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000241 fs->super->s_first_data_block, must_be_good);
Theodore Ts'o54434922003-12-07 01:28:50 -0500242 fputs(_("Aborting....\n"), stderr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000243 exit(1);
244 }
245 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000246
247 /*
248 * See if any of the bad blocks are showing up in the backup
249 * superblocks and/or group descriptors. If so, issue a
250 * warning and adjust the block counts appropriately.
251 */
252 group_block = fs->super->s_first_data_block +
253 fs->super->s_blocks_per_group;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000254
255 for (i = 1; i < fs->group_desc_count; i++) {
Theodore Ts'o92bcc591998-02-16 22:29:34 +0000256 group_bad = 0;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000257 for (j=0; j < fs->desc_blocks+1; j++) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000258 if (ext2fs_badblocks_list_test(bb_list,
259 group_block + j)) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000260 if (!group_bad)
261 fprintf(stderr,
Takashi Sato8deb80a2006-03-18 21:43:46 -0500262_("Warning: the backup superblock/group descriptors at block %u contain\n"
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000263" bad blocks.\n\n"),
Theodore Ts'of3db3561997-04-26 13:34:30 +0000264 group_block);
265 group_bad++;
266 group = ext2fs_group_of_blk(fs, group_block+j);
267 fs->group_desc[group].bg_free_blocks_count++;
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400268 ext2fs_group_desc_csum_set(fs, group);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000269 fs->super->s_free_blocks_count++;
270 }
271 }
272 group_block += fs->super->s_blocks_per_group;
273 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000274
275 /*
276 * Mark all the bad blocks as used...
277 */
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000278 retval = ext2fs_badblocks_list_iterate_begin(bb_list, &bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000279 if (retval) {
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000280 com_err("ext2fs_badblocks_list_iterate_begin", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000281 _("while marking bad blocks as used"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000282 exit(1);
283 }
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000284 while (ext2fs_badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'of3db3561997-04-26 13:34:30 +0000285 ext2fs_mark_block_bitmap(fs->block_map, blk);
Theodore Ts'ocbbf0312001-06-13 00:12:04 +0000286 ext2fs_badblocks_list_iterate_end(bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000287}
288
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000289/*
290 * These functions implement a generalized progress meter.
291 */
292struct progress_struct {
293 char format[20];
294 char backup[80];
295 __u32 max;
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400296 int skip_progress;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000297};
298
299static void progress_init(struct progress_struct *progress,
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500300 const char *label,__u32 max)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000301{
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000302 int i;
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000303
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000304 memset(progress, 0, sizeof(struct progress_struct));
305 if (quiet)
306 return;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000307
308 /*
309 * Figure out how many digits we need
310 */
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000311 i = int_log10(max);
312 sprintf(progress->format, "%%%dd/%%%dld", i, i);
313 memset(progress->backup, '\b', sizeof(progress->backup)-1);
314 progress->backup[sizeof(progress->backup)-1] = 0;
Theodore Ts'o54434922003-12-07 01:28:50 -0500315 if ((2*i)+1 < (int) sizeof(progress->backup))
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000316 progress->backup[(2*i)+1] = 0;
317 progress->max = max;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000318
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400319 progress->skip_progress = 0;
320 if (getenv("MKE2FS_SKIP_PROGRESS"))
321 progress->skip_progress++;
322
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000323 fputs(label, stdout);
324 fflush(stdout);
325}
326
327static void progress_update(struct progress_struct *progress, __u32 val)
328{
Theodore Ts'o1cca86f2003-09-01 09:28:18 -0400329 if ((progress->format[0] == 0) || progress->skip_progress)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000330 return;
331 printf(progress->format, val, progress->max);
332 fputs(progress->backup, stdout);
333}
334
335static void progress_close(struct progress_struct *progress)
336{
337 if (progress->format[0] == 0)
338 return;
339 fputs(_("done \n"), stdout);
340}
341
342
343/*
344 * Helper function which zeros out _num_ blocks starting at _blk_. In
345 * case of an error, the details of the error is returned via _ret_blk_
346 * and _ret_count_ if they are non-NULL pointers. Returns 0 on
347 * success, and an error code on an error.
348 *
349 * As a special case, if the first argument is NULL, then it will
350 * attempt to free the static zeroizing buffer. (This is to keep
351 * programs that check for memory leaks happy.)
352 */
353static errcode_t zero_blocks(ext2_filsys fs, blk_t blk, int num,
354 struct progress_struct *progress,
355 blk_t *ret_blk, int *ret_count)
356{
357 int j, count, next_update, next_update_incr;
358 static char *buf;
359 errcode_t retval;
360
361 /* If fs is null, clean up the static buffer and return */
362 if (!fs) {
363 if (buf) {
364 free(buf);
365 buf = 0;
366 }
367 return 0;
368 }
369 /* Allocate the zeroizing buffer if necessary */
370 if (!buf) {
371 buf = malloc(fs->blocksize * STRIDE_LENGTH);
372 if (!buf) {
373 com_err("malloc", ENOMEM,
374 _("while allocating zeroizing buffer"));
375 exit(1);
376 }
377 memset(buf, 0, fs->blocksize * STRIDE_LENGTH);
378 }
379 /* OK, do the write loop */
380 next_update = 0;
381 next_update_incr = num / 100;
382 if (next_update_incr < 1)
383 next_update_incr = 1;
384 for (j=0; j < num; j += STRIDE_LENGTH, blk += STRIDE_LENGTH) {
Theodore Ts'of044b4d2002-08-17 13:32:21 -0400385 count = num - j;
386 if (count > STRIDE_LENGTH)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000387 count = STRIDE_LENGTH;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000388 retval = io_channel_write_blk(fs->io, blk, count, buf);
389 if (retval) {
390 if (ret_count)
391 *ret_count = count;
392 if (ret_blk)
393 *ret_blk = blk;
394 return retval;
395 }
396 if (progress && j > next_update) {
397 next_update += num / 100;
398 progress_update(progress, blk);
399 }
400 }
401 return 0;
402}
403
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400404static void write_inode_tables(ext2_filsys fs, int lazy_flag)
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000405{
406 errcode_t retval;
407 blk_t blk;
Theodore Ts'o54434922003-12-07 01:28:50 -0500408 dgrp_t i;
409 int num;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000410 struct progress_struct progress;
411
412 if (quiet)
413 memset(&progress, 0, sizeof(progress));
414 else
415 progress_init(&progress, _("Writing inode tables: "),
416 fs->group_desc_count);
417
Theodore Ts'o3839e651997-04-26 13:21:57 +0000418 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000419 progress_update(&progress, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000420
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000421 blk = fs->group_desc[i].bg_inode_table;
422 num = fs->inode_blocks_per_group;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000423
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400424 if (!(lazy_flag &&
425 (fs->group_desc[i].bg_flags & EXT2_BG_INODE_UNINIT))) {
426 retval = zero_blocks(fs, blk, num, 0, &blk, &num);
427 if (retval) {
428 fprintf(stderr, _("\nCould not write %d "
429 "blocks in inode table starting at %u: %s\n"),
430 num, blk, error_message(retval));
431 exit(1);
432 }
Jose R. Santosd2d22a22007-10-21 21:03:36 -0500433 /* The kernel doesn't need to zero the itable blocks */
434 fs->group_desc[i].bg_flags |= EXT2_BG_INODE_ZEROED;
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400435 ext2fs_group_desc_csum_set(fs, i);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000436 }
Theodore Ts'o7d5633c1999-02-09 08:14:28 +0000437 if (sync_kludge) {
438 if (sync_kludge == 1)
439 sync();
440 else if ((i % sync_kludge) == 0)
441 sync();
442 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000443 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000444 zero_blocks(0, 0, 0, 0, 0, 0);
445 progress_close(&progress);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000446}
447
448static void create_root_dir(ext2_filsys fs)
449{
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400450 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000451 struct ext2_inode inode;
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400452 __u32 uid, gid;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000453
454 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, 0);
455 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000456 com_err("ext2fs_mkdir", retval, _("while creating root dir"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000457 exit(1);
458 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000459 if (geteuid()) {
460 retval = ext2fs_read_inode(fs, EXT2_ROOT_INO, &inode);
461 if (retval) {
462 com_err("ext2fs_read_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000463 _("while reading root inode"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000464 exit(1);
465 }
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400466 uid = getuid();
467 inode.i_uid = uid;
Theodore Ts'o15343922008-01-21 09:45:25 -0500468 ext2fs_set_i_uid_high(inode, uid >> 16);
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400469 if (uid) {
470 gid = getgid();
471 inode.i_gid = gid;
Theodore Ts'o15343922008-01-21 09:45:25 -0500472 ext2fs_set_i_gid_high(inode, gid >> 16);
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400473 }
Theodore Ts'oe27b4562005-03-21 01:02:53 -0500474 retval = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000475 if (retval) {
476 com_err("ext2fs_write_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000477 _("while setting root inode ownership"));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000478 exit(1);
479 }
480 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000481}
482
483static void create_lost_and_found(ext2_filsys fs)
484{
Theodore Ts'o2d328bb2008-03-17 23:17:13 -0400485 unsigned int lpf_size = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000486 errcode_t retval;
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000487 ext2_ino_t ino;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000488 const char *name = "lost+found";
489 int i;
490
Theodore Ts'o6a525062001-12-24 09:40:00 -0500491 fs->umask = 077;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000492 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, 0, name);
493 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000494 com_err("ext2fs_mkdir", retval,
495 _("while creating /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000496 exit(1);
497 }
498
499 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name, strlen(name), 0, &ino);
500 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000501 com_err("ext2_lookup", retval,
502 _("while looking up /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000503 exit(1);
504 }
505
506 for (i=1; i < EXT2_NDIR_BLOCKS; i++) {
Andreas Dilger8c7c6eb2008-01-09 20:59:47 +0100507 /* Ensure that lost+found is at least 2 blocks, so we always
508 * test large empty blocks for big-block filesystems. */
509 if ((lpf_size += fs->blocksize) >= 16*1024 &&
510 lpf_size >= 2 * fs->blocksize)
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000511 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000512 retval = ext2fs_expand_dir(fs, ino);
513 if (retval) {
514 com_err("ext2fs_expand_dir", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000515 _("while expanding /lost+found"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000516 exit(1);
517 }
Theodore Ts'o6a525062001-12-24 09:40:00 -0500518 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000519}
520
521static void create_bad_block_inode(ext2_filsys fs, badblocks_list bb_list)
522{
523 errcode_t retval;
524
Theodore Ts'of3db3561997-04-26 13:34:30 +0000525 ext2fs_mark_inode_bitmap(fs->inode_map, EXT2_BAD_INO);
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400526 ext2fs_inode_alloc_stats2(fs, EXT2_BAD_INO, +1, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000527 retval = ext2fs_update_bb_inode(fs, bb_list);
528 if (retval) {
529 com_err("ext2fs_update_bb_inode", retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000530 _("while setting bad block inode"));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000531 exit(1);
532 }
533
534}
535
536static void reserve_inodes(ext2_filsys fs)
537{
Theodore Ts'odfcdc322001-01-11 15:38:00 +0000538 ext2_ino_t i;
539 int group;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000540
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400541 for (i = EXT2_ROOT_INO + 1; i < EXT2_FIRST_INODE(fs->super); i++)
542 ext2fs_inode_alloc_stats2(fs, i, +1, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000543 ext2fs_mark_ib_dirty(fs);
544}
545
Theodore Ts'o756df352002-03-07 20:52:12 -0500546#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500547#define BSD_MAGICDISK (0x57455682UL) /* The disk magic number reversed */
Theodore Ts'o756df352002-03-07 20:52:12 -0500548#define BSD_LABEL_OFFSET 64
Theodore Ts'o756df352002-03-07 20:52:12 -0500549
Theodore Ts'o04a96852001-08-30 21:55:26 -0400550static void zap_sector(ext2_filsys fs, int sect, int nsect)
Theodore Ts'of3db3561997-04-26 13:34:30 +0000551{
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400552 char *buf;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000553 int retval;
Theodore Ts'o756df352002-03-07 20:52:12 -0500554 unsigned int *magic;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000555
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400556 buf = malloc(512*nsect);
Andreas Dilger568101f2001-10-13 01:22:25 -0600557 if (!buf) {
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500558 printf(_("Out of memory erasing sectors %d-%d\n"),
559 sect, sect + nsect - 1);
Andreas Dilger568101f2001-10-13 01:22:25 -0600560 exit(1);
561 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500562
Theodore Ts'o7ef3bb82002-03-08 03:01:53 -0500563 if (sect == 0) {
564 /* Check for a BSD disklabel, and don't erase it if so */
565 retval = io_channel_read_blk(fs->io, 0, -512, buf);
566 if (retval)
567 fprintf(stderr,
568 _("Warning: could not read block 0: %s\n"),
569 error_message(retval));
570 else {
571 magic = (unsigned int *) (buf + BSD_LABEL_OFFSET);
572 if ((*magic == BSD_DISKMAGIC) ||
573 (*magic == BSD_MAGICDISK))
574 return;
575 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500576 }
Theodore Ts'o756df352002-03-07 20:52:12 -0500577
Theodore Ts'o70988102002-07-14 08:00:00 -0400578 memset(buf, 0, 512*nsect);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000579 io_channel_set_blksize(fs->io, 512);
Theodore Ts'o04a96852001-08-30 21:55:26 -0400580 retval = io_channel_write_blk(fs->io, sect, -512*nsect, buf);
Theodore Ts'oe41784e2000-08-14 14:44:15 +0000581 io_channel_set_blksize(fs->io, fs->blocksize);
Theodore Ts'o3f85f652001-09-17 10:38:06 -0400582 free(buf);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000583 if (retval)
Theodore Ts'o66938372002-03-08 00:14:46 -0500584 fprintf(stderr, _("Warning: could not erase sector %d: %s\n"),
585 sect, error_message(retval));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000586}
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000587
588static void create_journal_dev(ext2_filsys fs)
589{
590 struct progress_struct progress;
591 errcode_t retval;
592 char *buf;
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000593 blk_t blk;
594 int count;
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000595
Theodore Ts'od6a27e02001-04-17 02:34:41 +0000596 retval = ext2fs_create_journal_superblock(fs,
597 fs->super->s_blocks_count, 0, &buf);
598 if (retval) {
599 com_err("create_journal_dev", retval,
600 _("while initializing journal superblock"));
601 exit(1);
602 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000603 if (quiet)
604 memset(&progress, 0, sizeof(progress));
605 else
606 progress_init(&progress, _("Zeroing journal device: "),
607 fs->super->s_blocks_count);
608
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000609 retval = zero_blocks(fs, 0, fs->super->s_blocks_count,
610 &progress, &blk, &count);
611 if (retval) {
612 com_err("create_journal_dev", retval,
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +0000613 _("while zeroing journal device (block %u, count %d)"),
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000614 blk, count);
615 exit(1);
616 }
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000617 zero_blocks(0, 0, 0, 0, 0, 0);
618
Theodore Ts'odc2ec522001-01-18 01:51:15 +0000619 retval = io_channel_write_blk(fs->io,
620 fs->super->s_first_data_block+1,
621 1, buf);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +0000622 if (retval) {
623 com_err("create_journal_dev", retval,
624 _("while writing journal superblock"));
625 exit(1);
626 }
627 progress_close(&progress);
628}
Theodore Ts'of3db3561997-04-26 13:34:30 +0000629
Theodore Ts'o3839e651997-04-26 13:21:57 +0000630static void show_stats(ext2_filsys fs)
631{
Theodore Ts'oef9abe52001-01-01 15:31:53 +0000632 struct ext2_super_block *s = fs->super;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000633 char buf[80];
Theodore Ts'o63253942005-03-19 01:13:22 -0500634 char *os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000635 blk_t group_block;
Theodore Ts'o54434922003-12-07 01:28:50 -0500636 dgrp_t i;
637 int need, col_left;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000638
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500639 if (fs_param.s_blocks_count != s->s_blocks_count)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500640 fprintf(stderr, _("warning: %u blocks unused.\n\n"),
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500641 fs_param.s_blocks_count - s->s_blocks_count);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000642
643 memset(buf, 0, sizeof(buf));
644 strncpy(buf, s->s_volume_name, sizeof(s->s_volume_name));
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000645 printf(_("Filesystem label=%s\n"), buf);
Theodore Ts'o54434922003-12-07 01:28:50 -0500646 fputs(_("OS type: "), stdout);
Theodore Ts'o63253942005-03-19 01:13:22 -0500647 os = e2p_os2string(fs->super->s_creator_os);
648 fputs(os, stdout);
649 free(os);
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000650 printf("\n");
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000651 printf(_("Block size=%u (log=%u)\n"), fs->blocksize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000652 s->s_log_block_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000653 printf(_("Fragment size=%u (log=%u)\n"), fs->fragsize,
Theodore Ts'o50787ea1999-07-19 15:30:21 +0000654 s->s_log_frag_size);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000655 printf(_("%u inodes, %u blocks\n"), s->s_inodes_count,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000656 s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000657 printf(_("%u blocks (%2.2f%%) reserved for the super user\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000658 s->s_r_blocks_count,
659 100.0 * s->s_r_blocks_count / s->s_blocks_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000660 printf(_("First data block=%u\n"), s->s_first_data_block);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500661 if (s->s_reserved_gdt_blocks)
662 printf(_("Maximum filesystem blocks=%lu\n"),
663 (s->s_reserved_gdt_blocks + fs->desc_blocks) *
Valerie Clementf2de1d32007-08-30 17:38:13 +0200664 EXT2_DESC_PER_BLOCK(s) * s->s_blocks_per_group);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000665 if (fs->group_desc_count > 1)
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000666 printf(_("%u block groups\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000667 else
Theodore Ts'oc8c071a2001-01-11 16:08:23 +0000668 printf(_("%u block group\n"), fs->group_desc_count);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000669 printf(_("%u blocks per group, %u fragments per group\n"),
Theodore Ts'o3839e651997-04-26 13:21:57 +0000670 s->s_blocks_per_group, s->s_frags_per_group);
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000671 printf(_("%u inodes per group\n"), s->s_inodes_per_group);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000672
673 if (fs->group_desc_count == 1) {
674 printf("\n");
675 return;
676 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500677
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000678 printf(_("Superblock backups stored on blocks: "));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000679 group_block = s->s_first_data_block;
680 col_left = 0;
681 for (i = 1; i < fs->group_desc_count; i++) {
682 group_block += s->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000683 if (!ext2fs_bg_has_super(fs, i))
684 continue;
Theodore Ts'o76714331999-10-20 18:06:29 +0000685 if (i != 1)
686 printf(", ");
Theodore Ts'o6733c2f1999-11-23 02:23:30 +0000687 need = int_log10(group_block) + 2;
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000688 if (need > col_left) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000689 printf("\n\t");
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000690 col_left = 72;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000691 }
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000692 col_left -= need;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000693 printf("%u", group_block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000694 }
695 printf("\n\n");
696}
697
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000698/*
699 * Set the S_CREATOR_OS field. Return true if OS is known,
700 * otherwise, 0.
701 */
702static int set_os(struct ext2_super_block *sb, char *os)
703{
704 if (isdigit (*os))
705 sb->s_creator_os = atoi (os);
706 else if (strcasecmp(os, "linux") == 0)
707 sb->s_creator_os = EXT2_OS_LINUX;
708 else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
709 sb->s_creator_os = EXT2_OS_HURD;
Theodore Ts'oea1e8f42005-01-19 18:18:44 -0500710 else if (strcasecmp(os, "freebsd") == 0)
711 sb->s_creator_os = EXT2_OS_FREEBSD;
712 else if (strcasecmp(os, "lites") == 0)
713 sb->s_creator_os = EXT2_OS_LITES;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000714 else
715 return 0;
716 return 1;
717}
718
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000719#define PATH_SET "PATH=/sbin"
720
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500721static void parse_extended_opts(struct ext2_super_block *param,
722 const char *opts)
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000723{
Theodore Ts'o2d328bb2008-03-17 23:17:13 -0400724 char *buf, *token, *next, *p, *arg, *badopt = 0;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000725 int len;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500726 int r_usage = 0;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000727
728 len = strlen(opts);
729 buf = malloc(len+1);
730 if (!buf) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500731 fprintf(stderr,
732 _("Couldn't allocate memory to parse options!\n"));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000733 exit(1);
734 }
735 strcpy(buf, opts);
736 for (token = buf; token && *token; token = next) {
737 p = strchr(token, ',');
738 next = 0;
739 if (p) {
740 *p = 0;
741 next = p+1;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500742 }
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000743 arg = strchr(token, '=');
744 if (arg) {
745 *arg = 0;
746 arg++;
747 }
748 if (strcmp(token, "stride") == 0) {
749 if (!arg) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500750 r_usage++;
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500751 badopt = token;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000752 continue;
753 }
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500754 param->s_raid_stride = strtoul(arg, &p, 0);
755 if (*p || (param->s_raid_stride == 0)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +0000756 fprintf(stderr,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400757 _("Invalid stride parameter: %s\n"),
758 arg);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500759 r_usage++;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000760 continue;
761 }
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500762 } else if (strcmp(token, "stripe-width") == 0 ||
763 strcmp(token, "stripe_width") == 0) {
764 if (!arg) {
765 r_usage++;
766 badopt = token;
767 continue;
768 }
769 param->s_raid_stripe_width = strtoul(arg, &p, 0);
770 if (*p || (param->s_raid_stripe_width == 0)) {
771 fprintf(stderr,
772 _("Invalid stripe-width parameter: %s\n"),
773 arg);
774 r_usage++;
775 continue;
776 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500777 } else if (!strcmp(token, "resize")) {
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500778 unsigned long resize, bpg, rsv_groups;
779 unsigned long group_desc_count, desc_blocks;
780 unsigned int gdpb, blocksize;
781 int rsv_gdb;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500782
783 if (!arg) {
784 r_usage++;
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500785 badopt = token;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500786 continue;
787 }
788
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500789 resize = parse_num_blocks(arg,
790 param->s_log_block_size);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500791
792 if (resize == 0) {
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500793 fprintf(stderr,
794 _("Invalid resize parameter: %s\n"),
795 arg);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500796 r_usage++;
797 continue;
798 }
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500799 if (resize <= param->s_blocks_count) {
800 fprintf(stderr,
Theodore Ts'of37ab682005-05-05 23:15:55 -0400801 _("The resize maximum must be greater "
802 "than the filesystem size.\n"));
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500803 r_usage++;
804 continue;
805 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500806
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500807 blocksize = EXT2_BLOCK_SIZE(param);
808 bpg = param->s_blocks_per_group;
809 if (!bpg)
810 bpg = blocksize * 8;
Valerie Clementf2de1d32007-08-30 17:38:13 +0200811 gdpb = EXT2_DESC_PER_BLOCK(param);
Theodore Ts'o69022e02006-08-30 01:57:00 -0400812 group_desc_count =
813 ext2fs_div_ceil(param->s_blocks_count, bpg);
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500814 desc_blocks = (group_desc_count +
815 gdpb - 1) / gdpb;
Theodore Ts'o69022e02006-08-30 01:57:00 -0400816 rsv_groups = ext2fs_div_ceil(resize, bpg);
817 rsv_gdb = ext2fs_div_ceil(rsv_groups, gdpb) -
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500818 desc_blocks;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500819 if (rsv_gdb > (int) EXT2_ADDR_PER_BLOCK(param))
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500820 rsv_gdb = EXT2_ADDR_PER_BLOCK(param);
821
822 if (rsv_gdb > 0) {
Theodore Ts'ob290d2d2006-10-18 00:31:11 -0400823 if (param->s_rev_level == EXT2_GOOD_OLD_REV) {
824 fprintf(stderr,
825 _("On-line resizing not supported with revision 0 filesystems\n"));
Brian Behlendorf21400382007-05-31 11:30:47 -0400826 free(buf);
Theodore Ts'ob290d2d2006-10-18 00:31:11 -0400827 exit(1);
828 }
Theodore Ts'oc6a44132005-01-05 11:12:20 -0500829 param->s_feature_compat |=
830 EXT2_FEATURE_COMPAT_RESIZE_INODE;
831
832 param->s_reserved_gdt_blocks = rsv_gdb;
833 }
Theodore Ts'o6cb27402008-01-26 19:06:35 -0500834 } else if (!strcmp(token, "test_fs")) {
835 param->s_flags |= EXT2_FLAGS_TEST_FILESYS;
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400836 } else if (!strcmp(token, "lazy_itable_init")) {
837 if (!arg) {
838 r_usage++;
839 badopt = token;
840 continue;
841 }
842 lazy_itable_init = strtoul(arg, &p, 0);
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500843 } else {
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500844 r_usage++;
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500845 badopt = token;
846 }
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000847 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500848 if (r_usage) {
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500849 fprintf(stderr, _("\nBad option(s) specified: %s\n\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -0400850 "Extended options are separated by commas, "
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000851 "and may take an argument which\n"
852 "\tis set off by an equals ('=') sign.\n\n"
Theodore Ts'obb145b02005-06-20 08:35:27 -0400853 "Valid extended options are:\n"
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500854 "\tstride=<RAID per-disk data chunk in blocks>\n"
855 "\tstripe-width=<RAID stride * data disks in blocks>\n"
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400856 "\tresize=<resize maximum size in blocks>\n"
857 "\tlazy_itable_init=<0 to disable, 1 to enable>\n"
858 "\ttest_fs\n\n"),
Theodore Ts'o2d328bb2008-03-17 23:17:13 -0400859 badopt ? badopt : "");
Brian Behlendorf21400382007-05-31 11:30:47 -0400860 free(buf);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000861 exit(1);
862 }
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500863 if (param->s_raid_stride &&
864 (param->s_raid_stripe_width % param->s_raid_stride) != 0)
865 fprintf(stderr, _("\nWarning: RAID stripe-width %u not an even "
866 "multiple of stride %u.\n\n"),
867 param->s_raid_stripe_width, param->s_raid_stride);
868
Brian Behlendorf21400382007-05-31 11:30:47 -0400869 free(buf);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000870}
871
Theodore Ts'o896938d1999-10-23 01:04:50 +0000872static __u32 ok_features[3] = {
Theodore Ts'o558df542008-02-27 15:01:19 -0500873 /* Compat */
Theodore Ts'o843049c2002-09-22 15:37:40 -0400874 EXT3_FEATURE_COMPAT_HAS_JOURNAL |
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500875 EXT2_FEATURE_COMPAT_RESIZE_INODE |
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400876 EXT2_FEATURE_COMPAT_DIR_INDEX |
Theodore Ts'o558df542008-02-27 15:01:19 -0500877 EXT2_FEATURE_COMPAT_EXT_ATTR,
878 /* Incompat */
879 EXT2_FEATURE_INCOMPAT_FILETYPE|
Theodore Ts'obf6b8482008-02-20 08:13:19 -0500880 EXT3_FEATURE_INCOMPAT_EXTENTS|
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400881 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|
Jose R. Santosc2d43002007-08-13 23:32:57 -0500882 EXT2_FEATURE_INCOMPAT_META_BG|
883 EXT4_FEATURE_INCOMPAT_FLEX_BG,
Theodore Ts'o558df542008-02-27 15:01:19 -0500884 /* R/O compat */
885 EXT2_FEATURE_RO_COMPAT_LARGE_FILE|
Jose R. Santosd2d22a22007-10-21 21:03:36 -0500886 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER|
887 EXT4_FEATURE_RO_COMPAT_GDT_CSUM
Theodore Ts'o896938d1999-10-23 01:04:50 +0000888};
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000889
890
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500891static void syntax_err_report(const char *filename, long err, int line_num)
892{
893 fprintf(stderr,
894 _("Syntax error in mke2fs config file (%s, line #%d)\n\t%s\n"),
895 filename, line_num, error_message(err));
896 exit(1);
897}
898
Matthias Andreeabcfdfd2006-06-10 16:08:18 +0200899static const char *config_fn[] = { ROOT_SYSCONFDIR "/mke2fs.conf", 0 };
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500900
901static void edit_feature(const char *str, __u32 *compat_array)
902{
903 if (!str)
904 return;
905
906 if (e2p_edit_feature(str, compat_array, ok_features)) {
907 fprintf(stderr, _("Invalid filesystem option set: %s\n"),
908 str);
909 exit(1);
910 }
911}
912
Theodore Ts'o3d438362008-02-19 08:32:58 -0500913struct str_list {
914 char **list;
915 int num;
916 int max;
917};
918
919static errcode_t init_list(struct str_list *sl)
920{
921 sl->num = 0;
922 sl->max = 0;
923 sl->list = malloc((sl->max+1) * sizeof(char *));
924 if (!sl->list)
925 return ENOMEM;
926 sl->list[0] = 0;
927 return 0;
928}
929
930static errcode_t push_string(struct str_list *sl, const char *str)
931{
932 char **new_list;
933
934 if (sl->num >= sl->max) {
935 sl->max += 2;
936 new_list = realloc(sl->list, (sl->max+1) * sizeof(char *));
937 if (!new_list)
938 return ENOMEM;
939 sl->list = new_list;
940 }
941 sl->list[sl->num] = malloc(strlen(str)+1);
942 if (sl->list[sl->num] == 0)
943 return ENOMEM;
944 strcpy(sl->list[sl->num], str);
945 sl->num++;
946 sl->list[sl->num] = 0;
947 return 0;
948}
949
950static void print_str_list(char **list)
951{
952 char **cpp;
953
954 for (cpp = list; *cpp; cpp++) {
955 printf("'%s'", *cpp);
956 if (cpp[1])
957 fputs(", ", stdout);
958 }
959 fputc('\n', stdout);
960}
961
962static char **parse_fs_type(const char *fs_type,
963 const char *usage_types,
964 struct ext2_super_block *fs_param,
965 char *progname)
966{
967 const char *ext_type = 0;
968 char *parse_str;
969 char *profile_type = 0;
970 char *cp, *t;
971 const char *size_type;
972 struct str_list list;
973 int state = 0;
974 unsigned long meg;
975
976 if (init_list(&list))
977 return 0;
978
979 if (fs_type)
980 ext_type = fs_type;
981 else if (progname) {
982 ext_type = strrchr(progname, '/');
983 if (ext_type)
984 ext_type++;
985 else
986 ext_type = progname;
987
988 if (!strncmp(ext_type, "mkfs.", 5)) {
989 ext_type += 5;
990 if (ext_type[0] == 0)
991 ext_type = 0;
992 } else
993 ext_type = 0;
994 }
995
996 if (!ext_type) {
997 profile_get_string(profile, "defaults", "fs_type", 0,
998 "ext2", &profile_type);
999 ext_type = profile_type;
1000 if (!strcmp(ext_type, "ext2") && (journal_size != 0))
1001 ext_type = "ext3";
1002 }
1003
1004 meg = (1024 * 1024) / EXT2_BLOCK_SIZE(fs_param);
1005 if (fs_param->s_blocks_count < 3 * meg)
1006 size_type = "floppy";
1007 else if (fs_param->s_blocks_count < 512 * meg)
1008 size_type = "small";
1009 else
1010 size_type = "default";
1011
1012 if (!usage_types)
1013 usage_types = size_type;
1014
1015 parse_str = malloc(usage_types ? strlen(usage_types)+1 : 1);
1016 if (!parse_str) {
1017 free(list.list);
1018 return 0;
1019 }
1020 if (usage_types)
1021 strcpy(parse_str, usage_types);
1022 else
1023 *parse_str = '\0';
1024
1025 if (ext_type)
1026 push_string(&list, ext_type);
1027 cp = parse_str;
1028 while (1) {
1029 t = strchr(cp, ',');
1030 if (t)
1031 *t = '\0';
1032
1033 if (*cp)
1034 push_string(&list, cp);
1035 if (t)
1036 cp = t+1;
1037 else {
1038 cp = "";
1039 break;
1040 }
1041 }
1042 free(parse_str);
1043 if (profile_type)
1044 free(profile_type);
1045 return (list.list);
1046}
1047
1048static char *get_string_from_profile(char **fs_types, const char *opt,
1049 const char *def_val)
1050{
1051 char *ret = 0;
1052 char **cpp;
1053 int i;
1054
1055 for (i=0; fs_types[i]; i++);
1056 for (i-=1; i >=0 ; i--) {
1057 profile_get_string(profile, "fs_types", fs_types[i],
1058 opt, 0, &ret);
1059 if (ret)
1060 return ret;
1061 }
1062 profile_get_string(profile, "defaults", opt, 0, def_val, &ret);
1063 return (ret);
1064}
1065
1066static int get_int_from_profile(char **fs_types, const char *opt, int def_val)
1067{
1068 int ret;
1069 char **cpp;
1070
1071 profile_get_integer(profile, "defaults", opt, 0, def_val, &ret);
1072 for (cpp = fs_types; *cpp; cpp++)
1073 profile_get_integer(profile, "fs_types", *cpp, opt, ret, &ret);
1074 return ret;
1075}
1076
Theodore Ts'oa4396e92008-04-18 10:19:27 -04001077static int get_bool_from_profile(char **fs_types, const char *opt, int def_val)
1078{
1079 int ret;
1080 char **cpp;
1081
1082 profile_get_boolean(profile, "defaults", opt, 0, def_val, &ret);
1083 for (cpp = fs_types; *cpp; cpp++)
1084 profile_get_boolean(profile, "fs_types", *cpp, opt, ret, &ret);
1085 return ret;
1086}
Theodore Ts'o3d438362008-02-19 08:32:58 -05001087
Theodore Ts'od48bc602007-07-04 14:10:46 -04001088extern const char *mke2fs_default_profile;
1089static const char *default_files[] = { "<default>", 0 };
1090
Theodore Ts'o3839e651997-04-26 13:21:57 +00001091static void PRS(int argc, char *argv[])
1092{
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001093 int b, c;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001094 int size;
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001095 char *tmp, *tmp2;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001096 int blocksize = 0;
1097 int inode_ratio = 0;
Andreas Dilger932a4892002-05-16 03:20:07 -06001098 int inode_size = 0;
Andreas Dilgerce911142005-07-06 11:50:08 -05001099 double reserved_ratio = 5.0;
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001100 int sector_size = 0;
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001101 int show_version_only = 0;
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001102 unsigned long long num_inodes = 0; /* unsigned long long to catch too-large input */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001103 errcode_t retval;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001104 char * oldpath = getenv("PATH");
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001105 char * extended_opts = 0;
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -05001106 const char * fs_type = 0;
Theodore Ts'o3d438362008-02-19 08:32:58 -05001107 const char * usage_types = 0;
1108 char **fs_types;
Theodore Ts'o4a600561999-10-26 14:35:51 +00001109 blk_t dev_size;
Theodore Ts'o756df352002-03-07 20:52:12 -05001110#ifdef __linux__
Theodore Ts'o4a600561999-10-26 14:35:51 +00001111 struct utsname ut;
Theodore Ts'o27401561999-09-14 20:11:19 +00001112#endif
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001113 long sysval;
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001114 int s_opt = -1, r_opt = -1;
1115 char *fs_features = 0;
1116 int use_bsize;
Theodore Ts'o642935c2006-11-14 23:38:17 -05001117 char *newpath;
1118 int pathlen = sizeof(PATH_SET) + 1;
1119
1120 if (oldpath)
1121 pathlen += strlen(oldpath);
1122 newpath = malloc(pathlen);
1123 strcpy(newpath, PATH_SET);
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001124
Theodore Ts'o3839e651997-04-26 13:21:57 +00001125 /* Update our PATH to include /sbin */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001126 if (oldpath) {
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001127 strcat (newpath, ":");
1128 strcat (newpath, oldpath);
Theodore Ts'o642935c2006-11-14 23:38:17 -05001129 }
1130 putenv (newpath);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001131
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001132 tmp = getenv("MKE2FS_SYNC");
1133 if (tmp)
1134 sync_kludge = atoi(tmp);
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001135
1136 /* Determine the system page size if possible */
1137#ifdef HAVE_SYSCONF
1138#if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
1139#define _SC_PAGESIZE _SC_PAGE_SIZE
1140#endif
1141#ifdef _SC_PAGESIZE
1142 sysval = sysconf(_SC_PAGESIZE);
Andreas Dilgeraab6fe72002-05-18 13:27:33 -06001143 if (sysval > 0)
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001144 sys_page_size = sysval;
1145#endif /* _SC_PAGESIZE */
1146#endif /* HAVE_SYSCONF */
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001147
1148 if ((tmp = getenv("MKE2FS_CONFIG")) != NULL)
1149 config_fn[0] = tmp;
1150 profile_set_syntax_err_cb(syntax_err_report);
Theodore Ts'od48bc602007-07-04 14:10:46 -04001151 retval = profile_init(config_fn, &profile);
1152 if (retval == ENOENT) {
1153 profile_init(default_files, &profile);
1154 profile_set_default(profile, mke2fs_default_profile);
1155 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001156
Theodore Ts'o3839e651997-04-26 13:21:57 +00001157 setbuf(stdout, NULL);
1158 setbuf(stderr, NULL);
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001159 add_error_table(&et_ext2_error_table);
1160 add_error_table(&et_prof_error_table);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001161 memset(&fs_param, 0, sizeof(struct ext2_super_block));
1162 fs_param.s_rev_level = 1; /* Create revision 1 filesystems now */
Theodore Ts'o843049c2002-09-22 15:37:40 -04001163
Theodore Ts'o756df352002-03-07 20:52:12 -05001164#ifdef __linux__
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001165 if (uname(&ut)) {
1166 perror("uname");
1167 exit(1);
1168 }
Theodore Ts'od99225e2004-09-25 07:40:12 -04001169 linux_version_code = parse_version_number(ut.release);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001170 if (linux_version_code && linux_version_code < (2*65536 + 2*256))
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001171 fs_param.s_rev_level = 0;
Theodore Ts'o14bbcbc2001-05-13 22:58:27 +00001172#endif
Andreas Dilger0072f8d2002-02-25 23:11:26 -07001173
1174 if (argc && *argv) {
1175 program_name = get_progname(*argv);
1176
1177 /* If called as mkfs.ext3, create a journal inode */
1178 if (!strcmp(program_name, "mkfs.ext3"))
1179 journal_size = -1;
1180 }
1181
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001182 while ((c = getopt (argc, argv,
Theodore Ts'o3d438362008-02-19 08:32:58 -05001183 "b:cf:g:i:jl:m:no:qr:s:t:vE:FI:J:L:M:N:O:R:ST:V")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001184 switch (c) {
1185 case 'b':
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001186 blocksize = strtol(optarg, &tmp, 0);
1187 b = (blocksize > 0) ? blocksize : -blocksize;
1188 if (b < EXT2_MIN_BLOCK_SIZE ||
1189 b > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001190 com_err(program_name, 0,
Theodore Ts'of37ab682005-05-05 23:15:55 -04001191 _("invalid block size - %s"), optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001192 exit(1);
1193 }
Andreas Dilger932a4892002-05-16 03:20:07 -06001194 if (blocksize > 4096)
1195 fprintf(stderr, _("Warning: blocksize %d not "
1196 "usable on most systems.\n"),
1197 blocksize);
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001198 if (blocksize > 0)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001199 fs_param.s_log_block_size =
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001200 int_log2(blocksize >>
1201 EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001202 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +00001203 case 'c': /* Check for bad blocks */
Theodore Ts'o3ed57c22001-12-24 15:01:59 -05001204 cflag++;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001205 break;
1206 case 'f':
1207 size = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -06001208 if (size < EXT2_MIN_BLOCK_SIZE ||
1209 size > EXT2_MAX_BLOCK_SIZE || *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001210 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001211 _("invalid fragment size - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +00001212 optarg);
1213 exit(1);
1214 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001215 fs_param.s_log_frag_size =
Theodore Ts'o6733c2f1999-11-23 02:23:30 +00001216 int_log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o66938372002-03-08 00:14:46 -05001217 fprintf(stderr, _("Warning: fragments not supported. "
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001218 "Ignoring -f option\n"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001219 break;
1220 case 'g':
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001221 fs_param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001222 if (*tmp) {
1223 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001224 _("Illegal number for blocks per group"));
Theodore Ts'of3db3561997-04-26 13:34:30 +00001225 exit(1);
1226 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001227 if ((fs_param.s_blocks_per_group % 8) != 0) {
Theodore Ts'of3db3561997-04-26 13:34:30 +00001228 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001229 _("blocks per group must be multiple of 8"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001230 exit(1);
1231 }
1232 break;
1233 case 'i':
1234 inode_ratio = strtoul(optarg, &tmp, 0);
Andreas Dilger932a4892002-05-16 03:20:07 -06001235 if (inode_ratio < EXT2_MIN_BLOCK_SIZE ||
1236 inode_ratio > EXT2_MAX_BLOCK_SIZE * 1024 ||
Theodore Ts'o3839e651997-04-26 13:21:57 +00001237 *tmp) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001238 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001239 _("invalid inode ratio %s (min %d/max %d)"),
Andreas Dilger932a4892002-05-16 03:20:07 -06001240 optarg, EXT2_MIN_BLOCK_SIZE,
1241 EXT2_MAX_BLOCK_SIZE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001242 exit(1);
1243 }
1244 break;
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001245 case 'J':
1246 parse_journal_opts(optarg);
1247 break;
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001248 case 'j':
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001249 if (!journal_size)
1250 journal_size = -1;
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001251 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001252 case 'l':
Theodore Ts'of3db3561997-04-26 13:34:30 +00001253 bad_blocks_filename = malloc(strlen(optarg)+1);
1254 if (!bad_blocks_filename) {
1255 com_err(program_name, ENOMEM,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001256 _("in malloc for bad_blocks_filename"));
Theodore Ts'of3db3561997-04-26 13:34:30 +00001257 exit(1);
1258 }
1259 strcpy(bad_blocks_filename, optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001260 break;
1261 case 'm':
Andreas Dilgerce911142005-07-06 11:50:08 -05001262 reserved_ratio = strtod(optarg, &tmp);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001263 if (reserved_ratio > 50 || *tmp) {
1264 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001265 _("invalid reserved blocks percent - %s"),
Theodore Ts'o3839e651997-04-26 13:21:57 +00001266 optarg);
1267 exit(1);
1268 }
1269 break;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001270 case 'n':
1271 noaction++;
1272 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001273 case 'o':
1274 creator_os = optarg;
1275 break;
Andreas Dilger25247852005-07-06 12:58:15 -05001276 case 'q':
1277 quiet = 1;
1278 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001279 case 'r':
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001280 r_opt = strtoul(optarg, &tmp, 0);
Andreas Dilger25247852005-07-06 12:58:15 -05001281 if (*tmp) {
1282 com_err(program_name, 0,
1283 _("bad revision level - %s"), optarg);
1284 exit(1);
1285 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001286 fs_param.s_rev_level = r_opt;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001287 break;
Theodore Ts'ob10fd5e2001-04-22 03:47:23 +00001288 case 's': /* deprecated */
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001289 s_opt = atoi(optarg);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001290 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001291 case 'I':
Andreas Dilger932a4892002-05-16 03:20:07 -06001292 inode_size = strtoul(optarg, &tmp, 0);
1293 if (*tmp) {
1294 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001295 _("invalid inode size - %s"), optarg);
Andreas Dilger932a4892002-05-16 03:20:07 -06001296 exit(1);
1297 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001298 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001299 case 'v':
1300 verbose = 1;
1301 break;
Theodore Ts'o74becf31997-04-26 14:37:06 +00001302 case 'F':
Andreas Dilgerc16e6102006-08-05 19:05:53 -04001303 force++;
Theodore Ts'o74becf31997-04-26 14:37:06 +00001304 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001305 case 'L':
1306 volume_label = optarg;
1307 break;
1308 case 'M':
1309 mount_dir = optarg;
1310 break;
Andreas Dilger25247852005-07-06 12:58:15 -05001311 case 'N':
1312 num_inodes = strtoul(optarg, &tmp, 0);
1313 if (*tmp) {
1314 com_err(program_name, 0,
1315 _("bad num inodes - %s"), optarg);
1316 exit(1);
1317 }
1318 break;
Theodore Ts'o896938d1999-10-23 01:04:50 +00001319 case 'O':
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001320 fs_features = optarg;
Theodore Ts'o896938d1999-10-23 01:04:50 +00001321 break;
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001322 case 'E':
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001323 case 'R':
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001324 extended_opts = optarg;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +00001325 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +00001326 case 'S':
1327 super_only = 1;
1328 break;
Theodore Ts'o3d438362008-02-19 08:32:58 -05001329 case 't':
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001330 fs_type = optarg;
1331 break;
Theodore Ts'o3d438362008-02-19 08:32:58 -05001332 case 'T':
1333 usage_types = optarg;
1334 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001335 case 'V':
1336 /* Print version number and exit */
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001337 show_version_only++;
1338 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001339 default:
1340 usage();
1341 }
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001342 }
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001343 if ((optind == argc) && !show_version_only)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001344 usage();
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001345 device_name = argv[optind++];
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001346
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001347 if (!quiet || show_version_only)
Theodore Ts'o38798572003-04-16 15:29:39 -04001348 fprintf (stderr, "mke2fs %s (%s)\n", E2FSPROGS_VERSION,
1349 E2FSPROGS_DATE);
1350
Theodore Ts'o1e6e4c52003-12-07 02:28:24 -05001351 if (show_version_only) {
1352 fprintf(stderr, _("\tUsing %s\n"),
1353 error_message(EXT2_ET_BASE));
1354 exit(0);
1355 }
1356
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001357 /*
1358 * If there's no blocksize specified and there is a journal
1359 * device, use it to figure out the blocksize
1360 */
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001361 if (blocksize <= 0 && journal_device) {
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001362 ext2_filsys jfs;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001363 io_manager io_ptr;
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001364
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001365#ifdef CONFIG_TESTIO_DEBUG
1366 io_ptr = test_io_manager;
1367 test_io_backing_manager = unix_io_manager;
1368#else
1369 io_ptr = unix_io_manager;
1370#endif
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001371 retval = ext2fs_open(journal_device,
1372 EXT2_FLAG_JOURNAL_DEV_OK, 0,
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001373 0, io_ptr, &jfs);
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001374 if (retval) {
1375 com_err(program_name, retval,
1376 _("while trying to open journal device %s\n"),
1377 journal_device);
1378 exit(1);
1379 }
Theodore Ts'o54434922003-12-07 01:28:50 -05001380 if ((blocksize < 0) && (jfs->blocksize < (unsigned) (-blocksize))) {
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001381 com_err(program_name, 0,
Theodore Ts'oddc32a02003-05-03 18:45:55 -04001382 _("Journal dev blocksize (%d) smaller than "
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001383 "minimum blocksize %d\n"), jfs->blocksize,
1384 -blocksize);
1385 exit(1);
1386 }
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001387 blocksize = jfs->blocksize;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001388 fs_param.s_log_block_size =
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001389 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1390 ext2fs_close(jfs);
1391 }
Theodore Ts'odc2ec522001-01-18 01:51:15 +00001392
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001393 if (blocksize > sys_page_size) {
Andreas Dilger932a4892002-05-16 03:20:07 -06001394 if (!force) {
1395 com_err(program_name, 0,
1396 _("%d-byte blocks too big for system (max %d)"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001397 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001398 proceed_question();
1399 }
1400 fprintf(stderr, _("Warning: %d-byte blocks too big for system "
1401 "(max %d), forced to continue\n"),
Theodore Ts'o31e29a12002-05-17 10:53:07 -04001402 blocksize, sys_page_size);
Andreas Dilger932a4892002-05-16 03:20:07 -06001403 }
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001404 if (optind < argc) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001405 fs_param.s_blocks_count = parse_num_blocks(argv[optind++],
1406 fs_param.s_log_block_size);
1407 if (!fs_param.s_blocks_count) {
Theodore Ts'of37ab682005-05-05 23:15:55 -04001408 com_err(program_name, 0, _("invalid blocks count - %s"),
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05001409 argv[optind - 1]);
1410 exit(1);
1411 }
1412 }
1413 if (optind < argc)
1414 usage();
1415
Theodore Ts'o74becf31997-04-26 14:37:06 +00001416 if (!force)
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001417 check_plausibility(device_name);
Theodore Ts'o63985322001-01-03 17:02:13 +00001418 check_mount(device_name, force, _("filesystem"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001419
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001420 fs_param.s_log_frag_size = fs_param.s_log_block_size;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001421
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001422 if (noaction && fs_param.s_blocks_count) {
1423 dev_size = fs_param.s_blocks_count;
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001424 retval = 0;
Theodore Ts'o20953122005-01-27 19:07:26 -05001425 } else {
1426 retry:
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001427 retval = ext2fs_get_device_size(device_name,
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001428 EXT2_BLOCK_SIZE(&fs_param),
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001429 &dev_size);
Theodore Ts'o20953122005-01-27 19:07:26 -05001430 if ((retval == EFBIG) &&
1431 (blocksize == 0) &&
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001432 (fs_param.s_log_block_size == 0)) {
1433 fs_param.s_log_block_size = 2;
Theodore Ts'o20953122005-01-27 19:07:26 -05001434 blocksize = 4096;
1435 goto retry;
1436 }
1437 }
1438
Theodore Ts'oa789d841998-03-30 01:20:55 +00001439 if (retval && (retval != EXT2_ET_UNIMPLEMENTED)) {
1440 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001441 _("while trying to determine filesystem size"));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001442 exit(1);
1443 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001444 if (!fs_param.s_blocks_count) {
Theodore Ts'oa789d841998-03-30 01:20:55 +00001445 if (retval == EXT2_ET_UNIMPLEMENTED) {
1446 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001447 _("Couldn't determine device size; you "
Theodore Ts'oa789d841998-03-30 01:20:55 +00001448 "must specify\nthe size of the "
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001449 "filesystem\n"));
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001450 exit(1);
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001451 } else {
1452 if (dev_size == 0) {
1453 com_err(program_name, 0,
1454 _("Device size reported to be zero. "
1455 "Invalid partition specified, or\n\t"
1456 "partition table wasn't reread "
1457 "after running fdisk, due to\n\t"
1458 "a modified partition being busy "
1459 "and in use. You may need to reboot\n\t"
1460 "to re-read your partition table.\n"
1461 ));
1462 exit(1);
1463 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001464 fs_param.s_blocks_count = dev_size;
1465 if (sys_page_size > EXT2_BLOCK_SIZE(&fs_param))
1466 fs_param.s_blocks_count &= ~((sys_page_size /
1467 EXT2_BLOCK_SIZE(&fs_param))-1);
Theodore Ts'o26ab5312000-05-29 15:05:42 +00001468 }
1469
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001470 } else if (!force && (fs_param.s_blocks_count > dev_size)) {
Theodore Ts'oa789d841998-03-30 01:20:55 +00001471 com_err(program_name, 0,
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001472 _("Filesystem larger than apparent device size."));
Theodore Ts'oa789d841998-03-30 01:20:55 +00001473 proceed_question();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001474 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001475
Theodore Ts'o3d438362008-02-19 08:32:58 -05001476 fs_types = parse_fs_type(fs_type, usage_types, &fs_param, argv[0]);
1477 if (!fs_types) {
1478 fprintf(stderr, _("Failed to parse fs types list\n"));
1479 exit(1);
1480 }
1481 if (verbose) {
1482 fputs("Fs_types for mke2fs.conf resolution: ", stdout);
1483 print_str_list(fs_types);
1484 }
1485
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001486 if (!fs_type) {
Eric Sandeend1b4b852006-09-12 14:56:18 -04001487 int megs = (__u64)fs_param.s_blocks_count *
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001488 (EXT2_BLOCK_SIZE(&fs_param) / 1024) / 1024;
1489
Brian Behlendorfe0661502007-03-19 08:25:38 -04001490 if (fs_param.s_feature_incompat &
1491 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)
1492 fs_type = "journal";
1493 else if (megs <= 3)
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001494 fs_type = "floppy";
1495 else if (megs <= 512)
1496 fs_type = "small";
1497 else
1498 fs_type = "default";
1499 }
1500
1501 /* Figure out what features should be enabled */
1502
Theodore Ts'o3d438362008-02-19 08:32:58 -05001503 tmp = NULL;
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001504 if (fs_param.s_rev_level != EXT2_GOOD_OLD_REV) {
Theodore Ts'o3d438362008-02-19 08:32:58 -05001505 char **cpp;
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001506
Theodore Ts'o3d438362008-02-19 08:32:58 -05001507 tmp = get_string_from_profile(fs_types, "base_features",
1508 "sparse_super,filetype,resize_inode,dir_index");
1509 edit_feature(tmp, &fs_param.s_feature_compat);
1510 free(tmp);
1511
1512 for (cpp = fs_types; *cpp; cpp++) {
1513 tmp = NULL;
1514 profile_get_string(profile, "fs_types", *cpp,
1515 "features", "", &tmp);
1516 if (tmp && *tmp)
1517 edit_feature(tmp, &fs_param.s_feature_compat);
1518 if (tmp)
1519 free(tmp);
1520 }
1521 tmp = get_string_from_profile(fs_types, "default_features",
1522 "");
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001523 }
Theodore Ts'o3d438362008-02-19 08:32:58 -05001524 edit_feature(fs_features ? fs_features : tmp,
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001525 &fs_param.s_feature_compat);
1526 if (tmp)
1527 free(tmp);
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001528
1529 if (r_opt == EXT2_GOOD_OLD_REV &&
1530 (fs_param.s_feature_compat || fs_param.s_feature_incompat ||
1531 fs_param.s_feature_incompat)) {
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001532 fprintf(stderr, _("Filesystem features not supported "
1533 "with revision 0 filesystems\n"));
1534 exit(1);
1535 }
1536
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001537 if (s_opt > 0) {
1538 if (r_opt == EXT2_GOOD_OLD_REV) {
1539 fprintf(stderr, _("Sparse superblocks not supported "
1540 "with revision 0 filesystems\n"));
1541 exit(1);
1542 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001543 fs_param.s_feature_ro_compat |=
1544 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001545 } else if (s_opt == 0)
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001546 fs_param.s_feature_ro_compat &=
1547 ~EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
1548
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001549 if (journal_size != 0) {
1550 if (r_opt == EXT2_GOOD_OLD_REV) {
1551 fprintf(stderr, _("Journals not supported "
1552 "with revision 0 filesystems\n"));
1553 exit(1);
1554 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001555 fs_param.s_feature_compat |=
1556 EXT3_FEATURE_COMPAT_HAS_JOURNAL;
Theodore Ts'ob290d2d2006-10-18 00:31:11 -04001557 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001558
1559 if (fs_param.s_feature_incompat &
1560 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001561 reserved_ratio = 0;
1562 fs_param.s_feature_incompat = EXT3_FEATURE_INCOMPAT_JOURNAL_DEV;
1563 fs_param.s_feature_compat = 0;
1564 fs_param.s_feature_ro_compat = 0;
1565 }
1566
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001567 /* Set first meta blockgroup via an environment variable */
1568 /* (this is mostly for debugging purposes) */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001569 if ((fs_param.s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) &&
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001570 ((tmp = getenv("MKE2FS_FIRST_META_BG"))))
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001571 fs_param.s_first_meta_bg = atoi(tmp);
Theodore Ts'oc046ac72002-10-20 00:38:57 -04001572
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001573 /* Get the hardware sector size, if available */
1574 retval = ext2fs_get_device_sectsize(device_name, &sector_size);
1575 if (retval) {
1576 com_err(program_name, retval,
1577 _("while trying to determine hardware sector size"));
1578 exit(1);
1579 }
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001580
Theodore Ts'o54434922003-12-07 01:28:50 -05001581 if ((tmp = getenv("MKE2FS_DEVICE_SECTSIZE")) != NULL)
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001582 sector_size = atoi(tmp);
Theodore Ts'o93d5c382003-05-21 17:28:29 -04001583
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001584 if (blocksize <= 0) {
Theodore Ts'o3d438362008-02-19 08:32:58 -05001585 use_bsize = get_int_from_profile(fs_types, "blocksize", 4096);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001586
1587 if (use_bsize == -1) {
1588 use_bsize = sys_page_size;
1589 if ((linux_version_code < (2*65536 + 6*256)) &&
1590 (use_bsize > 4096))
1591 use_bsize = 4096;
1592 }
1593 if (sector_size && use_bsize < sector_size)
1594 use_bsize = sector_size;
1595 if ((blocksize < 0) && (use_bsize < (-blocksize)))
1596 use_bsize = -blocksize;
1597 blocksize = use_bsize;
1598 fs_param.s_blocks_count /= blocksize / 1024;
1599 }
1600
1601 if (inode_ratio == 0) {
Theodore Ts'o3d438362008-02-19 08:32:58 -05001602 inode_ratio = get_int_from_profile(fs_types, "inode_ratio",
1603 8192);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001604 if (inode_ratio < blocksize)
1605 inode_ratio = blocksize;
1606 }
1607
1608 fs_param.s_log_frag_size = fs_param.s_log_block_size =
1609 int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
1610
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001611 blocksize = EXT2_BLOCK_SIZE(&fs_param);
Theodore Ts'oa4396e92008-04-18 10:19:27 -04001612
1613 lazy_itable_init = get_bool_from_profile(fs_types,
1614 "lazy_itable_init", 0);
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001615
Theodore Ts'oc6a44132005-01-05 11:12:20 -05001616 if (extended_opts)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001617 parse_extended_opts(&fs_param, extended_opts);
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001618
1619 /* Since sparse_super is the default, we would only have a problem
1620 * here if it was explicitly disabled.
1621 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001622 if ((fs_param.s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE) &&
1623 !(fs_param.s_feature_ro_compat&EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001624 com_err(program_name, 0,
1625 _("reserved online resize blocks not supported "
1626 "on non-sparse filesystem"));
1627 exit(1);
1628 }
1629
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001630 if (fs_param.s_blocks_per_group) {
1631 if (fs_param.s_blocks_per_group < 256 ||
1632 fs_param.s_blocks_per_group > 8 * (unsigned) blocksize) {
Theodore Ts'o521e3681997-04-29 17:48:10 +00001633 com_err(program_name, 0,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001634 _("blocks per group count out of range"));
Theodore Ts'o521e3681997-04-29 17:48:10 +00001635 exit(1);
1636 }
1637 }
1638
Theodore Ts'o3d438362008-02-19 08:32:58 -05001639 if (inode_size == 0)
1640 inode_size = get_int_from_profile(fs_types, "inode_size", 0);
Andreas Dilger067911a2006-07-15 22:08:20 -04001641
1642 if (inode_size && fs_param.s_rev_level >= EXT2_DYNAMIC_REV) {
Andreas Dilger932a4892002-05-16 03:20:07 -06001643 if (inode_size < EXT2_GOOD_OLD_INODE_SIZE ||
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001644 inode_size > EXT2_BLOCK_SIZE(&fs_param) ||
Andreas Dilger932a4892002-05-16 03:20:07 -06001645 inode_size & (inode_size - 1)) {
1646 com_err(program_name, 0,
Theodore Ts'obb145b02005-06-20 08:35:27 -04001647 _("invalid inode size %d (min %d/max %d)"),
Andreas Dilger932a4892002-05-16 03:20:07 -06001648 inode_size, EXT2_GOOD_OLD_INODE_SIZE,
Theodore Ts'oc5290fa2003-04-11 22:10:50 -04001649 blocksize);
Andreas Dilger932a4892002-05-16 03:20:07 -06001650 exit(1);
1651 }
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001652 fs_param.s_inode_size = inode_size;
Andreas Dilger932a4892002-05-16 03:20:07 -06001653 }
1654
Eric Sandeenf3358642006-09-12 14:56:17 -04001655 /* Make sure number of inodes specified will fit in 32 bits */
1656 if (num_inodes == 0) {
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001657 unsigned long long n;
1658 n = (unsigned long long) fs_param.s_blocks_count * blocksize / inode_ratio;
Eric Sandeenf3358642006-09-12 14:56:17 -04001659 if (n > ~0U) {
1660 com_err(program_name, 0,
1661 _("too many inodes (%llu), raise inode ratio?"), n);
1662 exit(1);
1663 }
1664 } else if (num_inodes > ~0U) {
1665 com_err(program_name, 0,
1666 _("too many inodes (%llu), specify < 2^32 inodes"),
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001667 num_inodes);
Eric Sandeenf3358642006-09-12 14:56:17 -04001668 exit(1);
1669 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001670 /*
1671 * Calculate number of inodes based on the inode ratio
1672 */
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001673 fs_param.s_inodes_count = num_inodes ? num_inodes :
1674 ((__u64) fs_param.s_blocks_count * blocksize)
Theodore Ts'of3db3561997-04-26 13:34:30 +00001675 / inode_ratio;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001676
Andreas Dilgerdcf7b092007-05-22 16:04:51 -04001677 if ((((long long)fs_param.s_inodes_count) *
1678 (inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE)) >=
1679 (((long long)fs_param.s_blocks_count) *
1680 EXT2_BLOCK_SIZE(&fs_param))) {
1681 com_err(program_name, 0, _("inode_size (%u) * inodes_count "
1682 "(%u) too big for a\n\t"
1683 "filesystem with %lu blocks, "
1684 "specify higher inode_ratio (-i)\n\t"
1685 "or lower inode count (-N).\n"),
1686 inode_size ? inode_size : EXT2_GOOD_OLD_INODE_SIZE,
Andreas Dilgerde8f3a72007-05-25 11:18:11 -04001687 fs_param.s_inodes_count,
1688 (unsigned long) fs_param.s_blocks_count);
Andreas Dilgerdcf7b092007-05-22 16:04:51 -04001689 exit(1);
1690 }
1691
Theodore Ts'o3839e651997-04-26 13:21:57 +00001692 /*
1693 * Calculate number of blocks to reserve
1694 */
Theodore Ts'oa8862d92006-08-30 03:08:13 -04001695 fs_param.s_r_blocks_count = e2p_percent(reserved_ratio,
1696 fs_param.s_blocks_count);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001697}
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001698
Theodore Ts'o3839e651997-04-26 13:21:57 +00001699int main (int argc, char *argv[])
1700{
1701 errcode_t retval = 0;
1702 ext2_filsys fs;
1703 badblocks_list bb_list = 0;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001704 unsigned int journal_blocks;
Theodore Ts'o54434922003-12-07 01:28:50 -05001705 unsigned int i;
1706 int val;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001707 io_manager io_ptr;
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001708
1709#ifdef ENABLE_NLS
1710 setlocale(LC_MESSAGES, "");
Theodore Ts'o14308a52002-03-05 03:26:52 -05001711 setlocale(LC_CTYPE, "");
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001712 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1713 textdomain(NLS_CAT_NAME);
1714#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +00001715 PRS(argc, argv);
1716
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001717#ifdef CONFIG_TESTIO_DEBUG
1718 io_ptr = test_io_manager;
1719 test_io_backing_manager = unix_io_manager;
1720#else
1721 io_ptr = unix_io_manager;
1722#endif
1723
Theodore Ts'o3839e651997-04-26 13:21:57 +00001724 /*
1725 * Initialize the superblock....
1726 */
Theodore Ts'o616059b2006-03-18 20:02:05 -05001727 retval = ext2fs_initialize(device_name, EXT2_FLAG_EXCLUSIVE, &fs_param,
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -04001728 io_ptr, &fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001729 if (retval) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001730 com_err(device_name, retval, _("while setting up superblock"));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001731 exit(1);
1732 }
1733
Theodore Ts'o6cb27402008-01-26 19:06:35 -05001734 if (fs_param.s_flags & EXT2_FLAGS_TEST_FILESYS)
1735 fs->super->s_flags |= EXT2_FLAGS_TEST_FILESYS;
1736
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001737 /*
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001738 * Wipe out the old on-disk superblock
1739 */
Theodore Ts'o04a96852001-08-30 21:55:26 -04001740 if (!noaction)
1741 zap_sector(fs, 2, 6);
Theodore Ts'oe41784e2000-08-14 14:44:15 +00001742
1743 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001744 * Generate a UUID for it...
1745 */
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001746 uuid_generate(fs->super->s_uuid);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001747
1748 /*
Theodore Ts'o843049c2002-09-22 15:37:40 -04001749 * Initialize the directory index variables
1750 */
1751 fs->super->s_def_hash_version = EXT2_HASH_TEA;
1752 uuid_generate((unsigned char *) fs->super->s_hash_seed);
1753
1754 /*
Theodore Ts'o44c09c02001-01-14 17:02:09 +00001755 * Add "jitter" to the superblock's check interval so that we
1756 * don't check all the filesystems at the same time. We use a
1757 * kludgy hack of using the UUID to derive a random jitter value.
1758 */
1759 for (i = 0, val = 0 ; i < sizeof(fs->super->s_uuid); i++)
1760 val += fs->super->s_uuid[i];
1761 fs->super->s_max_mnt_count += val % EXT2_DFL_MAX_MNT_COUNT;
1762
1763 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001764 * Override the creator OS, if applicable
1765 */
1766 if (creator_os && !set_os(fs->super, creator_os)) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001767 com_err (program_name, 0, _("unknown os - %s"), creator_os);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001768 exit(1);
1769 }
1770
1771 /*
Theodore Ts'o4ea0a112000-05-08 13:33:17 +00001772 * For the Hurd, we will turn off filetype since it doesn't
1773 * support it.
1774 */
1775 if (fs->super->s_creator_os == EXT2_OS_HURD)
1776 fs->super->s_feature_incompat &=
1777 ~EXT2_FEATURE_INCOMPAT_FILETYPE;
1778
1779 /*
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001780 * Set the volume label...
1781 */
1782 if (volume_label) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001783 memset(fs->super->s_volume_name, 0,
1784 sizeof(fs->super->s_volume_name));
1785 strncpy(fs->super->s_volume_name, volume_label,
1786 sizeof(fs->super->s_volume_name));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001787 }
1788
1789 /*
1790 * Set the last mount directory
1791 */
1792 if (mount_dir) {
Theodore Ts'oef9abe52001-01-01 15:31:53 +00001793 memset(fs->super->s_last_mounted, 0,
1794 sizeof(fs->super->s_last_mounted));
1795 strncpy(fs->super->s_last_mounted, mount_dir,
1796 sizeof(fs->super->s_last_mounted));
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001797 }
1798
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001799 if (!quiet || noaction)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001800 show_stats(fs);
1801
Theodore Ts'o50787ea1999-07-19 15:30:21 +00001802 if (noaction)
1803 exit(0);
1804
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001805 if (fs->super->s_feature_incompat &
1806 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
1807 create_journal_dev(fs);
Andreas Dilger568101f2001-10-13 01:22:25 -06001808 exit(ext2fs_close(fs) ? 1 : 0);
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001809 }
1810
Theodore Ts'o3839e651997-04-26 13:21:57 +00001811 if (bad_blocks_filename)
1812 read_bb_file(fs, &bb_list, bad_blocks_filename);
1813 if (cflag)
1814 test_disk(fs, &bb_list);
1815
1816 handle_bad_blocks(fs, bb_list);
Theodore Ts'o0c17cb22008-02-18 22:56:25 -05001817 fs->stride = fs_stride = fs->super->s_raid_stride;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001818 retval = ext2fs_allocate_tables(fs);
1819 if (retval) {
1820 com_err(program_name, retval,
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001821 _("while trying to allocate filesystem tables"));
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00001822 exit(1);
1823 }
Theodore Ts'of3db3561997-04-26 13:34:30 +00001824 if (super_only) {
1825 fs->super->s_state |= EXT2_ERROR_FS;
1826 fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
1827 } else {
Andreas Dilger59f27242001-08-30 15:39:04 -06001828 /* rsv must be a power of two (64kB is MD RAID sb alignment) */
Theodore Ts'o54434922003-12-07 01:28:50 -05001829 unsigned int rsv = 65536 / fs->blocksize;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001830 unsigned long blocks = fs->super->s_blocks_count;
Andreas Dilger59f27242001-08-30 15:39:04 -06001831 unsigned long start;
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001832 blk_t ret_blk;
1833
1834#ifdef ZAP_BOOTBLOCK
Theodore Ts'o04a96852001-08-30 21:55:26 -04001835 zap_sector(fs, 0, 2);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001836#endif
Andreas Dilger59f27242001-08-30 15:39:04 -06001837
1838 /*
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001839 * Wipe out any old MD RAID (or other) metadata at the end
1840 * of the device. This will also verify that the device is
Andreas Dilger59f27242001-08-30 15:39:04 -06001841 * as large as we think. Be careful with very small devices.
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001842 */
Andreas Dilger59f27242001-08-30 15:39:04 -06001843 start = (blocks & ~(rsv - 1));
1844 if (start > rsv)
1845 start -= rsv;
1846 if (start > 0)
1847 retval = zero_blocks(fs, start, blocks - start,
1848 NULL, &ret_blk, NULL);
1849
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001850 if (retval) {
1851 com_err(program_name, retval,
Theodore Ts'of044b4d2002-08-17 13:32:21 -04001852 _("while zeroing block %u at end of filesystem"),
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001853 ret_blk);
Theodore Ts'o1400bbb2001-05-14 04:19:25 +00001854 }
Theodore Ts'oa4396e92008-04-18 10:19:27 -04001855 write_inode_tables(fs, lazy_itable_init);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001856 create_root_dir(fs);
1857 create_lost_and_found(fs);
1858 reserve_inodes(fs);
1859 create_bad_block_inode(fs, bb_list);
Theodore Ts'oea774312005-01-28 11:45:28 -05001860 if (fs->super->s_feature_compat &
1861 EXT2_FEATURE_COMPAT_RESIZE_INODE) {
1862 retval = ext2fs_create_resize_inode(fs);
1863 if (retval) {
1864 com_err("ext2fs_create_resize_inode", retval,
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001865 _("while reserving blocks for online resize"));
Theodore Ts'oea774312005-01-28 11:45:28 -05001866 exit(1);
1867 }
Theodore Ts'od323f8f2004-12-15 14:39:16 -05001868 }
Theodore Ts'of3db3561997-04-26 13:34:30 +00001869 }
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001870
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001871 if (journal_device) {
1872 ext2_filsys jfs;
1873
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001874 if (!force)
1875 check_plausibility(journal_device);
Theodore Ts'o63985322001-01-03 17:02:13 +00001876 check_mount(journal_device, force, _("journal"));
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001877
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001878 retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
1879 EXT2_FLAG_JOURNAL_DEV_OK, 0,
1880 fs->blocksize, unix_io_manager, &jfs);
1881 if (retval) {
1882 com_err(program_name, retval,
1883 _("while trying to open journal device %s\n"),
1884 journal_device);
1885 exit(1);
1886 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001887 if (!quiet) {
Theodore Ts'o77dc4eb2001-07-27 22:00:18 -04001888 printf(_("Adding journal to device %s: "),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001889 journal_device);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001890 fflush(stdout);
1891 }
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001892 retval = ext2fs_add_journal_device(fs, jfs);
1893 if(retval) {
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001894 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00001895 _("\n\twhile trying to add journal to device %s"),
Theodore Ts'o8ddaa662000-11-17 04:55:24 +00001896 journal_device);
1897 exit(1);
1898 }
1899 if (!quiet)
1900 printf(_("done\n"));
Theodore Ts'o16ed5b32001-01-16 07:47:31 +00001901 ext2fs_close(jfs);
Andreas Dilger2d155762001-08-17 03:48:11 -06001902 free(journal_device);
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001903 } else if ((journal_size) ||
1904 (fs_param.s_feature_compat &
1905 EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00001906 journal_blocks = figure_journal_size(journal_size, fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001907
1908 if (!journal_blocks) {
1909 fs->super->s_feature_compat &=
1910 ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
1911 goto no_journal;
1912 }
1913 if (!quiet) {
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001914 printf(_("Creating journal (%u blocks): "),
Theodore Ts'o16ad3332000-12-31 03:21:56 +00001915 journal_blocks);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001916 fflush(stdout);
1917 }
Theodore Ts'o63985322001-01-03 17:02:13 +00001918 retval = ext2fs_add_journal_inode(fs, journal_blocks,
1919 journal_flags);
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001920 if (retval) {
1921 com_err (program_name, retval,
Theodore Ts'o1d08d9b2001-04-17 01:01:49 +00001922 _("\n\twhile trying to create journal"));
Theodore Ts'o85ef4ae2000-10-24 19:33:45 +00001923 exit(1);
1924 }
1925 if (!quiet)
1926 printf(_("done\n"));
1927 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001928no_journal:
1929
Theodore Ts'o3839e651997-04-26 13:21:57 +00001930 if (!quiet)
Theodore Ts'od9c56d32000-02-08 00:47:55 +00001931 printf(_("Writing superblocks and "
1932 "filesystem accounting information: "));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00001933 retval = ext2fs_flush(fs);
1934 if (retval) {
Theodore Ts'o66938372002-03-08 00:14:46 -05001935 fprintf(stderr,
1936 _("\nWarning, had trouble writing out superblocks."));
Theodore Ts'o5d45d801999-03-16 19:35:19 +00001937 }
Theodore Ts'o93345d12001-02-17 06:09:50 +00001938 if (!quiet) {
Theodore Ts'o2537b6d2001-03-26 20:07:13 +00001939 printf(_("done\n\n"));
Theodore Ts'o1cca86f2003-09-01 09:28:18 -04001940 if (!getenv("MKE2FS_SKIP_CHECK_MSG"))
1941 print_check_message(fs);
Theodore Ts'o93345d12001-02-17 06:09:50 +00001942 }
Andreas Dilger568101f2001-10-13 01:22:25 -06001943 val = ext2fs_close(fs);
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001944 remove_error_table(&et_ext2_error_table);
1945 remove_error_table(&et_prof_error_table);
Theodore Ts'o3d438362008-02-19 08:32:58 -05001946 profile_release(profile);
Andreas Dilger568101f2001-10-13 01:22:25 -06001947 return (retval || val) ? 1 : 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001948}