blob: 446541e845dbb21eefcb9ad55070413ad7ba505a [file] [log] [blame]
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001/* vi: set sw=4 ts=4: */
2/*
3 * fsck --- A generic, parallelizing front-end for the fsck program.
4 * It will automatically try to run fsck programs in parallel if the
5 * devices are on separate spindles. It is based on the same ideas as
6 * the generic front end for fsck by David Engel and Fred van Kempen,
7 * but it has been completely rewritten from scratch to support
8 * parallel execution.
9 *
10 * Written by Theodore Ts'o, <tytso@mit.edu>
11 *
12 * Miquel van Smoorenburg (miquels@drinkel.ow.org) 20-Oct-1994:
13 * o Changed -t fstype to behave like with mount when -A (all file
14 * systems) or -M (like mount) is specified.
15 * o fsck looks if it can find the fsck.type program to decide
16 * if it should ignore the fs type. This way more fsck programs
17 * can be added without changing this front-end.
18 * o -R flag skip root file system.
19 *
20 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
21 * 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o.
22 *
23 * %Begin-Header%
24 * This file may be redistributed under the terms of the GNU Public
25 * License.
26 * %End-Header%
27 */
28
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +000029/* 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
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000040#include "busybox.h"
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000041
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 */
49
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000050/*
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +000051 * Internal structure for mount table entries.
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000052 */
53
54struct fs_info {
Denis Vlasenkoe18a2932007-01-19 02:03:14 +000055 struct fs_info *next;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000056 char *device;
57 char *mountpt;
58 char *type;
59 char *opts;
60 int freq;
61 int passno;
62 int flags;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000063};
64
65#define FLAG_DONE 1
66#define FLAG_PROGRESS 2
67/*
68 * Structure to allow exit codes to be stored
69 */
70struct fsck_instance {
Denis Vlasenkoe18a2932007-01-19 02:03:14 +000071 struct fsck_instance *next;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000072 int pid;
73 int flags;
74 int exit_status;
75 time_t start_time;
76 char *prog;
77 char *type;
78 char *device;
79 char *base_device; /* /dev/hda for /dev/hdaN etc */
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000080};
81
Denis Vlasenko0de93752006-12-26 02:51:29 +000082static const char *const ignored_types[] = {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000083 "ignore",
84 "iso9660",
85 "nfs",
86 "proc",
87 "sw",
88 "swap",
89 "tmpfs",
90 "devpts",
91 NULL
92};
93
Denis Vlasenko0de93752006-12-26 02:51:29 +000094#if 0
95static const char *const really_wanted[] = {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +000096 "minix",
97 "ext2",
98 "ext3",
99 "jfs",
100 "reiserfs",
101 "xiafs",
102 "xfs",
103 NULL
104};
Denis Vlasenko0de93752006-12-26 02:51:29 +0000105#endif
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000106
107#define BASE_MD "/dev/md"
108
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000109static char **devices;
110static char **args;
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +0000111static int num_devices;
112static int num_args;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000113static int verbose;
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000114
115#define FS_TYPE_FLAG_NORMAL 0
116#define FS_TYPE_FLAG_OPT 1
117#define FS_TYPE_FLAG_NEGOPT 2
118static char **fs_type_list;
119static uint8_t *fs_type_flag;
120static smallint fs_type_negated;
121
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +0000122static volatile smallint cancel_requested;
123static smallint doall;
124static smallint noexecute;
125static smallint serialize;
126static smallint skip_root;
127/* static smallint like_mount; */
128static smallint notitle;
129static smallint parallel_root;
130static smallint force_all_parallel;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000131
132/* "progress indicator" code is somewhat buggy and ext[23] specific.
133 * We should be filesystem agnostic. IOW: there should be a well-defined
134 * API for fsck.something, NOT ad-hoc hacks in generic fsck. */
135#define DO_PROGRESS_INDICATOR 0
136#if DO_PROGRESS_INDICATOR
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +0000137static smallint progress;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000138static int progress_fd;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000139#endif
140
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000141static int num_running;
142static int max_running;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000143static char *fstype;
Denis Vlasenko0de93752006-12-26 02:51:29 +0000144static struct fs_info *filesys_info;
145static struct fs_info *filesys_last;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000146static struct fsck_instance *instance_list;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000147
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000148/*
149 * Return the "base device" given a particular device; this is used to
150 * assure that we only fsck one partition on a particular drive at any
151 * one time. Otherwise, the disk heads will be seeking all over the
152 * place. If the base device cannot be determined, return NULL.
153 *
154 * The base_device() function returns an allocated string which must
155 * be freed.
156 */
157#if ENABLE_FEATURE_DEVFS
158/*
159 * Required for the uber-silly devfs /dev/ide/host1/bus2/target3/lun3
160 * pathames.
161 */
162static const char *const devfs_hier[] = {
163 "host", "bus", "target", "lun", NULL
164};
165#endif
166
167static char *base_device(const char *device)
168{
169 char *str, *cp;
170#if ENABLE_FEATURE_DEVFS
171 const char *const *hier;
172 const char *disk;
173 int len;
174#endif
175 cp = str = xstrdup(device);
176
177 /* Skip over /dev/; if it's not present, give up. */
178 if (strncmp(cp, "/dev/", 5) != 0)
179 goto errout;
180 cp += 5;
181
182 /*
183 * For md devices, we treat them all as if they were all
184 * on one disk, since we don't know how to parallelize them.
185 */
186 if (cp[0] == 'm' && cp[1] == 'd') {
187 cp[2] = 0;
188 return str;
189 }
190
191 /* Handle DAC 960 devices */
192 if (strncmp(cp, "rd/", 3) == 0) {
193 cp += 3;
194 if (cp[0] != 'c' || !isdigit(cp[1])
195 || cp[2] != 'd' || !isdigit(cp[3]))
196 goto errout;
197 cp[4] = 0;
198 return str;
199 }
200
201 /* Now let's handle /dev/hd* and /dev/sd* devices.... */
202 if ((cp[0] == 'h' || cp[0] == 's') && cp[1] == 'd') {
203 cp += 2;
204 /* If there's a single number after /dev/hd, skip it */
205 if (isdigit(*cp))
206 cp++;
207 /* What follows must be an alpha char, or give up */
208 if (!isalpha(*cp))
209 goto errout;
210 cp[1] = 0;
211 return str;
212 }
213
214#if ENABLE_FEATURE_DEVFS
215 /* Now let's handle devfs (ugh) names */
216 len = 0;
217 if (strncmp(cp, "ide/", 4) == 0)
218 len = 4;
219 if (strncmp(cp, "scsi/", 5) == 0)
220 len = 5;
221 if (len) {
222 cp += len;
223 /*
224 * Now we proceed down the expected devfs hierarchy.
225 * i.e., .../host1/bus2/target3/lun4/...
226 * If we don't find the expected token, followed by
227 * some number of digits at each level, abort.
228 */
229 for (hier = devfs_hier; *hier; hier++) {
230 len = strlen(*hier);
231 if (strncmp(cp, *hier, len) != 0)
232 goto errout;
233 cp += len;
234 while (*cp != '/' && *cp != 0) {
235 if (!isdigit(*cp))
236 goto errout;
237 cp++;
238 }
239 cp++;
240 }
241 cp[-1] = 0;
242 return str;
243 }
244
245 /* Now handle devfs /dev/disc or /dev/disk names */
246 disk = 0;
247 if (strncmp(cp, "discs/", 6) == 0)
248 disk = "disc";
249 else if (strncmp(cp, "disks/", 6) == 0)
250 disk = "disk";
251 if (disk) {
252 cp += 6;
253 if (strncmp(cp, disk, 4) != 0)
254 goto errout;
255 cp += 4;
256 while (*cp != '/' && *cp != 0) {
257 if (!isdigit(*cp))
258 goto errout;
259 cp++;
260 }
261 *cp = 0;
262 return str;
263 }
264#endif
265 errout:
266 free(str);
267 return NULL;
268}
269
270static void free_instance(struct fsck_instance *p)
271{
272 free(p->prog);
273 free(p->device);
274 free(p->base_device);
275 free(p);
276}
277
278static struct fs_info *create_fs_device(const char *device, const char *mntpnt,
279 const char *type, const char *opts,
280 int freq, int passno)
281{
282 struct fs_info *fs;
283
284 fs = xzalloc(sizeof(*fs));
285 fs->device = xstrdup(device);
286 fs->mountpt = xstrdup(mntpnt);
287 fs->type = xstrdup(type);
288 fs->opts = xstrdup(opts ? opts : "");
289 fs->freq = freq;
290 fs->passno = passno;
291 /*fs->flags = 0; */
292 /*fs->next = NULL; */
293
294 if (!filesys_info)
295 filesys_info = fs;
296 else
297 filesys_last->next = fs;
298 filesys_last = fs;
299
300 return fs;
301}
302
303static void strip_line(char *line)
304{
305 char *p = line + strlen(line) - 1;
306
307 while (*line) {
308 if (*p != '\n' && *p != '\r')
309 break;
310 *p-- = '\0';
311 }
312}
313
314static char *parse_word(char **buf)
315{
316 char *word, *next;
317
318 word = *buf;
319 if (*word == '\0')
320 return NULL;
321
322 word = skip_whitespace(word);
323 next = skip_non_whitespace(word);
324 if (*next)
325 *next++ = '\0';
326 *buf = next;
327 return word;
328}
329
330static void parse_escape(char *word)
331{
332 char *q, c;
333 const char *p;
334
335 if (!word)
336 return;
337
338 for (p = q = word; *p; q++) {
339 c = *p++;
340 if (c != '\\') {
341 *q = c;
342 } else {
343 *q = bb_process_escape_sequence(&p);
344 }
345 }
346 *q = '\0';
347}
348
349static int parse_fstab_line(char *line, struct fs_info **ret_fs)
350{
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000351 char *device, *mntpnt, *type, *opts, *freq, *passno, *cp;
352 struct fs_info *fs;
353
354 *ret_fs = 0;
355 strip_line(line);
356 cp = strchr(line, '#');
357 if (cp)
358 *cp = '\0'; /* Ignore everything after the comment char */
359 cp = line;
360
361 device = parse_word(&cp);
362 if (!device) return 0; /* Allow blank lines */
363 mntpnt = parse_word(&cp);
364 type = parse_word(&cp);
365 opts = parse_word(&cp);
366 freq = parse_word(&cp);
367 passno = parse_word(&cp);
368
369 if (!mntpnt || !type)
370 return -1;
371
372 parse_escape(device);
373 parse_escape(mntpnt);
374 parse_escape(type);
375 parse_escape(opts);
376 parse_escape(freq);
377 parse_escape(passno);
378
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000379 if (strchr(type, ','))
380 type = NULL;
381
382 fs = create_fs_device(device, mntpnt, type ? type : "auto", opts,
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000383 freq ? atoi(freq) : -1,
384 passno ? atoi(passno) : -1);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000385 *ret_fs = fs;
386 return 0;
387}
388
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000389/* Load the filesystem database from /etc/fstab */
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000390static void load_fs_info(const char *filename)
391{
392 FILE *f;
393 int lineno = 0;
394 int old_fstab = 1;
395 struct fs_info *fs;
396
397 f = fopen_or_warn(filename, "r");
398 if (f == NULL) {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000399 return;
400 }
401 while (1) {
402 int r;
403 char *buf = xmalloc_getline(f);
404 if (!buf) break;
405 r = parse_fstab_line(buf, &fs);
406 free(buf);
407 lineno++;
408 if (r < 0) {
409 bb_error_msg("WARNING: bad format "
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +0000410 "on line %d of %s", lineno, filename);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000411 continue;
412 }
413 if (!fs)
414 continue;
415 if (fs->passno < 0)
416 fs->passno = 0;
417 else
418 old_fstab = 0;
419 }
420 fclose(f);
421
422 if (old_fstab) {
Denis Vlasenko0de93752006-12-26 02:51:29 +0000423 fputs("\007"
424"WARNING: Your /etc/fstab does not contain the fsck passno field.\n"
425"I will kludge around things for you, but you should fix\n"
426"your /etc/fstab file as soon as you can.\n\n", stderr);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000427 for (fs = filesys_info; fs; fs = fs->next) {
428 fs->passno = 1;
429 }
430 }
431}
432
433/* Lookup filesys in /etc/fstab and return the corresponding entry. */
434static struct fs_info *lookup(char *filesys)
435{
436 struct fs_info *fs;
437
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000438 for (fs = filesys_info; fs; fs = fs->next) {
439 if (strcmp(filesys, fs->device) == 0
440 || (fs->mountpt && strcmp(filesys, fs->mountpt) == 0)
441 )
442 break;
443 }
444
445 return fs;
446}
447
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000448#if DO_PROGRESS_INDICATOR
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000449static int progress_active(void)
450{
451 struct fsck_instance *inst;
452
453 for (inst = instance_list; inst; inst = inst->next) {
454 if (inst->flags & FLAG_DONE)
455 continue;
456 if (inst->flags & FLAG_PROGRESS)
457 return 1;
458 }
459 return 0;
460}
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000461#endif
462
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000463
464/*
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000465 * Send a signal to all outstanding fsck child processes
466 */
Denis Vlasenko0de93752006-12-26 02:51:29 +0000467static void kill_all_if_cancel_requested(void)
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000468{
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +0000469 static smallint kill_sent;
Denis Vlasenko0de93752006-12-26 02:51:29 +0000470
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000471 struct fsck_instance *inst;
Denis Vlasenko0de93752006-12-26 02:51:29 +0000472
473 if (!cancel_requested || kill_sent)
474 return;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000475
476 for (inst = instance_list; inst; inst = inst->next) {
477 if (inst->flags & FLAG_DONE)
478 continue;
Denis Vlasenko0de93752006-12-26 02:51:29 +0000479 kill(inst->pid, SIGTERM);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000480 }
Denis Vlasenko0de93752006-12-26 02:51:29 +0000481 kill_sent = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000482}
483
484/*
485 * Wait for one child process to exit; when it does, unlink it from
486 * the list of executing child processes, and return it.
487 */
488static struct fsck_instance *wait_one(int flags)
489{
490 int status;
491 int sig;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000492 struct fsck_instance *inst, *prev;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000493 pid_t pid;
494
495 if (!instance_list)
496 return NULL;
497
498 if (noexecute) {
499 inst = instance_list;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000500 prev = NULL;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000501#ifdef RANDOM_DEBUG
502 while (inst->next && (random() & 1)) {
503 prev = inst;
504 inst = inst->next;
505 }
506#endif
507 inst->exit_status = 0;
508 goto ret_inst;
509 }
510
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000511 inst = prev = NULL; /* for gcc */
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000512 do {
513 pid = waitpid(-1, &status, flags);
Denis Vlasenko0de93752006-12-26 02:51:29 +0000514 kill_all_if_cancel_requested();
515 if (pid == 0 && (flags & WNOHANG))
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000516 return NULL;
517 if (pid < 0) {
Denis Vlasenko0de93752006-12-26 02:51:29 +0000518 if (errno == EINTR || errno == EAGAIN)
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000519 continue;
520 if (errno == ECHILD) {
521 bb_error_msg("wait: no more child process?!?");
522 return NULL;
523 }
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000524 bb_perror_msg("wait");
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000525 continue;
526 }
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000527 prev = NULL;
528 inst = instance_list;
529 while (inst) {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000530 if (inst->pid == pid)
531 break;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000532 prev = inst;
533 inst = inst->next;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000534 }
535 } while (!inst);
536
537 if (WIFEXITED(status))
538 status = WEXITSTATUS(status);
539 else if (WIFSIGNALED(status)) {
540 sig = WTERMSIG(status);
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000541 status = EXIT_UNCORRECTED;
542 if (sig != SIGINT) {
543 printf("Warning... %s %s exited "
544 "with signal %d\n",
545 inst->prog, inst->device, sig);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000546 status = EXIT_ERROR;
547 }
548 } else {
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000549 printf("%s %s: status is %x, should never happen\n",
550 inst->prog, inst->device, status);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000551 status = EXIT_ERROR;
552 }
553 inst->exit_status = status;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000554
555#if DO_PROGRESS_INDICATOR
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +0000556 if (progress && (inst->flags & FLAG_PROGRESS) && !progress_active()) {
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000557 struct fsck_instance *inst2;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000558 for (inst2 = instance_list; inst2; inst2 = inst2->next) {
559 if (inst2->flags & FLAG_DONE)
560 continue;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000561 if (strcmp(inst2->type, "ext2") != 0
562 && strcmp(inst2->type, "ext3") != 0
563 ) {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000564 continue;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000565 }
566 /* ext[23], we will send USR1
567 * (request to start displaying progress bar)
568 *
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000569 * If we've just started the fsck, wait a tiny
570 * bit before sending the kill, to give it
571 * time to set up the signal handler
572 */
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000573 if (inst2->start_time >= time(NULL) - 1)
574 sleep(1);
575 kill(inst2->pid, SIGUSR1);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000576 inst2->flags |= FLAG_PROGRESS;
577 break;
578 }
579 }
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000580#endif
581
Denis Vlasenko0de93752006-12-26 02:51:29 +0000582 ret_inst:
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000583 if (prev)
584 prev->next = inst->next;
585 else
586 instance_list = inst->next;
587 if (verbose > 1)
588 printf("Finished with %s (exit status %d)\n",
589 inst->device, inst->exit_status);
590 num_running--;
591 return inst;
592}
593
594#define FLAG_WAIT_ALL 0
595#define FLAG_WAIT_ATLEAST_ONE 1
596/*
597 * Wait until all executing child processes have exited; return the
598 * logical OR of all of their exit code values.
599 */
600static int wait_many(int flags)
601{
602 struct fsck_instance *inst;
603 int global_status = 0;
604 int wait_flags = 0;
605
606 while ((inst = wait_one(wait_flags))) {
607 global_status |= inst->exit_status;
608 free_instance(inst);
609#ifdef RANDOM_DEBUG
610 if (noexecute && (flags & WNOHANG) && !(random() % 3))
611 break;
612#endif
613 if (flags & FLAG_WAIT_ATLEAST_ONE)
614 wait_flags = WNOHANG;
615 }
616 return global_status;
617}
618
619/*
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000620 * Execute a particular fsck program, and link it into the list of
621 * child processes we are waiting for.
622 */
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000623static void execute(const char *type, const char *device, const char *mntpt,
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000624 int interactive)
625{
626 char *argv[num_args + 4]; /* see count below: */
627 int argc;
628 int i;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000629 struct fsck_instance *inst;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000630 pid_t pid;
631
632 inst = xzalloc(sizeof(*inst));
633
634 argv[0] = xasprintf("fsck.%s", type); /* 1 */
635 for (i = 0; i < num_args; i++)
636 argv[i+1] = args[i]; /* num_args */
637 argc = num_args + 1;
638
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000639#if DO_PROGRESS_INDICATOR
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000640 if (progress && !progress_active()) {
641 if (strcmp(type, "ext2") == 0
642 || strcmp(type, "ext3") == 0
643 ) {
644 argv[argc++] = xasprintf("-C%d", progress_fd); /* 1 */
645 inst->flags |= FLAG_PROGRESS;
646 }
647 }
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000648#endif
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000649
650 argv[argc++] = xstrdup(device); /* 1 */
651 argv[argc] = NULL; /* 1 */
652
653 if (verbose || noexecute) {
654 printf("[%s (%d) -- %s]", argv[0], num_running,
655 mntpt ? mntpt : device);
656 for (i = 0; i < argc; i++)
657 printf(" %s", argv[i]);
658 puts("");
659 }
660
661 /* Fork and execute the correct program. */
662 pid = -1;
663 if (!noexecute) {
Denis Vlasenko53091ec2007-03-26 13:35:09 +0000664 pid = spawn(argv);
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000665 if (pid < 0)
Denis Vlasenko53091ec2007-03-26 13:35:09 +0000666 bb_perror_msg("%s", argv[0]);
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000667 }
668
669 for (i = num_args+1; i < argc; i++)
670 free(argv[i]);
671
672 inst->pid = pid;
673 inst->prog = argv[0];
674 inst->type = xstrdup(type);
675 inst->device = xstrdup(device);
676 inst->base_device = base_device(device);
677 inst->start_time = time(NULL);
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000678
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000679 /* Add to the list of running fsck's.
680 * (was adding to the end, but adding to the front is simpler...) */
681 inst->next = instance_list;
682 instance_list = inst;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000683}
684
685/*
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000686 * Run the fsck program on a particular device
687 *
688 * If the type is specified using -t, and it isn't prefixed with "no"
689 * (as in "noext2") and only one filesystem type is specified, then
690 * use that type regardless of what is specified in /etc/fstab.
691 *
692 * If the type isn't specified by the user, then use either the type
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000693 * specified in /etc/fstab, or "auto".
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000694 */
695static void fsck_device(struct fs_info *fs, int interactive)
696{
697 const char *type;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000698
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000699 if (strcmp(fs->type, "auto") != 0) {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000700 type = fs->type;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000701 if (verbose > 2)
702 bb_info_msg("using filesystem type '%s' %s",
703 type, "from fstab");
704 } else if (fstype
Denis Vlasenko0de93752006-12-26 02:51:29 +0000705 && (fstype[0] != 'n' || fstype[1] != 'o') /* != "no" */
706 && strncmp(fstype, "opts=", 5) != 0
707 && strncmp(fstype, "loop", 4) != 0
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000708 && !strchr(fstype, ',')
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000709 ) {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000710 type = fstype;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000711 if (verbose > 2)
712 bb_info_msg("using filesystem type '%s' %s",
713 type, "from -t");
714 } else {
715 type = "auto";
716 if (verbose > 2)
717 bb_info_msg("using filesystem type '%s' %s",
718 type, "(default)");
719 }
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000720
721 num_running++;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +0000722 execute(type, fs->device, fs->mountpt, interactive);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000723}
724
725/*
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000726 * Returns TRUE if a partition on the same disk is already being
727 * checked.
728 */
729static int device_already_active(char *device)
730{
731 struct fsck_instance *inst;
732 char *base;
733
734 if (force_all_parallel)
735 return 0;
736
737#ifdef BASE_MD
738 /* Don't check a soft raid disk with any other disk */
739 if (instance_list
740 && (!strncmp(instance_list->device, BASE_MD, sizeof(BASE_MD)-1)
741 || !strncmp(device, BASE_MD, sizeof(BASE_MD)-1))
742 ) {
743 return 1;
744 }
745#endif
746
747 base = base_device(device);
748 /*
749 * If we don't know the base device, assume that the device is
750 * already active if there are any fsck instances running.
751 */
752 if (!base)
753 return (instance_list != NULL);
754
755 for (inst = instance_list; inst; inst = inst->next) {
756 if (!inst->base_device || !strcmp(base, inst->base_device)) {
757 free(base);
758 return 1;
759 }
760 }
761
762 free(base);
763 return 0;
764}
765
766/*
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000767 * This function returns true if a particular option appears in a
768 * comma-delimited options list
769 */
770static int opt_in_list(char *opt, char *optlist)
771{
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000772 char *s;
773 int len;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000774
775 if (!optlist)
776 return 0;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000777
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000778 len = strlen(opt);
779 s = optlist - 1;
780 while (1) {
781 s = strstr(s + 1, opt);
782 if (!s)
783 return 0;
784 /* neither "opt.." nor "xxx,opt.."? */
785 if (s != optlist && s[-1] != ',')
786 continue;
787 /* neither "..opt" nor "..opt,xxx"? */
788 if (s[len] != '\0' && s[len] != ',')
789 continue;
790 return 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000791 }
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000792}
793
794/* See if the filesystem matches the criteria given by the -t option */
795static int fs_match(struct fs_info *fs)
796{
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000797 int n, ret, checked_type;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000798 char *cp;
799
800 if (!fs_type_list)
801 return 1;
802
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000803 ret = 0;
804 checked_type = 0;
805 n = 0;
806 while (1) {
807 cp = fs_type_list[n];
808 if (!cp)
809 break;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000810 switch (fs_type_flag[n]) {
811 case FS_TYPE_FLAG_NORMAL:
812 checked_type++;
813 if (strcmp(cp, fs->type) == 0)
814 ret = 1;
815 break;
816 case FS_TYPE_FLAG_NEGOPT:
817 if (opt_in_list(cp, fs->opts))
818 return 0;
819 break;
820 case FS_TYPE_FLAG_OPT:
821 if (!opt_in_list(cp, fs->opts))
822 return 0;
823 break;
824 }
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000825 n++;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000826 }
827 if (checked_type == 0)
828 return 1;
829
830 return (fs_type_negated ? !ret : ret);
831}
832
833/* Check if we should ignore this filesystem. */
834static int ignore(struct fs_info *fs)
835{
836 /*
837 * If the pass number is 0, ignore it.
838 */
839 if (fs->passno == 0)
840 return 1;
841
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000842 /*
843 * If a specific fstype is specified, and it doesn't match,
844 * ignore it.
845 */
846 if (!fs_match(fs))
847 return 1;
848
849 /* Are we ignoring this type? */
850 if (index_in_str_array(ignored_types, fs->type) >= 0)
851 return 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000852
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000853 /* We can and want to check this file system type. */
854 return 0;
855}
856
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000857/* Check all file systems, using the /etc/fstab table. */
858static int check_all(void)
859{
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000860 struct fs_info *fs;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000861 int status = EXIT_OK;
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000862 smallint not_done_yet;
863 smallint pass_done;
864 int passno;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000865
866 if (verbose)
867 puts("Checking all filesystems");
868
869 /*
870 * Do an initial scan over the filesystem; mark filesystems
871 * which should be ignored as done, and resolve any "auto"
872 * filesystem types (done as a side-effect of calling ignore()).
873 */
874 for (fs = filesys_info; fs; fs = fs->next) {
875 if (ignore(fs))
876 fs->flags |= FLAG_DONE;
877 }
878
879 /*
880 * Find and check the root filesystem.
881 */
882 if (!parallel_root) {
883 for (fs = filesys_info; fs; fs = fs->next) {
884 if (LONE_CHAR(fs->mountpt, '/'))
885 break;
886 }
887 if (fs) {
888 if (!skip_root && !ignore(fs)) {
889 fsck_device(fs, 1);
890 status |= wait_many(FLAG_WAIT_ALL);
891 if (status > EXIT_NONDESTRUCT)
892 return status;
893 }
894 fs->flags |= FLAG_DONE;
895 }
896 }
897 /*
898 * This is for the bone-headed user who enters the root
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +0000899 * filesystem twice. Skip root will skip all root entries.
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000900 */
901 if (skip_root)
902 for (fs = filesys_info; fs; fs = fs->next)
903 if (LONE_CHAR(fs->mountpt, '/'))
904 fs->flags |= FLAG_DONE;
905
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000906 not_done_yet = 1;
907 passno = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000908 while (not_done_yet) {
909 not_done_yet = 0;
910 pass_done = 1;
911
912 for (fs = filesys_info; fs; fs = fs->next) {
913 if (cancel_requested)
914 break;
915 if (fs->flags & FLAG_DONE)
916 continue;
917 /*
918 * If the filesystem's pass number is higher
919 * than the current pass number, then we don't
920 * do it yet.
921 */
922 if (fs->passno > passno) {
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000923 not_done_yet = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000924 continue;
925 }
926 /*
927 * If a filesystem on a particular device has
928 * already been spawned, then we need to defer
929 * this to another pass.
930 */
931 if (device_already_active(fs->device)) {
932 pass_done = 0;
933 continue;
934 }
935 /*
936 * Spawn off the fsck process
937 */
938 fsck_device(fs, serialize);
939 fs->flags |= FLAG_DONE;
940
941 /*
942 * Only do one filesystem at a time, or if we
943 * have a limit on the number of fsck's extant
944 * at one time, apply that limit.
945 */
946 if (serialize
947 || (max_running && (num_running >= max_running))
948 ) {
949 pass_done = 0;
950 break;
951 }
952 }
953 if (cancel_requested)
954 break;
955 if (verbose > 1)
956 printf("--waiting-- (pass %d)\n", passno);
957 status |= wait_many(pass_done ? FLAG_WAIT_ALL :
958 FLAG_WAIT_ATLEAST_ONE);
959 if (pass_done) {
960 if (verbose > 1)
961 puts("----------------------------------");
962 passno++;
963 } else
Denis Vlasenkoe18a2932007-01-19 02:03:14 +0000964 not_done_yet = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000965 }
Denis Vlasenko0de93752006-12-26 02:51:29 +0000966 kill_all_if_cancel_requested();
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000967 status |= wait_many(FLAG_WAIT_ATLEAST_ONE);
968 return status;
969}
970
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000971/*
972 * Deal with the fsck -t argument.
973 * Huh, for mount "-t novfat,nfs" means "neither vfat nor nfs"!
974 * Why here we require "-t novfat,nonfs" ??
975 */
976static void compile_fs_type(char *fs_type)
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +0000977{
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000978 char *s;
979 int num = 2;
980 smallint negate;
981
982 if (fs_type) {
983 s = fs_type;
984 while ((s = strchr(s, ','))) {
985 num++;
986 s++;
987 }
988 }
989
990 fs_type_list = xzalloc(num * sizeof(fs_type_list[0]));
991 fs_type_flag = xzalloc(num * sizeof(fs_type_flag[0]));
992 fs_type_negated = -1; /* not yet known is it negated or not */
993
994 if (!fs_type)
995 return;
996
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000997 num = 0;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +0000998 s = fs_type;
999 while (1) {
1000 char *comma;
1001
1002 negate = 0;
1003 if (s[0] == 'n' && s[1] == 'o') { /* "no.." */
1004 s += 2;
1005 negate = 1;
1006 } else if (s[0] == '!') {
1007 s++;
1008 negate = 1;
1009 }
Denis Vlasenkoe18a2932007-01-19 02:03:14 +00001010
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001011 if (strcmp(s, "loop") == 0)
1012 /* loop is really short-hand for opts=loop */
1013 goto loop_special_case;
1014 if (strncmp(s, "opts=", 5) == 0) {
1015 s += 5;
1016 loop_special_case:
1017 fs_type_flag[num] = negate ? FS_TYPE_FLAG_NEGOPT : FS_TYPE_FLAG_OPT;
1018 } else {
1019 if (fs_type_negated == -1)
1020 fs_type_negated = negate;
1021 if (fs_type_negated != negate)
1022 bb_error_msg_and_die(
1023"either all or none of the filesystem types passed to -t must be prefixed "
1024"with 'no' or '!'");
1025 }
1026 comma = strchr(s, ',');
1027 fs_type_list[num++] = comma ? xstrndup(s, comma-s) : xstrdup(s);
1028 if (!comma)
1029 break;
1030 s = comma + 1;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001031 }
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001032}
1033
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00001034static void parse_args(int argc, char **argv)
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001035{
1036 int i, j;
1037 char *arg, *tmp;
1038 char *options = NULL;
1039 int optpos = 0;
1040 int opts_for_fsck = 0;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001041
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001042 /* in bss, so already zeroed
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001043 num_devices = 0;
1044 num_args = 0;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001045 instance_list = NULL;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001046 */
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001047
1048/* TODO: getopt32 */
1049 for (i = 1; i < argc; i++) {
1050 arg = argv[i];
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001051
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001052 /* "/dev/blk" or "/path" or "UUID=xxx" or "LABEL=xxx" */
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001053 if ((arg[0] == '/' && !opts_for_fsck) || strchr(arg, '=')) {
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001054// FIXME: must check that arg is a blkdev, or resolve
1055// "/path", "UUID=xxx" or "LABEL=xxx" into block device name
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001056// ("UUID=xxx"/"LABEL=xxx" can probably shifted to fsck.auto duties)
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001057 devices = xrealloc(devices, (num_devices+1) * sizeof(devices[0]));
1058 devices[num_devices++] = xstrdup(arg);
1059 continue;
1060 }
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001061
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001062 if (arg[0] != '-' || opts_for_fsck) {
1063 args = xrealloc(args, (num_args+1) * sizeof(args[0]));
1064 args[num_args++] = xstrdup(arg);
1065 continue;
1066 }
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001067
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001068 for (j = 1; arg[j]; j++) {
1069 if (opts_for_fsck) {
1070 optpos++;
1071 /* one extra for '\0' */
1072 options = xrealloc(options, optpos + 2);
1073 options[optpos] = arg[j];
1074 continue;
1075 }
1076 switch (arg[j]) {
1077 case 'A':
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001078 doall = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001079 break;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001080#if DO_PROGRESS_INDICATOR
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001081 case 'C':
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001082 progress = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001083 if (arg[++j]) { /* -Cn */
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001084 progress_fd = xatoi_u(&arg[j]);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001085 goto next_arg;
1086 }
1087 /* -C n */
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001088 progress_fd = xatoi_u(argv[++i]);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001089 goto next_arg;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001090#endif
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001091 case 'V':
1092 verbose++;
1093 break;
1094 case 'N':
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001095 noexecute = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001096 break;
1097 case 'R':
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001098 skip_root = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001099 break;
1100 case 'T':
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001101 notitle = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001102 break;
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001103/* case 'M':
1104 like_mount = 1;
1105 break; */
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001106 case 'P':
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001107 parallel_root = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001108 break;
1109 case 's':
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001110 serialize = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001111 break;
1112 case 't':
1113 if (fstype)
1114 bb_show_usage();
1115 if (arg[++j])
1116 tmp = &arg[j];
1117 else if (++i < argc)
1118 tmp = argv[i];
1119 else
1120 bb_show_usage();
1121 fstype = xstrdup(tmp);
1122 compile_fs_type(fstype);
1123 goto next_arg;
1124 case '-':
1125 opts_for_fsck++;
1126 break;
1127 case '?':
1128 bb_show_usage();
1129 break;
1130 default:
1131 optpos++;
1132 /* one extra for '\0' */
1133 options = xrealloc(options, optpos + 2);
1134 options[optpos] = arg[j];
1135 break;
1136 }
1137 }
1138 next_arg:
1139 if (optpos) {
1140 options[0] = '-';
1141 options[optpos + 1] = '\0';
1142 args = xrealloc(args, (num_args+1) * sizeof(args[0]));
1143 args[num_args++] = options;
1144 optpos = 0;
1145 options = NULL;
1146 }
1147 }
1148 if (getenv("FSCK_FORCE_ALL_PARALLEL"))
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001149 force_all_parallel = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001150 tmp = getenv("FSCK_MAX_INST");
1151 if (tmp)
1152 max_running = xatoi(tmp);
1153}
1154
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001155static void signal_cancel(int sig ATTRIBUTE_UNUSED)
1156{
1157 cancel_requested = 1;
1158}
1159
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00001160int fsck_main(int argc, char **argv);
1161int fsck_main(int argc, char **argv)
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001162{
1163 int i, status = 0;
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001164 int interactive;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001165 const char *fstab;
1166 struct fs_info *fs;
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001167 struct sigaction sa;
1168
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001169 memset(&sa, 0, sizeof(sa));
1170 sa.sa_handler = signal_cancel;
1171 sigaction(SIGINT, &sa, 0);
1172 sigaction(SIGTERM, &sa, 0);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001173
1174 setbuf(stdout, NULL);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001175
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001176 parse_args(argc, argv);
1177
1178 if (!notitle)
1179 puts("fsck (busybox "BB_VER", "BB_BT")");
1180
Denis Vlasenko1abf91a2007-01-19 02:02:33 +00001181 /* Even plain "fsck /dev/hda1" needs fstab to get fs type,
1182 * so we are scanning it anyway */
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001183 fstab = getenv("FSTAB_FILE");
1184 if (!fstab)
1185 fstab = "/etc/fstab";
1186 load_fs_info(fstab);
1187
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001188 interactive = (num_devices == 1) | serialize;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001189
1190 /* If -A was specified ("check all"), do that! */
1191 if (doall)
1192 return check_all();
1193
1194 if (num_devices == 0) {
Denis Vlasenkoa0e701d2007-01-19 02:01:19 +00001195 serialize = 1;
1196 interactive = 1;
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001197 return check_all();
1198 }
1199
Denis Vlasenko0de93752006-12-26 02:51:29 +00001200 for (i = 0; i < num_devices; i++) {
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001201 if (cancel_requested) {
Denis Vlasenko0de93752006-12-26 02:51:29 +00001202 kill_all_if_cancel_requested();
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001203 break;
1204 }
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001205
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001206 fs = lookup(devices[i]);
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001207 if (!fs)
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001208 fs = create_fs_device(devices[i], 0, "auto", 0, -1, -1);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001209 fsck_device(fs, interactive);
Denis Vlasenkof8c11aa2007-01-19 02:04:09 +00001210
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001211 if (serialize
1212 || (max_running && (num_running >= max_running))
1213 ) {
1214 struct fsck_instance *inst;
1215
1216 inst = wait_one(0);
1217 if (inst) {
1218 status |= inst->exit_status;
1219 free_instance(inst);
1220 }
1221 if (verbose > 1)
1222 puts("----------------------------------");
1223 }
1224 }
1225 status |= wait_many(FLAG_WAIT_ALL);
Denis Vlasenkoc4f623e2006-12-26 01:30:59 +00001226 return status;
1227}