source: MondoRescue/branches/3.3/mindi-busybox/util-linux/mkfs_minix.c@ 3667

Last change on this file since 3667 was 3621, checked in by Bruno Cornec, 7 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

File size: 18.3 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * mkfs.c - make a linux (minix) file-system.
4 *
[2725]5 * (C) 1991 Linus Torvalds.
6 *
7 * Licensed under GPLv2, see file LICENSE in this source tree.
[821]8 */
9
10/*
11 * DD.MM.YY
12 *
13 * 24.11.91 - Time began. Used the fsck sources to get started.
14 *
15 * 25.11.91 - Corrected some bugs. Added support for ".badblocks"
16 * The algorithm for ".badblocks" is a bit weird, but
17 * it should work. Oh, well.
18 *
19 * 25.01.92 - Added the -l option for getting the list of bad blocks
20 * out of a named file. (Dave Rivers, rivers@ponds.uucp)
21 *
22 * 28.02.92 - Added %-information when using -c.
23 *
24 * 28.02.93 - Added support for other namelengths than the original
25 * 14 characters so that I can test the new kernel routines..
26 *
27 * 09.10.93 - Make exit status conform to that required by fsutil
28 * (Rik Faith, faith@cs.unc.edu)
29 *
30 * 31.10.93 - Added inode request feature, for backup floppies: use
31 * 32 inodes, for a news partition use more.
32 * (Scott Heavner, sdh@po.cwru.edu)
33 *
34 * 03.01.94 - Added support for file system valid flag.
35 * (Dr. Wettstein, greg%wind.uucp@plains.nodak.edu)
36 *
[1765]37 * 30.10.94 - added support for v2 filesystem
38 * (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de)
[821]39 *
40 * 09.11.94 - Added test to prevent overwrite of mounted fs adapted
41 * from Theodore Ts'o's (tytso@athena.mit.edu) mke2fs
42 * program. (Daniel Quinlan, quinlan@yggdrasil.com)
43 *
44 * 03.20.95 - Clear first 512 bytes of filesystem to make certain that
45 * the filesystem is not misidentified as a MS-DOS FAT filesystem.
46 * (Daniel Quinlan, quinlan@yggdrasil.com)
47 *
48 * 02.07.96 - Added small patch from Russell King to make the program a
49 * good deal more portable (janl@math.uio.no)
50 *
51 * Usage: mkfs [-c | -l filename ] [-v] [-nXX] [-iXX] device [size-in-blocks]
52 *
53 * -c for readability checking (SLOW!)
54 * -l for getting a list of bad blocks from a file.
55 * -n for namelength (currently the kernel only uses 14 or 30)
56 * -i for number of inodes
57 * -v for v2 filesystem
58 *
59 * The device may be a block device or a image of one, but this isn't
60 * enforced (but it's not much fun on a character device :-).
61 *
62 * Modified for BusyBox by Erik Andersen <andersen@debian.org> --
63 * removed getopt based parser and added a hand rolled one.
64 */
65
[3232]66//usage:#define mkfs_minix_trivial_usage
67//usage: "[-c | -l FILE] [-nXX] [-iXX] BLOCKDEV [KBYTES]"
68//usage:#define mkfs_minix_full_usage "\n\n"
69//usage: "Make a MINIX filesystem\n"
70//usage: "\n -c Check device for bad blocks"
71//usage: "\n -n [14|30] Maximum length of filenames"
72//usage: "\n -i INODES Number of inodes for the filesystem"
73//usage: "\n -l FILE Read bad blocks list from FILE"
74//usage: "\n -v Make version 2 filesystem"
75
[1765]76#include "libbb.h"
[821]77#include <mntent.h>
78
[1765]79#include "minix.h"
[821]80
[2725]81/* Store the very same times/uids/gids for image consistency */
82#if 1
[1765]83# define CUR_TIME 0
84# define GETUID 0
85# define GETGID 0
86#else
[2725]87/* Was using this. Is it useful? NB: this will break testsuite */
[1765]88# define CUR_TIME time(NULL)
89# define GETUID getuid()
90# define GETGID getgid()
91#endif
[821]92
[1765]93enum {
94 MAX_GOOD_BLOCKS = 512,
95 TEST_BUFFER_BLOCKS = 16,
[821]96};
97
[1765]98#if !ENABLE_FEATURE_MINIX2
99enum { version2 = 0 };
[821]100#endif
101
[2725]102enum { dev_fd = 3 };
103
[1765]104struct globals {
105#if ENABLE_FEATURE_MINIX2
106 smallint version2;
107#define version2 G.version2
[821]108#endif
[1765]109 char *device_name;
110 uint32_t total_blocks;
111 int badblocks;
112 int namelen;
113 int dirsize;
114 int magic;
115 char *inode_buffer;
116 char *inode_map;
117 char *zone_map;
118 int used_good_blocks;
119 unsigned long req_nr_inodes;
120 unsigned currently_testing;
[821]121
[1765]122 char root_block[BLOCK_SIZE];
[2725]123 char superblock_buffer[BLOCK_SIZE];
[1765]124 char boot_block_buffer[512];
125 unsigned short good_blocks_table[MAX_GOOD_BLOCKS];
126 /* check_blocks(): buffer[] was the biggest static in entire bbox */
127 char check_blocks_buffer[BLOCK_SIZE * TEST_BUFFER_BLOCKS];
[2725]128
129 unsigned short ind_block1[BLOCK_SIZE >> 1];
130 unsigned short dind_block1[BLOCK_SIZE >> 1];
131 unsigned long ind_block2[BLOCK_SIZE >> 2];
132 unsigned long dind_block2[BLOCK_SIZE >> 2];
[1765]133};
134#define G (*ptr_to_globals)
[2725]135#define INIT_G() do { \
136 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
137} while (0)
[821]138
[1765]139static ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n)
140{
141 return (size + n-1) / n;
142}
[821]143
[1765]144#define INODE_BUF1 (((struct minix1_inode*)G.inode_buffer) - 1)
145#define INODE_BUF2 (((struct minix2_inode*)G.inode_buffer) - 1)
[821]146
[2725]147#define SB (*(struct minix_superblock*)G.superblock_buffer)
[821]148
[1765]149#define SB_INODES (SB.s_ninodes)
150#define SB_IMAPS (SB.s_imap_blocks)
151#define SB_ZMAPS (SB.s_zmap_blocks)
152#define SB_FIRSTZONE (SB.s_firstdatazone)
153#define SB_ZONE_SIZE (SB.s_log_zone_size)
154#define SB_MAXSIZE (SB.s_max_size)
155#define SB_MAGIC (SB.s_magic)
[821]156
[1765]157#if !ENABLE_FEATURE_MINIX2
158# define SB_ZONES (SB.s_nzones)
159# define INODE_BLOCKS div_roundup(SB_INODES, MINIX1_INODES_PER_BLOCK)
[821]160#else
[1765]161# define SB_ZONES (version2 ? SB.s_zones : SB.s_nzones)
162# define INODE_BLOCKS div_roundup(SB_INODES, \
[2725]163 (version2 ? MINIX2_INODES_PER_BLOCK : MINIX1_INODES_PER_BLOCK))
[821]164#endif
165
[1765]166#define INODE_BUFFER_SIZE (INODE_BLOCKS * BLOCK_SIZE)
167#define NORM_FIRSTZONE (2 + SB_IMAPS + SB_ZMAPS + INODE_BLOCKS)
[821]168
[1765]169/* Before you ask "where they come from?": */
170/* setbit/clrbit are supplied by sys/param.h */
[821]171
[1765]172static int minix_bit(const char* a, unsigned i)
[821]173{
[2725]174 return a[i >> 3] & (1<<(i & 7));
[821]175}
176
[1765]177static void minix_setbit(char *a, unsigned i)
178{
179 setbit(a, i);
180}
181static void minix_clrbit(char *a, unsigned i)
182{
183 clrbit(a, i);
184}
[821]185
[1765]186/* Note: do not assume 0/1, it is 0/nonzero */
187#define zone_in_use(x) minix_bit(G.zone_map,(x)-SB_FIRSTZONE+1)
188/*#define inode_in_use(x) minix_bit(G.inode_map,(x))*/
[821]189
[1765]190#define mark_inode(x) minix_setbit(G.inode_map,(x))
191#define unmark_inode(x) minix_clrbit(G.inode_map,(x))
192#define mark_zone(x) minix_setbit(G.zone_map,(x)-SB_FIRSTZONE+1)
193#define unmark_zone(x) minix_clrbit(G.zone_map,(x)-SB_FIRSTZONE+1)
[821]194
[1765]195#ifndef BLKGETSIZE
196# define BLKGETSIZE _IO(0x12,96) /* return device size */
197#endif
[821]198
[1765]199static void write_tables(void)
[821]200{
[2725]201 /* Mark the superblock valid. */
[1765]202 SB.s_state |= MINIX_VALID_FS;
203 SB.s_state &= ~MINIX_ERROR_FS;
[821]204
[1765]205 msg_eol = "seek to 0 failed";
[2725]206 xlseek(dev_fd, 0, SEEK_SET);
[821]207
[2725]208 msg_eol = "can't clear boot sector";
209 xwrite(dev_fd, G.boot_block_buffer, 512);
[1765]210
211 msg_eol = "seek to BLOCK_SIZE failed";
[2725]212 xlseek(dev_fd, BLOCK_SIZE, SEEK_SET);
[1765]213
[2725]214 msg_eol = "can't write superblock";
215 xwrite(dev_fd, G.superblock_buffer, BLOCK_SIZE);
[1765]216
[2725]217 msg_eol = "can't write inode map";
218 xwrite(dev_fd, G.inode_map, SB_IMAPS * BLOCK_SIZE);
[1765]219
[2725]220 msg_eol = "can't write zone map";
221 xwrite(dev_fd, G.zone_map, SB_ZMAPS * BLOCK_SIZE);
[1765]222
[2725]223 msg_eol = "can't write inodes";
224 xwrite(dev_fd, G.inode_buffer, INODE_BUFFER_SIZE);
[1765]225
226 msg_eol = "\n";
[821]227}
228
229static void write_block(int blk, char *buffer)
230{
[2725]231 xlseek(dev_fd, blk * BLOCK_SIZE, SEEK_SET);
232 xwrite(dev_fd, buffer, BLOCK_SIZE);
[821]233}
234
235static int get_free_block(void)
236{
237 int blk;
238
[1765]239 if (G.used_good_blocks + 1 >= MAX_GOOD_BLOCKS)
[821]240 bb_error_msg_and_die("too many bad blocks");
[1765]241 if (G.used_good_blocks)
242 blk = G.good_blocks_table[G.used_good_blocks - 1] + 1;
[821]243 else
[1765]244 blk = SB_FIRSTZONE;
245 while (blk < SB_ZONES && zone_in_use(blk))
[821]246 blk++;
[1765]247 if (blk >= SB_ZONES)
[821]248 bb_error_msg_and_die("not enough good blocks");
[1765]249 G.good_blocks_table[G.used_good_blocks] = blk;
250 G.used_good_blocks++;
[821]251 return blk;
252}
253
[1765]254static void mark_good_blocks(void)
[821]255{
256 int blk;
257
[1765]258 for (blk = 0; blk < G.used_good_blocks; blk++)
259 mark_zone(G.good_blocks_table[blk]);
[821]260}
261
262static int next(int zone)
263{
264 if (!zone)
[1765]265 zone = SB_FIRSTZONE - 1;
266 while (++zone < SB_ZONES)
[821]267 if (zone_in_use(zone))
268 return zone;
269 return 0;
270}
271
[1765]272static void make_bad_inode(void)
[821]273{
[1765]274 struct minix1_inode *inode = &INODE_BUF1[MINIX_BAD_INO];
[821]275 int i, j, zone;
276 int ind = 0, dind = 0;
[2725]277 /* moved to globals to reduce stack usage
[821]278 unsigned short ind_block[BLOCK_SIZE >> 1];
279 unsigned short dind_block[BLOCK_SIZE >> 1];
[2725]280 */
281#define ind_block (G.ind_block1)
282#define dind_block (G.dind_block1)
[821]283
284#define NEXT_BAD (zone = next(zone))
285
[1765]286 if (!G.badblocks)
[821]287 return;
288 mark_inode(MINIX_BAD_INO);
289 inode->i_nlinks = 1;
[1765]290 /* BTW, setting this makes all images different */
291 /* it's harder to check for bugs then - diff isn't helpful :(... */
292 inode->i_time = CUR_TIME;
[821]293 inode->i_mode = S_IFREG + 0000;
[1765]294 inode->i_size = G.badblocks * BLOCK_SIZE;
[821]295 zone = next(0);
296 for (i = 0; i < 7; i++) {
297 inode->i_zone[i] = zone;
298 if (!NEXT_BAD)
299 goto end_bad;
300 }
301 inode->i_zone[7] = ind = get_free_block();
302 memset(ind_block, 0, BLOCK_SIZE);
303 for (i = 0; i < 512; i++) {
304 ind_block[i] = zone;
305 if (!NEXT_BAD)
306 goto end_bad;
307 }
308 inode->i_zone[8] = dind = get_free_block();
309 memset(dind_block, 0, BLOCK_SIZE);
310 for (i = 0; i < 512; i++) {
311 write_block(ind, (char *) ind_block);
312 dind_block[i] = ind = get_free_block();
313 memset(ind_block, 0, BLOCK_SIZE);
314 for (j = 0; j < 512; j++) {
315 ind_block[j] = zone;
316 if (!NEXT_BAD)
317 goto end_bad;
318 }
319 }
320 bb_error_msg_and_die("too many bad blocks");
[1765]321 end_bad:
[821]322 if (ind)
323 write_block(ind, (char *) ind_block);
324 if (dind)
325 write_block(dind, (char *) dind_block);
[2725]326#undef ind_block
327#undef dind_block
[821]328}
329
[1765]330#if ENABLE_FEATURE_MINIX2
331static void make_bad_inode2(void)
[821]332{
[1765]333 struct minix2_inode *inode = &INODE_BUF2[MINIX_BAD_INO];
[821]334 int i, j, zone;
335 int ind = 0, dind = 0;
[2725]336 /* moved to globals to reduce stack usage
[821]337 unsigned long ind_block[BLOCK_SIZE >> 2];
338 unsigned long dind_block[BLOCK_SIZE >> 2];
[2725]339 */
340#define ind_block (G.ind_block2)
341#define dind_block (G.dind_block2)
[821]342
[1765]343 if (!G.badblocks)
[821]344 return;
345 mark_inode(MINIX_BAD_INO);
346 inode->i_nlinks = 1;
[1765]347 inode->i_atime = inode->i_mtime = inode->i_ctime = CUR_TIME;
[821]348 inode->i_mode = S_IFREG + 0000;
[1765]349 inode->i_size = G.badblocks * BLOCK_SIZE;
[821]350 zone = next(0);
351 for (i = 0; i < 7; i++) {
352 inode->i_zone[i] = zone;
353 if (!NEXT_BAD)
354 goto end_bad;
355 }
356 inode->i_zone[7] = ind = get_free_block();
357 memset(ind_block, 0, BLOCK_SIZE);
358 for (i = 0; i < 256; i++) {
359 ind_block[i] = zone;
360 if (!NEXT_BAD)
361 goto end_bad;
362 }
363 inode->i_zone[8] = dind = get_free_block();
364 memset(dind_block, 0, BLOCK_SIZE);
365 for (i = 0; i < 256; i++) {
366 write_block(ind, (char *) ind_block);
367 dind_block[i] = ind = get_free_block();
368 memset(ind_block, 0, BLOCK_SIZE);
369 for (j = 0; j < 256; j++) {
370 ind_block[j] = zone;
371 if (!NEXT_BAD)
372 goto end_bad;
373 }
374 }
375 /* Could make triple indirect block here */
376 bb_error_msg_and_die("too many bad blocks");
[1765]377 end_bad:
[821]378 if (ind)
379 write_block(ind, (char *) ind_block);
380 if (dind)
381 write_block(dind, (char *) dind_block);
[2725]382#undef ind_block
383#undef dind_block
[821]384}
[1765]385#else
386void make_bad_inode2(void);
[821]387#endif
388
[1765]389static void make_root_inode(void)
[821]390{
[1765]391 struct minix1_inode *inode = &INODE_BUF1[MINIX_ROOT_INO];
[821]392
393 mark_inode(MINIX_ROOT_INO);
394 inode->i_zone[0] = get_free_block();
395 inode->i_nlinks = 2;
[1765]396 inode->i_time = CUR_TIME;
397 if (G.badblocks)
398 inode->i_size = 3 * G.dirsize;
[821]399 else {
[1765]400 G.root_block[2 * G.dirsize] = '\0';
401 G.root_block[2 * G.dirsize + 1] = '\0';
402 inode->i_size = 2 * G.dirsize;
[821]403 }
404 inode->i_mode = S_IFDIR + 0755;
[1765]405 inode->i_uid = GETUID;
[821]406 if (inode->i_uid)
[1765]407 inode->i_gid = GETGID;
408 write_block(inode->i_zone[0], G.root_block);
[821]409}
410
[1765]411#if ENABLE_FEATURE_MINIX2
412static void make_root_inode2(void)
[821]413{
[1765]414 struct minix2_inode *inode = &INODE_BUF2[MINIX_ROOT_INO];
[821]415
416 mark_inode(MINIX_ROOT_INO);
417 inode->i_zone[0] = get_free_block();
418 inode->i_nlinks = 2;
[1765]419 inode->i_atime = inode->i_mtime = inode->i_ctime = CUR_TIME;
420 if (G.badblocks)
421 inode->i_size = 3 * G.dirsize;
[821]422 else {
[1765]423 G.root_block[2 * G.dirsize] = '\0';
424 G.root_block[2 * G.dirsize + 1] = '\0';
425 inode->i_size = 2 * G.dirsize;
[821]426 }
427 inode->i_mode = S_IFDIR + 0755;
[1765]428 inode->i_uid = GETUID;
[821]429 if (inode->i_uid)
[1765]430 inode->i_gid = GETGID;
431 write_block(inode->i_zone[0], G.root_block);
[821]432}
[1765]433#else
434void make_root_inode2(void);
[821]435#endif
436
437/*
438 * Perform a test of a block; return the number of
[1765]439 * blocks readable.
[821]440 */
[1765]441static size_t do_check(char *buffer, size_t try, unsigned current_block)
[821]442{
[1765]443 ssize_t got;
[821]444
445 /* Seek to the correct loc. */
[1765]446 msg_eol = "seek failed during testing of blocks";
[2725]447 xlseek(dev_fd, current_block * BLOCK_SIZE, SEEK_SET);
[1765]448 msg_eol = "\n";
[821]449
450 /* Try the read */
[2725]451 got = read(dev_fd, buffer, try * BLOCK_SIZE);
[821]452 if (got < 0)
453 got = 0;
[1765]454 try = ((size_t)got) / BLOCK_SIZE;
455
456 if (got & (BLOCK_SIZE - 1))
457 fprintf(stderr, "Short read at block %u\n", (unsigned)(current_block + try));
458 return try;
[821]459}
460
[2725]461static void alarm_intr(int alnum UNUSED_PARAM)
[821]462{
[1765]463 if (G.currently_testing >= SB_ZONES)
[821]464 return;
465 signal(SIGALRM, alarm_intr);
466 alarm(5);
[1765]467 if (!G.currently_testing)
[821]468 return;
[1765]469 printf("%d ...", G.currently_testing);
[2725]470 fflush_all();
[821]471}
472
473static void check_blocks(void)
474{
[1765]475 size_t try, got;
[821]476
[1765]477 G.currently_testing = 0;
[821]478 signal(SIGALRM, alarm_intr);
479 alarm(5);
[1765]480 while (G.currently_testing < SB_ZONES) {
481 msg_eol = "seek failed in check_blocks";
[2725]482 xlseek(dev_fd, G.currently_testing * BLOCK_SIZE, SEEK_SET);
[1765]483 msg_eol = "\n";
[821]484 try = TEST_BUFFER_BLOCKS;
[1765]485 if (G.currently_testing + try > SB_ZONES)
486 try = SB_ZONES - G.currently_testing;
487 got = do_check(G.check_blocks_buffer, try, G.currently_testing);
488 G.currently_testing += got;
[821]489 if (got == try)
490 continue;
[1765]491 if (G.currently_testing < SB_FIRSTZONE)
[821]492 bb_error_msg_and_die("bad blocks before data-area: cannot make fs");
[1765]493 mark_zone(G.currently_testing);
494 G.badblocks++;
495 G.currently_testing++;
[821]496 }
[1765]497 alarm(0);
498 printf("%d bad block(s)\n", G.badblocks);
[821]499}
500
501static void get_list_blocks(char *filename)
502{
503 FILE *listfile;
504 unsigned long blockno;
505
[2725]506 listfile = xfopen_for_read(filename);
[821]507 while (!feof(listfile)) {
[3621]508 fscanf(listfile, "%lu\n", &blockno);
[821]509 mark_zone(blockno);
[1765]510 G.badblocks++;
[821]511 }
[1765]512 printf("%d bad block(s)\n", G.badblocks);
[821]513}
514
[1765]515static void setup_tables(void)
516{
517 unsigned long inodes;
518 unsigned norm_firstzone;
519 unsigned sb_zmaps;
520 unsigned i;
521
[2725]522 /* memset(G.superblock_buffer, 0, BLOCK_SIZE); */
[1765]523 /* memset(G.boot_block_buffer, 0, 512); */
524 SB_MAGIC = G.magic;
525 SB_ZONE_SIZE = 0;
526 SB_MAXSIZE = version2 ? 0x7fffffff : (7 + 512 + 512 * 512) * 1024;
527 if (version2)
528 SB.s_zones = G.total_blocks;
529 else
530 SB.s_nzones = G.total_blocks;
531
532 /* some magic nrs: 1 inode / 3 blocks */
533 if (G.req_nr_inodes == 0)
534 inodes = G.total_blocks / 3;
535 else
536 inodes = G.req_nr_inodes;
537 /* Round up inode count to fill block size */
538 if (version2)
539 inodes = (inodes + MINIX2_INODES_PER_BLOCK - 1) &
540 ~(MINIX2_INODES_PER_BLOCK - 1);
541 else
542 inodes = (inodes + MINIX1_INODES_PER_BLOCK - 1) &
543 ~(MINIX1_INODES_PER_BLOCK - 1);
544 if (inodes > 65535)
545 inodes = 65535;
546 SB_INODES = inodes;
547 SB_IMAPS = div_roundup(SB_INODES + 1, BITS_PER_BLOCK);
548
549 /* Real bad hack but overwise mkfs.minix can be thrown
550 * in infinite loop...
551 * try:
552 * dd if=/dev/zero of=test.fs count=10 bs=1024
553 * mkfs.minix -i 200 test.fs
554 */
555 /* This code is not insane: NORM_FIRSTZONE is not a constant,
556 * it is calculated from SB_INODES, SB_IMAPS and SB_ZMAPS */
557 i = 999;
558 SB_ZMAPS = 0;
559 do {
560 norm_firstzone = NORM_FIRSTZONE;
561 sb_zmaps = div_roundup(G.total_blocks - norm_firstzone + 1, BITS_PER_BLOCK);
562 if (SB_ZMAPS == sb_zmaps) goto got_it;
563 SB_ZMAPS = sb_zmaps;
564 /* new SB_ZMAPS, need to recalc NORM_FIRSTZONE */
565 } while (--i);
566 bb_error_msg_and_die("incompatible size/inode count, try different -i N");
567 got_it:
568
569 SB_FIRSTZONE = norm_firstzone;
570 G.inode_map = xmalloc(SB_IMAPS * BLOCK_SIZE);
571 G.zone_map = xmalloc(SB_ZMAPS * BLOCK_SIZE);
572 memset(G.inode_map, 0xff, SB_IMAPS * BLOCK_SIZE);
573 memset(G.zone_map, 0xff, SB_ZMAPS * BLOCK_SIZE);
574 for (i = SB_FIRSTZONE; i < SB_ZONES; i++)
575 unmark_zone(i);
576 for (i = MINIX_ROOT_INO; i <= SB_INODES; i++)
577 unmark_inode(i);
578 G.inode_buffer = xzalloc(INODE_BUFFER_SIZE);
[3621]579 printf("%lu inodes\n", (unsigned long)SB_INODES);
580 printf("%lu blocks\n", (unsigned long)SB_ZONES);
581 printf("Firstdatazone=%lu (%lu)\n", (unsigned long)SB_FIRSTZONE, (unsigned long)norm_firstzone);
582 printf("Zonesize=%u\n", BLOCK_SIZE << SB_ZONE_SIZE);
583 printf("Maxsize=%lu\n", (unsigned long)SB_MAXSIZE);
[1765]584}
585
[2725]586int mkfs_minix_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
587int mkfs_minix_main(int argc UNUSED_PARAM, char **argv)
[821]588{
[1765]589 unsigned opt;
[821]590 char *tmp;
[2725]591 char *str_i;
[821]592 char *listfile = NULL;
593
[2725]594 INIT_G();
[1765]595/* default (changed to 30, per Linus's suggestion, Sun Nov 21 08:05:07 1993) */
596 G.namelen = 30;
597 G.dirsize = 32;
598 G.magic = MINIX1_SUPER_MAGIC2;
599
600 if (INODE_SIZE1 * MINIX1_INODES_PER_BLOCK != BLOCK_SIZE)
[821]601 bb_error_msg_and_die("bad inode size");
[1765]602#if ENABLE_FEATURE_MINIX2
[821]603 if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
604 bb_error_msg_and_die("bad inode size");
605#endif
606
[2725]607 opt_complementary = "n+"; /* -n N */
608 opt = getopt32(argv, "ci:l:n:v", &str_i, &listfile, &G.namelen);
[1765]609 argv += optind;
610 //if (opt & 1) -c
611 if (opt & 2) G.req_nr_inodes = xatoul(str_i); // -i
612 //if (opt & 4) -l
613 if (opt & 8) { // -n
614 if (G.namelen == 14) G.magic = MINIX1_SUPER_MAGIC;
615 else if (G.namelen == 30) G.magic = MINIX1_SUPER_MAGIC2;
616 else bb_show_usage();
617 G.dirsize = G.namelen + 2;
618 }
619 if (opt & 0x10) { // -v
620#if ENABLE_FEATURE_MINIX2
621 version2 = 1;
[821]622#else
[1765]623 bb_error_msg_and_die("not compiled with minix v2 support");
[821]624#endif
625 }
626
[3621]627 G.device_name = argv[0];
[1765]628 if (!G.device_name)
[821]629 bb_show_usage();
[1765]630
[3621]631 /* Check if it is mounted */
632 if (find_mount_point(G.device_name, 0))
633 bb_error_msg_and_die("can't format mounted filesystem");
634
635 xmove_fd(xopen(G.device_name, O_RDWR), dev_fd);
636
637 G.total_blocks = get_volume_size_in_bytes(dev_fd, argv[1], 1024, /*extend:*/ 1) / 1024;
638
[1765]639 if (G.total_blocks < 10)
640 bb_error_msg_and_die("must have at least 10 blocks");
641
[821]642 if (version2) {
[1765]643 G.magic = MINIX2_SUPER_MAGIC2;
644 if (G.namelen == 14)
645 G.magic = MINIX2_SUPER_MAGIC;
646 } else if (G.total_blocks > 65535)
647 G.total_blocks = 65535;
[3621]648#if 0
649 struct stat statbuf;
[2725]650 xfstat(dev_fd, &statbuf, G.device_name);
[3621]651/* why? */
[1765]652 if (!S_ISBLK(statbuf.st_mode))
653 opt &= ~1; // clear -c (check)
[3621]654#if 0
[1765]655/* I don't know why someone has special code to prevent mkfs.minix
656 * on IDE devices. Why IDE but not SCSI, etc?... */
657 else if (statbuf.st_rdev == 0x0300 || statbuf.st_rdev == 0x0340)
658 /* what is this? */
659 bb_error_msg_and_die("will not try "
660 "to make filesystem on '%s'", G.device_name);
[821]661#endif
[3621]662#endif
[1765]663 tmp = G.root_block;
[821]664 *(short *) tmp = 1;
665 strcpy(tmp + 2, ".");
[1765]666 tmp += G.dirsize;
[821]667 *(short *) tmp = 1;
668 strcpy(tmp + 2, "..");
[1765]669 tmp += G.dirsize;
[821]670 *(short *) tmp = 2;
671 strcpy(tmp + 2, ".badblocks");
[1765]672
[821]673 setup_tables();
[1765]674
675 if (opt & 1) // -c ?
[821]676 check_blocks();
677 else if (listfile)
678 get_list_blocks(listfile);
[1765]679
[821]680 if (version2) {
681 make_root_inode2();
682 make_bad_inode2();
[1765]683 } else {
[821]684 make_root_inode();
685 make_bad_inode();
686 }
[1765]687
[821]688 mark_good_blocks();
689 write_tables();
690 return 0;
691}
Note: See TracBrowser for help on using the repository browser.