1997-04-26 21:21:57 +08:00
|
|
|
/*
|
|
|
|
* pfsck --- A generic, parallelizing front-end for the fsck program.
|
|
|
|
* It will automatically try to run fsck programs in parallel if the
|
|
|
|
* devices are on separate spindles. It is based on the same ideas as
|
|
|
|
* the generic front end for fsck by David Engel and Fred van Kempen,
|
|
|
|
* but it has been completely rewritten from scratch to support
|
|
|
|
* parallel execution.
|
|
|
|
*
|
|
|
|
* Written by Theodore Ts'o, <tytso@mit.edu>
|
|
|
|
*
|
1997-04-26 21:34:30 +08:00
|
|
|
* Usage: fsck [-AVRNTM] [-s] [-t fstype] [fs-options] device
|
1997-04-26 21:21:57 +08:00
|
|
|
*
|
1997-04-26 21:34:30 +08:00
|
|
|
* Miquel van Smoorenburg (miquels@drinkel.ow.org) 20-Oct-1994:
|
|
|
|
* o Changed -t fstype to behave like with mount when -A (all file
|
|
|
|
* systems) or -M (like mount) is specified.
|
|
|
|
* o fsck looks if it can find the fsck.type program to decide
|
|
|
|
* if it should ignore the fs type. This way more fsck programs
|
|
|
|
* can be added without changing this front-end.
|
|
|
|
* o -R flag skip root file system.
|
|
|
|
*
|
1997-04-30 00:17:09 +08:00
|
|
|
* Copyright (C) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o.
|
|
|
|
*
|
|
|
|
* %Begin-Header%
|
|
|
|
* This file may be redistributed under the terms of the GNU Public
|
|
|
|
* License.
|
|
|
|
* %End-Header%
|
1997-04-26 21:21:57 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
1997-04-26 21:34:30 +08:00
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/stat.h>
|
1997-04-26 21:21:57 +08:00
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
1997-04-26 22:00:26 +08:00
|
|
|
#if HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_ERRNO_H
|
1997-04-26 21:21:57 +08:00
|
|
|
#include <errno.h>
|
1997-04-26 22:00:26 +08:00
|
|
|
#endif
|
1998-12-04 00:40:38 +08:00
|
|
|
#if HAVE_PATHS_H
|
|
|
|
#include <paths.h>
|
1997-04-26 22:00:26 +08:00
|
|
|
#endif
|
|
|
|
#if HAVE_UNISTD_H
|
1997-04-26 21:21:57 +08:00
|
|
|
#include <unistd.h>
|
1997-04-26 22:00:26 +08:00
|
|
|
#endif
|
|
|
|
#if HAVE_ERRNO_H
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
|
|
|
#include <malloc.h>
|
1997-04-26 21:21:57 +08:00
|
|
|
|
|
|
|
#include "../version.h"
|
|
|
|
#include "fsck.h"
|
|
|
|
|
1998-12-04 00:40:38 +08:00
|
|
|
#ifndef _PATH_MNTTAB
|
|
|
|
#define _PATH_MNTTAB "/etc/fstab"
|
|
|
|
#endif
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
static const char *ignored_types[] = {
|
|
|
|
"ignore",
|
|
|
|
"iso9660",
|
|
|
|
"nfs",
|
|
|
|
"proc",
|
|
|
|
"sw",
|
|
|
|
"swap",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
static const char *really_wanted[] = {
|
|
|
|
"minix",
|
|
|
|
"ext2",
|
|
|
|
"xiafs",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef DEV_DSK_DEVICES
|
|
|
|
static const char *base_devices[] = {
|
|
|
|
"/dev/dsk/hda",
|
|
|
|
"/dev/dsk/hdb",
|
|
|
|
"/dev/dsk/hdc",
|
|
|
|
"/dev/dsk/hdd",
|
|
|
|
"/dev/dsk/hd1a",
|
|
|
|
"/dev/dsk/hd1b",
|
|
|
|
"/dev/dsk/hd1c",
|
|
|
|
"/dev/dsk/hd1d",
|
|
|
|
"/dev/dsk/sda",
|
|
|
|
"/dev/dsk/sdb",
|
|
|
|
"/dev/dsk/sdc",
|
|
|
|
"/dev/dsk/sdd",
|
|
|
|
"/dev/dsk/sde",
|
|
|
|
"/dev/dsk/sdf",
|
|
|
|
"/dev/dsk/sdg",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
#else
|
1997-04-26 21:21:57 +08:00
|
|
|
static const char *base_devices[] = {
|
|
|
|
"/dev/hda",
|
|
|
|
"/dev/hdb",
|
|
|
|
"/dev/hdc",
|
|
|
|
"/dev/hdd",
|
1997-04-26 21:34:30 +08:00
|
|
|
"/dev/hd1a",
|
|
|
|
"/dev/hd1b",
|
|
|
|
"/dev/hd1c",
|
|
|
|
"/dev/hd1d",
|
1997-04-26 21:21:57 +08:00
|
|
|
"/dev/sda",
|
|
|
|
"/dev/sdb",
|
|
|
|
"/dev/sdc",
|
|
|
|
"/dev/sdd",
|
|
|
|
"/dev/sde",
|
|
|
|
"/dev/sdf",
|
|
|
|
"/dev/sdg",
|
|
|
|
NULL
|
|
|
|
};
|
1997-04-26 21:34:30 +08:00
|
|
|
#endif
|
1997-04-26 21:21:57 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables for options
|
|
|
|
*/
|
|
|
|
char *devices[MAX_DEVICES];
|
|
|
|
char *args[MAX_ARGS];
|
|
|
|
int num_devices, num_args;
|
|
|
|
|
|
|
|
int verbose = 0;
|
|
|
|
int doall = 0;
|
|
|
|
int noexecute = 0;
|
|
|
|
int serialize = 0;
|
1997-04-26 21:34:30 +08:00
|
|
|
int skip_root = 0;
|
|
|
|
int like_mount = 0;
|
|
|
|
int notitle = 0;
|
1997-04-26 22:48:50 +08:00
|
|
|
int parallel_root = 0;
|
1997-04-26 21:21:57 +08:00
|
|
|
char *progname;
|
|
|
|
char *fstype = NULL;
|
|
|
|
struct fs_info *filesys_info;
|
|
|
|
struct fsck_instance *instance_list;
|
1997-04-26 22:00:26 +08:00
|
|
|
const char *fsck_prefix_path = "/sbin:/sbin/fs.d:/sbin/fs:/etc/fs:/etc";
|
|
|
|
char *fsck_path = 0;
|
1997-04-26 21:34:30 +08:00
|
|
|
static int ignore(struct fs_info *);
|
1997-04-26 21:21:57 +08:00
|
|
|
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
static char *string_copy(const char *s)
|
1997-04-26 21:21:57 +08:00
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
|
|
|
|
ret = malloc(strlen(s)+1);
|
|
|
|
if (ret)
|
|
|
|
strcpy(ret, s);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1998-12-04 00:40:38 +08:00
|
|
|
static char *skip_over_blank(char *cp)
|
|
|
|
{
|
|
|
|
while (*cp && isspace(*cp))
|
|
|
|
cp++;
|
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *skip_over_word(char *cp)
|
|
|
|
{
|
|
|
|
while (*cp && !isspace(*cp))
|
|
|
|
cp++;
|
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void strip_line(char *line)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
while (*line) {
|
|
|
|
p = line + strlen(line) - 1;
|
|
|
|
if ((*p == '\n') || (*p == '\r'))
|
|
|
|
*p = 0;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *parse_word(char **buf)
|
|
|
|
{
|
|
|
|
char *word, *next;
|
|
|
|
|
|
|
|
word = *buf;
|
|
|
|
if (*word == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
word = skip_over_blank(word);
|
|
|
|
next = skip_over_word(word);
|
|
|
|
if (*next)
|
|
|
|
*next++ = 0;
|
|
|
|
*buf = next;
|
|
|
|
return word;
|
|
|
|
}
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
static void free_instance(struct fsck_instance *i)
|
|
|
|
{
|
|
|
|
if (i->prog)
|
|
|
|
free(i->prog);
|
|
|
|
if (i->device)
|
|
|
|
free(i->device);
|
|
|
|
free(i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-01-02 12:04:42 +08:00
|
|
|
int parse_fstab_line(char *line, struct fs_info **ret_fs)
|
1998-12-04 00:40:38 +08:00
|
|
|
{
|
|
|
|
char *device, *mntpnt, *type, *opts, *freq, *passno, *cp;
|
|
|
|
struct fs_info *fs;
|
|
|
|
|
1999-01-02 12:04:42 +08:00
|
|
|
*ret_fs = 0;
|
1998-12-04 00:40:38 +08:00
|
|
|
strip_line(line);
|
1999-01-02 12:04:42 +08:00
|
|
|
if (cp = strchr(line, '#'))
|
|
|
|
*cp = 0; /* Ignore everything after the comment char */
|
1998-12-04 00:40:38 +08:00
|
|
|
cp = line;
|
|
|
|
|
|
|
|
device = parse_word(&cp);
|
|
|
|
mntpnt = parse_word(&cp);
|
|
|
|
type = parse_word(&cp);
|
|
|
|
opts = parse_word(&cp);
|
|
|
|
freq = parse_word(&cp);
|
|
|
|
passno = parse_word(&cp);
|
|
|
|
|
1999-01-02 12:04:42 +08:00
|
|
|
if (!device)
|
|
|
|
return 0; /* Allow blank lines */
|
|
|
|
|
|
|
|
if (!mntpnt || !type)
|
|
|
|
return -1;
|
1998-12-04 00:40:38 +08:00
|
|
|
|
|
|
|
if (!(fs = malloc(sizeof(struct fs_info))))
|
1999-01-02 12:04:42 +08:00
|
|
|
return -1;
|
1998-12-04 00:40:38 +08:00
|
|
|
|
|
|
|
fs->device = string_copy(device);
|
|
|
|
fs->mountpt = string_copy(mntpnt);
|
|
|
|
fs->type = string_copy(type);
|
|
|
|
fs->opts = string_copy(opts ? opts : "");
|
|
|
|
fs->freq = freq ? atoi(freq) : -1;
|
|
|
|
fs->passno = passno ? atoi(passno) : -1;
|
|
|
|
fs->flags = 0;
|
|
|
|
fs->next = NULL;
|
|
|
|
|
1999-01-02 12:04:42 +08:00
|
|
|
*ret_fs = fs;
|
|
|
|
|
|
|
|
return 0;
|
1998-12-04 00:40:38 +08:00
|
|
|
}
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
/*
|
|
|
|
* Load the filesystem database from /etc/fstab
|
|
|
|
*/
|
1998-12-04 00:40:38 +08:00
|
|
|
static void load_fs_info(char *filename)
|
1997-04-26 21:21:57 +08:00
|
|
|
{
|
1998-12-04 00:40:38 +08:00
|
|
|
FILE *f;
|
|
|
|
char buf[1024];
|
|
|
|
int lineno = 0;
|
1997-04-26 21:34:30 +08:00
|
|
|
int old_fstab = 1;
|
1998-12-04 00:40:38 +08:00
|
|
|
struct fs_info *fs, *fs_last = NULL;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
|
|
|
filesys_info = NULL;
|
1998-12-04 00:40:38 +08:00
|
|
|
if ((f = fopen(filename, "r")) == NULL) {
|
|
|
|
fprintf(stderr, "WARNING: couldn't open %s: %s\n",
|
|
|
|
filename, strerror(errno));
|
|
|
|
return;
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
1998-12-04 00:40:38 +08:00
|
|
|
while (!feof(f)) {
|
|
|
|
lineno++;
|
|
|
|
if (!fgets(buf, sizeof(buf), f))
|
|
|
|
break;
|
|
|
|
buf[sizeof(buf)-1] = 0;
|
1999-01-02 12:04:42 +08:00
|
|
|
if (parse_fstab_line(buf, &fs) < 0) {
|
1998-12-04 00:40:38 +08:00
|
|
|
fprintf(stderr, "WARNING: bad format "
|
|
|
|
"on line %d of %s\n", lineno, filename);
|
|
|
|
continue;
|
|
|
|
}
|
1999-01-02 12:04:42 +08:00
|
|
|
if (!fs)
|
|
|
|
continue;
|
1997-04-26 22:00:26 +08:00
|
|
|
if (!filesys_info)
|
|
|
|
filesys_info = fs;
|
|
|
|
else
|
|
|
|
fs_last->next = fs;
|
|
|
|
fs_last = fs;
|
1999-01-08 21:33:39 +08:00
|
|
|
if (fs->passno < 0)
|
|
|
|
fs->passno = 0;
|
|
|
|
else
|
1997-04-26 21:34:30 +08:00
|
|
|
old_fstab = 0;
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
1998-12-04 00:40:38 +08:00
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
if (old_fstab) {
|
|
|
|
fprintf(stderr, "\007\007\007"
|
|
|
|
"WARNING: Your /etc/fstab does not contain the fsck passno\n");
|
|
|
|
fprintf(stderr,
|
|
|
|
" field. I will kludge around things for you, but you\n");
|
|
|
|
fprintf(stderr,
|
|
|
|
" should fix your /etc/fstab file as soon as you can.\n\n");
|
|
|
|
|
|
|
|
for (fs = filesys_info; fs; fs = fs->next) {
|
|
|
|
fs->passno = 1;
|
|
|
|
}
|
|
|
|
}
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup filesys in /etc/fstab and return the corresponding entry. */
|
|
|
|
static struct fs_info *lookup(char *filesys)
|
|
|
|
{
|
|
|
|
struct fs_info *fs;
|
|
|
|
|
|
|
|
/* No filesys name given. */
|
|
|
|
if (filesys == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (fs = filesys_info; fs; fs = fs->next) {
|
|
|
|
if (!strcmp(filesys, fs->device) ||
|
|
|
|
!strcmp(filesys, fs->mountpt))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fs;
|
|
|
|
}
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
/* Find fsck program for a given fs type. */
|
|
|
|
static char *find_fsck(char *type)
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
const char *tpl;
|
|
|
|
static char prog[256];
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
char *p = string_copy(fsck_path);
|
1997-04-26 21:34:30 +08:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
/* Are we looking for a program or just a type? */
|
|
|
|
tpl = (strncmp(type, "fsck.", 5) ? "%s/fsck.%s" : "%s/%s");
|
|
|
|
|
|
|
|
for(s = strtok(p, ":"); s; s = strtok(NULL, ":")) {
|
|
|
|
sprintf(prog, tpl, s, type);
|
|
|
|
if (stat(prog, &st) == 0) break;
|
|
|
|
}
|
|
|
|
free(p);
|
|
|
|
return(s ? prog : NULL);
|
|
|
|
}
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
/*
|
|
|
|
* Execute a particular fsck program, and link it into the list of
|
|
|
|
* child processes we are waiting for.
|
|
|
|
*/
|
1999-01-02 12:04:42 +08:00
|
|
|
static int execute(char *prog, char *device, char *mntpt)
|
1997-04-26 21:21:57 +08:00
|
|
|
{
|
1997-04-26 21:34:30 +08:00
|
|
|
char *s, *argv[80];
|
1997-04-26 21:21:57 +08:00
|
|
|
int argc, i;
|
|
|
|
struct fsck_instance *inst;
|
|
|
|
pid_t pid;
|
|
|
|
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
argv[0] = string_copy(prog);
|
1997-04-26 21:21:57 +08:00
|
|
|
argc = 1;
|
|
|
|
|
|
|
|
for (i=0; i <num_args; i++)
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
argv[argc++] = string_copy(args[i]);
|
1997-04-26 21:21:57 +08:00
|
|
|
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
argv[argc++] = string_copy(device);
|
1997-04-26 21:21:57 +08:00
|
|
|
argv[argc] = 0;
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
s = find_fsck(prog);
|
|
|
|
if (s == NULL) {
|
|
|
|
fprintf(stderr, "fsck: %s: not found\n", prog);
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
if (verbose || noexecute) {
|
1999-01-02 12:04:42 +08:00
|
|
|
printf("[%s -- %s] ", s, mntpt);
|
1997-04-26 21:21:57 +08:00
|
|
|
for (i=0; i < argc; i++)
|
|
|
|
printf("%s ", argv[i]);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
if (noexecute)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Fork and execute the correct program. */
|
|
|
|
if ((pid = fork()) < 0) {
|
|
|
|
perror("fork");
|
|
|
|
return errno;
|
|
|
|
} else if (pid == 0) {
|
1997-04-26 21:34:30 +08:00
|
|
|
(void) execv(s, argv);
|
|
|
|
perror(argv[0]);
|
1997-04-26 21:21:57 +08:00
|
|
|
exit(EXIT_ERROR);
|
|
|
|
}
|
|
|
|
inst = malloc(sizeof(struct fsck_instance));
|
|
|
|
if (!inst)
|
|
|
|
return ENOMEM;
|
|
|
|
memset(inst, 0, sizeof(struct fsck_instance));
|
|
|
|
inst->pid = pid;
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
inst->prog = string_copy(prog);
|
|
|
|
inst->device = string_copy(device);
|
1997-04-26 21:21:57 +08:00
|
|
|
inst->next = instance_list;
|
|
|
|
instance_list = inst;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wait for one child process to exit; when it does, unlink it from
|
|
|
|
* the list of executing child processes, and return it.
|
|
|
|
*/
|
|
|
|
static struct fsck_instance *wait_one(NOARGS)
|
|
|
|
{
|
|
|
|
int status;
|
1997-04-26 21:34:30 +08:00
|
|
|
int sig;
|
1997-04-26 21:21:57 +08:00
|
|
|
struct fsck_instance *inst, *prev;
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
if (!instance_list)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
pid = wait(&status);
|
|
|
|
if (pid < 0) {
|
|
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
|
|
goto retry;
|
|
|
|
if (errno == ECHILD) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: wait: No more child process?!?\n",
|
|
|
|
progname);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
perror("wait");
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
for (prev = 0, inst = instance_list;
|
|
|
|
inst;
|
|
|
|
prev = inst, inst = inst->next) {
|
|
|
|
if (inst->pid == pid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!inst) {
|
|
|
|
printf("Unexpected child process %d, status = 0x%x\n",
|
|
|
|
pid, status);
|
|
|
|
goto retry;
|
|
|
|
}
|
1997-04-26 21:34:30 +08:00
|
|
|
if (WIFEXITED(status))
|
|
|
|
status = WEXITSTATUS(status);
|
|
|
|
else if (WIFSIGNALED(status)) {
|
|
|
|
sig = WTERMSIG(status);
|
|
|
|
if (sig == SIGINT) {
|
|
|
|
status = EXIT_UNCORRECTED;
|
|
|
|
} else {
|
|
|
|
printf("Warning... %s for device %s exited "
|
|
|
|
"with signal %d.\n",
|
|
|
|
inst->prog, inst->device, sig);
|
|
|
|
status = EXIT_ERROR;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("%s %s: status is %x, should never happen.\n",
|
|
|
|
inst->prog, inst->device, status);
|
|
|
|
status = EXIT_ERROR;
|
|
|
|
}
|
1997-04-26 21:21:57 +08:00
|
|
|
inst->exit_status = status;
|
|
|
|
if (prev)
|
|
|
|
prev->next = inst->next;
|
|
|
|
else
|
|
|
|
instance_list = inst->next;
|
|
|
|
return inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wait until all executing child processes have exited; return the
|
|
|
|
* logical OR of all of their exit code values.
|
|
|
|
*/
|
|
|
|
static int wait_all(NOARGS)
|
|
|
|
{
|
|
|
|
struct fsck_instance *inst;
|
|
|
|
int global_status = 0;
|
|
|
|
|
|
|
|
while (instance_list) {
|
|
|
|
inst = wait_one();
|
|
|
|
if (!inst)
|
|
|
|
break;
|
|
|
|
global_status |= inst->exit_status;
|
|
|
|
free_instance(inst);
|
|
|
|
}
|
|
|
|
return global_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Run the fsck program on a particular device
|
1997-04-26 22:00:26 +08:00
|
|
|
*
|
|
|
|
* If the type is specified using -t, and it isn't prefixed with "no"
|
|
|
|
* (as in "noext2") and only one filesystem type is specified, then
|
|
|
|
* use that type regardless of what is specified in /etc/fstab.
|
|
|
|
*
|
|
|
|
* If the type isn't specified by the user, then use either the type
|
|
|
|
* specified in /etc/fstab, or DEFAULT_FSTYPE.
|
1997-04-26 21:21:57 +08:00
|
|
|
*/
|
|
|
|
static void fsck_device(char *device)
|
|
|
|
{
|
1997-04-26 22:00:26 +08:00
|
|
|
const char *type = 0;
|
1997-04-26 21:21:57 +08:00
|
|
|
struct fs_info *fsent;
|
|
|
|
int retval;
|
|
|
|
char prog[80];
|
|
|
|
|
1997-04-26 22:25:20 +08:00
|
|
|
if (fstype && strncmp(fstype, "no", 2) && !strchr(fstype, ','))
|
1997-04-26 22:00:26 +08:00
|
|
|
type = fstype;
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
if ((fsent = lookup(device))) {
|
1997-04-26 21:21:57 +08:00
|
|
|
device = fsent->device;
|
1997-04-26 22:00:26 +08:00
|
|
|
if (!type)
|
|
|
|
type = fsent->type;
|
|
|
|
}
|
|
|
|
if (!type)
|
1997-04-26 21:21:57 +08:00
|
|
|
type = DEFAULT_FSTYPE;
|
|
|
|
|
|
|
|
sprintf(prog, "fsck.%s", type);
|
1999-01-02 12:04:42 +08:00
|
|
|
retval = execute(prog, device, fsent->mountpt);
|
1997-04-26 21:21:57 +08:00
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "%s: Error %d while executing %s for %s\n",
|
|
|
|
progname, retval, prog, device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
/* See if filesystem type matches the list. */
|
|
|
|
static int fs_match(char *type, char *fs_type)
|
|
|
|
{
|
|
|
|
int ret = 0, negate = 0;
|
|
|
|
char list[128];
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (!fs_type) return(1);
|
|
|
|
|
|
|
|
if (strncmp(fs_type, "no", 2) == 0) {
|
|
|
|
fs_type += 2;
|
|
|
|
negate = 1;
|
|
|
|
}
|
|
|
|
strcpy(list, fs_type);
|
|
|
|
s = strtok(list, ",");
|
|
|
|
while(s) {
|
|
|
|
if (strcmp(s, type) == 0) {
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s = strtok(NULL, ",");
|
|
|
|
}
|
|
|
|
return(negate ? !ret : ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
/* Check if we should ignore this filesystem. */
|
|
|
|
static int ignore(struct fs_info *fs)
|
|
|
|
{
|
|
|
|
const char **ip;
|
1997-04-26 21:34:30 +08:00
|
|
|
int wanted = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the pass number is 0, ignore it.
|
|
|
|
*/
|
|
|
|
if (fs->passno == 0)
|
|
|
|
return 1;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If a specific fstype is specified, and it doesn't match,
|
|
|
|
* ignore it.
|
|
|
|
*/
|
1997-04-26 21:34:30 +08:00
|
|
|
if (!fs_match(fs->type, fstype)) return 1;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
/* Are we ignoring this type? */
|
|
|
|
for(ip = ignored_types; *ip; ip++)
|
|
|
|
if (strcmp(fs->type, *ip) == 0) return(1);
|
|
|
|
|
|
|
|
/* Do we really really want to check this fs? */
|
|
|
|
for(ip = really_wanted; *ip; ip++)
|
|
|
|
if (strcmp(fs->type, *ip) == 0) {
|
|
|
|
wanted = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* See if the <fsck.fs> program is available. */
|
|
|
|
if (find_fsck(fs->type) == NULL) {
|
|
|
|
if (wanted)
|
|
|
|
fprintf(stderr, "fsck: cannot check %s: fsck.%s not found\n",
|
|
|
|
fs->device, fs->type);
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We can and want to check this file system type. */
|
1997-04-26 21:21:57 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the "base device" given a particular device; this is used to
|
|
|
|
* assure that we only fsck one partition on a particular drive at any
|
|
|
|
* one time. Otherwise, the disk heads will be seeking all over the
|
|
|
|
* place.
|
|
|
|
*/
|
|
|
|
static const char *base_device(char *device)
|
|
|
|
{
|
|
|
|
const char **base;
|
|
|
|
|
|
|
|
for (base = base_devices; *base; base++) {
|
|
|
|
if (!strncmp(*base, device, strlen(*base)))
|
|
|
|
return *base;
|
|
|
|
}
|
|
|
|
return device;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns TRUE if a partition on the same disk is already being
|
|
|
|
* checked.
|
|
|
|
*/
|
|
|
|
static int device_already_active(char *device)
|
|
|
|
{
|
|
|
|
struct fsck_instance *inst;
|
|
|
|
const char *base;
|
|
|
|
|
|
|
|
base = base_device(device);
|
|
|
|
|
|
|
|
for (inst = instance_list; inst; inst = inst->next) {
|
|
|
|
if (!strcmp(base, base_device(inst->device)))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check all file systems, using the /etc/fstab table. */
|
|
|
|
static int check_all(NOARGS)
|
|
|
|
{
|
1997-04-30 00:17:09 +08:00
|
|
|
struct fs_info *fs = NULL;
|
1997-04-26 21:21:57 +08:00
|
|
|
struct fsck_instance *inst;
|
|
|
|
int status = EXIT_OK;
|
|
|
|
int not_done_yet = 1;
|
|
|
|
int passno = 0;
|
|
|
|
int pass_done;
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
printf("Checking all file systems.\n");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find and check the root filesystem first.
|
|
|
|
*/
|
1997-04-26 22:48:50 +08:00
|
|
|
if (!parallel_root) {
|
|
|
|
for (fs = filesys_info; fs; fs = fs->next) {
|
|
|
|
if (!strcmp(fs->mountpt, "/"))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fs && !skip_root && !ignore(fs)) {
|
|
|
|
fsck_device(fs->device);
|
|
|
|
fs->flags |= FLAG_DONE;
|
|
|
|
status |= wait_all();
|
|
|
|
if (status > EXIT_NONDESTRUCT)
|
|
|
|
return status;
|
|
|
|
}
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
1997-04-26 21:34:30 +08:00
|
|
|
if (fs) fs->flags |= FLAG_DONE;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mark filesystems that should be ignored as done.
|
|
|
|
*/
|
|
|
|
for (fs = filesys_info; fs; fs = fs->next) {
|
|
|
|
if (ignore(fs))
|
|
|
|
fs->flags |= FLAG_DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (not_done_yet) {
|
|
|
|
not_done_yet = 0;
|
|
|
|
pass_done = 1;
|
|
|
|
|
|
|
|
for (fs = filesys_info; fs; fs = fs->next) {
|
|
|
|
if (fs->flags & FLAG_DONE)
|
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* If the filesystem's pass number is higher
|
|
|
|
* than the current pass number, then we don't
|
|
|
|
* do it yet.
|
|
|
|
*/
|
|
|
|
if (fs->passno > passno) {
|
|
|
|
not_done_yet++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If a filesystem on a particular device has
|
|
|
|
* already been spawned, then we need to defer
|
|
|
|
* this to another pass.
|
|
|
|
*/
|
|
|
|
if (device_already_active(fs->device)) {
|
|
|
|
pass_done = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Spawn off the fsck process
|
|
|
|
*/
|
|
|
|
fsck_device(fs->device);
|
|
|
|
fs->flags |= FLAG_DONE;
|
|
|
|
|
1997-04-26 22:37:06 +08:00
|
|
|
if (serialize) {
|
|
|
|
pass_done = 0;
|
1997-04-26 21:21:57 +08:00
|
|
|
break; /* Only do one filesystem at a time */
|
1997-04-26 22:37:06 +08:00
|
|
|
|
|
|
|
}
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
|
|
|
inst = wait_one();
|
|
|
|
if (inst) {
|
|
|
|
status |= inst->exit_status;
|
|
|
|
free_instance(inst);
|
|
|
|
}
|
|
|
|
if (pass_done) {
|
|
|
|
status |= wait_all();
|
|
|
|
if (verbose)
|
|
|
|
printf("----------------------------------\n");
|
|
|
|
passno++;
|
|
|
|
} else
|
|
|
|
not_done_yet++;
|
|
|
|
}
|
|
|
|
status |= wait_all();
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usage(NOARGS)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
|
|
|
"Usage: fsck [-AV] [-t fstype] [fs-options] filesys\n");
|
|
|
|
exit(EXIT_USAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void PRS(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
char *arg;
|
|
|
|
char options[128];
|
|
|
|
int opt = 0;
|
|
|
|
int opts_for_fsck = 0;
|
|
|
|
|
|
|
|
num_devices = 0;
|
|
|
|
num_args = 0;
|
|
|
|
instance_list = 0;
|
|
|
|
|
|
|
|
progname = argv[0];
|
|
|
|
|
|
|
|
for (i=1; i < argc; i++) {
|
|
|
|
arg = argv[i];
|
|
|
|
if (!arg)
|
|
|
|
continue;
|
|
|
|
if (arg[0] == '/') {
|
|
|
|
if (num_devices >= MAX_DEVICES) {
|
|
|
|
fprintf(stderr, "%s: too many devices\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
devices[num_devices++] = string_copy(arg);
|
1997-04-26 21:21:57 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (arg[0] != '-') {
|
|
|
|
if (num_args >= MAX_ARGS) {
|
|
|
|
fprintf(stderr, "%s: too many arguments\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
args[num_args++] = string_copy(arg);
|
1997-04-26 21:21:57 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (j=1; arg[j]; j++) {
|
|
|
|
if (opts_for_fsck) {
|
|
|
|
options[++opt] = arg[j];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (arg[j]) {
|
|
|
|
case 'A':
|
|
|
|
doall++;
|
|
|
|
break;
|
|
|
|
case 'V':
|
|
|
|
verbose++;
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
noexecute++;
|
|
|
|
break;
|
1997-04-26 21:34:30 +08:00
|
|
|
case 'R':
|
|
|
|
skip_root++;
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
notitle++;
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
like_mount++;
|
|
|
|
break;
|
1997-04-26 22:48:50 +08:00
|
|
|
case 'P':
|
|
|
|
parallel_root++;
|
|
|
|
break;
|
1997-04-26 21:21:57 +08:00
|
|
|
case 's':
|
|
|
|
serialize++;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
if (arg[j+1]) {
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
fstype = string_copy(arg+j+1);
|
1997-04-26 21:21:57 +08:00
|
|
|
goto next_arg;
|
|
|
|
}
|
|
|
|
if ((i+1) < argc) {
|
|
|
|
i++;
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
fstype = string_copy(argv[i]);
|
1997-04-26 21:21:57 +08:00
|
|
|
goto next_arg;
|
|
|
|
}
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
opts_for_fsck++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
options[++opt] = arg[j];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
next_arg:
|
|
|
|
if (opt) {
|
|
|
|
options[0] = '-';
|
|
|
|
options[++opt] = '\0';
|
|
|
|
if (num_args >= MAX_ARGS) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: too many arguments\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
args[num_args++] = string_copy(options);
|
1997-04-26 21:21:57 +08:00
|
|
|
opt = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int i;
|
1997-04-26 22:00:26 +08:00
|
|
|
int status = 0;
|
|
|
|
char *oldpath = getenv("PATH");
|
1997-04-26 21:21:57 +08:00
|
|
|
|
|
|
|
PRS(argc, argv);
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
if (!notitle)
|
|
|
|
printf("Parallelizing fsck version %s (%s)\n",
|
|
|
|
E2FSPROGS_VERSION, E2FSPROGS_DATE);
|
1997-04-26 21:21:57 +08:00
|
|
|
|
1998-12-04 00:40:38 +08:00
|
|
|
load_fs_info(_PATH_MNTTAB);
|
|
|
|
|
1997-04-26 21:34:30 +08:00
|
|
|
/* Update our search path to include uncommon directories. */
|
1997-04-26 22:00:26 +08:00
|
|
|
if (oldpath) {
|
|
|
|
fsck_path = malloc (strlen (fsck_prefix_path) + 1 +
|
|
|
|
strlen (oldpath) + 1);
|
|
|
|
strcpy (fsck_path, fsck_prefix_path);
|
|
|
|
strcat (fsck_path, ":");
|
|
|
|
strcat (fsck_path, oldpath);
|
|
|
|
} else {
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
fsck_path = string_copy(fsck_prefix_path);
|
1997-04-26 22:00:26 +08:00
|
|
|
}
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
/* If -A was specified ("check all"), do that! */
|
|
|
|
if (doall)
|
|
|
|
return check_all();
|
|
|
|
|
|
|
|
for (i = 0 ; i < num_devices; i++) {
|
|
|
|
fsck_device(devices[i]);
|
|
|
|
if (serialize) {
|
|
|
|
struct fsck_instance *inst;
|
|
|
|
|
|
|
|
inst = wait_one();
|
1997-04-26 21:34:30 +08:00
|
|
|
if (inst) {
|
1997-04-26 21:21:57 +08:00
|
|
|
status |= inst->exit_status;
|
|
|
|
free_instance(inst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
status |= wait_all();
|
1997-04-26 22:00:26 +08:00
|
|
|
free(fsck_path);
|
1997-04-26 21:21:57 +08:00
|
|
|
return status;
|
|
|
|
}
|