1 /* $NetBSD: check.c,v 1.17 2008/06/13 20:46:09 martin Exp $ */
4 * Copyright (C) 1995, 1996, 1997 Wolfgang Solfrank
5 * Copyright (c) 1995 Martin Husemann
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include <sys/cdefs.h>
31 __RCSID("$NetBSD: check.c,v 1.17 2008/06/13 20:46:09 martin Exp $");
42 #include "exitvalues.h"
45 checkfilesys(const char *filename
)
48 struct bootblock boot
;
49 struct fatEntry
*fat
= NULL
;
50 int finish_dosdirsection
=0;
53 int ret
= FSCK_EXIT_CHECK_FAILED
;
57 printf("** %s", filename
);
59 dosfs
= open(filename
, rdonly
? O_RDONLY
: O_RDWR
, 0);
60 if (dosfs
< 0 && !rdonly
) {
61 dosfs
= open(filename
, O_RDONLY
, 0);
63 pwarn(" (NO WRITE)\n");
71 perr("Can't open `%s'", filename
);
72 return FSCK_EXIT_CHECK_FAILED
;
75 if (readboot(dosfs
, &boot
) != FSOK
) {
78 return FSCK_EXIT_CHECK_FAILED
;
82 if (boot
.ValidFat
< 0)
83 printf("** Phase 1 - Read and Compare FATs\n");
85 printf("** Phase 1 - Read FAT\n");
88 mod
|= readfat(dosfs
, &boot
, boot
.ValidFat
>= 0 ? boot
.ValidFat
: 0, &fat
);
91 return FSCK_EXIT_CHECK_FAILED
;
94 if (boot
.ValidFat
< 0)
95 for (i
= 1; i
< boot
.FATs
; i
++) {
96 struct fatEntry
*currentFat
;
98 mod
|= readfat(dosfs
, &boot
, i
, ¤tFat
);
103 mod
|= comparefat(&boot
, fat
, currentFat
, i
);
110 printf("** Phase 2 - Check Cluster Chains\n");
112 mod
|= checkfat(&boot
, fat
);
115 /* delay writing FATs */
118 printf("** Phase 3 - Checking Directories\n");
120 mod
|= resetDosDirSection(&boot
, fat
);
121 finish_dosdirsection
= 1;
124 /* delay writing FATs */
126 mod
|= handleDirTree(dosfs
, &boot
, fat
);
131 printf("** Phase 4 - Checking for Lost Files\n");
133 mod
|= checklost(dosfs
, &boot
, fat
);
137 /* now write the FATs */
138 if (mod
& FSFATMOD
) {
139 if (ask(1, "Update FATs")) {
140 mod
|= writefat(dosfs
, &boot
, fat
, mod
& FSFIXFAT
);
148 pwarn("%d files, %d free (%d clusters), %d bad (%d clusters)\n",
150 boot
.NumFree
* boot
.ClusterSize
/ 1024, boot
.NumFree
,
151 boot
.NumBad
* boot
.ClusterSize
/ 1024, boot
.NumBad
);
153 pwarn("%d files, %d free (%d clusters)\n",
155 boot
.NumFree
* boot
.ClusterSize
/ 1024, boot
.NumFree
);
157 if (mod
&& (mod
& FSERROR
) == 0) {
159 if (ask(1, "MARK FILE SYSTEM CLEAN") == 0)
163 pwarn("MARKING FILE SYSTEM CLEAN\n");
164 mod
|= writefat(dosfs
, &boot
, fat
, 1);
166 pwarn("\n***** FILE SYSTEM IS LEFT MARKED AS DIRTY *****\n");
167 mod
|= FSERROR
; /* file system not clean */
172 if (mod
& (FSFATAL
| FSERROR
))
178 if (finish_dosdirsection
)
179 finishDosDirSection();
183 if (mod
& (FSFATMOD
|FSDIRMOD
))
184 pwarn("\n***** FILE SYSTEM WAS MODIFIED *****\n");