introduce small[u]int

fsck_minix: use it for flag variables. 140 bytes saved
This commit is contained in:
Denis Vlasenko 2007-01-03 00:39:15 +00:00
parent 2a85676fa5
commit 24cfe8fe0c
2 changed files with 81 additions and 64 deletions

View File

@ -191,6 +191,18 @@ struct sysinfo {
extern int sysinfo(struct sysinfo* info); extern int sysinfo(struct sysinfo* info);
/* Size-saving "small" ints (arch-dependent) */
#if defined(i386) || defined (__mips__)
/* add other arches which benefit from this... */
typedef signed char smallint;
typedef unsigned char smalluint;
#else
/* for arches where byte accesses generate larger code: */
typedef int smallint;
typedef unsigned smalluint;
#endif
extern void chomp(char *s); extern void chomp(char *s);
extern void trim(char *s); extern void trim(char *s);
extern char *skip_whitespace(const char *); extern char *skip_whitespace(const char *);

View File

@ -175,10 +175,6 @@ struct minix_dir_entry {
#define BLKGETSIZE _IO(0x12,96) /* return device size */ #define BLKGETSIZE _IO(0x12,96) /* return device size */
#endif #endif
#ifndef __linux__
#define volatile
#endif
enum { ROOT_INO = 1 }; enum { ROOT_INO = 1 };
#define UPPER(size,n) ((size+((n)-1))/(n)) #define UPPER(size,n) ((size+((n)-1))/(n))
@ -197,25 +193,28 @@ enum { ROOT_INO = 1 };
static char *program_version = "1.2 - 11/11/96"; static char *program_version = "1.2 - 11/11/96";
static char *device_name; static char *device_name;
static int IN; static int IN;
static int repair, automatic, verbose, list, show, warn_mode, force; static smallint repair, automatic, verbose, list, show, warn_mode, force;
static int directory, regular, blockdev, chardev, links, symlinks, total; static int directory, regular, blockdev, chardev, links, symlinks, total;
static int changed; /* flags if the filesystem has been changed */ static struct termios termios;
static int errors_uncorrected; /* flag if some error was not corrected */ static smallint termios_set;
static smallint changed; /* flags if the filesystem has been changed */
static smallint errors_uncorrected; /* flag if some error was not corrected */
//also smallint?
static int dirsize = 16; static int dirsize = 16;
static int namelen = 14; static int namelen = 14;
static struct termios termios;
static int termios_set;
static char *inode_buffer; static char *inode_buffer;
#define Inode (((struct minix_inode *) inode_buffer)-1) #define Inode (((struct minix_inode *) inode_buffer)-1)
#define Inode2 (((struct minix2_inode *) inode_buffer)-1) #define Inode2 (((struct minix2_inode *) inode_buffer)-1)
//xzalloc?
static char super_block_buffer[BLOCK_SIZE]; static char super_block_buffer[BLOCK_SIZE];
#define Super (*(struct minix_super_block *)super_block_buffer) #define Super (*(struct minix_super_block *)super_block_buffer)
#define INODES ((unsigned long)Super.s_ninodes) #define INODES ((unsigned long)Super.s_ninodes)
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
static int version2; static smallint version2;
#define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones)) #define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones))
#else #else
#define ZONES ((unsigned long)(Super.s_nzones)) #define ZONES ((unsigned long)(Super.s_nzones))
@ -306,7 +305,8 @@ static void push_filename(const char *name)
name_depth++; name_depth++;
} }
static void pop_filename(void) { static void pop_filename(void)
{
name_depth--; name_depth--;
if (name_depth < MAX_DEPTH) { if (name_depth < MAX_DEPTH) {
*name_component[name_depth] = '\0'; *name_component[name_depth] = '\0';
@ -399,7 +399,6 @@ static void check_mount(void)
printf("Check aborted\n"); printf("Check aborted\n");
exit(0); exit(0);
} }
return;
} }
/* /*
@ -408,7 +407,7 @@ static void check_mount(void)
* if an error was corrected, and returns the zone (0 for no zone * if an error was corrected, and returns the zone (0 for no zone
* or a bad zone-number). * or a bad zone-number).
*/ */
static int check_zone_nr2(uint32_t *nr, int *corrected) static int check_zone_nr2(uint32_t *nr, smallint *corrected)
{ {
const char *msg; const char *msg;
if (!*nr) if (!*nr)
@ -427,7 +426,7 @@ static int check_zone_nr2(uint32_t *nr, int *corrected)
return 0; return 0;
} }
static int check_zone_nr(uint16_t *nr, int *corrected) static int check_zone_nr(uint16_t *nr, smallint *corrected)
{ {
uint32_t nr32 = *nr; uint32_t nr32 = *nr;
int r = check_zone_nr2(&nr32, corrected); int r = check_zone_nr2(&nr32, corrected);
@ -471,7 +470,7 @@ static void write_block(unsigned int nr, char *addr)
return; return;
} }
if (BLOCK_SIZE * nr != lseek(IN, BLOCK_SIZE * nr, SEEK_SET)) if (BLOCK_SIZE * nr != lseek(IN, BLOCK_SIZE * nr, SEEK_SET))
die("Seek failed in write_block"); die("seek failed in write_block");
if (BLOCK_SIZE != write(IN, addr, BLOCK_SIZE)) { if (BLOCK_SIZE != write(IN, addr, BLOCK_SIZE)) {
printf("%s: bad block in file '%s'\n", printf("%s: bad block in file '%s'\n",
bb_msg_write_error, current_name); bb_msg_write_error, current_name);
@ -488,7 +487,8 @@ static int map_block(struct minix_inode *inode, unsigned int blknr)
{ {
uint16_t ind[BLOCK_SIZE >> 1]; uint16_t ind[BLOCK_SIZE >> 1];
uint16_t dind[BLOCK_SIZE >> 1]; uint16_t dind[BLOCK_SIZE >> 1];
int blk_chg, block, result; int block, result;
smallint blk_chg;
if (blknr < 7) if (blknr < 7)
return check_zone_nr(inode->i_zone + blknr, &changed); return check_zone_nr(inode->i_zone + blknr, &changed);
@ -524,7 +524,8 @@ static int map_block2(struct minix2_inode *inode, unsigned int blknr)
uint32_t ind[BLOCK_SIZE >> 2]; uint32_t ind[BLOCK_SIZE >> 2];
uint32_t dind[BLOCK_SIZE >> 2]; uint32_t dind[BLOCK_SIZE >> 2];
uint32_t tind[BLOCK_SIZE >> 2]; uint32_t tind[BLOCK_SIZE >> 2];
int blk_chg, block, result; int block, result;
smallint blk_chg;
if (blknr < 7) if (blknr < 7)
return check_zone_nr2(inode->i_zone + blknr, &changed); return check_zone_nr2(inode->i_zone + blknr, &changed);
@ -591,9 +592,9 @@ static void write_super_block(void)
Super.s_state &= ~MINIX_ERROR_FS; Super.s_state &= ~MINIX_ERROR_FS;
if (BLOCK_SIZE != lseek(IN, BLOCK_SIZE, SEEK_SET)) if (BLOCK_SIZE != lseek(IN, BLOCK_SIZE, SEEK_SET))
die("Seek failed in write_super_block"); die("seek failed in write_super_block");
if (BLOCK_SIZE != write(IN, super_block_buffer, BLOCK_SIZE)) if (BLOCK_SIZE != write(IN, super_block_buffer, BLOCK_SIZE))
die("Unable to write super-block"); die("unable to write super-block");
} }
static void write_tables(void) static void write_tables(void)
@ -601,11 +602,11 @@ static void write_tables(void)
write_super_block(); write_super_block();
if (IMAPS * BLOCK_SIZE != write(IN, inode_map, IMAPS * BLOCK_SIZE)) if (IMAPS * BLOCK_SIZE != write(IN, inode_map, IMAPS * BLOCK_SIZE))
die("Unable to write inode map"); die("unable to write inode map");
if (ZMAPS * BLOCK_SIZE != write(IN, zone_map, ZMAPS * BLOCK_SIZE)) if (ZMAPS * BLOCK_SIZE != write(IN, zone_map, ZMAPS * BLOCK_SIZE))
die("Unable to write zone map"); die("unable to write zone map");
if (INODE_BUFFER_SIZE != write(IN, inode_buffer, INODE_BUFFER_SIZE)) if (INODE_BUFFER_SIZE != write(IN, inode_buffer, INODE_BUFFER_SIZE))
die("Unable to write inodes"); die("unable to write inodes");
} }
static void get_dirsize(void) static void get_dirsize(void)
@ -634,9 +635,9 @@ static void get_dirsize(void)
static void read_superblock(void) static void read_superblock(void)
{ {
if (BLOCK_SIZE != lseek(IN, BLOCK_SIZE, SEEK_SET)) if (BLOCK_SIZE != lseek(IN, BLOCK_SIZE, SEEK_SET))
die("Seek failed"); die("seek failed");
if (BLOCK_SIZE != read(IN, super_block_buffer, BLOCK_SIZE)) if (BLOCK_SIZE != read(IN, super_block_buffer, BLOCK_SIZE))
die("Unable to read super block"); die("unable to read super block");
/* already initialized to: /* already initialized to:
namelen = 14; namelen = 14;
dirsize = 16; dirsize = 16;
@ -655,13 +656,13 @@ static void read_superblock(void)
version2 = 1; version2 = 1;
#endif #endif
} else } else
die("Bad magic number in super-block"); die("bad magic number in super-block");
if (ZONESIZE != 0 || BLOCK_SIZE != 1024) if (ZONESIZE != 0 || BLOCK_SIZE != 1024)
die("Only 1k blocks/zones supported"); die("only 1k blocks/zones supported");
if (IMAPS * BLOCK_SIZE * 8 < INODES + 1) if (IMAPS * BLOCK_SIZE * 8 < INODES + 1)
die("Bad s_imap_blocks field in super-block"); die("bad s_imap_blocks field in super-block");
if (ZMAPS * BLOCK_SIZE * 8 < ZONES - FIRSTZONE + 1) if (ZMAPS * BLOCK_SIZE * 8 < ZONES - FIRSTZONE + 1)
die("Bad s_zmap_blocks field in super-block"); die("bad s_zmap_blocks field in super-block");
} }
static void read_tables(void) static void read_tables(void)
@ -672,13 +673,13 @@ static void read_tables(void)
inode_count = xmalloc(INODES + 1); inode_count = xmalloc(INODES + 1);
zone_count = xmalloc(ZONES); zone_count = xmalloc(ZONES);
if (IMAPS * BLOCK_SIZE != read(IN, inode_map, IMAPS * BLOCK_SIZE)) if (IMAPS * BLOCK_SIZE != read(IN, inode_map, IMAPS * BLOCK_SIZE))
die("Unable to read inode map"); die("unable to read inode map");
if (ZMAPS * BLOCK_SIZE != read(IN, zone_map, ZMAPS * BLOCK_SIZE)) if (ZMAPS * BLOCK_SIZE != read(IN, zone_map, ZMAPS * BLOCK_SIZE))
die("Unable to read zone map"); die("unable to read zone map");
if (INODE_BUFFER_SIZE != read(IN, inode_buffer, INODE_BUFFER_SIZE)) if (INODE_BUFFER_SIZE != read(IN, inode_buffer, INODE_BUFFER_SIZE))
die("Unable to read inodes"); die("unable to read inodes");
if (NORM_FIRSTZONE != FIRSTZONE) { if (NORM_FIRSTZONE != FIRSTZONE) {
printf("Warning: Firstzone!=Norm_firstzone\n"); printf("warning: firstzone!=norm_firstzone\n");
errors_uncorrected = 1; errors_uncorrected = 1;
} }
get_dirsize(); get_dirsize();
@ -796,7 +797,7 @@ static void check_root(void)
struct minix_inode *inode = Inode + ROOT_INO; struct minix_inode *inode = Inode + ROOT_INO;
if (!inode || !S_ISDIR(inode->i_mode)) if (!inode || !S_ISDIR(inode->i_mode))
die("Root inode isn't a directory"); die("root inode isn't a directory");
} }
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
@ -805,11 +806,11 @@ static void check_root2(void)
struct minix2_inode *inode = Inode2 + ROOT_INO; struct minix2_inode *inode = Inode2 + ROOT_INO;
if (!inode || !S_ISDIR(inode->i_mode)) if (!inode || !S_ISDIR(inode->i_mode))
die("Root inode isn't a directory"); die("root inode isn't a directory");
} }
#endif #endif
static int add_zone(uint16_t *znr, int *corrected) static int add_zone(uint16_t *znr, smallint *corrected)
{ {
int result; int result;
int block; int block;
@ -840,7 +841,7 @@ static int add_zone(uint16_t *znr, int *corrected)
} }
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
static int add_zone2(uint32_t *znr, int *corrected) static int add_zone2(uint32_t *znr, smallint *corrected)
{ {
int result; int result;
int block; int block;
@ -871,11 +872,12 @@ static int add_zone2(uint32_t *znr, int *corrected)
} }
#endif #endif
static void add_zone_ind(uint16_t *znr, int *corrected) static void add_zone_ind(uint16_t *znr, smallint *corrected)
{ {
static char blk[BLOCK_SIZE]; static char blk[BLOCK_SIZE];
int i, chg_blk = 0; int i;
int block; int block;
smallint chg_blk = 0;
block = add_zone(znr, corrected); block = add_zone(znr, corrected);
if (!block) if (!block)
@ -888,11 +890,12 @@ static void add_zone_ind(uint16_t *znr, int *corrected)
} }
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
static void add_zone_ind2(uint32_t *znr, int *corrected) static void add_zone_ind2(uint32_t *znr, smallint *corrected)
{ {
static char blk[BLOCK_SIZE]; static char blk[BLOCK_SIZE];
int i, chg_blk = 0; int i;
int block; int block;
smallint chg_blk = 0;
block = add_zone2(znr, corrected); block = add_zone2(znr, corrected);
if (!block) if (!block)
@ -905,52 +908,55 @@ static void add_zone_ind2(uint32_t *znr, int *corrected)
} }
#endif #endif
static void add_zone_dind(uint16_t *znr, int *corrected) static void add_zone_dind(uint16_t *znr, smallint *corrected)
{ {
static char blk[BLOCK_SIZE]; static char blk[BLOCK_SIZE];
int i, blk_chg = 0; int i;
int block; int block;
smallint chg_blk = 0;
block = add_zone(znr, corrected); block = add_zone(znr, corrected);
if (!block) if (!block)
return; return;
read_block(block, blk); read_block(block, blk);
for (i = 0; i < (BLOCK_SIZE >> 1); i++) for (i = 0; i < (BLOCK_SIZE >> 1); i++)
add_zone_ind(i + (uint16_t *) blk, &blk_chg); add_zone_ind(i + (uint16_t *) blk, &chg_blk);
if (blk_chg) if (chg_blk)
write_block(block, blk); write_block(block, blk);
} }
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
static void add_zone_dind2(uint32_t *znr, int *corrected) static void add_zone_dind2(uint32_t *znr, smallint *corrected)
{ {
static char blk[BLOCK_SIZE]; static char blk[BLOCK_SIZE];
int i, blk_chg = 0; int i;
int block; int block;
smallint chg_blk = 0;
block = add_zone2(znr, corrected); block = add_zone2(znr, corrected);
if (!block) if (!block)
return; return;
read_block(block, blk); read_block(block, blk);
for (i = 0; i < BLOCK_SIZE >> 2; i++) for (i = 0; i < BLOCK_SIZE >> 2; i++)
add_zone_ind2(i + (uint32_t *) blk, &blk_chg); add_zone_ind2(i + (uint32_t *) blk, &chg_blk);
if (blk_chg) if (chg_blk)
write_block(block, blk); write_block(block, blk);
} }
static void add_zone_tind2(uint32_t *znr, int *corrected) static void add_zone_tind2(uint32_t *znr, smallint *corrected)
{ {
static char blk[BLOCK_SIZE]; static char blk[BLOCK_SIZE];
int i, blk_chg = 0; int i;
int block; int block;
smallint chg_blk = 0;
block = add_zone2(znr, corrected); block = add_zone2(znr, corrected);
if (!block) if (!block)
return; return;
read_block(block, blk); read_block(block, blk);
for (i = 0; i < BLOCK_SIZE >> 2; i++) for (i = 0; i < BLOCK_SIZE >> 2; i++)
add_zone_dind2(i + (uint32_t *) blk, &blk_chg); add_zone_dind2(i + (uint32_t *) blk, &chg_blk);
if (blk_chg) if (chg_blk)
write_block(block, blk); write_block(block, blk);
} }
#endif #endif
@ -1043,7 +1049,6 @@ static void check_file(struct minix_inode *dir, unsigned int offset)
if (inode && S_ISDIR(inode->i_mode)) if (inode && S_ISDIR(inode->i_mode))
recursive_check(ino); recursive_check(ino);
pop_filename(); pop_filename();
return;
} }
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
@ -1097,7 +1102,6 @@ static void check_file2(struct minix2_inode *dir, unsigned int offset)
if (inode && S_ISDIR(inode->i_mode)) if (inode && S_ISDIR(inode->i_mode))
recursive_check2(ino); recursive_check2(ino);
pop_filename(); pop_filename();
return;
} }
#endif #endif
@ -1108,7 +1112,7 @@ static void recursive_check(unsigned int ino)
dir = Inode + ino; dir = Inode + ino;
if (!S_ISDIR(dir->i_mode)) if (!S_ISDIR(dir->i_mode))
die("Internal error"); die("internal error");
if (dir->i_size < 2 * dirsize) { if (dir->i_size < 2 * dirsize) {
printf("%s: bad directory: size<32", current_name); printf("%s: bad directory: size<32", current_name);
errors_uncorrected = 1; errors_uncorrected = 1;
@ -1125,7 +1129,7 @@ static void recursive_check2(unsigned int ino)
dir = Inode2 + ino; dir = Inode2 + ino;
if (!S_ISDIR(dir->i_mode)) if (!S_ISDIR(dir->i_mode))
die("Internal error"); die("internal error");
if (dir->i_size < 2 * dirsize) { if (dir->i_size < 2 * dirsize) {
printf("%s: bad directory: size<32", current_name); printf("%s: bad directory: size<32", current_name);
errors_uncorrected = 1; errors_uncorrected = 1;
@ -1140,7 +1144,7 @@ static int bad_zone(int i)
char buffer[1024]; char buffer[1024];
if (BLOCK_SIZE * i != lseek(IN, BLOCK_SIZE * i, SEEK_SET)) if (BLOCK_SIZE * i != lseek(IN, BLOCK_SIZE * i, SEEK_SET))
die("Seek failed in bad_zone"); die("seek failed in bad_zone");
return (BLOCK_SIZE != read(IN, buffer, BLOCK_SIZE)); return (BLOCK_SIZE != read(IN, buffer, BLOCK_SIZE));
} }
@ -1280,10 +1284,10 @@ int fsck_minix_main(int argc, char **argv)
#endif #endif
if (INODE_SIZE * MINIX_INODES_PER_BLOCK != BLOCK_SIZE) if (INODE_SIZE * MINIX_INODES_PER_BLOCK != BLOCK_SIZE)
die("Bad inode size"); die("bad inode size");
#ifdef CONFIG_FEATURE_MINIX2 #ifdef CONFIG_FEATURE_MINIX2
if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE) if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
die("Bad v2 inode size"); die("bad v2 inode size");
#endif #endif
while (argc-- > 1) { while (argc-- > 1) {
argv++; argv++;
@ -1327,11 +1331,11 @@ int fsck_minix_main(int argc, char **argv)
check_mount(); /* trying to check a mounted filesystem? */ check_mount(); /* trying to check a mounted filesystem? */
if (repair && !automatic) { if (repair && !automatic) {
if (!isatty(0) || !isatty(1)) if (!isatty(0) || !isatty(1))
die("Need terminal for interactive repairs"); die("need terminal for interactive repairs");
} }
IN = open(device_name, repair ? O_RDWR : O_RDONLY); IN = open(device_name, repair ? O_RDWR : O_RDONLY);
if (IN < 0){ if (IN < 0) {
printf("Unable to open device '%s'\n", device_name); printf("unable to open device '%s'\n", device_name);
leave(8); leave(8);
} }
sync(); /* paranoia? */ sync(); /* paranoia? */
@ -1344,8 +1348,9 @@ int fsck_minix_main(int argc, char **argv)
* command line. * command line.
*/ */
printf("%s, %s\n", applet_name, program_version); printf("%s, %s\n", applet_name, program_version);
if (!(Super.s_state & MINIX_ERROR_FS) && if (!(Super.s_state & MINIX_ERROR_FS)
(Super.s_state & MINIX_VALID_FS) && !force) { && (Super.s_state & MINIX_VALID_FS) && !force
) {
if (repair) if (repair)
printf("%s is clean, check is skipped\n", device_name); printf("%s is clean, check is skipped\n", device_name);
return retcode; return retcode;