2 * Copyright (C) 1995, 1996, 1997 Wolfgang Solfrank
3 * Copyright (c) 1995 Martin Husemann
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Martin Husemann
16 * and Wolfgang Solfrank.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * $NetBSD: check.c,v 1.10 2000/04/25 23:02:51 jdolecek Exp $
33 * $FreeBSD: src/sbin/fsck_msdosfs/check.c,v 1.1.2.1 2001/08/01 05:47:55 obrien Exp $
47 checkfilesys(const char *fname
)
50 struct bootblock boot
;
51 struct fatEntry
*fat
= NULL
;
52 int i
, finish_dosdirsection
=0;
58 printf("** %s", fname
);
60 dosfs
= open(fname
, rdonly
? O_RDONLY
: O_RDWR
, 0);
61 if (dosfs
< 0 && !rdonly
) {
62 dosfs
= open(fname
, O_RDONLY
, 0);
64 pwarn(" (NO WRITE)\n");
76 if (readboot(dosfs
, &boot
) != FSOK
) {
83 if (boot
.ValidFat
< 0)
84 printf("** Phase 1 - Read and Compare FATs\n");
86 printf("** Phase 1 - Read FAT\n");
89 mod
|= readfat(dosfs
, &boot
, boot
.ValidFat
>= 0 ? boot
.ValidFat
: 0, &fat
);
95 if (boot
.ValidFat
< 0)
96 for (i
= 1; i
< boot
.FATs
; i
++) {
97 struct fatEntry
*currentFat
;
99 mod
|= readfat(dosfs
, &boot
, i
, ¤tFat
);
104 mod
|= comparefat(&boot
, fat
, currentFat
, i
);
111 printf("** Phase 2 - Check Cluster Chains\n");
113 mod
|= checkfat(&boot
, fat
);
116 /* delay writing FATs */
119 printf("** Phase 3 - Checking Directories\n");
121 mod
|= resetDosDirSection(&boot
, fat
);
122 finish_dosdirsection
= 1;
125 /* delay writing FATs */
127 mod
|= handleDirTree(dosfs
, &boot
, fat
);
132 printf("** Phase 4 - Checking for Lost Files\n");
134 mod
|= checklost(dosfs
, &boot
, fat
);
138 /* now write the FATs */
139 if (mod
& FSFATMOD
) {
140 if (ask(1, "Update FATs")) {
141 mod
|= writefat(dosfs
, &boot
, fat
, mod
& FSFIXFAT
);
149 pwarn("%d files, %d free (%d clusters), %d bad (%d clusters)\n",
151 boot
.NumFree
* boot
.ClusterSize
/ 1024, boot
.NumFree
,
152 boot
.NumBad
* boot
.ClusterSize
/ 1024, boot
.NumBad
);
154 pwarn("%d files, %d free (%d clusters)\n",
156 boot
.NumFree
* boot
.ClusterSize
/ 1024, boot
.NumFree
);
158 if (mod
&& (mod
& FSERROR
) == 0) {
160 if (ask(1, "MARK FILE SYSTEM CLEAN") == 0)
164 pwarn("MARKING FILE SYSTEM CLEAN\n");
165 mod
|= writefat(dosfs
, &boot
, fat
, 1);
167 pwarn("\n***** FILE SYSTEM IS LEFT MARKED AS DIRTY *****\n");
168 mod
|= FSERROR
; /* file system not clean */
173 if (mod
& (FSFATAL
| FSERROR
))
179 if (finish_dosdirsection
)
180 finishDosDirSection();
184 if (mod
& (FSFATMOD
|FSDIRMOD
))
185 pwarn("\n***** FILE SYSTEM WAS MODIFIED *****\n");