blob: 3723af5dea7c89d8e72c70dedcc9d2f4825050cc [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;
489 if (!col_left--) {
490 printf("\n\t");
491 col_left = 8;
492 }
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000493 printf("%u", group_block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000494 if (i != fs->group_desc_count - 1)
495 printf(", ");
496 }
497 printf("\n\n");
498}
499
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000500#ifndef HAVE_STRCASECMP
501static int strcasecmp (char *s1, char *s2)
502{
503 while (*s1 && *s2) {
504 int ch1 = *s1++, ch2 = *s2++;
505 if (isupper (ch1))
506 ch1 = tolower (ch1);
507 if (isupper (ch2))
508 ch2 = tolower (ch2);
509 if (ch1 != ch2)
510 return ch1 - ch2;
511 }
512 return *s1 ? 1 : *s2 ? -1 : 0;
513}
514#endif
515
516/*
517 * Set the S_CREATOR_OS field. Return true if OS is known,
518 * otherwise, 0.
519 */
520static int set_os(struct ext2_super_block *sb, char *os)
521{
522 if (isdigit (*os))
523 sb->s_creator_os = atoi (os);
524 else if (strcasecmp(os, "linux") == 0)
525 sb->s_creator_os = EXT2_OS_LINUX;
526 else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0)
527 sb->s_creator_os = EXT2_OS_HURD;
528 else if (strcasecmp(os, "masix") == 0)
529 sb->s_creator_os = EXT2_OS_MASIX;
530 else
531 return 0;
532 return 1;
533}
534
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000535#define PATH_SET "PATH=/sbin"
536
Theodore Ts'o3839e651997-04-26 13:21:57 +0000537static void PRS(int argc, char *argv[])
538{
539 char c;
540 int size;
541 char * tmp;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000542 int inode_ratio = 4096;
543 int reserved_ratio = 5;
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000544 errcode_t retval;
545 char *oldpath = getenv("PATH");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000546
547 /* Update our PATH to include /sbin */
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000548 if (oldpath) {
549 char *newpath;
550
551 newpath = malloc(sizeof (PATH_SET) + 1 + strlen (oldpath));
552 strcpy (newpath, PATH_SET);
553 strcat (newpath, ":");
554 strcat (newpath, oldpath);
555 putenv (newpath);
556 } else
557 putenv (PATH_SET);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000558
559 setbuf(stdout, NULL);
560 setbuf(stderr, NULL);
561 initialize_ext2_error_table();
562 memset(&param, 0, sizeof(struct ext2_super_block));
563
564 fprintf (stderr, "mke2fs %s, %s for EXT2 FS %s, %s\n",
565 E2FSPROGS_VERSION, E2FSPROGS_DATE,
566 EXT2FS_VERSION, EXT2FS_DATE);
567 if (argc && *argv)
568 program_name = *argv;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000569 while ((c = getopt (argc, argv,
570 "b:cf:g:i:l:m:o:qr:tvI:SFL:M:")) != EOF)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000571 switch (c) {
572 case 'b':
573 size = strtoul(optarg, &tmp, 0);
574 if (size < 1024 || size > 4096 || *tmp) {
575 com_err(program_name, 0, "bad block size - %s",
576 optarg);
577 exit(1);
578 }
579 param.s_log_block_size =
580 log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
581 break;
582 case 'c':
583 case 't': /* Check for bad blocks */
584 cflag = 1;
585 break;
586 case 'f':
587 size = strtoul(optarg, &tmp, 0);
588 if (size < 1024 || size > 4096 || *tmp) {
589 com_err(program_name, 0, "bad fragment size - %s",
590 optarg);
591 exit(1);
592 }
593 param.s_log_frag_size =
594 log2(size >> EXT2_MIN_BLOCK_LOG_SIZE);
595 printf("Warning: fragments not supported. "
596 "Ignoring -f option\n");
597 break;
598 case 'g':
599 param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000600 if (*tmp) {
601 com_err(program_name, 0,
602 "Illegal number for blocks per group");
603 exit(1);
604 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000605 if (param.s_blocks_per_group < 256 ||
606 param.s_blocks_per_group > 8192 || *tmp) {
607 com_err(program_name, 0,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000608 "blocks per group count out of range");
609 exit(1);
610 }
611 if ((param.s_blocks_per_group % 8) != 0) {
612 com_err(program_name, 0,
613 "blocks per group must be multiple of 8");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000614 exit(1);
615 }
616 break;
617 case 'i':
618 inode_ratio = strtoul(optarg, &tmp, 0);
619 if (inode_ratio < 1024 || inode_ratio > 256 * 1024 ||
620 *tmp) {
621 com_err(program_name, 0, "bad inode ratio - %s",
622 optarg);
623 exit(1);
624 }
625 break;
626 case 'l':
Theodore Ts'of3db3561997-04-26 13:34:30 +0000627 bad_blocks_filename = malloc(strlen(optarg)+1);
628 if (!bad_blocks_filename) {
629 com_err(program_name, ENOMEM,
630 "in malloc for bad_blocks_filename");
631 exit(1);
632 }
633 strcpy(bad_blocks_filename, optarg);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000634 break;
635 case 'm':
636 reserved_ratio = strtoul(optarg, &tmp, 0);
637 if (reserved_ratio > 50 || *tmp) {
638 com_err(program_name, 0,
639 "bad reserved blocks percent - %s",
640 optarg);
641 exit(1);
642 }
643 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000644 case 'o':
645 creator_os = optarg;
646 break;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000647 case 'r':
648 param.s_rev_level = atoi(optarg);
649 break;
650#ifdef EXT2_DYNAMIC_REV
651 case 'I':
652 param.s_inode_size = atoi(optarg);
653 break;
654#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000655 case 'v':
656 verbose = 1;
657 break;
658 case 'q':
659 quiet = 1;
660 break;
Theodore Ts'o74becf31997-04-26 14:37:06 +0000661 case 'F':
662 force = 1;
663 break;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000664 case 'L':
665 volume_label = optarg;
666 break;
667 case 'M':
668 mount_dir = optarg;
669 break;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000670 case 'S':
671 super_only = 1;
672 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000673 default:
674 usage();
675 }
676 if (optind == argc)
677 usage();
678 device_name = argv[optind];
679 optind++;
680 if (optind < argc) {
681 param.s_blocks_count = strtoul(argv[optind++], &tmp, 0);
682 if (*tmp) {
683 com_err(program_name, 0, "bad blocks count - %s",
684 argv[optind - 1]);
685 exit(1);
686 }
687 }
688 if (optind < argc)
689 usage();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000690
Theodore Ts'o74becf31997-04-26 14:37:06 +0000691 if (!force)
692 check_plausibility();
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000693 check_mount();
694
Theodore Ts'o3839e651997-04-26 13:21:57 +0000695 param.s_log_frag_size = param.s_log_block_size;
696
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000697 if (!param.s_blocks_count) {
698 retval = ext2fs_get_device_size(device_name,
699 EXT2_BLOCK_SIZE(&param),
700 &param.s_blocks_count);
701 if (retval) {
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000702 com_err(program_name, retval,
Theodore Ts'oa418d3a1997-04-26 14:00:26 +0000703 "while trying to determine filesystem size");
704 exit(1);
705 }
706 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000707
708 /*
709 * Calculate number of inodes based on the inode ratio
710 */
711 param.s_inodes_count =
Theodore Ts'of3db3561997-04-26 13:34:30 +0000712 ((long long) param.s_blocks_count * EXT2_BLOCK_SIZE(&param))
713 / inode_ratio;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000714
715 /*
716 * Calculate number of blocks to reserve
717 */
718 param.s_r_blocks_count = (param.s_blocks_count * reserved_ratio) / 100;
719}
720
721int main (int argc, char *argv[])
722{
723 errcode_t retval = 0;
724 ext2_filsys fs;
725 badblocks_list bb_list = 0;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000726 struct ext2fs_sb *s;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000727
728 PRS(argc, argv);
729
Theodore Ts'o3839e651997-04-26 13:21:57 +0000730 /*
731 * Initialize the superblock....
732 */
733 retval = ext2fs_initialize(device_name, 0, &param,
734 unix_io_manager, &fs);
735 if (retval) {
736 com_err(device_name, retval, "while setting up superblock");
737 exit(1);
738 }
739
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000740 /*
741 * Generate a UUID for it...
742 */
743 s = (struct ext2fs_sb *) fs->super;
744 uuid_generate(s->s_uuid);
745
746 /*
747 * Override the creator OS, if applicable
748 */
749 if (creator_os && !set_os(fs->super, creator_os)) {
750 com_err (program_name, 0, "unknown os - %s", creator_os);
751 exit(1);
752 }
753
754 /*
755 * Set the volume label...
756 */
757 if (volume_label) {
758 memset(s->s_volume_name, 0, sizeof(s->s_volume_name));
759 strncpy(s->s_volume_name, volume_label,
760 sizeof(s->s_volume_name));
761 }
762
763 /*
764 * Set the last mount directory
765 */
766 if (mount_dir) {
767 memset(s->s_last_mounted, 0, sizeof(s->s_last_mounted));
768 strncpy(s->s_last_mounted, mount_dir,
769 sizeof(s->s_last_mounted));
770 }
771
Theodore Ts'o3839e651997-04-26 13:21:57 +0000772 if (!quiet)
773 show_stats(fs);
774
775 if (bad_blocks_filename)
776 read_bb_file(fs, &bb_list, bad_blocks_filename);
777 if (cflag)
778 test_disk(fs, &bb_list);
779
780 handle_bad_blocks(fs, bb_list);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000781 retval = ext2fs_allocate_tables(fs);
782 if (retval) {
783 com_err(program_name, retval,
784 "while trying to allocate filesystem tables");
785 exit(1);
786 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000787 if (super_only) {
788 fs->super->s_state |= EXT2_ERROR_FS;
789 fs->flags &= ~(EXT2_FLAG_IB_DIRTY|EXT2_FLAG_BB_DIRTY);
790 } else {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000791 write_inode_tables(fs);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000792 create_root_dir(fs);
793 create_lost_and_found(fs);
794 reserve_inodes(fs);
795 create_bad_block_inode(fs, bb_list);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000796#ifdef ZAP_BOOTBLOCK
Theodore Ts'of3db3561997-04-26 13:34:30 +0000797 zap_bootblock(fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000798#endif
Theodore Ts'of3db3561997-04-26 13:34:30 +0000799 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000800
801 if (!quiet)
802 printf("Writing superblocks and "
803 "filesystem accounting information: ");
804 ext2fs_close(fs);
805 if (!quiet)
806 printf("done\n");
807 return 0;
808}