check.c revision 1.10 1 /* $NetBSD: check.c,v 1.10 2000/04/25 23:02:51 jdolecek Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996, 1997 Wolfgang Solfrank
5 * Copyright (c) 1995 Martin Husemann
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Martin Husemann
18 * and Wolfgang Solfrank.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35
36 #include <sys/cdefs.h>
37 #ifndef lint
38 __RCSID("$NetBSD: check.c,v 1.10 2000/04/25 23:02:51 jdolecek Exp $");
39 #endif /* not lint */
40
41 #include <stdlib.h>
42 #include <string.h>
43 #include <ctype.h>
44 #include <stdio.h>
45 #include <unistd.h>
46 #include <fcntl.h>
47
48 #include "ext.h"
49 #include "fsutil.h"
50
51 int
52 checkfilesys(fname)
53 const char *fname;
54 {
55 int dosfs;
56 struct bootblock boot;
57 struct fatEntry *fat = NULL;
58 int i, finish_dosdirsection=0;
59 int mod = 0;
60 int ret = 8;
61
62 rdonly = alwaysno;
63 if (!preen)
64 printf("** %s", fname);
65
66 dosfs = open(fname, rdonly ? O_RDONLY : O_RDWR, 0);
67 if (dosfs < 0 && !rdonly) {
68 dosfs = open(fname, O_RDONLY, 0);
69 if (dosfs >= 0)
70 pwarn(" (NO WRITE)\n");
71 else if (!preen)
72 printf("\n");
73 rdonly = 1;
74 } else if (!preen)
75 printf("\n");
76
77 if (dosfs < 0) {
78 perror("Can't open");
79 return 8;
80 }
81
82 if (readboot(dosfs, &boot) != FSOK) {
83 close(dosfs);
84 return 8;
85 }
86
87 if (!preen) {
88 if (boot.ValidFat < 0)
89 printf("** Phase 1 - Read and Compare FATs\n");
90 else
91 printf("** Phase 1 - Read FAT\n");
92 }
93
94 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
95 if (mod & FSFATAL) {
96 close(dosfs);
97 return 8;
98 }
99
100 if (boot.ValidFat < 0)
101 for (i = 1; i < boot.FATs; i++) {
102 struct fatEntry *currentFat;
103
104 mod |= readfat(dosfs, &boot, i, ¤tFat);
105
106 if (mod & FSFATAL)
107 goto out;
108
109 mod |= comparefat(&boot, fat, currentFat, i);
110 free(currentFat);
111 if (mod & FSFATAL)
112 goto out;
113 }
114
115 if (!preen)
116 printf("** Phase 2 - Check Cluster Chains\n");
117
118 mod |= checkfat(&boot, fat);
119 if (mod & FSFATAL)
120 goto out;
121 /* delay writing FATs */
122
123 if (!preen)
124 printf("** Phase 3 - Checking Directories\n");
125
126 mod |= resetDosDirSection(&boot, fat);
127 finish_dosdirsection = 1;
128 if (mod & FSFATAL)
129 goto out;
130 /* delay writing FATs */
131
132 mod |= handleDirTree(dosfs, &boot, fat);
133 if (mod & FSFATAL)
134 goto out;
135
136 if (!preen)
137 printf("** Phase 4 - Checking for Lost Files\n");
138
139 mod |= checklost(dosfs, &boot, fat);
140 if (mod & FSFATAL)
141 goto out;
142
143 /* now write the FATs */
144 if (mod & FSFATMOD) {
145 if (ask(1, "Update FATs")) {
146 mod |= writefat(dosfs, &boot, fat, mod & FSFIXFAT);
147 if (mod & FSFATAL)
148 goto out;
149 } else
150 mod |= FSERROR;
151 }
152
153 if (boot.NumBad)
154 pwarn("%d files, %d free (%d clusters), %d bad (%d clusters)\n",
155 boot.NumFiles,
156 boot.NumFree * boot.ClusterSize / 1024, boot.NumFree,
157 boot.NumBad * boot.ClusterSize / 1024, boot.NumBad);
158 else
159 pwarn("%d files, %d free (%d clusters)\n",
160 boot.NumFiles,
161 boot.NumFree * boot.ClusterSize / 1024, boot.NumFree);
162
163 if (mod && (mod & FSERROR) == 0) {
164 if (mod & FSDIRTY) {
165 if (ask(1, "MARK FILE SYSTEM CLEAN") == 0)
166 mod &= ~FSDIRTY;
167
168 if (mod & FSDIRTY) {
169 pwarn("MARKING FILE SYSTEM CLEAN\n");
170 mod |= writefat(dosfs, &boot, fat, 1);
171 } else {
172 pwarn("\n***** FILE SYSTEM IS LEFT MARKED AS DIRTY *****\n");
173 mod |= FSERROR; /* file system not clean */
174 }
175 }
176 }
177
178 if (mod & (FSFATAL | FSERROR))
179 goto out;
180
181 ret = 0;
182
183 out:
184 if (finish_dosdirsection)
185 finishDosDirSection();
186 free(fat);
187 close(dosfs);
188
189 if (mod & (FSFATMOD|FSDIRMOD))
190 pwarn("\n***** FILE SYSTEM WAS MODIFIED *****\n");
191
192 return ret;
193 }
194