Ignore:
Timestamp:
Nov 4, 2007, 3:16:40 AM (16 years ago)
Author:
Bruno Cornec
Message:

Update to busybox 1.7.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi-busybox/e2fsprogs/fsck.c

    r821 r1765  
     1/* vi: set sw=4 ts=4: */
    12/*
    2  * pfsck --- A generic, parallelizing front-end for the fsck program.
     3 * fsck --- A generic, parallelizing front-end for the fsck program.
    34 * It will automatically try to run fsck programs in parallel if the
    45 * devices are on separate spindles.  It is based on the same ideas as
     
    2627 */
    2728
    28 #include <sys/types.h>
    29 #include <sys/wait.h>
    30 #include <sys/stat.h>
    31 #include <limits.h>
    32 #include <stdio.h>
    33 #include <ctype.h>
    34 #include <string.h>
    35 #include <time.h>
    36 #include <stdlib.h>
    37 #include <errno.h>
    38 #include <paths.h>
    39 #include <unistd.h>
    40 #include <errno.h>
    41 #include <signal.h>
    42 
    43 #include "fsck.h"
    44 #include "blkid/blkid.h"
    45 
    46 #include "e2fsbb.h"
    47 
    48 #include "busybox.h"
    49 
    50 #ifndef _PATH_MNTTAB
    51 #define _PATH_MNTTAB    "/etc/fstab"
    52 #endif
     29/* All filesystem specific hooks have been removed.
     30 * If filesystem cannot be determined, we will execute
     31 * "fsck.auto". Currently this also happens if you specify
     32 * UUID=xxx or LABEL=xxx as an object to check.
     33 * Detection code for that is also probably has to be in fsck.auto.
     34 *
     35 * In other words, this is _really_ is just a driver program which
     36 * spawns actual fsck.something for each filesystem to check.
     37 * It doesn't guess filesystem types from on-disk format.
     38 */
     39
     40#include "libbb.h"
     41
     42#define EXIT_OK          0
     43#define EXIT_NONDESTRUCT 1
     44#define EXIT_DESTRUCT    2
     45#define EXIT_UNCORRECTED 4
     46#define EXIT_ERROR       8
     47#define EXIT_USAGE       16
     48#define FSCK_CANCELED    32     /* Aborted with a signal or ^C */
    5349
    5450/*
    55  * fsck.h
    56  */
    57 
    58 #ifndef DEFAULT_FSTYPE
    59 #define DEFAULT_FSTYPE  "ext2"
    60 #endif
    61 
    62 #define MAX_DEVICES 32
    63 #define MAX_ARGS 32
    64 
    65 /*
    66  * Internal structure for mount tabel entries.
     51 * Internal structure for mount table entries.
    6752 */
    6853
    6954struct fs_info {
    70     char  *device;
    71     char  *mountpt;
    72     char  *type;
    73     char  *opts;
    74     int   freq;
    75     int   passno;
    76     int   flags;
    7755    struct fs_info *next;
     56    char    *device;
     57    char    *mountpt;
     58    char    *type;
     59    char    *opts;
     60    int freq;
     61    int passno;
     62    int flags;
    7863};
    7964
    8065#define FLAG_DONE 1
    8166#define FLAG_PROGRESS 2
    82 
    8367/*
    8468 * Structure to allow exit codes to be stored
    8569 */
    8670struct fsck_instance {
     71    struct fsck_instance *next;
    8772    int pid;
    8873    int flags;
    8974    int exit_status;
    9075    time_t  start_time;
    91     char *  prog;
    92     char *  type;
    93     char *  device;
    94     char *  base_device;
    95     struct fsck_instance *next;
     76    char    *prog;
     77    char    *type;
     78    char    *device;
     79    char    *base_device; /* /dev/hda for /dev/hdaN etc */
    9680};
    9781
     82static const char ignored_types[] ALIGN1 =
     83    "ignore\0"
     84    "iso9660\0"
     85    "nfs\0"
     86    "proc\0"
     87    "sw\0"
     88    "swap\0"
     89    "tmpfs\0"
     90    "devpts\0";
     91
     92#if 0
     93static const char really_wanted[] ALIGN1 =
     94    "minix\0"
     95    "ext2\0"
     96    "ext3\0"
     97    "jfs\0"
     98    "reiserfs\0"
     99    "xiafs\0"
     100    "xfs\0";
     101#endif
     102
     103#define BASE_MD "/dev/md"
     104
     105static char **devices;
     106static char **args;
     107static int num_devices;
     108static int num_args;
     109static int verbose;
     110
     111#define FS_TYPE_FLAG_NORMAL 0
     112#define FS_TYPE_FLAG_OPT    1
     113#define FS_TYPE_FLAG_NEGOPT 2
     114static char **fs_type_list;
     115static uint8_t *fs_type_flag;
     116static smallint fs_type_negated;
     117
     118static volatile smallint cancel_requested;
     119static smallint doall;
     120static smallint noexecute;
     121static smallint serialize;
     122static smallint skip_root;
     123/* static smallint like_mount; */
     124static smallint notitle;
     125static smallint parallel_root;
     126static smallint force_all_parallel;
     127
     128/* "progress indicator" code is somewhat buggy and ext[23] specific.
     129 * We should be filesystem agnostic. IOW: there should be a well-defined
     130 * API for fsck.something, NOT ad-hoc hacks in generic fsck. */
     131#define DO_PROGRESS_INDICATOR 0
     132#if DO_PROGRESS_INDICATOR
     133static smallint progress;
     134static int progress_fd;
     135#endif
     136
     137static int num_running;
     138static int max_running;
     139static char *fstype;
     140static struct fs_info *filesys_info;
     141static struct fs_info *filesys_last;
     142static struct fsck_instance *instance_list;
     143
    98144/*
    99  * base_device.c
    100  *
    101145 * Return the "base device" given a particular device; this is used to
    102146 * assure that we only fsck one partition on a particular drive at any
    103147 * one time.  Otherwise, the disk heads will be seeking all over the
    104  * place.  If the base device can not be determined, return NULL.
     148 * place.  If the base device cannot be determined, return NULL.
    105149 *
    106150 * The base_device() function returns an allocated string which must
    107151 * be freed.
    108  *
    109  */
    110 
    111 
    112 #ifdef CONFIG_FEATURE_DEVFS
     152 */
     153#if ENABLE_FEATURE_DEVFS
    113154/*
    114155 * Required for the uber-silly devfs /dev/ide/host1/bus2/target3/lun3
    115156 * pathames.
    116157 */
    117 static const char * const devfs_hier[] = {
    118     "host", "bus", "target", "lun", 0
     158static const char *const devfs_hier[] = {
     159    "host", "bus", "target", "lun", NULL
    119160};
    120161#endif
     
    123164{
    124165    char *str, *cp;
    125 #ifdef CONFIG_FEATURE_DEVFS
    126     const char * const *hier;
     166#if ENABLE_FEATURE_DEVFS
     167    const char *const *hier;
    127168    const char *disk;
    128169    int len;
    129170#endif
    130 
    131     cp = str = bb_xstrdup(device);
     171    cp = str = xstrdup(device);
    132172
    133173    /* Skip over /dev/; if it's not present, give up. */
     
    135175        goto errout;
    136176    cp += 5;
    137 
    138 #if 0   /* this is for old stuff no one uses anymore ? */
    139     /* Skip over /dev/dsk/... */
    140     if (strncmp(cp, "dsk/", 4) == 0)
    141         cp += 4;
    142 #endif
    143177
    144178    /*
     
    147181     */
    148182    if (cp[0] == 'm' && cp[1] == 'd') {
    149         *(cp+2) = 0;
     183        cp[2] = 0;
    150184        return str;
    151185    }
     
    154188    if (strncmp(cp, "rd/", 3) == 0) {
    155189        cp += 3;
    156         if (cp[0] != 'c' || cp[2] != 'd' ||
    157             !isdigit(cp[1]) || !isdigit(cp[3]))
     190        if (cp[0] != 'c' || !isdigit(cp[1])
     191         || cp[2] != 'd' || !isdigit(cp[3]))
    158192            goto errout;
    159         *(cp+4) = 0;
     193        cp[4] = 0;
    160194        return str;
    161195    }
    162196
    163197    /* Now let's handle /dev/hd* and /dev/sd* devices.... */
    164     if ((cp[0] == 'h' || cp[0] == 's') && (cp[1] == 'd')) {
     198    if ((cp[0] == 'h' || cp[0] == 's') && cp[1] == 'd') {
    165199        cp += 2;
    166200        /* If there's a single number after /dev/hd, skip it */
     
    170204        if (!isalpha(*cp))
    171205            goto errout;
    172         *(cp + 1) = 0;
     206        cp[1] = 0;
    173207        return str;
    174208    }
    175209
    176 #ifdef CONFIG_FEATURE_DEVFS
     210#if ENABLE_FEATURE_DEVFS
    177211    /* Now let's handle devfs (ugh) names */
    178212    len = 0;
     
    201235            cp++;
    202236        }
    203         *(cp - 1) = 0;
     237        cp[-1] = 0;
    204238        return str;
    205239    }
     
    225259    }
    226260#endif
    227 
    228 errout:
     261 errout:
    229262    free(str);
    230263    return NULL;
    231264}
    232265
    233 
    234 static const char * const ignored_types[] = {
    235     "ignore",
    236     "iso9660",
    237     "nfs",
    238     "proc",
    239     "sw",
    240     "swap",
    241     "tmpfs",
    242     "devpts",
    243     NULL
    244 };
    245 
    246 static const char * const really_wanted[] = {
    247     "minix",
    248     "ext2",
    249     "ext3",
    250     "jfs",
    251     "reiserfs",
    252     "xiafs",
    253     "xfs",
    254     NULL
    255 };
    256 
    257 #define BASE_MD "/dev/md"
    258 
    259 /*
    260  * Global variables for options
    261  */
    262 static char *devices[MAX_DEVICES];
    263 static char *args[MAX_ARGS];
    264 static int num_devices, num_args;
    265 
    266 static int verbose;
    267 static int doall;
    268 static int noexecute;
    269 static int serialize;
    270 static int skip_root;
    271 static int like_mount;
    272 static int notitle;
    273 static int parallel_root;
    274 static int progress;
    275 static int progress_fd;
    276 static int force_all_parallel;
    277 static int num_running;
    278 static int max_running;
    279 static volatile int cancel_requested;
    280 static int kill_sent;
    281 static char *fstype;
    282 static struct fs_info *filesys_info, *filesys_last;
    283 static struct fsck_instance *instance_list;
    284 static char *fsck_path;
    285 static blkid_cache cache;
    286 
    287 static char *string_copy(const char *s)
    288 {
    289     char    *ret;
    290 
    291     if (!s)
    292         return 0;
    293     ret = strdup(s);
    294     return ret;
    295 }
    296 
    297 static int string_to_int(const char *s)
    298 {
    299     long l;
    300     char *p;
    301 
    302     l = strtol(s, &p, 0);
    303     if (*p || l == LONG_MIN || l == LONG_MAX || l < 0 || l > INT_MAX)
    304         return -1;
     266static void free_instance(struct fsck_instance *p)
     267{
     268    free(p->prog);
     269    free(p->device);
     270    free(p->base_device);
     271    free(p);
     272}
     273
     274static struct fs_info *create_fs_device(const char *device, const char *mntpnt,
     275                    const char *type, const char *opts,
     276                    int freq, int passno)
     277{
     278    struct fs_info *fs;
     279
     280    fs = xzalloc(sizeof(*fs));
     281    fs->device = xstrdup(device);
     282    fs->mountpt = xstrdup(mntpnt);
     283    fs->type = xstrdup(type);
     284    fs->opts = xstrdup(opts ? opts : "");
     285    fs->freq = freq;
     286    fs->passno = passno;
     287    /*fs->flags = 0; */
     288    /*fs->next = NULL; */
     289
     290    if (!filesys_info)
     291        filesys_info = fs;
    305292    else
    306         return (int) l;
    307 }
    308 
    309 static char *skip_over_blank(char *cp)
    310 {
    311     while (*cp && isspace(*cp))
    312         cp++;
    313     return cp;
    314 }
    315 
    316 static char *skip_over_word(char *cp)
    317 {
    318     while (*cp && !isspace(*cp))
    319         cp++;
    320     return cp;
     293        filesys_last->next = fs;
     294    filesys_last = fs;
     295
     296    return fs;
    321297}
    322298
    323299static void strip_line(char *line)
    324300{
    325     char    *p;
     301    char *p = line + strlen(line) - 1;
    326302
    327303    while (*line) {
    328         p = line + strlen(line) - 1;
    329         if ((*p == '\n') || (*p == '\r'))
    330             *p = 0;
    331         else
     304        if (*p != '\n' && *p != '\r')
    332305            break;
     306        *p-- = '\0';
    333307    }
    334308}
     
    339313
    340314    word = *buf;
    341     if (*word == 0)
    342         return 0;
    343 
    344     word = skip_over_blank(word);
    345     next = skip_over_word(word);
     315    if (*word == '\0')
     316        return NULL;
     317
     318    word = skip_whitespace(word);
     319    next = skip_non_whitespace(word);
    346320    if (*next)
    347         *next++ = 0;
     321        *next++ = '\0';
    348322    *buf = next;
    349323    return word;
     
    352326static void parse_escape(char *word)
    353327{
    354     char    *q, c;
     328    char *q, c;
    355329    const char *p;
    356330
     
    366340        }
    367341    }
    368     *q = 0;
    369 }
    370 
    371 static void free_instance(struct fsck_instance *i)
    372 {
    373     if (i->prog)
    374         free(i->prog);
    375     if (i->device)
    376         free(i->device);
    377     if (i->base_device)
    378         free(i->base_device);
    379     free(i);
    380     return;
    381 }
    382 
    383 static struct fs_info *create_fs_device(const char *device, const char *mntpnt,
    384                     const char *type, const char *opts,
    385                     int freq, int passno)
    386 {
    387     struct fs_info *fs;
    388 
    389     if (!(fs = malloc(sizeof(struct fs_info))))
    390         return NULL;
    391 
    392     fs->device = string_copy(device);
    393     fs->mountpt = string_copy(mntpnt);
    394     fs->type = string_copy(type);
    395     fs->opts = string_copy(opts ? opts : "");
    396     fs->freq = freq;
    397     fs->passno = passno;
    398     fs->flags = 0;
    399     fs->next = NULL;
    400 
    401     if (!filesys_info)
    402         filesys_info = fs;
    403     else
    404         filesys_last->next = fs;
    405     filesys_last = fs;
    406 
    407     return fs;
    408 }
    409 
    410 
     342    *q = '\0';
     343}
    411344
    412345static int parse_fstab_line(char *line, struct fs_info **ret_fs)
    413346{
    414     char    *dev, *device, *mntpnt, *type, *opts, *freq, *passno, *cp;
     347    char *device, *mntpnt, *type, *opts, *freq, *passno, *cp;
    415348    struct fs_info *fs;
    416349
    417350    *ret_fs = 0;
    418351    strip_line(line);
    419     if ((cp = strchr(line, '#')))
    420         *cp = 0;        /* Ignore everything after the comment char */
     352    cp = strchr(line, '#');
     353    if (cp)
     354        *cp = '\0'; /* Ignore everything after the comment char */
    421355    cp = line;
    422356
    423357    device = parse_word(&cp);
     358    if (!device) return 0; /* Allow blank lines */
    424359    mntpnt = parse_word(&cp);
    425360    type = parse_word(&cp);
     
    427362    freq = parse_word(&cp);
    428363    passno = parse_word(&cp);
    429 
    430     if (!device)
    431         return 0;       /* Allow blank lines */
    432364
    433365    if (!mntpnt || !type)
     
    441373    parse_escape(passno);
    442374
    443     dev = blkid_get_devname(cache, device, NULL);
    444     if (dev)
    445         device = dev;
    446 
    447375    if (strchr(type, ','))
    448         type = 0;
     376        type = NULL;
    449377
    450378    fs = create_fs_device(device, mntpnt, type ? type : "auto", opts,
    451                   freq ? atoi(freq) : -1,
    452                   passno ? atoi(passno) : -1);
    453     if (dev)
    454         free(dev);
    455 
    456     if (!fs)
    457         return -1;
     379                freq ? atoi(freq) : -1,
     380                passno ? atoi(passno) : -1);
    458381    *ret_fs = fs;
    459382    return 0;
    460383}
    461384
    462 static void interpret_type(struct fs_info *fs)
    463 {
    464     char    *t;
    465 
    466     if (strcmp(fs->type, "auto") != 0)
     385/* Load the filesystem database from /etc/fstab */
     386static void load_fs_info(const char *filename)
     387{
     388    FILE *f;
     389    int lineno = 0;
     390    int old_fstab = 1;
     391    struct fs_info *fs;
     392
     393    f = fopen_or_warn(filename, "r");
     394    if (f == NULL) {
    467395        return;
    468     t = blkid_get_tag_value(cache, "TYPE", fs->device);
    469     if (t) {
    470         free(fs->type);
    471         fs->type = t;
    472     }
    473 }
    474 
    475 /*
    476  * Load the filesystem database from /etc/fstab
    477  */
    478 static void load_fs_info(const char *filename)
    479 {
    480     FILE    *f;
    481     char    buf[1024];
    482     int     lineno = 0;
    483     int     old_fstab = 1;
    484     struct fs_info *fs;
    485 
    486     if ((f = fopen(filename, "r")) == NULL) {
    487         bb_perror_msg("WARNING: couldn't open %s", filename);
    488         return;
    489     }
    490     while (!feof(f)) {
     396    }
     397    while (1) {
     398        int r;
     399        char *buf = xmalloc_getline(f);
     400        if (!buf) break;
     401        r = parse_fstab_line(buf, &fs);
     402        free(buf);
    491403        lineno++;
    492         if (!fgets(buf, sizeof(buf), f))
    493             break;
    494         buf[sizeof(buf)-1] = 0;
    495         if (parse_fstab_line(buf, &fs) < 0) {
     404        if (r < 0) {
    496405            bb_error_msg("WARNING: bad format "
    497                 "on line %d of %s\n", lineno, filename);
     406                "on line %d of %s", lineno, filename);
    498407            continue;
    499408        }
     
    505414            old_fstab = 0;
    506415    }
    507 
    508416    fclose(f);
    509417
    510418    if (old_fstab) {
    511         fputs("\007\007\007"
    512         "WARNING: Your /etc/fstab does not contain the fsck passno\n"
    513         "       field.  I will kludge around things for you, but you\n"
    514         "       should fix your /etc/fstab file as soon as you can.\n\n", stderr);
    515 
     419        fputs("\007"
     420"WARNING: Your /etc/fstab does not contain the fsck passno field.\n"
     421"I will kludge around things for you, but you should fix\n"
     422"your /etc/fstab file as soon as you can.\n\n", stderr);
    516423        for (fs = filesys_info; fs; fs = fs->next) {
    517424            fs->passno = 1;
     
    525432    struct fs_info *fs;
    526433
    527     /* No filesys name given. */
    528     if (filesys == NULL)
    529         return NULL;
    530 
    531434    for (fs = filesys_info; fs; fs = fs->next) {
    532         if (!strcmp(filesys, fs->device) ||
    533             (fs->mountpt && !strcmp(filesys, fs->mountpt)))
     435        if (strcmp(filesys, fs->device) == 0
     436         || (fs->mountpt && strcmp(filesys, fs->mountpt) == 0)
     437        )
    534438            break;
    535439    }
     
    538442}
    539443
    540 /* Find fsck program for a given fs type. */
    541 static char *find_fsck(char *type)
    542 {
    543   char *s;
    544   const char *tpl;
    545   char *p = string_copy(fsck_path);
    546   struct stat st;
    547 
    548   /* Are we looking for a program or just a type? */
    549   tpl = (strncmp(type, "fsck.", 5) ? "%s/fsck.%s" : "%s/%s");
    550 
    551   for(s = strtok(p, ":"); s; s = strtok(NULL, ":")) {
    552     s = bb_xasprintf(tpl, s, type);
    553     if (stat(s, &st) == 0) break;
    554     free(s);
    555   }
    556   free(p);
    557   return(s);
    558 }
    559 
     444#if DO_PROGRESS_INDICATOR
    560445static int progress_active(void)
    561446{
     
    570455    return 0;
    571456}
    572 
    573 /*
    574  * Execute a particular fsck program, and link it into the list of
    575  * child processes we are waiting for.
    576  */
    577 static int execute(const char *type, const char *device, const char *mntpt,
    578            int interactive)
    579 {
    580     char *s, *argv[80];
    581     char *prog;
    582     int  argc, i;
    583     struct fsck_instance *inst, *p;
    584     pid_t   pid;
    585 
    586     inst = malloc(sizeof(struct fsck_instance));
    587     if (!inst)
    588         return ENOMEM;
    589     memset(inst, 0, sizeof(struct fsck_instance));
    590 
    591     prog = bb_xasprintf("fsck.%s", type);
    592     argv[0] = prog;
    593     argc = 1;
    594 
    595     for (i=0; i <num_args; i++)
    596         argv[argc++] = string_copy(args[i]);
    597 
    598     if (progress && !progress_active()) {
    599         if ((strcmp(type, "ext2") == 0) ||
    600             (strcmp(type, "ext3") == 0)) {
    601             char tmp[80];
    602             snprintf(tmp, 80, "-C%d", progress_fd);
    603             argv[argc++] = string_copy(tmp);
    604             inst->flags |= FLAG_PROGRESS;
    605         }
    606     }
    607 
    608     argv[argc++] = string_copy(device);
    609     argv[argc] = 0;
    610 
    611     s = find_fsck(prog);
    612     if (s == NULL) {
    613         bb_error_msg("%s: not found", prog);
    614         return ENOENT;
    615     }
    616 
    617     if (verbose || noexecute) {
    618         printf("[%s (%d) -- %s] ", s, num_running,
    619                mntpt ? mntpt : device);
    620         for (i=0; i < argc; i++)
    621             printf("%s ", argv[i]);
    622         printf("\n");
    623     }
    624 
    625     /* Fork and execute the correct program. */
    626     if (noexecute)
    627         pid = -1;
    628     else if ((pid = fork()) < 0) {
    629         perror("fork");
    630         return errno;
    631     } else if (pid == 0) {
    632         if (!interactive)
    633             close(0);
    634         (void) execv(s, argv);
    635         bb_perror_msg_and_die("%s", argv[0]);
    636     }
    637 
    638     for (i = 1; i < argc; i++)
    639         free(argv[i]);
    640 
    641     free(s);
    642     inst->pid = pid;
    643     inst->prog = prog;
    644     inst->type = string_copy(type);
    645     inst->device = string_copy(device);
    646     inst->base_device = base_device(device);
    647     inst->start_time = time(0);
    648     inst->next = NULL;
    649 
    650     /*
    651      * Find the end of the list, so we add the instance on at the end.
    652      */
    653     for (p = instance_list; p && p->next; p = p->next);
    654 
    655     if (p)
    656         p->next = inst;
    657     else
    658         instance_list = inst;
    659 
    660     return 0;
    661 }
     457#endif
     458
    662459
    663460/*
    664461 * Send a signal to all outstanding fsck child processes
    665462 */
    666 static int kill_all(int signum)
    667 {
     463static void kill_all_if_cancel_requested(void)
     464{
     465    static smallint kill_sent;
     466
    668467    struct fsck_instance *inst;
    669     int     n = 0;
     468
     469    if (!cancel_requested || kill_sent)
     470        return;
    670471
    671472    for (inst = instance_list; inst; inst = inst->next) {
    672473        if (inst->flags & FLAG_DONE)
    673474            continue;
    674         kill(inst->pid, signum);
    675         n++;
    676     }
    677     return n;
     475        kill(inst->pid, SIGTERM);
     476    }
     477    kill_sent = 1;
    678478}
    679479
     
    684484static struct fsck_instance *wait_one(int flags)
    685485{
    686     int     status;
    687     int     sig;
    688     struct fsck_instance *inst, *inst2, *prev;
    689     pid_t   pid;
     486    int status;
     487    int sig;
     488    struct fsck_instance *inst, *prev;
     489    pid_t pid;
    690490
    691491    if (!instance_list)
     
    694494    if (noexecute) {
    695495        inst = instance_list;
    696         prev = 0;
     496        prev = NULL;
    697497#ifdef RANDOM_DEBUG
    698498        while (inst->next && (random() & 1)) {
     
    705505    }
    706506
    707     /*
    708      * gcc -Wall fails saving throw against stupidity
    709      * (inst and prev are thought to be uninitialized variables)
    710      */
    711     inst = prev = NULL;
    712 
     507    inst = prev = NULL; /* for gcc */
    713508    do {
    714509        pid = waitpid(-1, &status, flags);
    715         if (cancel_requested && !kill_sent) {
    716             kill_all(SIGTERM);
    717             kill_sent++;
    718         }
    719         if ((pid == 0) && (flags & WNOHANG))
     510        kill_all_if_cancel_requested();
     511        if (pid == 0 && (flags & WNOHANG))
    720512            return NULL;
    721513        if (pid < 0) {
    722             if ((errno == EINTR) || (errno == EAGAIN))
     514            if (errno == EINTR || errno == EAGAIN)
    723515                continue;
    724516            if (errno == ECHILD) {
    725                 bb_error_msg("wait: No more child process?!?");
     517                bb_error_msg("wait: no more child process?!?");
    726518                return NULL;
    727519            }
    728             perror("wait");
     520            bb_perror_msg("wait");
    729521            continue;
    730522        }
    731         for (prev = 0, inst = instance_list;
    732              inst;
    733              prev = inst, inst = inst->next) {
     523        prev = NULL;
     524        inst = instance_list;
     525        while (inst) {
    734526            if (inst->pid == pid)
    735527                break;
     528            prev = inst;
     529            inst = inst->next;
    736530        }
    737531    } while (!inst);
     
    741535    else if (WIFSIGNALED(status)) {
    742536        sig = WTERMSIG(status);
    743         if (sig == SIGINT) {
    744             status = EXIT_UNCORRECTED;
    745         } else {
    746             printf("Warning... %s for device %s exited "
    747                    "with signal %d.\n",
    748                    inst->prog, inst->device, sig);
     537        status = EXIT_UNCORRECTED;
     538        if (sig != SIGINT) {
     539            printf("Warning... %s %s exited "
     540                "with signal %d\n",
     541                inst->prog, inst->device, sig);
    749542            status = EXIT_ERROR;
    750543        }
    751544    } else {
    752         printf("%s %s: status is %x, should never happen.\n",
    753                inst->prog, inst->device, status);
     545        printf("%s %s: status is %x, should never happen\n",
     546            inst->prog, inst->device, status);
    754547        status = EXIT_ERROR;
    755548    }
    756549    inst->exit_status = status;
    757     if (progress && (inst->flags & FLAG_PROGRESS) &&
    758         !progress_active()) {
     550
     551#if DO_PROGRESS_INDICATOR
     552    if (progress && (inst->flags & FLAG_PROGRESS) && !progress_active()) {
     553        struct fsck_instance *inst2;
    759554        for (inst2 = instance_list; inst2; inst2 = inst2->next) {
    760555            if (inst2->flags & FLAG_DONE)
    761556                continue;
    762             if (strcmp(inst2->type, "ext2") &&
    763                 strcmp(inst2->type, "ext3"))
     557            if (strcmp(inst2->type, "ext2") != 0
     558             && strcmp(inst2->type, "ext3") != 0
     559            ) {
    764560                continue;
    765             /*
     561            }
     562            /* ext[23], we will send USR1
     563             * (request to start displaying progress bar)
     564             *
    766565             * If we've just started the fsck, wait a tiny
    767566             * bit before sending the kill, to give it
    768567             * time to set up the signal handler
    769568             */
    770             if (inst2->start_time < time(0)+2) {
    771                 if (fork() == 0) {
    772                     sleep(1);
    773                     kill(inst2->pid, SIGUSR1);
    774                     exit(0);
    775                 }
    776             } else
    777                 kill(inst2->pid, SIGUSR1);
     569            if (inst2->start_time >= time(NULL) - 1)
     570                sleep(1);
     571            kill(inst2->pid, SIGUSR1);
    778572            inst2->flags |= FLAG_PROGRESS;
    779573            break;
    780574        }
    781575    }
    782 ret_inst:
     576#endif
     577
     578 ret_inst:
    783579    if (prev)
    784580        prev->next = inst->next;
     
    801597{
    802598    struct fsck_instance *inst;
    803     int     global_status = 0;
    804     int     wait_flags = 0;
     599    int global_status = 0;
     600    int wait_flags = 0;
    805601
    806602    while ((inst = wait_one(wait_flags))) {
     
    818614
    819615/*
     616 * Execute a particular fsck program, and link it into the list of
     617 * child processes we are waiting for.
     618 */
     619static void execute(const char *type, const char *device, const char *mntpt,
     620        int interactive)
     621{
     622    char *argv[num_args + 4]; /* see count below: */
     623    int argc;
     624    int i;
     625    struct fsck_instance *inst;
     626    pid_t pid;
     627
     628    inst = xzalloc(sizeof(*inst));
     629
     630    argv[0] = xasprintf("fsck.%s", type); /* 1 */
     631    for (i = 0; i < num_args; i++)
     632        argv[i+1] = args[i]; /* num_args */
     633    argc = num_args + 1;
     634
     635#if DO_PROGRESS_INDICATOR
     636    if (progress && !progress_active()) {
     637        if (strcmp(type, "ext2") == 0
     638         || strcmp(type, "ext3") == 0
     639        ) {
     640            argv[argc++] = xasprintf("-C%d", progress_fd); /* 1 */
     641            inst->flags |= FLAG_PROGRESS;
     642        }
     643    }
     644#endif
     645
     646    argv[argc++] = xstrdup(device); /* 1 */
     647    argv[argc] = NULL; /* 1 */
     648
     649    if (verbose || noexecute) {
     650        printf("[%s (%d) -- %s]", argv[0], num_running,
     651                    mntpt ? mntpt : device);
     652        for (i = 0; i < argc; i++)
     653            printf(" %s", argv[i]);
     654        puts("");
     655    }
     656
     657    /* Fork and execute the correct program. */
     658    pid = -1;
     659    if (!noexecute) {
     660        pid = spawn(argv);
     661        if (pid < 0)
     662            bb_perror_msg("%s", argv[0]);
     663    }
     664
     665    for (i = num_args+1; i < argc; i++)
     666        free(argv[i]);
     667
     668    inst->pid = pid;
     669    inst->prog = argv[0];
     670    inst->type = xstrdup(type);
     671    inst->device = xstrdup(device);
     672    inst->base_device = base_device(device);
     673    inst->start_time = time(NULL);
     674
     675    /* Add to the list of running fsck's.
     676     * (was adding to the end, but adding to the front is simpler...) */
     677    inst->next = instance_list;
     678    instance_list = inst;
     679}
     680
     681/*
    820682 * Run the fsck program on a particular device
    821683 *
     
    825687 *
    826688 * If the type isn't specified by the user, then use either the type
    827  * specified in /etc/fstab, or DEFAULT_FSTYPE.
     689 * specified in /etc/fstab, or "auto".
    828690 */
    829691static void fsck_device(struct fs_info *fs, int interactive)
    830692{
    831693    const char *type;
    832     int retval;
    833 
    834     interpret_type(fs);
    835 
    836     if (strcmp(fs->type, "auto") != 0)
     694
     695    if (strcmp(fs->type, "auto") != 0) {
    837696        type = fs->type;
    838     else if (fstype && strncmp(fstype, "no", 2) &&
    839         strncmp(fstype, "opts=", 5) && strncmp(fstype, "loop", 4) &&
    840         !strchr(fstype, ','))
     697        if (verbose > 2)
     698            bb_info_msg("using filesystem type '%s' %s",
     699                    type, "from fstab");
     700    } else if (fstype
     701     && (fstype[0] != 'n' || fstype[1] != 'o') /* != "no" */
     702     && strncmp(fstype, "opts=", 5) != 0
     703     && strncmp(fstype, "loop", 4) != 0
     704     && !strchr(fstype, ',')
     705    ) {
    841706        type = fstype;
    842     else
    843         type = DEFAULT_FSTYPE;
     707        if (verbose > 2)
     708            bb_info_msg("using filesystem type '%s' %s",
     709                    type, "from -t");
     710    } else {
     711        type = "auto";
     712        if (verbose > 2)
     713            bb_info_msg("using filesystem type '%s' %s",
     714                    type, "(default)");
     715    }
    844716
    845717    num_running++;
    846     retval = execute(type, fs->device, fs->mountpt, interactive);
    847     if (retval) {
    848         bb_error_msg("Error %d while executing fsck.%s for %s",
    849                         retval, type, fs->device);
    850         num_running--;
    851     }
    852 }
    853 
    854 
    855 /*
    856  * Deal with the fsck -t argument.
    857  */
    858 struct fs_type_compile {
    859     char **list;
    860     int *type;
    861     int  negate;
    862 } fs_type_compiled;
    863 
    864 #define FS_TYPE_NORMAL  0
    865 #define FS_TYPE_OPT     1
    866 #define FS_TYPE_NEGOPT  2
    867 
    868 static const char fs_type_syntax_error[] =
    869 "Either all or none of the filesystem types passed to -t must be prefixed\n"
    870    "with 'no' or '!'.";
    871 
    872 static void compile_fs_type(char *fs_type, struct fs_type_compile *cmp)
    873 {
    874     char    *cp, *list, *s;
    875     int     num = 2;
    876     int     negate, first_negate = 1;
    877 
    878     if (fs_type) {
    879         for (cp=fs_type; *cp; cp++) {
    880             if (*cp == ',')
    881                 num++;
    882         }
    883     }
    884 
    885     cmp->list = xcalloc(num, sizeof(char *));
    886     cmp->type = xcalloc(num, sizeof(int));
    887     cmp->negate = 0;
    888 
    889     if (!fs_type)
    890         return;
    891 
    892     list = string_copy(fs_type);
    893     num = 0;
    894     s = strtok(list, ",");
    895     while(s) {
    896         negate = 0;
    897         if (strncmp(s, "no", 2) == 0) {
    898             s += 2;
    899             negate = 1;
    900         } else if (*s == '!') {
    901             s++;
    902             negate = 1;
    903         }
    904         if (strcmp(s, "loop") == 0)
    905             /* loop is really short-hand for opts=loop */
    906             goto loop_special_case;
    907         else if (strncmp(s, "opts=", 5) == 0) {
    908             s += 5;
    909         loop_special_case:
    910             cmp->type[num] = negate ? FS_TYPE_NEGOPT : FS_TYPE_OPT;
    911         } else {
    912             if (first_negate) {
    913                 cmp->negate = negate;
    914                 first_negate = 0;
    915             }
    916             if ((negate && !cmp->negate) ||
    917                 (!negate && cmp->negate)) {
    918                 bb_error_msg_and_die("%s", fs_type_syntax_error);
    919             }
    920         }
    921 #if 0
    922         printf("Adding %s to list (type %d).\n", s, cmp->type[num]);
    923 #endif
    924         cmp->list[num++] = string_copy(s);
    925         s = strtok(NULL, ",");
    926     }
    927     free(list);
    928 }
    929 
    930 /*
    931  * This function returns true if a particular option appears in a
    932  * comma-delimited options list
    933  */
    934 static int opt_in_list(char *opt, char *optlist)
    935 {
    936     char    *list, *s;
    937 
    938     if (!optlist)
    939         return 0;
    940     list = string_copy(optlist);
    941 
    942     s = strtok(list, ",");
    943     while(s) {
    944         if (strcmp(s, opt) == 0) {
    945             free(list);
    946             return 1;
    947         }
    948         s = strtok(NULL, ",");
    949     }
    950     free(list);
    951     return 0;
    952 }
    953 
    954 /* See if the filesystem matches the criteria given by the -t option */
    955 static int fs_match(struct fs_info *fs, struct fs_type_compile *cmp)
    956 {
    957     int n, ret = 0, checked_type = 0;
    958     char *cp;
    959 
    960     if (cmp->list == 0 || cmp->list[0] == 0)
    961         return 1;
    962 
    963     for (n=0; (cp = cmp->list[n]); n++) {
    964         switch (cmp->type[n]) {
    965         case FS_TYPE_NORMAL:
    966             checked_type++;
    967             if (strcmp(cp, fs->type) == 0) {
    968                 ret = 1;
    969             }
    970             break;
    971         case FS_TYPE_NEGOPT:
    972             if (opt_in_list(cp, fs->opts))
    973                 return 0;
    974             break;
    975         case FS_TYPE_OPT:
    976             if (!opt_in_list(cp, fs->opts))
    977                 return 0;
    978             break;
    979         }
    980     }
    981     if (checked_type == 0)
    982         return 1;
    983     return (cmp->negate ? !ret : ret);
    984 }
    985 
    986 /* Check if we should ignore this filesystem. */
    987 static int ignore(struct fs_info *fs)
    988 {
    989     int wanted;
    990     char *s;
    991 
    992     /*
    993      * If the pass number is 0, ignore it.
    994      */
    995     if (fs->passno == 0)
    996         return 1;
    997 
    998     interpret_type(fs);
    999 
    1000     /*
    1001      * If a specific fstype is specified, and it doesn't match,
    1002      * ignore it.
    1003      */
    1004     if (!fs_match(fs, &fs_type_compiled)) return 1;
    1005 
    1006     /* Are we ignoring this type? */
    1007     if(compare_string_array(ignored_types, fs->type) >= 0)
    1008         return 1;
    1009 
    1010     /* Do we really really want to check this fs? */
    1011     wanted = compare_string_array(really_wanted, fs->type) >= 0;
    1012 
    1013     /* See if the <fsck.fs> program is available. */
    1014     s = find_fsck(fs->type);
    1015     if (s == NULL) {
    1016         if (wanted)
    1017             bb_error_msg("cannot check %s: fsck.%s not found",
    1018                 fs->device, fs->type);
    1019         return 1;
    1020     }
    1021     free(s);
    1022 
    1023     /* We can and want to check this file system type. */
    1024     return 0;
     718    execute(type, fs->device, fs->mountpt, interactive);
    1025719}
    1026720
     
    1039733#ifdef BASE_MD
    1040734    /* Don't check a soft raid disk with any other disk */
    1041     if (instance_list &&
    1042         (!strncmp(instance_list->device, BASE_MD, sizeof(BASE_MD)-1) ||
    1043          !strncmp(device, BASE_MD, sizeof(BASE_MD)-1)))
     735    if (instance_list
     736     && (!strncmp(instance_list->device, BASE_MD, sizeof(BASE_MD)-1)
     737         || !strncmp(device, BASE_MD, sizeof(BASE_MD)-1))
     738    ) {
    1044739        return 1;
     740    }
    1045741#endif
    1046742
     
    1051747     */
    1052748    if (!base)
    1053         return (instance_list != 0);
     749        return (instance_list != NULL);
     750
    1054751    for (inst = instance_list; inst; inst = inst->next) {
    1055752        if (!inst->base_device || !strcmp(base, inst->base_device)) {
     
    1058755        }
    1059756    }
     757
    1060758    free(base);
    1061759    return 0;
    1062760}
    1063761
     762/*
     763 * This function returns true if a particular option appears in a
     764 * comma-delimited options list
     765 */
     766static int opt_in_list(char *opt, char *optlist)
     767{
     768    char *s;
     769    int len;
     770
     771    if (!optlist)
     772        return 0;
     773
     774    len = strlen(opt);
     775    s = optlist - 1;
     776    while (1) {
     777        s = strstr(s + 1, opt);
     778        if (!s)
     779            return 0;
     780        /* neither "opt.." nor "xxx,opt.."? */
     781        if (s != optlist && s[-1] != ',')
     782            continue;
     783        /* neither "..opt" nor "..opt,xxx"? */
     784        if (s[len] != '\0' && s[len] != ',')
     785            continue;
     786        return 1;
     787    }
     788}
     789
     790/* See if the filesystem matches the criteria given by the -t option */
     791static int fs_match(struct fs_info *fs)
     792{
     793    int n, ret, checked_type;
     794    char *cp;
     795
     796    if (!fs_type_list)
     797        return 1;
     798
     799    ret = 0;
     800    checked_type = 0;
     801    n = 0;
     802    while (1) {
     803        cp = fs_type_list[n];
     804        if (!cp)
     805            break;
     806        switch (fs_type_flag[n]) {
     807        case FS_TYPE_FLAG_NORMAL:
     808            checked_type++;
     809            if (strcmp(cp, fs->type) == 0)
     810                ret = 1;
     811            break;
     812        case FS_TYPE_FLAG_NEGOPT:
     813            if (opt_in_list(cp, fs->opts))
     814                return 0;
     815            break;
     816        case FS_TYPE_FLAG_OPT:
     817            if (!opt_in_list(cp, fs->opts))
     818                return 0;
     819            break;
     820        }
     821        n++;
     822    }
     823    if (checked_type == 0)
     824        return 1;
     825
     826    return (fs_type_negated ? !ret : ret);
     827}
     828
     829/* Check if we should ignore this filesystem. */
     830static int ignore(struct fs_info *fs)
     831{
     832    /*
     833     * If the pass number is 0, ignore it.
     834     */
     835    if (fs->passno == 0)
     836        return 1;
     837
     838    /*
     839     * If a specific fstype is specified, and it doesn't match,
     840     * ignore it.
     841     */
     842    if (!fs_match(fs))
     843        return 1;
     844
     845    /* Are we ignoring this type? */
     846    if (index_in_strings(ignored_types, fs->type) >= 0)
     847        return 1;
     848
     849    /* We can and want to check this file system type. */
     850    return 0;
     851}
     852
    1064853/* Check all file systems, using the /etc/fstab table. */
    1065854static int check_all(void)
    1066855{
    1067     struct fs_info *fs = NULL;
     856    struct fs_info *fs;
    1068857    int status = EXIT_OK;
    1069     int not_done_yet = 1;
    1070     int passno = 1;
    1071     int pass_done;
     858    smallint not_done_yet;
     859    smallint pass_done;
     860    int passno;
    1072861
    1073862    if (verbose)
    1074         fputs("Checking all file systems.\n", stdout);
     863        puts("Checking all filesystems");
    1075864
    1076865    /*
     
    1089878    if (!parallel_root) {
    1090879        for (fs = filesys_info; fs; fs = fs->next) {
    1091             if (!strcmp(fs->mountpt, "/"))
     880            if (LONE_CHAR(fs->mountpt, '/'))
    1092881                break;
    1093882        }
     
    1104893    /*
    1105894     * This is for the bone-headed user who enters the root
    1106      * filesystem twice.  Skip root will skep all root entries.
     895     * filesystem twice.  Skip root will skip all root entries.
    1107896     */
    1108897    if (skip_root)
    1109898        for (fs = filesys_info; fs; fs = fs->next)
    1110             if (!strcmp(fs->mountpt, "/"))
     899            if (LONE_CHAR(fs->mountpt, '/'))
    1111900                fs->flags |= FLAG_DONE;
    1112901
     902    not_done_yet = 1;
     903    passno = 1;
    1113904    while (not_done_yet) {
    1114905        not_done_yet = 0;
     
    1126917             */
    1127918            if (fs->passno > passno) {
    1128                 not_done_yet++;
     919                not_done_yet = 1;
    1129920                continue;
    1130921            }
     
    1149940             * at one time, apply that limit.
    1150941             */
    1151             if (serialize ||
    1152                 (max_running && (num_running >= max_running))) {
     942            if (serialize
     943             || (max_running && (num_running >= max_running))
     944            ) {
    1153945                pass_done = 0;
    1154946                break;
     
    1163955        if (pass_done) {
    1164956            if (verbose > 1)
    1165                 printf("----------------------------------\n");
     957                puts("----------------------------------");
    1166958            passno++;
    1167959        } else
    1168             not_done_yet++;
    1169     }
    1170     if (cancel_requested && !kill_sent) {
    1171         kill_all(SIGTERM);
    1172         kill_sent++;
    1173     }
     960            not_done_yet = 1;
     961    }
     962    kill_all_if_cancel_requested();
    1174963    status |= wait_many(FLAG_WAIT_ATLEAST_ONE);
    1175964    return status;
    1176965}
    1177966
    1178 static void signal_cancel(int sig FSCK_ATTR((unused)))
    1179 {
    1180     cancel_requested++;
    1181 }
    1182 
    1183 static void PRS(int argc, char *argv[])
    1184 {
    1185     int     i, j;
    1186     char    *arg, *dev, *tmp = 0;
    1187     char    options[128];
    1188     int     opt = 0;
    1189     int     opts_for_fsck = 0;
    1190     struct sigaction        sa;
    1191 
    1192     /*
    1193      * Set up signal action
    1194      */
    1195     memset(&sa, 0, sizeof(struct sigaction));
    1196     sa.sa_handler = signal_cancel;
    1197     sigaction(SIGINT, &sa, 0);
    1198     sigaction(SIGTERM, &sa, 0);
    1199 
     967/*
     968 * Deal with the fsck -t argument.
     969 * Huh, for mount "-t novfat,nfs" means "neither vfat nor nfs"!
     970 * Why here we require "-t novfat,nonfs" ??
     971 */
     972static void compile_fs_type(char *fs_type)
     973{
     974    char *s;
     975    int num = 2;
     976    smallint negate;
     977
     978    if (fs_type) {
     979        s = fs_type;
     980        while ((s = strchr(s, ','))) {
     981            num++;
     982            s++;
     983        }
     984    }
     985
     986    fs_type_list = xzalloc(num * sizeof(fs_type_list[0]));
     987    fs_type_flag = xzalloc(num * sizeof(fs_type_flag[0]));
     988    fs_type_negated = -1; /* not yet known is it negated or not */
     989
     990    if (!fs_type)
     991        return;
     992
     993    num = 0;
     994    s = fs_type;
     995    while (1) {
     996        char *comma;
     997
     998        negate = 0;
     999        if (s[0] == 'n' && s[1] == 'o') { /* "no.." */
     1000            s += 2;
     1001            negate = 1;
     1002        } else if (s[0] == '!') {
     1003            s++;
     1004            negate = 1;
     1005        }
     1006
     1007        if (strcmp(s, "loop") == 0)
     1008            /* loop is really short-hand for opts=loop */
     1009            goto loop_special_case;
     1010        if (strncmp(s, "opts=", 5) == 0) {
     1011            s += 5;
     1012 loop_special_case:
     1013            fs_type_flag[num] = negate ? FS_TYPE_FLAG_NEGOPT : FS_TYPE_FLAG_OPT;
     1014        } else {
     1015            if (fs_type_negated == -1)
     1016                fs_type_negated = negate;
     1017            if (fs_type_negated != negate)
     1018                bb_error_msg_and_die(
     1019"either all or none of the filesystem types passed to -t must be prefixed "
     1020"with 'no' or '!'");
     1021        }
     1022        comma = strchr(s, ',');
     1023        fs_type_list[num++] = comma ? xstrndup(s, comma-s) : xstrdup(s);
     1024        if (!comma)
     1025            break;
     1026        s = comma + 1;
     1027    }
     1028}
     1029
     1030static void parse_args(int argc, char **argv)
     1031{
     1032    int i, j;
     1033    char *arg, *tmp;
     1034    char *options = NULL;
     1035    int optpos = 0;
     1036    int opts_for_fsck = 0;
     1037
     1038    /* in bss, so already zeroed
    12001039    num_devices = 0;
    12011040    num_args = 0;
    1202     instance_list = 0;
    1203 
    1204     for (i=1; i < argc; i++) {
     1041    instance_list = NULL;
     1042    */
     1043
     1044/* TODO: getopt32 */
     1045    for (i = 1; i < argc; i++) {
    12051046        arg = argv[i];
    1206         if (!arg)
     1047
     1048        /* "/dev/blk" or "/path" or "UUID=xxx" or "LABEL=xxx" */
     1049        if ((arg[0] == '/' && !opts_for_fsck) || strchr(arg, '=')) {
     1050// FIXME: must check that arg is a blkdev, or resolve
     1051// "/path", "UUID=xxx" or "LABEL=xxx" into block device name
     1052// ("UUID=xxx"/"LABEL=xxx" can probably shifted to fsck.auto duties)
     1053            devices = xrealloc(devices, (num_devices+1) * sizeof(devices[0]));
     1054            devices[num_devices++] = xstrdup(arg);
    12071055            continue;
    1208         if ((arg[0] == '/' && !opts_for_fsck) || strchr(arg, '=')) {
    1209             if (num_devices >= MAX_DEVICES) {
    1210                 bb_error_msg_and_die("too many devices");
    1211             }
    1212             dev = blkid_get_devname(cache, arg, NULL);
    1213             if (!dev && strchr(arg, '=')) {
    1214                 /*
    1215                  * Check to see if we failed because
    1216                  * /proc/partitions isn't found.
    1217                  */
    1218                 if (access("/proc/partitions", R_OK) < 0) {
    1219                     bb_error_msg_and_die("Couldn't open /proc/partitions: %m\n"
    1220                             "Is /proc mounted?");
    1221                 }
    1222                 /*
    1223                  * Check to see if this is because
    1224                  * we're not running as root
    1225                  */
    1226                 if (geteuid())
    1227                     bb_error_msg_and_die(
    1228         "Must be root to scan for matching filesystems: %s\n", arg);
    1229                 else
    1230                     bb_error_msg_and_die(
    1231         "Couldn't find matching filesystem: %s", arg);
    1232             }
    1233             devices[num_devices++] = dev ? dev : string_copy(arg);
     1056        }
     1057
     1058        if (arg[0] != '-' || opts_for_fsck) {
     1059            args = xrealloc(args, (num_args+1) * sizeof(args[0]));
     1060            args[num_args++] = xstrdup(arg);
    12341061            continue;
    12351062        }
    1236         if (arg[0] != '-' || opts_for_fsck) {
    1237             if (num_args >= MAX_ARGS) {
    1238                 bb_error_msg_and_die("too many arguments");
    1239             }
    1240             args[num_args++] = string_copy(arg);
    1241             continue;
    1242         }
    1243         for (j=1; arg[j]; j++) {
     1063
     1064        for (j = 1; arg[j]; j++) {
    12441065            if (opts_for_fsck) {
    1245                 options[++opt] = arg[j];
     1066                optpos++;
     1067                /* one extra for '\0' */
     1068                options = xrealloc(options, optpos + 2);
     1069                options[optpos] = arg[j];
    12461070                continue;
    12471071            }
    12481072            switch (arg[j]) {
    12491073            case 'A':
    1250                 doall++;
    1251                 break;
     1074                doall = 1;
     1075                break;
     1076#if DO_PROGRESS_INDICATOR
    12521077            case 'C':
    1253                 progress++;
    1254                 if (arg[j+1]) {
    1255                     progress_fd = string_to_int(arg+j+1);
    1256                     if (progress_fd < 0)
    1257                         progress_fd = 0;
    1258                     else
    1259                         goto next_arg;
    1260                 } else if ((i+1) < argc &&
    1261                        !strncmp(argv[i+1], "-", 1) == 0) {
    1262                     progress_fd = string_to_int(argv[i]);
    1263                     if (progress_fd < 0)
    1264                         progress_fd = 0;
    1265                     else {
    1266                         goto next_arg;
    1267                         i++;
    1268                     }
     1078                progress = 1;
     1079                if (arg[++j]) { /* -Cn */
     1080                    progress_fd = xatoi_u(&arg[j]);
     1081                    goto next_arg;
    12691082                }
    1270                 break;
     1083                /* -C n */
     1084                progress_fd = xatoi_u(argv[++i]);
     1085                goto next_arg;
     1086#endif
    12711087            case 'V':
    12721088                verbose++;
    12731089                break;
    12741090            case 'N':
    1275                 noexecute++;
     1091                noexecute = 1;
    12761092                break;
    12771093            case 'R':
    1278                 skip_root++;
     1094                skip_root = 1;
    12791095                break;
    12801096            case 'T':
    1281                 notitle++;
    1282                 break;
    1283             case 'M':
    1284                 like_mount++;
    1285                 break;
     1097                notitle = 1;
     1098                break;
     1099/*          case 'M':
     1100                like_mount = 1;
     1101                break; */
    12861102            case 'P':
    1287                 parallel_root++;
     1103                parallel_root = 1;
    12881104                break;
    12891105            case 's':
    1290                 serialize++;
     1106                serialize = 1;
    12911107                break;
    12921108            case 't':
    1293                 tmp = 0;
    12941109                if (fstype)
    12951110                    bb_show_usage();
    1296                 if (arg[j+1])
    1297                     tmp = arg+j+1;
    1298                 else if ((i+1) < argc)
    1299                     tmp = argv[++i];
     1111                if (arg[++j])
     1112                    tmp = &arg[j];
     1113                else if (++i < argc)
     1114                    tmp = argv[i];
    13001115                else
    13011116                    bb_show_usage();
    1302                 fstype = string_copy(tmp);
    1303                 compile_fs_type(fstype, &fs_type_compiled);
     1117                fstype = xstrdup(tmp);
     1118                compile_fs_type(fstype);
    13041119                goto next_arg;
    13051120            case '-':
     
    13101125                break;
    13111126            default:
    1312                 options[++opt] = arg[j];
     1127                optpos++;
     1128                /* one extra for '\0' */
     1129                options = xrealloc(options, optpos + 2);
     1130                options[optpos] = arg[j];
    13131131                break;
    13141132            }
    13151133        }
    1316     next_arg:
    1317         if (opt) {
     1134 next_arg:
     1135        if (optpos) {
    13181136            options[0] = '-';
    1319             options[++opt] = '\0';
    1320             if (num_args >= MAX_ARGS) {
    1321                 bb_error_msg("too many arguments");
    1322             }
    1323             args[num_args++] = string_copy(options);
    1324             opt = 0;
     1137            options[optpos + 1] = '\0';
     1138            args = xrealloc(args, (num_args+1) * sizeof(args[0]));
     1139            args[num_args++] = options;
     1140            optpos = 0;
     1141            options = NULL;
    13251142        }
    13261143    }
    13271144    if (getenv("FSCK_FORCE_ALL_PARALLEL"))
    1328         force_all_parallel++;
    1329     if ((tmp = getenv("FSCK_MAX_INST")))
    1330         max_running = atoi(tmp);
    1331 }
    1332 
    1333 int fsck_main(int argc, char *argv[])
     1145        force_all_parallel = 1;
     1146    tmp = getenv("FSCK_MAX_INST");
     1147    if (tmp)
     1148        max_running = xatoi(tmp);
     1149}
     1150
     1151static void signal_cancel(int sig ATTRIBUTE_UNUSED)
     1152{
     1153    cancel_requested = 1;
     1154}
     1155
     1156int fsck_main(int argc, char **argv);
     1157int fsck_main(int argc, char **argv)
    13341158{
    13351159    int i, status = 0;
    1336     int interactive = 0;
     1160    int interactive;
    13371161    const char *fstab;
    13381162    struct fs_info *fs;
    1339 
    1340     setvbuf(stdout, NULL, _IONBF, BUFSIZ);
    1341     setvbuf(stderr, NULL, _IONBF, BUFSIZ);
    1342 
    1343     blkid_get_cache(&cache, NULL);
    1344     PRS(argc, argv);
     1163    struct sigaction sa;
     1164
     1165    memset(&sa, 0, sizeof(sa));
     1166    sa.sa_handler = signal_cancel;
     1167    sigaction(SIGINT, &sa, 0);
     1168    sigaction(SIGTERM, &sa, 0);
     1169
     1170    setbuf(stdout, NULL);
     1171
     1172    parse_args(argc, argv);
    13451173
    13461174    if (!notitle)
    1347         printf("fsck %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE);
    1348 
     1175        puts("fsck (busybox "BB_VER", "BB_BT")");
     1176
     1177    /* Even plain "fsck /dev/hda1" needs fstab to get fs type,
     1178     * so we are scanning it anyway */
    13491179    fstab = getenv("FSTAB_FILE");
    13501180    if (!fstab)
    1351         fstab = _PATH_MNTTAB;
     1181        fstab = "/etc/fstab";
    13521182    load_fs_info(fstab);
    13531183
    1354     fsck_path = e2fs_set_sbin_path();
    1355 
    1356     if ((num_devices == 1) || (serialize))
    1357         interactive = 1;
     1184    interactive = (num_devices == 1) | serialize;
    13581185
    13591186    /* If -A was specified ("check all"), do that! */
     
    13621189
    13631190    if (num_devices == 0) {
    1364         serialize++;
    1365         interactive++;
     1191        serialize = 1;
     1192        interactive = 1;
    13661193        return check_all();
    13671194    }
    1368     for (i = 0 ; i < num_devices; i++) {
     1195
     1196    for (i = 0; i < num_devices; i++) {
    13691197        if (cancel_requested) {
    1370             if (!kill_sent) {
    1371                 kill_all(SIGTERM);
    1372                 kill_sent++;
    1373             }
     1198            kill_all_if_cancel_requested();
    13741199            break;
    13751200        }
     1201
    13761202        fs = lookup(devices[i]);
    1377         if (!fs) {
    1378             fs = create_fs_device(devices[i], 0, "auto",
    1379                           0, -1, -1);
    1380             if (!fs)
    1381                 continue;
    1382         }
     1203        if (!fs)
     1204            fs = create_fs_device(devices[i], 0, "auto", 0, -1, -1);
    13831205        fsck_device(fs, interactive);
    1384         if (serialize ||
    1385             (max_running && (num_running >= max_running))) {
     1206
     1207        if (serialize
     1208         || (max_running && (num_running >= max_running))
     1209        ) {
    13861210            struct fsck_instance *inst;
    13871211
     
    13921216            }
    13931217            if (verbose > 1)
    1394                 printf("----------------------------------\n");
     1218                puts("----------------------------------");
    13951219        }
    13961220    }
    13971221    status |= wait_many(FLAG_WAIT_ALL);
    1398     blkid_put_cache(cache);
    13991222    return status;
    14001223}
Note: See TracChangeset for help on using the changeset viewer.