blob: 475397d925f2c4af2837053e717798a8948a801b [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * mke2fs.c - Make a ext2fs filesystem.
3 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00004 * Copyright (C) 1994, 1995, 1996, 1997 Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000010 */
11
12/* Usage: mke2fs [options] device
13 *
14 * The device may be a block device or a image of one, but this isn't
15 * enforced (but it's not much fun on a character device :-).
16 */
17
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000018#include <stdio.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000019#include <string.h>
20#include <fcntl.h>
21#include <ctype.h>
22#include <termios.h>
23#include <time.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000024#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000025#include <getopt.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000026#endif
27#ifdef HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000028#include <unistd.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000029#endif
30#ifdef HAVE_STDLIB_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000031#include <stdlib.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000032#endif
33#ifdef HAVE_ERRNO_H
34#include <errno.h>
35#endif
36#ifdef HAVE_MNTENT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000037#include <mntent.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000038#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000039#include <malloc.h>
40#include <sys/ioctl.h>
Theodore Ts'of3db3561997-04-26 13:34:30 +000041#include <sys/types.h>
Theodore Ts'o74becf31997-04-26 14:37:06 +000042#include <sys/stat.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000043#include <stdio.h>
Theodore Ts'of3db3561997-04-26 13:34:30 +000044
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000045#ifdef HAVE_LINUX_FS_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000046#include <linux/fs.h>
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000047#endif
Theodore Ts'of3db3561997-04-26 13:34:30 +000048#include <linux/ext2_fs.h>
Theodore Ts'o74becf31997-04-26 14:37:06 +000049#ifdef HAVE_LINUX_MAJOR_H
50#include <linux/major.h>
51#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000052
53#include "et/com_err.h"
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000054#include "uuid/uuid.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000055#include "ext2fs/ext2fs.h"
56#include "../version.h"
57
58#define STRIDE_LENGTH 8
59
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000060#ifndef sparc
61#define ZAP_BOOTBLOCK
62#endif
63
Theodore Ts'o3839e651997-04-26 13:21:57 +000064extern int isatty(int);
Theodore Ts'of3db3561997-04-26 13:34:30 +000065extern FILE *fpopen(const char *cmd, const char *mode);
Theodore Ts'o3839e651997-04-26 13:21:57 +000066
67const char * program_name = "mke2fs";
68const char * device_name = NULL;
69
70/* Command line options */
71int cflag = 0;
72int verbose = 0;
73int quiet = 0;
Theodore Ts'of3db3561997-04-26 13:34:30 +000074int super_only = 0;
Theodore Ts'o74becf31997-04-26 14:37:06 +000075int force = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +000076char *bad_blocks_filename = 0;
77
78struct ext2_super_block param;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000079char *creator_os = NULL;
80char *volume_label = NULL;
81char *mount_dir = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000082
83static void usage(NOARGS)
84{
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000085 fprintf(stderr, "Usage: %s [-c|-t|-l filename] [-b block-size] "
86 "[-f fragment-size]\n\t[-i bytes-per-inode] "
87 "[-m reserved-blocks-percentage] [-qvS]\n\t"
88 "[-o creator-os] [-g blocks-per-group] [-L volume-label]\n\t"
89 "[-M last-mounted-directory] device [blocks-count]\n",
Theodore Ts'o3839e651997-04-26 13:21:57 +000090 program_name);
91 exit(1);
92}
93
94static int log2(int arg)
95{
96 int l = 0;
97
98 arg >>= 1;
99 while (arg) {
100 l++;
101 arg >>= 1;
102 }
103 return l;
104}
105
Theodore Ts'o74becf31997-04-26 14:37:06 +0000106static void check_plausibility(NOARGS)
107{
108#ifdef HAVE_LINUX_MAJOR_H
109 int val;
110 struct stat s;
111
112 val = stat(device_name, &s);
113
114 if(val == -1) {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000115 printf("Could not stat %s --- %s\n", device_name,
116 error_message(errno));
117 if (errno == ENOENT)
118 printf("\nThe device apparently does not exist; "
119 "did yo specify it correctly?\n");
Theodore Ts'o74becf31997-04-26 14:37:06 +0000120 exit(1);
121 }
122 if(!S_ISBLK(s.st_mode)) {
123 printf("%s is not a block special device.\n", device_name);
124 printf("Proceed anyway? (y,n) ");
125 if (getchar() != 'y')
126 exit(1);
127 return;
128 }
129 if ((MAJOR(s.st_rdev) == HD_MAJOR && MINOR(s.st_rdev)%64 == 0) ||
130 (MAJOR(s.st_rdev) == SCSI_DISK_MAJOR &&
131 MINOR(s.st_rdev)%16 == 0)) {
132 printf("%s is entire device, not just one partition!\n",
133 device_name);
134 printf("Proceed anyway? (y,n) ");
135 if (getchar() != 'y')
136 exit(1);
137 return;
138 }
139#endif
140}
141
Theodore Ts'o3839e651997-04-26 13:21:57 +0000142static void check_mount(NOARGS)
143{
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000144 errcode_t retval;
145 int mount_flags;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000146
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000147 retval = ext2fs_check_if_mounted(device_name, &mount_flags);
148 if (retval) {
149 com_err("ext2fs_check_if_mount", retval,
150 "while determining whether %s is mounted.",
151 device_name);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000152 return;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000153 }
154 if (!(mount_flags & EXT2_MF_MOUNTED))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000155 return;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000156
Theodore Ts'o3839e651997-04-26 13:21:57 +0000157 fprintf(stderr, "%s is mounted; will not make a filesystem here!\n",
158 device_name);
159 exit(1);
160}
161
162/*
163 * Helper function for read_bb_file and test_disk
164 */
165static void invalid_block(ext2_filsys fs, blk_t blk)
166{
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000167 printf("Bad block %u out of range; ignored.\n", blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000168 return;
169}
170
171/*
172 * Reads the bad blocks list from a file
173 */
174static void read_bb_file(ext2_filsys fs, badblocks_list *bb_list,
175 const char *bad_blocks_file)
176{
177 FILE *f;
178 errcode_t retval;
179
180 f = fopen(bad_blocks_file, "r");
181 if (!f) {
182 com_err("read_bad_blocks_file", errno,
183 "while trying to open %s", bad_blocks_file);
184 exit(1);
185 }
186 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
187 fclose (f);
188 if (retval) {
189 com_err("ext2fs_read_bb_FILE", retval,
190 "while reading in list of bad blocks from file");
191 exit(1);
192 }
193}
194
195/*
196 * Runs the badblocks program to test the disk
197 */
198static void test_disk(ext2_filsys fs, badblocks_list *bb_list)
199{
200 FILE *f;
201 errcode_t retval;
202 char buf[1024];
203
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000204 sprintf(buf, "badblocks %s%s %d", quiet ? "" : "-s ",
Theodore Ts'o3839e651997-04-26 13:21:57 +0000205 fs->device_name,
206 fs->super->s_blocks_count);
207 if (verbose)
208 printf("Running command: %s\n", buf);
209 f = popen(buf, "r");
210 if (!f) {
211 com_err("popen", errno,
212 "while trying run '%s'", buf);
213 exit(1);
214 }
215 retval = ext2fs_read_bb_FILE(fs, f, bb_list, invalid_block);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000216 pclose(f);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000217 if (retval) {
218 com_err("ext2fs_read_bb_FILE", retval,
219 "while processing list of bad blocks from program");
220 exit(1);
221 }
222}
223
224static void handle_bad_blocks(ext2_filsys fs, badblocks_list bb_list)
225{
Theodore Ts'of3db3561997-04-26 13:34:30 +0000226 int i, j;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000227 int must_be_good;
228 blk_t blk;
229 badblocks_iterate bb_iter;
230 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000231 blk_t group_block;
232 int group;
233 int group_bad;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000234
235 if (!bb_list)
236 return;
237
238 /*
239 * The primary superblock and group descriptors *must* be
240 * good; if not, abort.
241 */
242 must_be_good = fs->super->s_first_data_block + 1 + fs->desc_blocks;
243 for (i = fs->super->s_first_data_block; i <= must_be_good; i++) {
244 if (badblocks_list_test(bb_list, i)) {
245 fprintf(stderr, "Block %d in primary superblock/group "
246 "descriptor area bad.\n", i);
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000247 fprintf(stderr, "Blocks %d through %d must be good "
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248 "in order to build a filesystem.\n",
249 fs->super->s_first_data_block, must_be_good);
250 fprintf(stderr, "Aborting....\n");
251 exit(1);
252 }
253 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000254
255 /*
256 * See if any of the bad blocks are showing up in the backup
257 * superblocks and/or group descriptors. If so, issue a
258 * warning and adjust the block counts appropriately.
259 */
260 group_block = fs->super->s_first_data_block +
261 fs->super->s_blocks_per_group;
262 group_bad = 0;
263
264 for (i = 1; i < fs->group_desc_count; i++) {
265 for (j=0; j < fs->desc_blocks+1; j++) {
266 if (badblocks_list_test(bb_list, group_block +
267 j)) {
268 if (!group_bad)
269 fprintf(stderr,
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000270"Warning: the backup superblock/group descriptors at block %d contain\n"
Theodore Ts'of3db3561997-04-26 13:34:30 +0000271" bad blocks.\n\n",
272 group_block);
273 group_bad++;
274 group = ext2fs_group_of_blk(fs, group_block+j);
275 fs->group_desc[group].bg_free_blocks_count++;
276 fs->super->s_free_blocks_count++;
277 }
278 }
279 group_block += fs->super->s_blocks_per_group;
280 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000281
282 /*
283 * Mark all the bad blocks as used...
284 */
285 retval = badblocks_list_iterate_begin(bb_list, &bb_iter);
286 if (retval) {
287 com_err("badblocks_list_iterate_begin", retval,
288 "while marking bad blocks as used");
289 exit(1);
290 }
291 while (badblocks_list_iterate(bb_iter, &blk))
Theodore Ts'of3db3561997-04-26 13:34:30 +0000292 ext2fs_mark_block_bitmap(fs->block_map, blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000293 badblocks_list_iterate_end(bb_iter);
294}
295
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000296static void write_inode_tables(ext2_filsys fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000297{
298 errcode_t retval;
299 blk_t blk;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000300 int i, j, num, count;
301 char *buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000302
303 buf = malloc(fs->blocksize * STRIDE_LENGTH);
304 if (!buf) {
305 com_err("malloc", ENOMEM, "while allocating zeroizing buffer");
306 exit(1);
307 }
308 memset(buf, 0, fs->blocksize * STRIDE_LENGTH);
309
Theodore Ts'o3839e651997-04-26 13:21:57 +0000310 if (!quiet)
311 printf("Writing inode tables: ");
312 for (i = 0; i < fs->group_desc_count; i++) {
313 if (!quiet)
314 printf("%4d/%4ld", i, fs->group_desc_count);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000315
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000316 blk = fs->group_desc[i].bg_inode_table;
317 num = fs->inode_blocks_per_group;
318
319 for (j=0; j < num; j += STRIDE_LENGTH, blk += STRIDE_LENGTH) {
320 if (num-j > STRIDE_LENGTH)
321 count = STRIDE_LENGTH;
322 else
323 count = num - j;
324 retval = io_channel_write_blk(fs->io, blk, count, buf);
325 if (retval)
326 printf("Warning: could not write %d blocks "
327 "in inode table starting at %d: %s\n",
328 count, blk, error_message(retval));
329 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000330 if (!quiet)
331 printf("\b\b\b\b\b\b\b\b\b");
332 }
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000333 free(buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000334 if (!quiet)
335 printf("done \n");
336}
337
338static void create_root_dir(ext2_filsys fs)
339{
340 errcode_t retval;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000341 struct ext2_inode inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000342
343 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, 0);
344 if (retval) {
345 com_err("ext2fs_mkdir", retval, "while creating root dir");
346 exit(1);
347 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000348 if (geteuid()) {
349 retval = ext2fs_read_inode(fs, EXT2_ROOT_INO, &inode);
350 if (retval) {
351 com_err("ext2fs_read_inode", retval,
352 "while reading root inode");
353 exit(1);
354 }
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000355 inode.i_uid = getuid();
356 if (inode.i_uid)
357 inode.i_gid = getgid();
Theodore Ts'of3db3561997-04-26 13:34:30 +0000358 retval = ext2fs_write_inode(fs, EXT2_ROOT_INO, &inode);
359 if (retval) {
360 com_err("ext2fs_write_inode", retval,
361 "while setting root inode ownership");
362 exit(1);
363 }
364 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000365}
366
367static void create_lost_and_found(ext2_filsys fs)
368{
369 errcode_t retval;
370 ino_t ino;
371 const char *name = "lost+found";
372 int i;
373
374 retval = ext2fs_mkdir(fs, EXT2_ROOT_INO, 0, name);
375 if (retval) {
376 com_err("ext2fs_mkdir", retval, "while creating /lost+found");
377 exit(1);
378 }
379
380 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name, strlen(name), 0, &ino);
381 if (retval) {
382 com_err("ext2_lookup", retval, "while looking up /lost+found");
383 exit(1);
384 }
385
386 for (i=1; i < EXT2_NDIR_BLOCKS; i++) {
387 retval = ext2fs_expand_dir(fs, ino);
388 if (retval) {
389 com_err("ext2fs_expand_dir", retval,
390 "while expanding /lost+found");
391 exit(1);
392 }
393 }
394}
395
396static void create_bad_block_inode(ext2_filsys fs, badblocks_list bb_list)
397{
398 errcode_t retval;
399
Theodore Ts'of3db3561997-04-26 13:34:30 +0000400 ext2fs_mark_inode_bitmap(fs->inode_map, EXT2_BAD_INO);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000401 fs->group_desc[0].bg_free_inodes_count--;
402 fs->super->s_free_inodes_count--;
403 retval = ext2fs_update_bb_inode(fs, bb_list);
404 if (retval) {
405 com_err("ext2fs_update_bb_inode", retval,
406 "while setting bad block inode");
407 exit(1);
408 }
409
410}
411
412static void reserve_inodes(ext2_filsys fs)
413{
414 ino_t i;
415 int group;
416
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000417 for (i = EXT2_ROOT_INO + 1; i < EXT2_FIRST_INODE(fs->super); i++) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000418 ext2fs_mark_inode_bitmap(fs->inode_map, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000419 group = ext2fs_group_of_ino(fs, i);
420 fs->group_desc[group].bg_free_inodes_count--;
421 fs->super->s_free_inodes_count--;
422 }
423 ext2fs_mark_ib_dirty(fs);
424}
425
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000426#ifdef ZAP_BOOTBLOCK
Theodore Ts'of3db3561997-04-26 13:34:30 +0000427static void zap_bootblock(ext2_filsys fs)
428{
429 char buf[512];
430 int retval;
431
432 memset(buf, 0, 512);
433
434 retval = io_channel_write_blk(fs->io, 0, -512, buf);
435 if (retval)
436 printf("Warning: could not erase block 0: %s\n",
437 error_message(retval));
438}
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000439#endif
Theodore Ts'of3db3561997-04-26 13:34:30 +0000440
441
Theodore Ts'o3839e651997-04-26 13:21:57 +0000442static void show_stats(ext2_filsys fs)
443{
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000444 struct ext2fs_sb *s = (struct ext2fs_sb *) fs->super;
445 char buf[80];
Theodore Ts'o3839e651997-04-26 13:21:57 +0000446 blk_t group_block;
447 int i, col_left;
448
449 if (param.s_blocks_count != s->s_blocks_count)
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000450 printf("warning: %d blocks unused.\n\n",
Theodore Ts'o3839e651997-04-26 13:21:57 +0000451 param.s_blocks_count - s->s_blocks_count);
452
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000453 switch (fs->super->s_creator_os) {
454 case EXT2_OS_LINUX: printf ("Linux"); break;
455 case EXT2_OS_HURD: printf ("GNU/hurd"); break;
456 case EXT2_OS_MASIX: printf ("Masix"); break;
457 default: printf ("(unknown os)");
458 }
459 printf (" ext2 filesystem format\n");
460 memset(buf, 0, sizeof(buf));
461 strncpy(buf, s->s_volume_name, sizeof(s->s_volume_name));
462 printf("Filesystem label=%s\n", buf);
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000463 printf("%u inodes, %u blocks\n", s->s_inodes_count,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000464 s->s_blocks_count);
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000465 printf("%u blocks (%2.2f%%) reserved for the super user\n",
Theodore Ts'o3839e651997-04-26 13:21:57 +0000466 s->s_r_blocks_count,
467 100.0 * s->s_r_blocks_count / s->s_blocks_count);
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000468 printf("First data block=%u\n", s->s_first_data_block);
469 printf("Block size=%u (log=%u)\n", fs->blocksize,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000470 s->s_log_block_size);
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000471 printf("Fragment size=%u (log=%u)\n", fs->fragsize,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000472 s->s_log_frag_size);
473 printf("%lu block group%s\n", fs->group_desc_count,
474 (fs->group_desc_count > 1) ? "s" : "");
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000475 printf("%u blocks per group, %u fragments per group\n",
Theodore Ts'o3839e651997-04-26 13:21:57 +0000476 s->s_blocks_per_group, s->s_frags_per_group);
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000477 printf("%u inodes per group\n", s->s_inodes_per_group);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000478
479 if (fs->group_desc_count == 1) {
480 printf("\n");
481 return;
482 }
483
484 printf("Superblock backups stored on blocks: ");
485 group_block = s->s_first_data_block;
486 col_left = 0;
487 for (i = 1; i < fs->group_desc_count; i++) {
488 group_block += s->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000489 if (!ext2fs_bg_has_super(fs, i))
490 continue;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000491 if (!col_left--) {
492 printf("\n\t");
493 col_left = 8;
494 }
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000495 printf("%u", group_block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000496 if (i != fs->group_desc_count - 1)
497 printf(", ");
498 }
499 printf("\n\n");
500}
501
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000502#ifndef HAVE_STRCASECMP
503static int strcasecmp (char *s1, char *s2)
504{
505 while (*s1 && *s2) {
506 int ch1 = *s1++, ch2 = *s2++;
507 if (isupper (ch1))
508 ch1 = tolower (ch1);
509 if (isupper (ch2))
510 ch2 = tolower (ch2);
511 if (ch1 != ch2)
512 return ch1 - ch2;
513 }
514 return *s1 ? 1 : *s2 ? -1 : 0;
515}
516#endif
517
518/*
519 * Set the S_CREATOR_OS field. Return true if OS is known,
520 * otherwise, 0.
521 */
522static int set_os(struct ext2_super_block *sb, char *os)
523{
524 if (isdigit (*os))
525 sb->s_creator_os = atoi (os);
526 else if (strcasecmp(os, "linux") == 0)
527 sb->s_creator_os = EXT2_OS_LINUX;
528 else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
529 sb->s_creator_os = EXT2_OS_HURD;
530 else if (strcasecmp(os, "masix") == 0)
531 sb->s_creator_os = EXT2_OS_MASIX;
532 else
533 return 0;
534 return 1;
535}
536
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000537#define PATH_SET "PATH=/sbin"
538
Theodore Ts'o3839e651997-04-26 13:21:57 +0000539static void PRS(int argc, char *argv[])
540{
541 char c;
542 int size;
543 char * tmp;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000544 blk_t max = 8192;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000545 int inode_ratio = 4096;
546 int reserved_ratio = 5;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000547 errcode_t retval;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000548 int sparse_option = -1;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000549 char *oldpath = getenv("PATH");
Theodore Ts'o521e3681997-04-29 17:48:10 +0000550 struct ext2fs_sb *param_ext2 = (struct ext2fs_sb *) &param;
551
Theodore Ts'o3839e651997-04-26 13:21:57 +0000552 /* Update our PATH to include /sbin */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000553 if (oldpath) {
554 char *newpath;
555
556 newpath = malloc(sizeof (PATH_SET) + 1 + strlen (oldpath));
557 strcpy (newpath, PATH_SET);
558 strcat (newpath, ":");
559 strcat (newpath, oldpath);
560 putenv (newpath);
561 } else
562 putenv (PATH_SET);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000563
564 setbuf(stdout, NULL);
565 setbuf(stderr, NULL);
566 initialize_ext2_error_table();
567 memset(&param, 0, sizeof(struct ext2_super_block));
Theodore Ts'o521e3681997-04-29 17:48:10 +0000568#ifdef EXT2_DYNAMIC_REV
569 param.s_rev_level = EXT2_DYNAMIC_REV;
570#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000571
572 fprintf (stderr, "mke2fs %s, %s for EXT2 FS %s, %s\n",
573 E2FSPROGS_VERSION, E2FSPROGS_DATE,
574 EXT2FS_VERSION, EXT2FS_DATE);
575 if (argc && *argv)
576 program_name = *argv;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000577 while ((c = getopt (argc, argv,
Theodore Ts'o521e3681997-04-29 17:48:10 +0000578 "b:cf:g:i:l:m:o:qr:s:tvI:SFL:M:")) != EOF)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000579 switch (c) {
580 case 'b':
581 size = strtoul(optarg, &tmp, 0);
582 if (size < 1024 || size > 4096 || *tmp) {
583 com_err(program_name, 0, "bad block size - %s",
584 optarg);
585 exit(1);
586 }
587 param.s_log_block_size =
588 log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000589 max = size * 8;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000590 break;
591 case 'c':
592 case 't': /* Check for bad blocks */
593 cflag = 1;
594 break;
595 case 'f':
596 size = strtoul(optarg, &tmp, 0);
597 if (size < 1024 || size > 4096 || *tmp) {
598 com_err(program_name, 0, "bad fragment size - %s",
599 optarg);
600 exit(1);
601 }
602 param.s_log_frag_size =
603 log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
604 printf("Warning: fragments not supported. "
605 "Ignoring -f option\n");
606 break;
607 case 'g':
608 param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000609 if (*tmp) {
610 com_err(program_name, 0,
611 "Illegal number for blocks per group");
612 exit(1);
613 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000614 if ((param.s_blocks_per_group % 8) != 0) {
615 com_err(program_name, 0,
616 "blocks per group must be multiple of 8");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000617 exit(1);
618 }
619 break;
620 case 'i':
621 inode_ratio = strtoul(optarg, &tmp, 0);
622 if (inode_ratio < 1024 || inode_ratio > 256 * 1024 ||
623 *tmp) {
624 com_err(program_name, 0, "bad inode ratio - %s",
625 optarg);
626 exit(1);
627 }
628 break;
629 case 'l':
Theodore Ts'of3db3561997-04-26 13:34:30 +0000630 bad_blocks_filename = malloc(strlen(optarg)+1);
631 if (!bad_blocks_filename) {
632 com_err(program_name, ENOMEM,
633 "in malloc for bad_blocks_filename");
634 exit(1);
635 }
636 strcpy(bad_blocks_filename, optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000637 break;
638 case 'm':
639 reserved_ratio = strtoul(optarg, &tmp, 0);
640 if (reserved_ratio > 50 || *tmp) {
641 com_err(program_name, 0,
642 "bad reserved blocks percent - %s",
643 optarg);
644 exit(1);
645 }
646 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000647 case 'o':
648 creator_os = optarg;
649 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000650 case 'r':
651 param.s_rev_level = atoi(optarg);
652 break;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000653 case 's':
654 sparse_option = atoi(optarg);
655 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000656#ifdef EXT2_DYNAMIC_REV
657 case 'I':
658 param.s_inode_size = atoi(optarg);
659 break;
660#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000661 case 'v':
662 verbose = 1;
663 break;
664 case 'q':
665 quiet = 1;
666 break;
Theodore Ts'o74becf31997-04-26 14:37:06 +0000667 case 'F':
668 force = 1;
669 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000670 case 'L':
671 volume_label = optarg;
672 break;
673 case 'M':
674 mount_dir = optarg;
675 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000676 case 'S':
677 super_only = 1;
678 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000679 default:
680 usage();
681 }
682 if (optind == argc)
683 usage();
684 device_name = argv[optind];
685 optind++;
686 if (optind < argc) {
687 param.s_blocks_count = strtoul(argv[optind++], &tmp, 0);
688 if (*tmp) {
689 com_err(program_name, 0, "bad blocks count - %s",
690 argv[optind - 1]);
691 exit(1);
692 }
693 }
694 if (optind < argc)
695 usage();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000696
Theodore Ts'o74becf31997-04-26 14:37:06 +0000697 if (!force)
698 check_plausibility();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000699 check_mount();
700
Theodore Ts'o3839e651997-04-26 13:21:57 +0000701 param.s_log_frag_size = param.s_log_block_size;
702
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000703 if (!param.s_blocks_count) {
704 retval = ext2fs_get_device_size(device_name,
705 EXT2_BLOCK_SIZE(&param),
706 &param.s_blocks_count);
707 if (retval) {
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000708 com_err(program_name, retval,
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000709 "while trying to determine filesystem size");
710 exit(1);
711 }
712 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000713
Theodore Ts'o521e3681997-04-29 17:48:10 +0000714 if (param.s_blocks_per_group) {
715 if (param.s_blocks_per_group < 256 ||
716 param.s_blocks_per_group > max || *tmp) {
717 com_err(program_name, 0,
718 "blocks per group count out of range");
719 exit(1);
720 }
721 }
722
Theodore Ts'o3839e651997-04-26 13:21:57 +0000723 /*
724 * Calculate number of inodes based on the inode ratio
725 */
726 param.s_inodes_count =
Theodore Ts'of3db3561997-04-26 13:34:30 +0000727 ((long long) param.s_blocks_count * EXT2_BLOCK_SIZE(&param))
728 / inode_ratio;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000729
730 /*
731 * Calculate number of blocks to reserve
732 */
733 param.s_r_blocks_count = (param.s_blocks_count * reserved_ratio) / 100;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000734
735 /*
736 * If we are using revision #1, use the sparse super feature
737 * by default
738 */
739#ifdef EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER
740 if ((sparse_option == 1)
741#ifdef EXT2_DYNAMIC_REV
742 || (param.s_rev_level >= EXT2_DYNAMIC_REV) && (!sparse_option)
743#endif
744 )
745 param_ext2->s_feature_ro_compat |=
746 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
747#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000748}
749
750int main (int argc, char *argv[])
751{
752 errcode_t retval = 0;
753 ext2_filsys fs;
754 badblocks_list bb_list = 0;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000755 struct ext2fs_sb *s;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000756
757 PRS(argc, argv);
758
Theodore Ts'o3839e651997-04-26 13:21:57 +0000759 /*
760 * Initialize the superblock....
761 */
762 retval = ext2fs_initialize(device_name, 0, &param,
763 unix_io_manager, &fs);
764 if (retval) {
765 com_err(device_name, retval, "while setting up superblock");
766 exit(1);
767 }
768
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000769 /*
770 * Generate a UUID for it...
771 */
772 s = (struct ext2fs_sb *) fs->super;
773 uuid_generate(s->s_uuid);
774
775 /*
776 * Override the creator OS, if applicable
777 */
778 if (creator_os && !set_os(fs->super, creator_os)) {
779 com_err (program_name, 0, "unknown os - %s", creator_os);
780 exit(1);
781 }
782
783 /*
784 * Set the volume label...
785 */
786 if (volume_label) {
787 memset(s->s_volume_name, 0, sizeof(s->s_volume_name));
788 strncpy(s->s_volume_name, volume_label,
789 sizeof(s->s_volume_name));
790 }
791
792 /*
793 * Set the last mount directory
794 */
795 if (mount_dir) {
796 memset(s->s_last_mounted, 0, sizeof(s->s_last_mounted));
797 strncpy(s->s_last_mounted, mount_dir,
798 sizeof(s->s_last_mounted));
799 }
800
Theodore Ts'o3839e651997-04-26 13:21:57 +0000801 if (!quiet)
802 show_stats(fs);
803
804 if (bad_blocks_filename)
805 read_bb_file(fs, &bb_list, bad_blocks_filename);
806 if (cflag)
807 test_disk(fs, &bb_list);
808
809 handle_bad_blocks(fs, bb_list);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000810 retval = ext2fs_allocate_tables(fs);
811 if (retval) {
812 com_err(program_name, retval,
813 "while trying to allocate filesystem tables");
814 exit(1);
815 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000816 if (super_only) {
817 fs->super->s_state |= EXT2_ERROR_FS;
818 fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
819 } else {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000820 write_inode_tables(fs);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000821 create_root_dir(fs);
822 create_lost_and_found(fs);
823 reserve_inodes(fs);
824 create_bad_block_inode(fs, bb_list);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000825#ifdef ZAP_BOOTBLOCK
Theodore Ts'of3db3561997-04-26 13:34:30 +0000826 zap_bootblock(fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000827#endif
Theodore Ts'of3db3561997-04-26 13:34:30 +0000828 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000829
830 if (!quiet)
831 printf("Writing superblocks and "
832 "filesystem accounting information: ");
833 ext2fs_close(fs);
834 if (!quiet)
835 printf("done\n");
836 return 0;
837}